diff options
author | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2023-08-05 19:13:40 +0000 |
---|---|---|
committer | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2023-08-05 19:34:42 +0000 |
commit | 2fbe2cc7ac7139903d1f4c2bd4e9f56e1d0cf3da (patch) | |
tree | f9bfcbad1753f752926b0a9978c3ec1b4d89d9e0 | |
parent | 34f0a0048dbe13f89e67ae03a544efe59c7daa7a (diff) |
devel/regexx: Fix build with llvm16
- Pet portclippy
Sponsored by: The FreeBSD Foundation
-rw-r--r-- | devel/regexx/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/devel/regexx/Makefile b/devel/regexx/Makefile index bd8ff2d68200..f6347c311d00 100644 --- a/devel/regexx/Makefile +++ b/devel/regexx/Makefile @@ -13,10 +13,13 @@ LICENSE= LGPL21 LIB_DEPENDS= libpcre.so:devel/pcre USES= gmake pkgconfig libtool +USE_CXXSTD= c++14 +USE_LDCONFIG= yes + GNU_CONFIGURE= yes + MAKE_ARGS= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOHEADER="${TRUE}" \ AUTOMAKE="${TRUE}" -USE_LDCONFIG= yes CPPFLAGS+= $$(pkg-config --cflags libpcre) LDFLAGS+= $$(pkg-config --libs libpcre) |