diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2023-12-14 16:23:11 +0000 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2023-12-14 17:03:08 +0000 |
commit | 871015ac6fafe9fc1c7c11b4a2cbb7259868e7ba (patch) | |
tree | 080e7d05411d922cba99faa4114884a5a2eff6c0 | |
parent | 1c1859f69df8302b080894ba34312c525cb8287c (diff) |
net/spoofer: Fix build with protobuf 22+
-rw-r--r-- | net/spoofer/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/spoofer/Makefile b/net/spoofer/Makefile index 6ce59bc229cc..069e41249076 100644 --- a/net/spoofer/Makefile +++ b/net/spoofer/Makefile @@ -14,10 +14,12 @@ BUILD_DEPENDS= protoc:devel/protobuf LIB_DEPENDS= libprotobuf-lite.so:devel/protobuf RUN_DEPENDS= scamper:net/scamper -USES= compiler:c++11-lib +USES= compiler:c++17-lang localbase GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-development --with-protobuf=${LOCALBASE} +LDFLAGS+= -labsl_log_internal_check_op -labsl_log_internal_message +USE_CXXSTD= c++17 PORTDOCS= README |