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

This commit is contained in:
Glenn Randers-Pehrson 2011-07-12 06:22:29 -05:00
parent 340c9b237b
commit f5b9abde98
3 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
Libpng 1.4.9beta01 - July 11, 2011
Libpng 1.4.9beta01 - 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.4.8):
version 1.4.9beta01 [July 11, 2011]
version 1.4.9beta01 [July 12, 2011]
Added vstudio/* and CMakeLists to EXTRA_DIST in Makefile.in and Makefile.am
Updated contrib/pngminus/makefile.std
Updated contrib/pngminus/makefile.std (Samuli Souminen)
Send comments/corrections/commendations to glennrp at users.sourceforge.net
or to png-mng-implement at lists.sf.net (subscription required; visit

View File

@ -2826,9 +2826,9 @@ version 1.4.8rc01 [June 30, 2011]
version 1.4.8 [July 7, 2011]
No changes.
version 1.4.9beta01 [July 11, 2011]
version 1.4.9beta01 [July 12, 2011]
Added vstudio/* and CMakeLists to EXTRA_DIST in Makefile.in and Makefile.am
Updated contrib/pngminus/makefile.std
Updated contrib/pngminus/makefile.std (Samuli Souminen)
Send comments/corrections/commendations to glennrp at users.sourceforge.net
or 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