mirror of https://github.com/mgba-emu/mgba.git
Util: Remove elf_repl.h check
This commit is contained in:
parent
828be44ac2
commit
04713d9de1
|
@ -607,10 +607,6 @@ endif()
|
|||
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()
|
||||
|
|
|
@ -14,12 +14,6 @@ CXX_GUARD_START
|
|||
|
||||
#include <libelf.h>
|
||||
|
||||
#if USE_ELF_REPL
|
||||
#include <elf_repl.h>
|
||||
#else
|
||||
#include <elf.h>
|
||||
#endif
|
||||
|
||||
#include <mgba-util/vector.h>
|
||||
|
||||
struct ELF;
|
||||
|
|
Loading…
Reference in New Issue