diff options
-rw-r--r-- | Makefile | 10 | ||||
-rw-r--r-- | eval.c | 7 | ||||
-rw-r--r-- | expr.h | 7 | ||||
-rw-r--r-- | parse.c | 7 | ||||
-rw-r--r-- | util.c | 7 | ||||
-rw-r--r-- | util.h | 7 |
6 files changed, 40 insertions, 5 deletions
@@ -72,6 +72,11 @@ ifeq ($(OS),Linux) LOCAL_LDFLAGS += -Wl,--as-needed LOCAL_LDLIBS += -lacl -lcap -lattr -lrt +ifdef USE_ONIGURUMA +LOCAL_LDLIBS += -lonig +LOCAL_CFLAGS += -DUSE_ONIGURUMA +endif + # These libraries are not built with msan, so disable them MSAN_CFLAGS += -DBFS_HAS_SYS_ACL=0 -DBFS_HAS_SYS_CAPABILITY=0 -DBFS_HAS_SYS_XATTR=0 @@ -82,6 +87,11 @@ endif ifeq ($(OS),NetBSD) LOCAL_LDLIBS += -lutil + +ifdef USE_ONIGURUMA +LOCAL_LDLIBS += -lonig +LOCAL_CFLAGS += -DUSE_ONIGURUMA +endif endif ifneq ($(filter asan,$(MAKECMDGOALS)),) @@ -43,7 +43,6 @@ #include <fnmatch.h> #include <grp.h> #include <pwd.h> -#include <regex.h> #include <stdarg.h> #include <stdint.h> #include <stdio.h> @@ -55,6 +54,12 @@ #include <unistd.h> #include <wchar.h> +#ifdef USE_ONIGURUMA + #include <onigposix.h> +#else + #include <regex.h> +#endif + struct eval_state { /** Data about the current file. */ const struct BFTW *ftwbuf; @@ -26,12 +26,17 @@ #include "exec.h" #include "printf.h" #include "stat.h" -#include <regex.h> #include <stdbool.h> #include <stddef.h> #include <sys/types.h> #include <time.h> +#ifdef USE_ONIGURUMA + #include <onigposix.h> +#else + #include <regex.h> +#endif + /** * Possible types of numeric comparison. */ @@ -48,7 +48,6 @@ #include <grp.h> #include <limits.h> #include <pwd.h> -#include <regex.h> #include <stdarg.h> #include <stdbool.h> #include <stdio.h> @@ -60,6 +59,12 @@ #include <time.h> #include <unistd.h> +#ifdef USE_ONIGURUMA + #include <onigposix.h> +#else + #include <regex.h> +#endif + // Strings printed by -D tree for "fake" expressions static char *fake_and_arg = "-a"; static char *fake_false_arg = "-false"; @@ -21,7 +21,6 @@ #include <fcntl.h> #include <langinfo.h> #include <nl_types.h> -#include <regex.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> @@ -30,6 +29,12 @@ #include <sys/types.h> #include <unistd.h> +#ifdef USE_ONIGURUMA + #include <onigposix.h> +#else + #include <regex.h> +#endif + #if BFS_HAS_SYS_PARAM # include <sys/param.h> #endif @@ -23,12 +23,17 @@ #include <fcntl.h> #include <fnmatch.h> -#include <regex.h> #include <stdbool.h> #include <stddef.h> #include <stdio.h> #include <sys/types.h> +#ifdef USE_ONIGURUMA + #include <onigposix.h> +#else + #include <regex.h> +#endif + // Some portability concerns #ifdef __has_feature |