2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-16 17:02:22 +00:00
qpdf/external-libs
Jay Berkenbilt 2b5ac676ed generalize build
git-svn-id: svn+q:///qpdf/trunk@776 71b93d88-0707-0410-a8cf-f5a4172ac649
2009-10-11 00:24:22 +00:00
..
pcre remove files not needed for building 2009-10-10 17:41:30 +00:00
zlib remove files not needed for building 2009-10-10 17:43:06 +00:00
build.mk generalize build 2009-10-11 00:24:22 +00:00
Makefile include external-libs 2009-10-10 16:51:20 +00:00
README notes 2009-10-10 18:06:26 +00:00

NOTE: These copies of external libraries are not used by default.  You
must explicitly specific --enable-build-external-libraries on the
command-line in order to use them.  This is not recommended unless you
have no other option.  It can be especially useful for building on
Windows.

----------------------------------------------------------------------

The pcre and zlib directories here contain pcre 4.5 and zlib 1.2.3.3
from debian (dfsg).  All files were removed that are not either
required to build or that contain some kind of copyright or
acknowledgment information.  Other than as described below, everything
else was left unmodified.

These files:

./pcre/pcre.h
./pcre/config.h

were copied from pcre.in and config.in and modified as follows:

------------------------------
--- pcre.in	2003-12-10 11:45:44.000000000 -0500
+++ pcre.h	2009-07-12 16:45:03.000000000 -0400
@@ -10,9 +10,9 @@
 /* The file pcre.h is build by "configure". Do not edit it; instead
 make changes to pcre.in. */
 
-#define PCRE_MAJOR          @PCRE_MAJOR@
-#define PCRE_MINOR          @PCRE_MINOR@
-#define PCRE_DATE           @PCRE_DATE@
+#define PCRE_MAJOR          4
+#define PCRE_MINOR          5
+#define PCRE_DATE           01-December-2003
 
 /* Win32 uses DLL by default */
 
--- config.in	2003-12-10 11:45:44.000000000 -0500
+++ config.h	2009-07-12 16:44:51.000000000 -0400
@@ -41,8 +41,8 @@
 will only change 0 to 1; they won't change 1 to 0 if the functions are not
 found. */
 
-#define HAVE_STRERROR 0
-#define HAVE_MEMMOVE  0
+#define HAVE_STRERROR 1
+#define HAVE_MEMMOVE  1
 
 /* There are some non-Unix systems that don't even have bcopy(). If this macro
 is false, an emulation is used. If HAVE_MEMMOVE is set to 1, the value of
------------------------------