new header tests for sunos
[rsync/rsync.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(byteorder.h)
3 AC_CONFIG_HEADER(config.h)
4
5 dnl Checks for programs.
6 AC_PROG_CC
7 AC_PROG_INSTALL
8 AC_SUBST(SHELL)
9
10 AC_HEADER_DIRENT
11 AC_HEADER_TIME
12 AC_HEADER_SYS_WAIT
13 AC_CHECK_HEADERS(sys/fcntl.h fcntl.h sys/time.h unistd.h utime.h grp.h)
14 AC_CHECK_HEADERS(compat.h sys/param.h ctype.h sys/wait.h sys/ioctl.h)
15 AC_CHECK_HEADERS(sys/filio.h string.h stdlib.h)
16
17 AC_CHECK_SIZEOF(int)
18 AC_CHECK_SIZEOF(long)
19 AC_CHECK_SIZEOF(short)
20
21 AC_C_INLINE
22
23 AC_TYPE_SIGNAL
24 AC_TYPE_UID_T
25 AC_TYPE_MODE_T
26 AC_TYPE_OFF_T
27 AC_TYPE_SIZE_T
28 AC_TYPE_PID_T
29 AC_STRUCT_ST_RDEV
30 AC_CHECK_TYPE(ino_t,unsigned)
31
32 echo $ac_n "checking for errno in errno.h... $ac_c"
33 AC_TRY_COMPILE([#include <errno.h>],[int i = errno],
34 echo yes; AC_DEFINE(HAVE_ERRNO_DECL),
35 echo no)
36
37 AC_FUNC_MEMCMP
38 AC_FUNC_MMAP
39 AC_FUNC_UTIME_NULL
40 AC_CHECK_FUNCS(waitpid strtok pipe getcwd mkdir strdup strerror chown chmod mknod)
41 AC_CHECK_FUNCS(fchmod fstat strchr bcopy bzero readlink link utime utimes)
42 AC_CHECK_FUNCS(memmove getopt_long)
43
44 echo $ac_n "checking for working fnmatch... $ac_c"
45 AC_TRY_RUN([#include <fnmatch.h>
46 main() { exit(fnmatch("*.o", "x.o", 0) == 0? 0: 1); }],
47 echo yes;AC_DEFINE(HAVE_FNMATCH), 
48 echo no)
49
50 AC_OUTPUT(Makefile)