- Timestamp:
- Jul 15, 2008, 10:15:47 PM (14 years ago)
- Location:
- zzuf/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
zzuf/trunk/configure.ac
r2366 r2523 27 27 AC_SUBST(DLL_LDFLAGS) 28 28 29 AC_CHECK_HEADERS(windows.h winsock2.h io.h process.h unistd.h inttypes.h stdint.h getopt.h libc.h malloc.h dlfcn.h regex.h sys/ socket.h netinet/in.h sys/uio.h aio.h sys/mman.h sys/wait.h sys/resource.h sys/time.h endian.h)29 AC_CHECK_HEADERS(windows.h winsock2.h io.h process.h unistd.h inttypes.h stdint.h getopt.h libc.h malloc.h dlfcn.h regex.h sys/cdefs.h sys/socket.h netinet/in.h sys/uio.h aio.h sys/mman.h sys/wait.h sys/resource.h sys/time.h endian.h) 30 30 31 31 AC_CHECK_FUNCS(setenv waitpid setrlimit gettimeofday fork kill pipe _pipe) -
zzuf/trunk/src/lib-mem.c
r2355 r2523 21 21 /* Need this for RTLD_NEXT */ 22 22 #define _GNU_SOURCE 23 /* Need this for MAP_ANON and valloc() on FreeBSD (together with cdefs.h) */ 24 #define _BSD_SOURCE 23 25 /* Use this to get mmap64() on glibc systems */ 24 26 #define _LARGEFILE64_SOURCE … … 38 40 #include <signal.h> 39 41 42 #if defined HAVE_SYS_CDEFS_H 43 # include <sys/cdefs.h> 44 #endif 40 45 #if defined HAVE_MALLOC_H 41 46 # include <malloc.h>
Note: See TracChangeset
for help on using the changeset viewer.