aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Slaven <bpk@hoopajoo.net>2019-11-05 04:52:27 (GMT)
committerSteve Slaven <bpk@hoopajoo.net>2019-11-05 04:52:27 (GMT)
commitbb301bfb0fec3d5e229367aca74cfe422c23f62c (patch)
tree37372786c995bcca846fea5be6e7986d0fa093de
parentfe6a1869fe48b00325860380c182019f62096aaf (diff)
downloadpowwow-bb301bfb0fec3d5e229367aca74cfe422c23f62c.zip
powwow-bb301bfb0fec3d5e229367aca74cfe422c23f62c.tar.gz
powwow-bb301bfb0fec3d5e229367aca74cfe422c23f62c.tar.bz2
Move configured regex lib in to a common header
-rw-r--r--cmd2.c7
-rw-r--r--feature/regex.h11
-rw-r--r--list.c7
-rw-r--r--main.c20
4 files changed, 22 insertions, 23 deletions
diff --git a/cmd2.c b/cmd2.c
index 2d8ab53..dbd264a 100644
--- a/cmd2.c
+++ b/cmd2.c
@@ -26,17 +26,12 @@
#include <unistd.h>
#include <errno.h>
-#ifdef USE_PCREPOSIX
-# include <pcreposix.h>
-#elif defined(USE_REGEXP)
-# include <regex.h>
-#endif
-
int strcasecmp();
int select();
#include "defines.h"
#include "main.h"
+#include "feature/regex.h"
#include "utils.h"
#include "beam.h"
#include "edit.h"
diff --git a/feature/regex.h b/feature/regex.h
new file mode 100644
index 0000000..d630b99
--- /dev/null
+++ b/feature/regex.h
@@ -0,0 +1,11 @@
+#ifndef _FEATURE_REGEX_H_
+#define _FEATURE_REGEX_H_
+
+#ifdef USE_REGEXP_PCREPOSIX
+# include <pcreposix.h>
+#elif defined(USE_REGEXP)
+# include <sys/types.h>
+# include <regex.h>
+#endif
+
+#endif /* _FEATURE_REGEX_H_ */
diff --git a/list.c b/list.c
index 1bb0a65..2652bda 100644
--- a/list.c
+++ b/list.c
@@ -18,14 +18,9 @@
#include <sys/types.h>
#include <sys/time.h>
-#ifdef USE_PCREPOSIX
-# include <pcreposix.h>
-#elif defined(USE_REGEXP)
-# include <regex.h>
-#endif
-
#include "defines.h"
#include "main.h"
+#include "feature/regex.h"
#include "utils.h"
#include "cmd2.h"
#include "tty.h"
diff --git a/main.c b/main.c
index e92d2ea..28d1592 100644
--- a/main.c
+++ b/main.c
@@ -75,14 +75,9 @@
extern int errno;
extern int select();
-#ifdef USE_PCREPOSIX
-# include <pcreposix.h>
-#elif defined(USE_REGEXP)
-# include <regex.h>
-#endif
-
#include "defines.h"
#include "main.h"
+#include "feature/regex.h"
#include "utils.h"
#include "beam.h"
#include "cmd.h"
@@ -435,12 +430,15 @@ void printver(void)
" termios,"
#endif
#ifdef USE_REGEXP
- " regexp,"
+ " regexp "
+ #ifdef USE_REGEXP_PCREPOSIX
+ "(pcreposix)"
+ #else
+ "(libc)"
+ #endif
+ ","
#else
- " no regexp,"
-#endif
-#ifdef USE_PCREPOSIX
- " pcreposix,"
+ " no regexp,"
#endif
#ifdef USE_LOCALE
" locale,"