preparing for release of 2.4.1
[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
50abd20b
AT
5# compile with optimisation and without debugging by default
6CFLAGS=${CFLAGS-"-O"}
7
8de330a3
AT
8AC_CANONICAL_SYSTEM
9AC_VALIDATE_CACHE_SYSTEM_TYPE
10
c627d613
AT
11dnl Checks for programs.
12AC_PROG_CC
13AC_PROG_INSTALL
14AC_SUBST(SHELL)
15
7b8356d0
AT
16AC_CHECK_PROG(HAVE_REMSH, remsh, 1, 0)
17AC_DEFINE_UNQUOTED(HAVE_REMSH, $HAVE_REMSH)
18
cd957c70 19AC_C_BIGENDIAN
c627d613 20AC_HEADER_DIRENT
c627d613
AT
21AC_HEADER_TIME
22AC_HEADER_SYS_WAIT
8bf73749 23AC_CHECK_HEADERS(sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h unistd.h utime.h grp.h)
94481d91 24AC_CHECK_HEADERS(compat.h sys/param.h ctype.h sys/wait.h sys/ioctl.h)
fdd71e17 25AC_CHECK_HEADERS(sys/filio.h string.h stdlib.h sys/socket.h sys/mode.h)
932be9aa 26AC_CHECK_HEADERS(glob.h)
c627d613
AT
27
28AC_CHECK_SIZEOF(int)
29AC_CHECK_SIZEOF(long)
30AC_CHECK_SIZEOF(short)
31
32AC_C_INLINE
33
34AC_TYPE_SIGNAL
35AC_TYPE_UID_T
36AC_TYPE_MODE_T
37AC_TYPE_OFF_T
38AC_TYPE_SIZE_T
39AC_TYPE_PID_T
9422bb3f 40AC_TYPE_GETGROUPS
c627d613 41AC_STRUCT_ST_RDEV
dc5ddbcc 42AC_CHECK_TYPE(ino_t,unsigned)
c627d613 43
7b3d4257 44AC_CACHE_CHECK([for errno in errno.h],rsync_cv_errno, [
7597e1a9 45 AC_TRY_COMPILE([#include <errno.h>],[int i = errno],
7b3d4257
AT
46 rsync_cv_errno=yes,rsync_cv_have_errno_decl=no)])
47if test x"$rsync_cv_errno" = x"yes"; then
7597e1a9
AT
48 AC_DEFINE(HAVE_ERRNO_DECL)
49fi
c627d613
AT
50
51AC_FUNC_MEMCMP
c627d613 52AC_FUNC_UTIME_NULL
e68f3481 53AC_CHECK_FUNCS(waitpid wait4 getcwd strdup strerror chown chmod mknod)
e0414f42 54AC_CHECK_FUNCS(fchmod fstat strchr readlink link utime utimes strftime)
79fc6bdb 55AC_CHECK_FUNCS(memmove lchown vsnprintf snprintf setsid glob strpbrk)
08f15335 56AC_CHECK_FUNCS(strlcat strlcpy inet_aton socketpair)
c627d613 57
79fc6bdb 58AC_CACHE_CHECK([for working fnmatch],rsync_cv_HAVE_FNMATCH,[
c627d613 59AC_TRY_RUN([#include <fnmatch.h>
e7d6e0aa
AT
60main() { exit((fnmatch("*.o", "x.o", FNM_PATHNAME) == 0 &&
61 fnmatch("a/b/*", "a/b/c/d", FNM_PATHNAME) != 0) ? 0: 1); }],
79fc6bdb
DD
62rsync_cv_HAVE_FNMATCH=yes,rsync_cv_HAVE_FNMATCH=no,rsync_cv_HAVE_FNMATCH=cross)])
63if test x"$rsync_cv_HAVE_FNMATCH" = x"yes"; then
64 AC_DEFINE(HAVE_FNMATCH)
65fi
66
67# sometimes getopt_long cannot parse same arguments twice
68# e.g. on certain versions of CygWin32
69AC_CACHE_CHECK([for working getopt_long],rsync_cv_HAVE_GETOPT_LONG,[
70AC_TRY_RUN([#include <getopt.h>
71main() {
72 int i, x = 0; char *argv[] = { "x", "--xx" };
73 struct option o[] = {{"xx", 0, 0, 1}, {0,0,0,0}};
74 getopt_long(2, argv, "x", o, &i) == 1 ? x++ : 0; optind = 0;
75 getopt_long(2, argv, "x", o, &i) == 1 ? x++ : 0;
76 exit(x == 2 ? 0 : 1);
77}], rsync_cv_HAVE_GETOPT_LONG=yes,rsync_cv_HAVE_GETOPT_LONG=no,
78 rsync_cv_HAVE_GETOPT_LONG=cross)])
79if test x"$rsync_cv_HAVE_GETOPT_LONG" = x"yes"; then
80 AC_DEFINE(HAVE_GETOPT_LONG)
81fi
c627d613 82
79fc6bdb 83AC_CACHE_CHECK([for long long],rsync_cv_HAVE_LONGLONG,[
0d0e2e93 84AC_TRY_RUN([#include <stdio.h>
efb2f6bf 85main() { long long x = 1000000; x *= x; exit(((x/1000000) == 1000000)? 0: 1); }],
79fc6bdb
DD
86rsync_cv_HAVE_LONGLONG=yes,rsync_cv_HAVE_LONGLONG=no,rsync_cv_HAVE_LONGLONG=cross)])
87if test x"$rsync_cv_HAVE_LONGLONG" = x"yes"; then
7597e1a9
AT
88 AC_DEFINE(HAVE_LONGLONG)
89fi
0d0e2e93 90
7b3d4257 91AC_CACHE_CHECK([for off64_t],rsync_cv_HAVE_OFF64_T,[
bcacc18b
AT
92AC_TRY_RUN([#include <stdio.h>
93#include <sys/stat.h>
7597e1a9 94main() { 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
95rsync_cv_HAVE_OFF64_T=yes,rsync_cv_HAVE_OFF64_T=no,rsync_cv_HAVE_OFF64_T=cross)])
96if test x"$rsync_cv_HAVE_OFF64_T" = x"yes"; then
7597e1a9
AT
97 AC_DEFINE(HAVE_OFF64_T)
98fi
debb4505 99
79fc6bdb 100AC_CACHE_CHECK([for short ino_t],rsync_cv_HAVE_SHORT_INO_T,[
c29ee43d
AT
101AC_TRY_RUN([#include <stdio.h>
102#include <sys/types.h>
103#include <sys/stat.h>
104main() { if (sizeof(ino_t) < sizeof(unsigned int)) return 0; return 1; }],
79fc6bdb
DD
105rsync_cv_HAVE_SHORT_INO_T=yes,rsync_cv_HAVE_SHORT_INO_T=no,rsync_cv_HAVE_SHORT_INO_T=cross)])
106if test x"$rsync_cv_HAVE_SHORT_INO_T" = x"yes"; then
107 AC_DEFINE(HAVE_SHORT_INO_T)
108fi
c29ee43d 109
7b3d4257 110AC_CACHE_CHECK([for unsigned char],rsync_cv_HAVE_UNSIGNED_CHAR,[
debb4505
AT
111AC_TRY_RUN([#include <stdio.h>
112main() { char c; c=250; exit((c > 0)?0:1); }],
7b3d4257
AT
113rsync_cv_HAVE_UNSIGNED_CHAR=yes,rsync_cv_HAVE_UNSIGNED_CHAR=no,rsync_cv_HAVE_UNSIGNED_CHAR=cross)])
114if test x"$rsync_cv_HAVE_UNSIGNED_CHAR" = x"yes"; then
7597e1a9
AT
115 AC_DEFINE(HAVE_UNSIGNED_CHAR)
116fi
bcacc18b 117
7b3d4257 118AC_CACHE_CHECK([for broken readdir],rsync_cv_HAVE_BROKEN_READDIR,[
59503278
AT
119AC_TRY_RUN([#include <sys/types.h>
120#include <dirent.h>
121main() { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
122if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
7597e1a9 123di->d_name[0] == 0) exit(0); exit(1);} ],
7b3d4257
AT
124rsync_cv_HAVE_BROKEN_READDIR=yes,rsync_cv_HAVE_BROKEN_READDIR=no,rsync_cv_HAVE_BROKEN_READDIR=cross)])
125if test x"$rsync_cv_HAVE_BROKEN_READDIR" = x"yes"; then
7597e1a9
AT
126 AC_DEFINE(HAVE_BROKEN_READDIR)
127fi
1e9f155a 128
7b3d4257 129AC_CACHE_CHECK([for utimbuf],rsync_cv_HAVE_UTIMBUF,[
d6e6ecbd
AT
130AC_TRY_COMPILE([#include <sys/types.h>
131#include <utime.h>],
7597e1a9 132[struct utimbuf tbuf; tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));],
7b3d4257
AT
133rsync_cv_HAVE_UTIMBUF=yes,rsync_cv_HAVE_UTIMBUF=no,rsync_cv_HAVE_UTIMBUF=cross)])
134if test x"$rsync_cv_HAVE_UTIMBUF" = x"yes"; then
7597e1a9
AT
135 AC_DEFINE(HAVE_UTIMBUF)
136fi
d6e6ecbd 137
3060d4aa
AT
138AC_CACHE_CHECK([if gettimeofday takes tz argument],rsync_cv_HAVE_GETTIMEOFDAY_TZ,[
139AC_TRY_RUN([
140#include <sys/time.h>
141#include <unistd.h>
142main() { struct timeval tv; exit(gettimeofday(&tv, NULL));}],
143 rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes,rsync_cv_HAVE_GETTIMEOFDAY_TZ=no,rsync_cv_HAVE_GETTIMEOFDAY_TZ=cross)])
144if test x"$rsync_cv_HAVE_GETTIMEOFDAY_TZ" = x"yes"; then
145 AC_DEFINE(HAVE_GETTIMEOFDAY_TZ)
146fi
147
148
7b3d4257
AT
149AC_CACHE_CHECK([for broken inet_ntoa],rsync_cv_REPLACE_INET_NTOA,[
150AC_TRY_RUN([
151#include <stdio.h>
152#include <sys/types.h>
153#include <netinet/in.h>
154#include <arpa/inet.h>
155main() { struct in_addr ip; ip.s_addr = 0x12345678;
156if (strcmp(inet_ntoa(ip),"18.52.86.120") &&
157 strcmp(inet_ntoa(ip),"120.86.52.18")) { exit(0); }
158exit(1);}],
159 rsync_cv_REPLACE_INET_NTOA=yes,rsync_cv_REPLACE_INET_NTOA=no,rsync_cv_REPLACE_INET_NTOA=cross)])
160if test x"$rsync_cv_REPLACE_INET_NTOA" = x"yes"; then
161 AC_DEFINE(REPLACE_INET_NTOA)
162fi
163
8ef4ffd6 164# The following test taken from the cvs sources
7d29d4ba
AT
165# If we can't find connect, try looking in -lsocket, -lnsl, and -linet.
166# The Irix 5 libc.so has connect and gethostbyname, but Irix 5 also has
167# libsocket.so which has a bad implementation of gethostbyname (it
168# only looks in /etc/hosts), so we only look for -lsocket if we need
169# it.
7597e1a9
AT
170AC_CHECK_FUNCS(connect)
171if test x"$ac_cv_func_connect" = x"no"; then
172 case "$LIBS" in
173 *-lnsl*) ;;
174 *) AC_CHECK_LIB(nsl_s, printf) ;;
175 esac
176 case "$LIBS" in
177 *-lnsl*) ;;
178 *) AC_CHECK_LIB(nsl, printf) ;;
179 esac
180 case "$LIBS" in
181 *-lsocket*) ;;
182 *) AC_CHECK_LIB(socket, connect) ;;
183 esac
184 case "$LIBS" in
185 *-linet*) ;;
186 *) AC_CHECK_LIB(inet, connect) ;;
187 esac
188 dnl We can't just call AC_CHECK_FUNCS(connect) here, because the value
189 dnl has been cached.
190 if test x"$ac_cv_lib_socket_connect" = x"yes" ||
191 test x"$ac_cv_lib_inet_connect" = x"yes"; then
192 # ac_cv_func_connect=yes
193 # don't! it would cause AC_CHECK_FUNC to succeed next time configure is run
194 AC_DEFINE(HAVE_CONNECT)
195 fi
196fi
7d29d4ba 197
6bd98f06
DD
198#
199# if we can't find strcasecmp, look in -lresolv (for Unixware at least)
200#
201AC_CHECK_FUNCS(strcasecmp)
202if test x"$ac_cv_func_strcasecmp" = x"no"; then
203 AC_CHECK_LIB(resolv, strcasecmp)
204fi
205
692da0b5
DD
206#
207# The following test was mostly taken from the tcl/tk plus patches
208#
79fc6bdb 209AC_CACHE_CHECK([whether -c -o works],rsync_cv_DASHC_WORKS_WITH_DASHO,[
692da0b5
DD
210rm -rf conftest*
211cat > conftest.$ac_ext <<EOF
212int main() { return 0; }
213EOF
214${CC-cc} -c -o conftest..o conftest.$ac_ext
215if test -f conftest..o; then
79fc6bdb
DD
216 rsync_cv_DASHC_WORKS_WITH_DASHO=yes
217else
218 rsync_cv_DASHC_WORKS_WITH_DASHO=no
219fi
220rm -rf conftest*
221])
222if test x"$rsync_cv_DASHC_WORKS_WITH_DASHO" = x"yes"; then
692da0b5
DD
223 OBJ_SAVE="#"
224 OBJ_RESTORE="#"
225 CC_SHOBJ_FLAG='-o $@'
692da0b5
DD
226else
227 OBJ_SAVE=' @b=`basename $@ .o`;rm -f $$b.o.sav;if test -f $$b.o; then mv $$b.o $$b.o.sav;fi;'
228 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'
229 CC_SHOBJ_FLAG=""
692da0b5 230fi
79fc6bdb 231
692da0b5
DD
232AC_SUBST(OBJ_SAVE)
233AC_SUBST(OBJ_RESTORE)
234AC_SUBST(CC_SHOBJ_FLAG)
235
7d29d4ba 236
db199cfa 237AC_OUTPUT(Makefile lib/dummy zlib/dummy)