Util: Remove elf_repl.h check
Vicki Pfau vi@endrift.com
Sun, 13 Aug 2017 13:25:12 -0700
2 files changed,
0 insertions(+),
10 deletions(-)
M
CMakeLists.txt
→
CMakeLists.txt
@@ -607,10 +607,6 @@
if(USE_ELF) list(APPEND FEATURES ELF) include_directories(AFTER ${LIBELF_INCLUDE_DIRS}) - find_file(ELF_REPL_H elf_repl.h PATHS ${LIBELF_INCLUDE_DIRS} NO_CMAKE_FIND_ROOT_PATH) - if (ELF_REPL_H) - add_definitions(-DUSE_ELF_REPL) - endif() list(APPEND DEPENDENCY_LIB ${LIBELF_LIBRARIES}) set(CPACK_DEBIAN_PACKAGE_DEPENDS "${CPACK_DEBIAN_PACKAGE_DEPENDS},libelfg0") endif()
M
include/mgba-util/elf-read.h
→
include/mgba-util/elf-read.h
@@ -14,12 +14,6 @@ #ifdef USE_ELF
#include <libelf.h> -#if USE_ELF_REPL -#include <elf_repl.h> -#else -#include <elf.h> -#endif - #include <mgba-util/vector.h> struct ELF;