aboutsummaryrefslogtreecommitdiffstats
path: root/external-libs/README
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2009-10-10 17:10:05 +0200
committerJay Berkenbilt <ejb@ql.org>2009-10-10 17:10:05 +0200
commit582b500cd996c96054615870fd13d6ab0ea77428 (patch)
treeac17afc801d6c2449910e3fcbb6f45eed401feba /external-libs/README
parent9e1a25fc55534ac05ef73727819970217b3e488c (diff)
downloadqpdf-582b500cd996c96054615870fd13d6ab0ea77428.tar.zst
start integrating windows port
git-svn-id: svn+q:///qpdf/trunk@757 71b93d88-0707-0410-a8cf-f5a4172ac649
Diffstat (limited to 'external-libs/README')
-rw-r--r--external-libs/README39
1 files changed, 39 insertions, 0 deletions
diff --git a/external-libs/README b/external-libs/README
new file mode 100644
index 00000000..0ecf5930
--- /dev/null
+++ b/external-libs/README
@@ -0,0 +1,39 @@
+Other than Abuild files, these files are the only changes from
+pristine extracted sources. For pcre, use pcre 4.5. For zlib, we
+used 1.2.3.3 from debian (dfsg). 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
+------------------------------