mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
[devel] removed "strip" from contrib/pngminim/*/makefile
This commit is contained in:
parent
eceff8b3c3
commit
3f2339b551
8
ANNOUNCE
8
ANNOUNCE
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
Libpng 1.5.2rc02 - March 19, 2011
|
Libpng 1.5.2rc02 - March 20, 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.
|
||||||
@ -57,10 +57,10 @@ Version 1.5.2rc01 [March 19, 2011]
|
|||||||
Define remaining attributes to blank when MSC_VER<1300.
|
Define remaining attributes to blank when MSC_VER<1300.
|
||||||
ifdef out mask arrays in pngread.c when interlacing is not supported.
|
ifdef out mask arrays in pngread.c when interlacing is not supported.
|
||||||
|
|
||||||
Version 1.5.2rc02 [March 19, 2011]
|
Version 1.5.2rc02 [March 20, 2011]
|
||||||
Added a hint to try CPP=/bin/cpp if "cpp -E" fails in scripts/pnglibconf.mak
|
Added a hint to try CPP=/bin/cpp if "cpp -E" fails in scripts/pnglibconf.mak
|
||||||
and in contrib/pngminim/*/makefile and to try "STRIP=touch" if strip is
|
and in contrib/pngminim/*/makefile, eg., on SunOS 5.10, and removed "strip"
|
||||||
missing, eg., on SunOS 5.10
|
from the makefiles.
|
||||||
|
|
||||||
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
|
||||||
|
|||||||
6
CHANGES
6
CHANGES
@ -3273,10 +3273,10 @@ Version 1.5.2rc01 [March 19, 2011]
|
|||||||
Define remaining attributes to blank when MSC_VER<1300.
|
Define remaining attributes to blank when MSC_VER<1300.
|
||||||
ifdef out mask arrays in pngread.c when interlacing is not supported.
|
ifdef out mask arrays in pngread.c when interlacing is not supported.
|
||||||
|
|
||||||
Version 1.5.2rc02 [March 19, 2011]
|
Version 1.5.2rc02 [March 20, 2011]
|
||||||
Added a hint to try CPP=/bin/cpp if "cpp -E" fails in scripts/pnglibconf.mak
|
Added a hint to try CPP=/bin/cpp if "cpp -E" fails in scripts/pnglibconf.mak
|
||||||
and in contrib/pngminim/*/makefile and to try "STRIP=touch" if strip is
|
and in contrib/pngminim/*/makefile, eg., on SunOS 5.10, and removed "strip"
|
||||||
missing, eg., on SunOS 5.10
|
from the makefiles.
|
||||||
|
|
||||||
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,10 +4,6 @@
|
|||||||
#CC=cc
|
#CC=cc
|
||||||
CC=gcc
|
CC=gcc
|
||||||
LD=$(CC)
|
LD=$(CC)
|
||||||
STRIP=strip
|
|
||||||
|
|
||||||
#if strip fails try
|
|
||||||
# make STRIP=touch
|
|
||||||
|
|
||||||
# If awk fails try
|
# If awk fails try
|
||||||
# make AWK=nawk
|
# make AWK=nawk
|
||||||
@ -93,7 +89,6 @@ all: pngm2pnm$(E)
|
|||||||
|
|
||||||
pngm2pnm$(E): $(OBJS)
|
pngm2pnm$(E): $(OBJS)
|
||||||
$(LD) -o pngm2pnm$(E) $(OBJS)
|
$(LD) -o pngm2pnm$(E) $(OBJS)
|
||||||
$(STRIP) pngm2pnm$(E)
|
|
||||||
|
|
||||||
# The DFA_XTRA setting turns all libpng options off then
|
# The DFA_XTRA setting turns all libpng options off then
|
||||||
# turns on those required for this minimal build.
|
# turns on those required for this minimal build.
|
||||||
|
|||||||
@ -4,7 +4,6 @@
|
|||||||
#CC=cc
|
#CC=cc
|
||||||
CC=gcc
|
CC=gcc
|
||||||
LD=$(CC)
|
LD=$(CC)
|
||||||
STRIP=strip
|
|
||||||
|
|
||||||
# If awk fails try
|
# If awk fails try
|
||||||
# make AWK=nawk
|
# make AWK=nawk
|
||||||
@ -12,9 +11,6 @@ STRIP=strip
|
|||||||
# If cpp fails try
|
# If cpp fails try
|
||||||
# make CPP=/lib/cpp
|
# make CPP=/lib/cpp
|
||||||
|
|
||||||
# If strip fails try
|
|
||||||
# make STRIP=touch
|
|
||||||
|
|
||||||
RM=rm -f
|
RM=rm -f
|
||||||
COPY=cp
|
COPY=cp
|
||||||
|
|
||||||
@ -92,7 +88,6 @@ all: pnm2pngm$(E)
|
|||||||
|
|
||||||
pnm2pngm$(E): $(OBJS)
|
pnm2pngm$(E): $(OBJS)
|
||||||
$(LD) -o pnm2pngm$(E) $(OBJS)
|
$(LD) -o pnm2pngm$(E) $(OBJS)
|
||||||
$(STRIP) pnm2pngm$(E)
|
|
||||||
|
|
||||||
# The DFA_XTRA setting turns all libpng options off then
|
# The DFA_XTRA setting turns all libpng options off then
|
||||||
# turns on those required for this minimal build.
|
# turns on those required for this minimal build.
|
||||||
|
|||||||
@ -4,7 +4,6 @@
|
|||||||
#CC=cc
|
#CC=cc
|
||||||
CC=gcc
|
CC=gcc
|
||||||
LD=$(CC)
|
LD=$(CC)
|
||||||
STRIP=strip
|
|
||||||
|
|
||||||
# If awk fails try
|
# If awk fails try
|
||||||
# make AWK=nawk
|
# make AWK=nawk
|
||||||
@ -12,9 +11,6 @@ STRIP=strip
|
|||||||
# If cpp fails try
|
# If cpp fails try
|
||||||
# make CPP=/lib/cpp
|
# make CPP=/lib/cpp
|
||||||
|
|
||||||
# If strip fails try
|
|
||||||
# make STRIP=touch
|
|
||||||
|
|
||||||
RM=rm -f
|
RM=rm -f
|
||||||
COPY=cp
|
COPY=cp
|
||||||
|
|
||||||
@ -108,7 +104,6 @@ all: $(PROGDOCS) rpng2-x$(E)
|
|||||||
|
|
||||||
rpng2-x$(E): $(OBJS)
|
rpng2-x$(E): $(OBJS)
|
||||||
$(LD) -o rpng2-x$(E) $(OBJS) $(LIBS)
|
$(LD) -o rpng2-x$(E) $(OBJS) $(LIBS)
|
||||||
$(STRIP) rpng2-x$(E)
|
|
||||||
|
|
||||||
# The DFA_XTRA setting turns all libpng options off then
|
# The DFA_XTRA setting turns all libpng options off then
|
||||||
# turns on those required for this minimal build.
|
# turns on those required for this minimal build.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user