diff options
author | Denys Fedoryshchenko <denys.f@collabora.com> | 2024-04-26 08:12:05 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-26 08:12:05 +0300 |
commit | 5f28e4a08b1d5b947c4c7bd8599a3e9c9083b4c1 (patch) | |
tree | 6b000accf67781ce08a055a60592f3000674851c | |
parent | f2355094af2911b9e86f55a74fc7fd4fa5401011 (diff) | |
parent | e57fe852eebebd835520bd205e5fa315b89c25d2 (diff) | |
download | accel-ppp-5f28e4a08b1d5b947c4c7bd8599a3e9c9083b4c1.tar.gz accel-ppp-5f28e4a08b1d5b947c4c7bd8599a3e9c9083b4c1.zip |
Merge pull request #137 from nuclearcat/gentoo-fix
CMakeLists.txt: gentoo fix for __free_fn_t detection
-rw-r--r-- | accel-pppd/CMakeLists.txt | 1 |
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; |