RPM Package Manager, CVS Repository
http://rpm5.org/cvs/
____________________________________________________________________________
Server: rpm5.org Name: Arkadiusz Miskiewicz
Root: /v/rpm/cvs Email: arekm@rpm5.org
Module: rpm Date: 06-Nov-2007 20:17:00
Branch: HEAD Handle: 2007110619170000
Modified files:
rpm/build files.c
Log:
Include appropriate regex implementation.
Summary:
Revision Changes Path
1.284 +4 -0 rpm/build/files.c
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: rpm/build/files.c
============================================================================
$ cvs diff -u -r1.283 -r1.284 files.c
--- rpm/build/files.c 6 Nov 2007 07:31:54 -0000 1.283
+++ rpm/build/files.c 6 Nov 2007 19:17:00 -0000 1.284
@@ -8,7 +8,11 @@
#define MYALLPERMS 07777
+#if defined(WITH_PCRE) && defined(WITH_PCRE_POSIX)
+#include <pcreposix.h>
+#else
#include <regex.h>
+#endif
#include <rpmio_internal.h>
#include <fts.h>
@@ .
Received on Tue Nov 6 20:17:00 2007