summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorJohn Bowler <jbowler@acm.org>2011-11-03 18:19:53 -0500
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2011-11-03 18:19:53 -0500
commit1d8b75550fcd072f7692c3a50debde6ad9a77bce (patch)
treedc951e24965e1ba8f2c4eeb20edb11c6c02c8c3b /Makefile.in
parentaff44028ba87bf506c089045abc2ca167f63e36a (diff)
downloadlibpng-1d8b75550fcd072f7692c3a50debde6ad9a77bce.tar.gz
[libpng15] Fix for the preprocessor of the Intel C compiler. The preprocessor
adjacent @ signs with a space; this changes the concatentation from @@@ to PNG_JOIN; that should work with all compiler preprocessors.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 093b87917..993d89618 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1340,9 +1340,9 @@ pngvalid.o pngtest.o: pnglibconf.h
echo '#include "$<"' >dfn.c
$(DFNCPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) @LIBPNG_DEFINES@\
$(CPPFLAGS) $(SYMBOL_CFLAGS) dfn.c > dfn1.out
- $(SED) -n -e 's|^.*PNG_DEFN_MAGIC-\(.*\)-PNG_DEFN_END.*$$|\1|p'\
+ $(SED) -n -e 's|^.*PNG_DEFN_MAGIC *-\(.*\)- *PNG_DEFN_END.*$$|\1|p'\
dfn1.out >dfn2.out
- $(SED) -e 's| *@@@ *||g' -e 's| *$$||' dfn2.out >dfn3.out
+ $(SED) -e 's| *PNG_JOIN *||g' -e 's| *$$||' dfn2.out >dfn3.out
rm -f dfn.c dfn[12].out
mv dfn3.out $@