Ignore:
Timestamp:
29/12/2006 23:51:06 (5 years ago)
Author:
chris
Message:

Visual Studio 2005 compile fixes, thanks to Gary.

Enable (and require) PCRE when building with Visual Studio 2005.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • box/chris/general/lib/common/ExcludeList.cpp

    r715 r1233  
    1111 
    1212#ifdef HAVE_REGEX_H 
    13         #include <regex.h> 
     13        #ifdef WIN32 
     14                #include <pcreposix.h> 
     15        #else 
     16                #include <regex.h> 
     17        #endif // WIN32 
    1418        #define EXCLUDELIST_IMPLEMENTATION_REGEX_T_DEFINED 
    1519#endif 
Note: See TracChangeset for help on using the changeset viewer.