#include <time.h> in pcretest.c (a PCRE bug, fixed in later PCRE
authorPhilip Hazel <ph10@hermes.cam.ac.uk>
Tue, 19 Dec 2006 14:38:38 +0000 (14:38 +0000)
committerPhilip Hazel <ph10@hermes.cam.ac.uk>
Tue, 19 Dec 2006 14:38:38 +0000 (14:38 +0000)
releases).

doc/doc-txt/ChangeLog
src/src/pcre/pcretest.c

index cc55146b2e7b92e9e45b0264d3d12a1612c20338..c9b69ab37606016bfe84062dd96071459657e9eb 100644 (file)
@@ -1,4 +1,4 @@
-$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.444 2006/12/12 15:47:39 ph10 Exp $
+$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.445 2006/12/19 14:38:38 ph10 Exp $
 
 Change log file for Exim from version 4.21
 -------------------------------------------
@@ -351,6 +351,9 @@ PH/51 Error processing for expansion failure of helo_data from an smtp
 PH/52 Applied John Jetmore's patch to allow tls-on-connect and STARTTLS to be
       tested/used via the -bh/-bhc/-bs options.
 
+PH/53 Added missing "#include <time.h>" to pcre/pcretest.c (this was a PCRE
+      bug, fixed in subsequent PCRE releases).
+
 
 Exim version 4.63
 -----------------
index fda541a0cc99e1368f1bcecc5f410bb6b9c96f19..4b7664665768ace6b9caee18f20ec4764a6c66ba 100644 (file)
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/pcre/pcretest.c,v 1.4 2006/11/07 16:50:36 ph10 Exp $ */
+/* $Cambridge: exim/src/src/pcre/pcretest.c,v 1.5 2006/12/19 14:38:38 ph10 Exp $ */
 
 /*************************************************
 *             PCRE testing program               *
@@ -47,6 +47,7 @@ POSSIBILITY OF SUCH DAMAGE.
 #include <errno.h>
 
 #ifndef _WIN32
+#include <sys/time.h>
 #include <sys/resource.h>
 #endif