diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 101b4f2..9f76c61 100644 --- a/configure.ac +++ b/configure.ac @@ -19,12 +19,14 @@ AC_CHECK_TYPE(uchar_t, unsigned char) AC_CHECK_FUNCS([ \ getexecname \ getprogname \ +strlcpy \ ]) AC_CHECK_LIB(z, uncompress) AC_CHECK_LIB(elf, gelf_getshdr, [],[ build_gelf=true ]) + build_gelf=true AM_CONDITIONAL([BUILD_ELF], [test "$build_gelf" = true]) AC_CHECK_LIB(dwarf, dwarf_elf_init, [], [ @@ -34,12 +36,12 @@ AM_CONDITIONAL([BUILD_DWARF], [test "$build_dwarf" = true]) AC_CHECK_LIB(pthread, pthread_create) +#gelf.h \ AC_CHECK_HEADERS([ \ ctype.h \ dwarf.h \ errno.h \ fcntl.h \ -gelf.h \ libdwarf.h \ libgen.h \ limits.h \ |