summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2016-07-02 12:34:38 -0500
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2016-07-02 12:34:38 -0500
commit7ea459bd4e8d0a11e87f4ddfaf77619c4b84a50c (patch)
tree02db8f4a7e56c1a68407b1c975926afe0b29c2c8
parenta82098a22b6eb65479710e03792498b42f7753d1 (diff)
downloadlibpng-7ea459bd4e8d0a11e87f4ddfaf77619c4b84a50c.tar.gz
[libpng15] Added "Common linking failures" section to INSTALL.
-rw-r--r--ANNOUNCE5
-rw-r--r--CHANGES3
-rw-r--r--INSTALL45
3 files changed, 27 insertions, 26 deletions
diff --git a/ANNOUNCE b/ANNOUNCE
index 4cbc78f12..2cc580147 100644
--- a/ANNOUNCE
+++ b/ANNOUNCE
@@ -1,5 +1,5 @@
-Libpng 1.5.28beta01 - June 4, 2016
+Libpng 1.5.28beta01 - July 2, 2016
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,10 +26,11 @@ Other information:
Changes since the last public release (1.5.27):
-version 1.5.28beta01 [June 4, 2016]
+version 1.5.28beta01 [July 2, 2016]
Merge with current libpng16 pngvalid.c
Fixed undefined behavior in png_push_save_buffer(). Do not call
memcpy() with a null source, even if count is zero (Leon Scroggins III).
+ Added "Common linking failures" section to INSTALL.
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit
diff --git a/CHANGES b/CHANGES
index 54ab54d4a..5bd9a6c8a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -4496,10 +4496,11 @@ version 1.5.27rc01 [May 14, 2016]
version 1.5.27 [May 26, 2016]
No changes.
-version 1.5.28beta01 [June 4, 2016]
+version 1.5.28beta01 [July 2, 2016]
Merge with current libpng16 pngvalid.c
Fixed undefined behavior in png_push_save_buffer(). Do not call
memcpy() with a null source, even if count is zero (Leon Scroggins III).
+ Added "Common linking failures" section to INSTALL.
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit
diff --git a/INSTALL b/INSTALL
index 0995361fe..d20d6c59b 100644
--- a/INSTALL
+++ b/INSTALL
@@ -17,8 +17,9 @@ VIII. Configuring libpng for 16-bit platforms
XII. Configuring for compiler xxx:
XIII. Removing unwanted object code
XIV. Changes to the build and configuration of libpng in libpng-1.5.x
- XV. Configuring libpng for multiprocessing
- XVI. Other sources of information about libpng
+ XV. Setjmp/longjmp issues
+ XVI. Common linking failures
+XVII. Other sources of information about libpng
I. Simple installation
@@ -32,6 +33,10 @@ and ignore the rest of this document. "/path" is the path to the directory
where you want to install the libpng "lib", "include", and "bin"
subdirectories.
+If you downloaded a GIT clone, you will need to run ./autogen.sh before
+running ./configure, to create "configure" and "Makefile.in" which are
+not included in the GIT repository.
+
Note that "configure" is only included in the "*.tar" distributions and not
in the "*.zip" or "*.7z" distributions. If you downloaded one of those
distributions, see "Building with project files" or "Building with makefiles",
@@ -43,7 +48,9 @@ If configure does not work on your system, or if you have a need to
change configure.ac or Makefile.am, and you have a reasonably
up-to-date set of tools, running ./autogen.sh in a git clone before
running ./configure may fix the problem. To be really sure that you
-aren't using any of the included pre-built scripts, you can do this:
+aren't using any of the included pre-built scripts, especially if you
+are building from a tar distribution instead of a git distribution,
+do this:
./configure --enable-maintainer-mode
make maintainer-clean
@@ -348,7 +355,7 @@ $PREFIX/include directory). Do not edit pnglibconf.h after you have built
libpng, because than the settings would not accurately reflect the settings
that were used to build libpng.
-XV. Configuring libpng for multiprocessing
+XV. Setjmp/longjmp issues
Libpng uses setjmp()/longjmp() for error handling. Unfortunately setjmp()
is known to be not thread-safe on some platforms and we don't know of
@@ -361,28 +368,20 @@ configure libpng with PNG_NO_SETJMP in your pngusr.dfa file, with
in your pnglibconf.h or pngusr.h.
-XVI. Other sources of information about libpng:
-
-Further information can be found in the README and libpng-manual.txt
-files, in the individual makefiles, in png.h, and the manual pages
-libpng.3 and png.5.
+XVI. Common linking failures
-Using the ./configure script -- 16 December 2002.
-=================================================
+If your application fails to find libpng or zlib entries while linking:
-The ./configure script should work compatibly with what scripts/makefile.*
-did, however there are some options you might need to add to configure
-explicitly, which previously was done semi-automatically (if you didn't edit
-scripts/makefile.* yourself, that is)
+ Be sure "-lz" appears after "-lpng" on your linking command.
-CFLAGS="-Wall -O -funroll-loops \
--malign-loops=2 -malign-functions=2" ./configure --prefix=/usr/include \
---with-pkgconfigdir=/usr/lib/pkgconfig --includedir=/usr/include
+ Be sure you have built libpng, zlib, and your application for the
+ same platform (e.g., 32-bit or 64-bit).
-You can alternatively specify --includedir=/usr/include, /usr/local/include,
-/usr/include/libpng15, or whatever.
+ If you are using the vstudio project, observe the WARNING in
+ project/vstudio/README.txt.
-If you find that the configure script is out-of-date or is not supporting
-your platform properly, try running autogen.sh to regenerate "configure",
-"Makefile.in", and the other configuration files. Then try configure again.
+XVII. Other sources of information about libpng:
+Further information can be found in the README and libpng-manual.txt
+files, in the individual makefiles, in png.h, and the manual pages
+libpng.3 and png.5.