mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
[devel] Reverted non-portable GNU syntax in makefile (?=, +=)
This commit is contained in:
parent
4b2237a6a4
commit
4164c6f949
6
ANNOUNCE
6
ANNOUNCE
@ -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
|
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.
|
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):
|
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.
|
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:
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net:
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
4
CHANGES
4
CHANGES
@ -3509,9 +3509,9 @@ Version 1.5.4rc01 [June 30, 2011]
|
|||||||
Version 1.5.4 [July 7, 2011]
|
Version 1.5.4 [July 7, 2011]
|
||||||
No changes.
|
No changes.
|
||||||
|
|
||||||
Version 1.5.5beta01 [July 11, 2011]
|
Version 1.5.5beta01 [July 12, 2011]
|
||||||
Fixed some typos in the manual.
|
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
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
# Makefile for PngMinus (png2pnm and pnm2png)
|
# Makefile for PngMinus (png2pnm and pnm2png)
|
||||||
# Linux / Unix
|
# Linux / Unix
|
||||||
|
|
||||||
#CC?=cc
|
#CC=cc
|
||||||
CC?=gcc
|
CC=gcc
|
||||||
LD?=$(CC)
|
LD=$(CC)
|
||||||
|
|
||||||
RM=rm -f
|
RM=rm -f
|
||||||
|
|
||||||
@ -23,7 +23,7 @@ ZINC = -I../../../zlib
|
|||||||
ZLIB = -L../../../zlib -lz
|
ZLIB = -L../../../zlib -lz
|
||||||
ZLIBS = ../../../zlib/libz.a
|
ZLIBS = ../../../zlib/libz.a
|
||||||
|
|
||||||
CFLAGS+=$(PNGINC) $(ZINC)
|
CFLAGS=$(PNGINC) $(ZINC)
|
||||||
LDLIBS=$(PNGLIB) $(ZLIB)
|
LDLIBS=$(PNGLIB) $(ZLIB)
|
||||||
LDLIBSS=$(PNGLIBS) $(ZLIBS)
|
LDLIBSS=$(PNGLIBS) $(ZLIBS)
|
||||||
C=.c
|
C=.c
|
||||||
|
Loading…
x
Reference in New Issue
Block a user