summaryrefslogtreecommitdiff
path: root/lib/vty.h
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2020-02-16 14:14:04 -0500
committerDonald Sharp <sharpd@cumulusnetworks.com>2020-02-16 14:14:04 -0500
commitbeee9b4a26419a6a40194c24a8c2abc2cfdd371e (patch)
tree4cdde385c016e9bf0466ba6f732784ef79a7fc91 /lib/vty.h
parent918379442516acc1d1b0c827bc0aa8beef672725 (diff)
lib: Fix so that `--enable-pcreposix` actually compiles
The `--enable-pcreposix` configure option was not actually compiling properly. Follow pre-existing pattern for inclusion of regex.h or the pcreposix.h header. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'lib/vty.h')
-rw-r--r--lib/vty.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/vty.h b/lib/vty.h
index a0b8e8afa1..f90a35a260 100644
--- a/lib/vty.h
+++ b/lib/vty.h
@@ -22,7 +22,11 @@
#define _ZEBRA_VTY_H
#include <sys/types.h>
+#ifdef HAVE_LIBPCREPOSIX
+#include <pcreposix.h>
+#else
#include <regex.h>
+#endif /* HAVE_LIBPCREPOSIX */
#include "thread.h"
#include "log.h"