summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Fedoryshchenko <denys.f@collabora.com>2024-04-24 20:31:35 +0300
committerDenys Fedoryshchenko <denys.f@collabora.com>2024-04-24 20:32:31 +0300
commite57fe852eebebd835520bd205e5fa315b89c25d2 (patch)
tree6b000accf67781ce08a055a60592f3000674851c
parentf2355094af2911b9e86f55a74fc7fd4fa5401011 (diff)
downloadaccel-ppp-e57fe852eebebd835520bd205e5fa315b89c25d2.tar.gz
accel-ppp-e57fe852eebebd835520bd205e5fa315b89c25d2.zip
CMakeLists.txt: gentoo fix for __free_fn_t detection
On Gentoo __free_fn_t wont be detected properly without this include. Signed-off-by: Denys Fedoryshchenko <denys.f@collabora.com> Reported-by: Stanislav <stasn77@gmail.com> Author: Stanislav <stasn77@gmail.com>
-rw-r--r--accel-pppd/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/accel-pppd/CMakeLists.txt b/accel-pppd/CMakeLists.txt
index d194eaa7..cd7186ba 100644
--- a/accel-pppd/CMakeLists.txt
+++ b/accel-pppd/CMakeLists.txt
@@ -48,6 +48,7 @@ ENDIF (RADIUS)
INCLUDE (CheckCSourceCompiles)
CHECK_C_SOURCE_COMPILES("
#include <stdlib.h>
+#include <search.h>
int main(void)
{
__free_fn_t *f;