[devel] Reverted non-portable GNU syntax in makefile (?=, +=)

This commit is contained in:
Glenn Randers-Pehrson 2011-07-12 06:11:42 -05:00
parent 4b2237a6a4
commit 4164c6f949
3 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
Libpng 1.5.5beta01 - July 11, 2011
Libpng 1.5.5beta01 - July 12, 2011
This is not intended to be a public release. It will be replaced
within a few weeks by a public version or by another test version.
@ -26,9 +26,9 @@ Other information:
Changes since the last public release (1.5.4):
Version 1.5.5beta01 [July 11, 2011]
Version 1.5.5beta01 [July 12, 2011]
Fixed some typos in the manual.
Updated contrib/pngminus/makefile.std
Updated contrib/pngminus/makefile.std (Samuli Souminen)
Send comments/corrections/commendations to png-mng-implement at lists.sf.net:
(subscription required; visit

View File

@ -3509,9 +3509,9 @@ Version 1.5.4rc01 [June 30, 2011]
Version 1.5.4 [July 7, 2011]
No changes.
Version 1.5.5beta01 [July 11, 2011]
Version 1.5.5beta01 [July 12, 2011]
Fixed some typos in the manual.
Updated contrib/pngminus/makefile.std
Updated contrib/pngminus/makefile.std (Samuli Souminen)
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit

View File

@ -1,9 +1,9 @@
# Makefile for PngMinus (png2pnm and pnm2png)
# Linux / Unix
#CC?=cc
CC?=gcc
LD?=$(CC)
#CC=cc
CC=gcc
LD=$(CC)
RM=rm -f
@ -23,7 +23,7 @@ ZINC = -I../../../zlib
ZLIB = -L../../../zlib -lz
ZLIBS = ../../../zlib/libz.a
CFLAGS+=$(PNGINC) $(ZINC)
CFLAGS=$(PNGINC) $(ZINC)
LDLIBS=$(PNGLIB) $(ZLIB)
LDLIBSS=$(PNGLIBS) $(ZLIBS)
C=.c