summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2007-03-04 23:41:22 +0000
committerChris Wilson <chris+github@qwirx.com>2007-03-04 23:41:22 +0000
commit3bd5d45687714bd7402c26f1aea915bcc15f0481 (patch)
tree7e8b6cb38fce861075b8b2700831c52c65dad1b6
parente937c5734e249b19bcc8c59ecd1721c541d764f1 (diff)
Update to match new recommended installation of pcreposix.h as regex.h.
(refs #3, merges [1281], reverting [1233])
-rw-r--r--lib/common/ExcludeList.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/common/ExcludeList.cpp b/lib/common/ExcludeList.cpp
index 3edbc291..e24246c8 100644
--- a/lib/common/ExcludeList.cpp
+++ b/lib/common/ExcludeList.cpp
@@ -10,11 +10,7 @@
#include "Box.h"
#ifdef HAVE_REGEX_H
- #ifdef WIN32
- #include <pcreposix.h>
- #else
- #include <regex.h>
- #endif // WIN32
+ #include <regex.h>
#define EXCLUDELIST_IMPLEMENTATION_REGEX_T_DEFINED
#endif