[Box Backup-commit] COMMIT r1361 - box/chris/merge/lib/common
boxbackup-dev@fluffy.co.uk
boxbackup-dev@fluffy.co.uk
Sun, 04 Mar 2007 23:41:22 +0000
Author: chris
Date: 2007-03-04 23:41:22 +0000 (Sun, 04 Mar 2007)
New Revision: 1361
Modified:
box/chris/merge/lib/common/ExcludeList.cpp
Log:
Update to match new recommended installation of pcreposix.h as regex.h.
(refs #3, merges [1281], reverting [1233])
Modified: box/chris/merge/lib/common/ExcludeList.cpp
===================================================================
--- box/chris/merge/lib/common/ExcludeList.cpp 2007-03-04 23:38:03 UTC (rev 1360)
+++ box/chris/merge/lib/common/ExcludeList.cpp 2007-03-04 23:41:22 UTC (rev 1361)
@@ -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