diff options
author | Jindrich Novy <jnovy@redhat.com> | 2011-03-23 13:37:44 +0100 |
---|---|---|
committer | Jindrich Novy <jnovy@redhat.com> | 2011-03-23 13:37:44 +0100 |
commit | b159519d9dd18ad24fe427c8d4ac98e125342be6 (patch) | |
tree | 60583a0d814672af99e1ff0682d6a8f70a0c893c /configure.ac | |
parent | b03685d320ce3484ee4163ebc3c04e8f84acc6fa (diff) | |
download | librpm-tizen-b159519d9dd18ad24fe427c8d4ac98e125342be6.tar.gz librpm-tizen-b159519d9dd18ad24fe427c8d4ac98e125342be6.tar.bz2 librpm-tizen-b159519d9dd18ad24fe427c8d4ac98e125342be6.zip |
Remove checks of unused things from configure.ac
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/configure.ac b/configure.ac index 58a5c8550..067088f3e 100644 --- a/configure.ac +++ b/configure.ac @@ -205,8 +205,6 @@ AC_CHECK_FUNC(gethostname, [], [ AC_CHECK_LIB(nsl, gethostname) ]) -AC_CHECK_HEADERS(poll.h) - AC_CHECK_HEADERS(pthread.h) AC_CHECK_LIB(pthread, pthread_mutex_trylock, [], [ @@ -216,16 +214,8 @@ AC_CHECK_LIB(pthread, pthread_mutex_trylock, [], [ ]) ]) -AC_SEARCH_LIBS(aio_read, [c rt aio posix4]) AC_SEARCH_LIBS(dlopen, [dl]) -dnl Temporary hack for MiNT. Some functions (writev, snprintf) are -dnl not in the libc but in libport (for political reasons). This check -dnl can hopefully be removed soon. Please use the default action -dnl for this macro (not LIBS=...), otherwise the check for dbopen -dnl will fail. -AC_CHECK_LIB(port, writev) - #================= # Check for libelf library. Prefer external, otherwise none. WITH_LIBELF_LIB= @@ -347,9 +337,8 @@ AC_HEADER_MAJOR AC_HEADER_DIRENT AC_CHECK_HEADERS(limits.h) -AC_CHECK_HEADERS(fcntl.h getopt.h memory.h) +AC_CHECK_HEADERS(fcntl.h getopt.h) -AC_CHECK_HEADERS(sys/ipc.h) AC_CHECK_HEADERS(sys/utsname.h) AC_CHECK_HEADERS(sys/systemcfg.h) |