changed strlcat() and strlcpy() to have the same semantics as the
[rsync/rsync.git] / configure.in
CommitLineData
c627d613
AT
1dnl Process this file with autoconf to produce a configure script.
2AC_INIT(byteorder.h)
3AC_CONFIG_HEADER(config.h)
4
8de330a3
AT
5AC_CANONICAL_SYSTEM
6AC_VALIDATE_CACHE_SYSTEM_TYPE
7
c627d613
AT
8dnl Checks for programs.
9AC_PROG_CC
10AC_PROG_INSTALL
11AC_SUBST(SHELL)
12
7b8356d0
AT
13AC_CHECK_PROG(HAVE_REMSH, remsh, 1, 0)
14AC_DEFINE_UNQUOTED(HAVE_REMSH, $HAVE_REMSH)
15
cd957c70 16AC_C_BIGENDIAN
c627d613 17AC_HEADER_DIRENT
c627d613
AT
18AC_HEADER_TIME
19AC_HEADER_SYS_WAIT
8bf73749 20AC_CHECK_HEADERS(sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h unistd.h utime.h grp.h)
94481d91 21AC_CHECK_HEADERS(compat.h sys/param.h ctype.h sys/wait.h sys/ioctl.h)
fdd71e17 22AC_CHECK_HEADERS(sys/filio.h string.h stdlib.h sys/socket.h sys/mode.h)
932be9aa 23AC_CHECK_HEADERS(glob.h)
c627d613
AT
24
25AC_CHECK_SIZEOF(int)
26AC_CHECK_SIZEOF(long)
27AC_CHECK_SIZEOF(short)
28
29AC_C_INLINE
30
31AC_TYPE_SIGNAL
32AC_TYPE_UID_T
33AC_TYPE_MODE_T
34AC_TYPE_OFF_T
35AC_TYPE_SIZE_T
36AC_TYPE_PID_T
37AC_STRUCT_ST_RDEV
dc5ddbcc 38AC_CHECK_TYPE(ino_t,unsigned)
c627d613 39
7b3d4257 40AC_CACHE_CHECK([for errno in errno.h],rsync_cv_errno, [
7597e1a9 41 AC_TRY_COMPILE([#include <errno.h>],[int i = errno],
7b3d4257
AT
42 rsync_cv_errno=yes,rsync_cv_have_errno_decl=no)])
43if test x"$rsync_cv_errno" = x"yes"; then
7597e1a9
AT
44 AC_DEFINE(HAVE_ERRNO_DECL)
45fi
c627d613
AT
46
47AC_FUNC_MEMCMP
c627d613 48AC_FUNC_UTIME_NULL
bb0f7089 49AC_CHECK_FUNCS(mmap munmap waitpid getcwd strdup strerror chown chmod mknod)
e0414f42 50AC_CHECK_FUNCS(fchmod fstat strchr readlink link utime utimes strftime)
f8be5ef4 51AC_CHECK_FUNCS(memmove getopt_long lchown vsnprintf snprintf setsid glob strpbrk)
c627d613 52
e260d7fb 53echo $ac_n "checking for working fnmatch... $ac_c"
c627d613
AT
54AC_TRY_RUN([#include <fnmatch.h>
55main() { exit(fnmatch("*.o", "x.o", 0) == 0? 0: 1); }],
56echo yes;AC_DEFINE(HAVE_FNMATCH),
57echo no)
58
7b3d4257 59AC_CACHE_CHECK([for long long],rsync_cv_have_longlong,[
0d0e2e93 60AC_TRY_RUN([#include <stdio.h>
efb2f6bf 61main() { long long x = 1000000; x *= x; exit(((x/1000000) == 1000000)? 0: 1); }],
7b3d4257
AT
62rsync_cv_have_longlong=yes,rsync_cv_have_longlong=no,rsync_cv_have_longlong=cross)])
63if test x"$rsync_cv_have_longlong" = x"yes"; then
7597e1a9
AT
64 AC_DEFINE(HAVE_LONGLONG)
65fi
0d0e2e93 66
7b3d4257 67AC_CACHE_CHECK([for off64_t],rsync_cv_HAVE_OFF64_T,[
bcacc18b
AT
68AC_TRY_RUN([#include <stdio.h>
69#include <sys/stat.h>
7597e1a9 70main() { struct stat64 st; off64_t s; if (sizeof(off_t) == sizeof(off64_t)) exit(1); exit((lstat64("/dev/null", &st)==0)?0:1); }],
7b3d4257
AT
71rsync_cv_HAVE_OFF64_T=yes,rsync_cv_HAVE_OFF64_T=no,rsync_cv_HAVE_OFF64_T=cross)])
72if test x"$rsync_cv_HAVE_OFF64_T" = x"yes"; then
7597e1a9
AT
73 AC_DEFINE(HAVE_OFF64_T)
74fi
debb4505 75
c29ee43d
AT
76echo $ac_n "checking for short ino_t ... $ac_c"
77AC_TRY_RUN([#include <stdio.h>
78#include <sys/types.h>
79#include <sys/stat.h>
80main() { if (sizeof(ino_t) < sizeof(unsigned int)) return 0; return 1; }],
81echo yes;AC_DEFINE(HAVE_SHORT_INO_T),
82echo no)
83
7b3d4257 84AC_CACHE_CHECK([for unsigned char],rsync_cv_HAVE_UNSIGNED_CHAR,[
debb4505
AT
85AC_TRY_RUN([#include <stdio.h>
86main() { char c; c=250; exit((c > 0)?0:1); }],
7b3d4257
AT
87rsync_cv_HAVE_UNSIGNED_CHAR=yes,rsync_cv_HAVE_UNSIGNED_CHAR=no,rsync_cv_HAVE_UNSIGNED_CHAR=cross)])
88if test x"$rsync_cv_HAVE_UNSIGNED_CHAR" = x"yes"; then
7597e1a9
AT
89 AC_DEFINE(HAVE_UNSIGNED_CHAR)
90fi
bcacc18b 91
7b3d4257 92AC_CACHE_CHECK([for broken readdir],rsync_cv_HAVE_BROKEN_READDIR,[
59503278
AT
93AC_TRY_RUN([#include <sys/types.h>
94#include <dirent.h>
95main() { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
96if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
7597e1a9 97di->d_name[0] == 0) exit(0); exit(1);} ],
7b3d4257
AT
98rsync_cv_HAVE_BROKEN_READDIR=yes,rsync_cv_HAVE_BROKEN_READDIR=no,rsync_cv_HAVE_BROKEN_READDIR=cross)])
99if test x"$rsync_cv_HAVE_BROKEN_READDIR" = x"yes"; then
7597e1a9
AT
100 AC_DEFINE(HAVE_BROKEN_READDIR)
101fi
1e9f155a 102
7b3d4257 103AC_CACHE_CHECK([for utimbuf],rsync_cv_HAVE_UTIMBUF,[
d6e6ecbd
AT
104AC_TRY_COMPILE([#include <sys/types.h>
105#include <utime.h>],
7597e1a9 106[struct utimbuf tbuf; tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));],
7b3d4257
AT
107rsync_cv_HAVE_UTIMBUF=yes,rsync_cv_HAVE_UTIMBUF=no,rsync_cv_HAVE_UTIMBUF=cross)])
108if test x"$rsync_cv_HAVE_UTIMBUF" = x"yes"; then
7597e1a9
AT
109 AC_DEFINE(HAVE_UTIMBUF)
110fi
d6e6ecbd 111
7b3d4257
AT
112AC_CACHE_CHECK([for broken inet_ntoa],rsync_cv_REPLACE_INET_NTOA,[
113AC_TRY_RUN([
114#include <stdio.h>
115#include <sys/types.h>
116#include <netinet/in.h>
117#include <arpa/inet.h>
118main() { struct in_addr ip; ip.s_addr = 0x12345678;
119if (strcmp(inet_ntoa(ip),"18.52.86.120") &&
120 strcmp(inet_ntoa(ip),"120.86.52.18")) { exit(0); }
121exit(1);}],
122 rsync_cv_REPLACE_INET_NTOA=yes,rsync_cv_REPLACE_INET_NTOA=no,rsync_cv_REPLACE_INET_NTOA=cross)])
123if test x"$rsync_cv_REPLACE_INET_NTOA" = x"yes"; then
124 AC_DEFINE(REPLACE_INET_NTOA)
125fi
126
8ef4ffd6 127# The following test taken from the cvs sources
7d29d4ba
AT
128# If we can't find connect, try looking in -lsocket, -lnsl, and -linet.
129# The Irix 5 libc.so has connect and gethostbyname, but Irix 5 also has
130# libsocket.so which has a bad implementation of gethostbyname (it
131# only looks in /etc/hosts), so we only look for -lsocket if we need
132# it.
7597e1a9
AT
133AC_CHECK_FUNCS(connect)
134if test x"$ac_cv_func_connect" = x"no"; then
135 case "$LIBS" in
136 *-lnsl*) ;;
137 *) AC_CHECK_LIB(nsl_s, printf) ;;
138 esac
139 case "$LIBS" in
140 *-lnsl*) ;;
141 *) AC_CHECK_LIB(nsl, printf) ;;
142 esac
143 case "$LIBS" in
144 *-lsocket*) ;;
145 *) AC_CHECK_LIB(socket, connect) ;;
146 esac
147 case "$LIBS" in
148 *-linet*) ;;
149 *) AC_CHECK_LIB(inet, connect) ;;
150 esac
151 dnl We can't just call AC_CHECK_FUNCS(connect) here, because the value
152 dnl has been cached.
153 if test x"$ac_cv_lib_socket_connect" = x"yes" ||
154 test x"$ac_cv_lib_inet_connect" = x"yes"; then
155 # ac_cv_func_connect=yes
156 # don't! it would cause AC_CHECK_FUNC to succeed next time configure is run
157 AC_DEFINE(HAVE_CONNECT)
158 fi
159fi
7d29d4ba 160
692da0b5
DD
161#
162# The following test was mostly taken from the tcl/tk plus patches
163#
164echo $ac_n "checking whether -c -o works ... $ac_c"
165rm -rf conftest*
166cat > conftest.$ac_ext <<EOF
167int main() { return 0; }
168EOF
169${CC-cc} -c -o conftest..o conftest.$ac_ext
170if test -f conftest..o; then
171 OBJ_SAVE="#"
172 OBJ_RESTORE="#"
173 CC_SHOBJ_FLAG='-o $@'
174 echo yes
175else
176 OBJ_SAVE=' @b=`basename $@ .o`;rm -f $$b.o.sav;if test -f $$b.o; then mv $$b.o $$b.o.sav;fi;'
177 OBJ_RESTORE=' @b=`basename $@ .o`;if test "$$b.o" != "$@"; then mv $$b.o $@; if test -f $$b.o.sav; then mv $$b.o.sav $$b.o; fi; fi'
178 CC_SHOBJ_FLAG=""
179 echo no
180fi
181rm -rf conftest*
182AC_SUBST(OBJ_SAVE)
183AC_SUBST(OBJ_RESTORE)
184AC_SUBST(CC_SHOBJ_FLAG)
185
7d29d4ba 186
db199cfa 187AC_OUTPUT(Makefile lib/dummy zlib/dummy)