ossp-pkg/var/var.c 1.19 -> 1.20
--- var.c 2001/11/15 15:36:05 1.19
+++ var.c 2001/11/16 16:01:20 1.20
@@ -32,7 +32,11 @@
#include <stdio.h>
#include <errno.h>
#include <sys/types.h>
-#include <regex.h>
+#if defined(HAVE_PCREPOSIX)
+# include <pcreposix.h>
+#else
+# include <regex.h>
+#endif
#include "var.h"
/* The default configuration for the parser. */
|
|