diff --git a/ANNOUNCE b/ANNOUNCE index 8bb153f98..d5b2f5764 100644 --- a/ANNOUNCE +++ b/ANNOUNCE @@ -1,5 +1,5 @@ -Libpng 1.4.1beta01 - January 4, 2010 +Libpng 1.4.1beta01 - January 6, 2010 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,11 +26,13 @@ Other information: Changes since the last public release (1.4.0): -version 1.4.1beta01 [January 4, 2010] +version 1.4.1beta01 [January 6, 2010] Updated CMakeLists.txt for consistent indentation and to avoid an unclosed if-statement warning (Philip Lowman). Revised Makefile.am and Makefile.in to remove references to Y2KINFO, KNOWNBUG, and libpng.la (Robert Schwebel). + Revised Makefile.am and Makefile.in to make libpng.so.14, libpng.sl.14, + and libpng.14.dylib links in the installed library directory. Send comments/corrections/commendations to png-mng-implement at lists.sf.net (subscription required; visit diff --git a/CHANGES b/CHANGES index cece31b6f..5e9116cb2 100644 --- a/CHANGES +++ b/CHANGES @@ -2458,11 +2458,13 @@ version 1.4.0rc08 [January 2, 2010] version 1.4.0 [January 3, 2010] No changes. -version 1.4.1beta01 [January 4, 2010] +version 1.4.1beta01 [January 6, 2010] Updated CMakeLists.txt for consistent indentation and to avoid an unclosed if-statement warning (Philip Lowman). Revised Makefile.am and Makefile.in to remove references to Y2KINFO, KNOWNBUG, and libpng.la (Robert Schwebel). + Revised Makefile.am and Makefile.in to make libpng.so.14, libpng.sl.14, + and libpng.14.dylib links in the installed library directory. Send comments/corrections/commendations to png-mng-implement at lists.sf.net (subscription required; visit diff --git a/Makefile.am b/Makefile.am index 1d4973fc0..a3ea6f3aa 100644 --- a/Makefile.am +++ b/Makefile.am @@ -127,7 +127,7 @@ install-exec-hook: cd $(DESTDIR)$(bindir); $(LN_S) $(PNGLIB_BASENAME)-config libpng-config @set -x;\ cd $(DESTDIR)$(libdir);\ - for ext in a la so sl dylib; do\ + for ext in a la so so.14 sl sl.14 dylib 14.dylib; do\ rm -f libpng.$$ext;\ if test -f $(PNGLIB_BASENAME).$$ext; then\ $(LN_S) $(PNGLIB_BASENAME).$$ext libpng.$$ext;\ diff --git a/Makefile.in b/Makefile.in index 0cbcde224..52f0bff63 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1238,7 +1238,7 @@ install-exec-hook: cd $(DESTDIR)$(bindir); $(LN_S) $(PNGLIB_BASENAME)-config libpng-config @set -x;\ cd $(DESTDIR)$(libdir);\ - for ext in a la so sl dylib; do\ + for ext in a la so so.14 sl sl.14 dylib 14.dylib; do\ rm -f libpng.$$ext;\ if test -f $(PNGLIB_BASENAME).$$ext; then\ $(LN_S) $(PNGLIB_BASENAME).$$ext libpng.$$ext;\