1aa07875826c3e0ea24675bcd3bfd0f86e85f82b
[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_CHECK_PROG(HAVE_REMSH, remsh, 1, 0)
11 AC_DEFINE_UNQUOTED(HAVE_REMSH, $HAVE_REMSH)
12
13 AC_HEADER_DIRENT
14 AC_HEADER_TIME
15 AC_HEADER_SYS_WAIT
16 AC_CHECK_HEADERS(sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h unistd.h utime.h grp.h)
17 AC_CHECK_HEADERS(compat.h sys/param.h ctype.h sys/wait.h sys/ioctl.h)
18 AC_CHECK_HEADERS(sys/filio.h string.h stdlib.h sys/socket.h sys/mode.h)
19
20 AC_CHECK_SIZEOF(int)
21 AC_CHECK_SIZEOF(long)
22 AC_CHECK_SIZEOF(short)
23
24 AC_C_INLINE
25
26 AC_TYPE_SIGNAL
27 AC_TYPE_UID_T
28 AC_TYPE_MODE_T
29 AC_TYPE_OFF_T
30 AC_TYPE_SIZE_T
31 AC_TYPE_PID_T
32 AC_STRUCT_ST_RDEV
33 AC_CHECK_TYPE(ino_t,unsigned)
34
35 echo $ac_n "checking for errno in errno.h... $ac_c"
36 AC_TRY_COMPILE([#include <errno.h>],[int i = errno],
37 echo yes; AC_DEFINE(HAVE_ERRNO_DECL),
38 echo no)
39
40 AC_FUNC_MEMCMP
41 AC_FUNC_UTIME_NULL
42 AC_CHECK_FUNCS(mmap munmap waitpid getcwd strdup strerror chown chmod mknod)
43 AC_CHECK_FUNCS(fchmod fstat strchr bcopy bzero readlink link utime utimes)
44 AC_CHECK_FUNCS(memmove getopt_long lchown setlinebuf vsnprintf setsid glob strpbrk)
45
46 echo $ac_n "checking for working fnmatch... $ac_c"
47 AC_TRY_RUN([#include <fnmatch.h>
48 main() { exit(fnmatch("*.o", "x.o", 0) == 0? 0: 1); }],
49 echo yes;AC_DEFINE(HAVE_FNMATCH), 
50 echo no)
51
52 echo $ac_n "checking for long long ... $ac_c"
53 AC_TRY_RUN([#include <stdio.h>
54 main() { long long x = 1000000; x *= x; exit(((x/1000000) == 1000000)? 0: 1); }],
55 echo yes;AC_DEFINE(HAVE_LONGLONG), 
56 echo no)
57
58 echo $ac_n "checking for off64_t ... $ac_c"
59 AC_TRY_RUN([#include <stdio.h>
60 #include <sys/stat.h>
61 main() { struct stat64 st; off64_t s; if (sizeof(off_t) == sizeof(off64_t)) return 1; exit((lstat64("/dev/null", &st)==0)?0:1); }],
62 echo yes;AC_DEFINE(HAVE_OFF64_T), 
63 echo no)
64
65 echo $ac_n "checking for unsigned char ... $ac_c"
66 AC_TRY_RUN([#include <stdio.h>
67 main() { char c; c=250; exit((c > 0)?0:1); }],
68 echo yes;AC_DEFINE(HAVE_UNSIGNED_CHAR), 
69 echo no)
70
71 echo $ac_n "checking for broken readdir ... $ac_c"
72 AC_TRY_RUN([#include <sys/types.h>
73 #include <dirent.h>
74 main() { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
75 if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
76 di->d_name[0] == 0) return 0; return 1;} ],
77 echo yes - you are using the broken /usr/ucb/cc;AC_DEFINE(HAVE_BROKEN_READDIR), 
78 echo no)
79
80 echo $ac_n "checking for utimbuf ... $ac_c"
81 AC_TRY_COMPILE([#include <sys/types.h>
82 #include <utime.h>],
83 [struct utimbuf tbuf;  tbuf.actime = 0; tbuf.modtime = 1; return utime("foo.c",&tbuf);],
84 echo yes;AC_DEFINE(HAVE_UTIMBUF), 
85 echo no)
86
87 # The following test taken from the cvs sources
88 # If we can't find connect, try looking in -lsocket, -lnsl, and -linet.
89 # The Irix 5 libc.so has connect and gethostbyname, but Irix 5 also has
90 # libsocket.so which has a bad implementation of gethostbyname (it
91 # only looks in /etc/hosts), so we only look for -lsocket if we need
92 # it.
93 AC_CHECK_FUNC(connect, :, 
94 [case "$LIBS" in
95 *-lnsl*) ;;
96 *) AC_CHECK_LIB(nsl_s, printf) ;;
97 esac
98 case "$LIBS" in
99 *-lnsl*) ;;
100 *) AC_CHECK_LIB(nsl, printf) ;;
101 esac
102 case "$LIBS" in
103 *-lsocket*) ;;
104 *) AC_CHECK_LIB(socket, connect) ;;
105 esac
106 case "$LIBS" in
107 *-linet*) ;;
108 *) AC_CHECK_LIB(inet, connect) ;;
109 esac
110 dnl We can't just call AC_CHECK_FUNCS(connect) here, because the value
111 dnl has been cached.
112 if test "$ac_cv_lib_socket_connect" = "yes" || 
113    test "$ac_cv_lib_inet_connect" = "yes"; then
114   ac_cv_func_connect=yes
115   AC_DEFINE(HAVE_CONNECT)
116 fi])
117
118
119 AC_OUTPUT(Makefile lib/dummy zlib/dummy)