Changeset 1695 for zzuf/trunk/configure.ac
- Timestamp:
- Jan 18, 2007, 1:21:07 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
zzuf/trunk/configure.ac
r1674 r1695 15 15 AC_PROG_LIBTOOL 16 16 17 AC_CHECK_HEADERS(inttypes.h stdint.h getopt.h libc.h malloc.h )18 AC_CHECK_FUNCS(open64 lseek64 mmap64 fopen64 fseeko _IO_getc getline getdelim __getdelim fgetln __srefill map_fd memalign posix_memalign )17 AC_CHECK_HEADERS(inttypes.h stdint.h getopt.h libc.h malloc.h dlfcn.h regex.h sys/socket.h sys/uio.h aio.h sys/mman.h sys/wait.h sys/resource.h) 18 AC_CHECK_FUNCS(open64 lseek64 mmap64 fopen64 fseeko _IO_getc getline getdelim __getdelim fgetln __srefill map_fd memalign posix_memalign aio_read accept socket readv pread recv recvfrom recvmsg mmap valloc sigaction) 19 19 AC_CHECK_TYPES(sighandler_t, [], [], 20 20 [#define _GNU_SOURCE … … 25 25 [#include <sys/types.h> 26 26 #include <sys/socket.h>]) 27 28 AC_MSG_CHECKING(for read() prototype) 29 AC_TRY_COMPILE([#include <unistd.h>], 30 [ssize_t read(int fd, void *buf, size_t count);], 31 [AC_MSG_RESULT(ssize_t read(... size_t);) 32 AC_DEFINE(READ_USES_SSIZE_T, 1, [Define to 1 if read() uses ssize_t.])], 33 [AC_MSG_RESULT(int read(... unsigned int);)]) 27 34 28 35 AC_CHECK_FUNCS(getopt_long,
Note: See TracChangeset
for help on using the changeset viewer.