diff options
author | Florin Coras <fcoras@cisco.com> | 2023-02-02 12:56:16 -0800 |
---|---|---|
committer | Dave Barach <vpp@barachs.net> | 2023-02-07 18:06:44 +0000 |
commit | 3684794336602435b91b91a1dc5bd9401a974432 (patch) | |
tree | 9475f51d264a35774422009f7a720d6073676e97 /src/vcl/CMakeLists.txt | |
parent | 656a550f1feda3ddfa96f8e1fc510e8eebd3ce7a (diff) |
vcl: better handlig of ldp apis that rely on gnu source
Control use of apis that rely on _GNU_SOURCE being defined with compile
time macro.
Also fixes sendmmsg and recvmmsg which were not probably wrapped.
Type: improvement
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I207de23210d4b9dc960bb4289159502760c5614d
Diffstat (limited to 'src/vcl/CMakeLists.txt')
-rw-r--r-- | src/vcl/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/vcl/CMakeLists.txt b/src/vcl/CMakeLists.txt index e6d8f98ffed..610b422d113 100644 --- a/src/vcl/CMakeLists.txt +++ b/src/vcl/CMakeLists.txt @@ -30,6 +30,11 @@ add_vpp_library(vppcom api_headers ) +option(LDP_HAS_GNU_SOURCE "LDP configured to use _GNU_SOURCE" ON) +if (LDP_HAS_GNU_SOURCE) + add_compile_definitions(HAVE_GNU_SOURCE) +endif(LDP_HAS_GNU_SOURCE) + add_vpp_library(vcl_ldpreload SOURCES ldp_socket_wrapper.c |