Binary (FreeBSD): use system libelf

There are pkg elfutils. However it is not ABI compatible with system
libelf
This commit is contained in:
Carter Li
2024-09-07 15:22:38 +08:00
parent de59ffb31f
commit d8fb8d439e
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -69,7 +69,7 @@ cmake_dependent_option(ENABLE_FREETYPE "Enable freetype" ON "ANDROID" OFF)
cmake_dependent_option(ENABLE_PULSE "Enable pulse" ON "LINUX OR SunOS" OFF)
cmake_dependent_option(ENABLE_DDCUTIL "Enable ddcutil" ON "LINUX" OFF)
cmake_dependent_option(ENABLE_DIRECTX_HEADERS "Enable DirectX headers for WSL" ON "LINUX" OFF)
cmake_dependent_option(ENABLE_ELF "Enable libelf" ON "LINUX OR FreeBSD OR ANDROID" OFF)
cmake_dependent_option(ENABLE_ELF "Enable libelf" ON "LINUX OR ANDROID" OFF)
cmake_dependent_option(ENABLE_THREADS "Enable multithreading" ON "Threads_FOUND" OFF)
cmake_dependent_option(ENABLE_LIBZFS "Enable libzfs" ON "LINUX OR FreeBSD OR SunOS" OFF)
+1 -1
View File
@@ -242,7 +242,7 @@ void ffListFeatures(void)
#if FF_HAVE_DDCUTIL
"libddcutil\n"
#endif
#if FF_HAVE_ELF
#if FF_HAVE_ELF || __sun || __FreeBSD__
"libelf\n"
#endif
#if FF_HAVE_LIBZFS
+2 -1
View File
@@ -1,11 +1,12 @@
#include "binary.h"
#if defined(FF_HAVE_ELF) || defined(__sun)
#if defined(FF_HAVE_ELF) || defined(__sun) || defined(__FreeBSD__)
#include "common/io/io.h"
#include "common/library.h"
#include "util/stringUtils.h"
// WARNING: On FreeBSD, there are system `/usr/include/libelf.h` and pkg elfutils `/usr/local/include/libelf.h`; they are not compatible.
#include <libelf.h>
#include <fcntl.h>