[legacy] Reverted non-portable GNU syntax in makefile (?=, +=)
This commit is contained in:
parent
eeb8f748aa
commit
808100b1a7
6
ANNOUNCE
6
ANNOUNCE
@ -1,5 +1,5 @@
|
||||
|
||||
Libpng 1.2.47beta01 - July 11, 2011
|
||||
Libpng 1.2.47beta01 - 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.
|
||||
@ -42,8 +42,8 @@ Other information:
|
||||
|
||||
Changes since the last public release (1.2.46):
|
||||
|
||||
version 1.2.47beta01 [July 11, 2011]
|
||||
Updated contrib/pngminus/makefile.std
|
||||
version 1.2.47beta01 [July 12, 2011]
|
||||
Updated contrib/pngminus/makefile.std (Samuli Souminen)
|
||||
|
||||
(subscription required; visit
|
||||
https://lists.sourceforge.net/lists/listinfo/png-mng-implement
|
||||
|
3
CHANGES
3
CHANGES
@ -2736,8 +2736,9 @@ version 1.2.46rc02 and 1.0.56rc02 [July 8, 2011]
|
||||
version 1.2.46 and 1.0.56 [July 9, 2011]
|
||||
Udated copyright year to 2011.
|
||||
|
||||
version 1.2.47beta01 [July 11, 2011]
|
||||
version 1.2.47beta01 [July 12, 2011]
|
||||
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
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user