diff options
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 7 | 
1 files changed, 6 insertions, 1 deletions
| @@ -75,7 +75,9 @@  extern int errno;  extern int select(); -#ifdef USE_REGEXP +#ifdef USE_PCREPOSIX +# include <pcreposix.h> +#elif defined(USE_REGEXP)  # include <regex.h>  #endif @@ -437,6 +439,9 @@ void printver(void)  #else  	       " no regexp,"  #endif +#ifdef USE_PCREPOSIX +	       " pcreposix," +#endif  #ifdef USE_LOCALE  	       " locale,"  #endif | 
