use do_open() instead of open() in several places to help the WinXX port
[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)
9422bb3f 56AC_CHECK_FUNCS(strlcat strlcpy)
c627d613 57
79fc6bdb 58AC_CACHE_CHECK([for working fnmatch],rsync_cv_HAVE_FNMATCH,[
c627d613 59AC_TRY_RUN([#include <fnmatch.h>
a8b9d4ed 60main() { exit(fnmatch("*.o", "x.o", FNM_PATHNAME) == 0? 0: 1); }],
79fc6bdb
DD
61rsync_cv_HAVE_FNMATCH=yes,rsync_cv_HAVE_FNMATCH=no,rsync_cv_HAVE_FNMATCH=cross)])
62if test x"$rsync_cv_HAVE_FNMATCH" = x"yes"; then
63 AC_DEFINE(HAVE_FNMATCH)
64fi
65
66# sometimes getopt_long cannot parse same arguments twice
67# e.g. on certain versions of CygWin32
68AC_CACHE_CHECK([for working getopt_long],rsync_cv_HAVE_GETOPT_LONG,[
69AC_TRY_RUN([#include <getopt.h>
70main() {
71 int i, x = 0; char *argv[] = { "x", "--xx" };
72 struct option o[] = {{"xx", 0, 0, 1}, {0,0,0,0}};
73 getopt_long(2, argv, "x", o, &i) == 1 ? x++ : 0; optind = 0;
74 getopt_long(2, argv, "x", o, &i) == 1 ? x++ : 0;
75 exit(x == 2 ? 0 : 1);
76}], rsync_cv_HAVE_GETOPT_LONG=yes,rsync_cv_HAVE_GETOPT_LONG=no,
77 rsync_cv_HAVE_GETOPT_LONG=cross)])
78if test x"$rsync_cv_HAVE_GETOPT_LONG" = x"yes"; then
79 AC_DEFINE(HAVE_GETOPT_LONG)
80fi
c627d613 81
79fc6bdb 82AC_CACHE_CHECK([for long long],rsync_cv_HAVE_LONGLONG,[
0d0e2e93 83AC_TRY_RUN([#include <stdio.h>
efb2f6bf 84main() { long long x = 1000000; x *= x; exit(((x/1000000) == 1000000)? 0: 1); }],
79fc6bdb
DD
85rsync_cv_HAVE_LONGLONG=yes,rsync_cv_HAVE_LONGLONG=no,rsync_cv_HAVE_LONGLONG=cross)])
86if test x"$rsync_cv_HAVE_LONGLONG" = x"yes"; then
7597e1a9
AT
87 AC_DEFINE(HAVE_LONGLONG)
88fi
0d0e2e93 89
7b3d4257 90AC_CACHE_CHECK([for off64_t],rsync_cv_HAVE_OFF64_T,[
bcacc18b
AT
91AC_TRY_RUN([#include <stdio.h>
92#include <sys/stat.h>
7597e1a9 93main() { 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
94rsync_cv_HAVE_OFF64_T=yes,rsync_cv_HAVE_OFF64_T=no,rsync_cv_HAVE_OFF64_T=cross)])
95if test x"$rsync_cv_HAVE_OFF64_T" = x"yes"; then
7597e1a9
AT
96 AC_DEFINE(HAVE_OFF64_T)
97fi
debb4505 98
79fc6bdb 99AC_CACHE_CHECK([for short ino_t],rsync_cv_HAVE_SHORT_INO_T,[
c29ee43d
AT
100AC_TRY_RUN([#include <stdio.h>
101#include <sys/types.h>
102#include <sys/stat.h>
103main() { if (sizeof(ino_t) < sizeof(unsigned int)) return 0; return 1; }],
79fc6bdb
DD
104rsync_cv_HAVE_SHORT_INO_T=yes,rsync_cv_HAVE_SHORT_INO_T=no,rsync_cv_HAVE_SHORT_INO_T=cross)])
105if test x"$rsync_cv_HAVE_SHORT_INO_T" = x"yes"; then
106 AC_DEFINE(HAVE_SHORT_INO_T)
107fi
c29ee43d 108
7b3d4257 109AC_CACHE_CHECK([for unsigned char],rsync_cv_HAVE_UNSIGNED_CHAR,[
debb4505
AT
110AC_TRY_RUN([#include <stdio.h>
111main() { char c; c=250; exit((c > 0)?0:1); }],
7b3d4257
AT
112rsync_cv_HAVE_UNSIGNED_CHAR=yes,rsync_cv_HAVE_UNSIGNED_CHAR=no,rsync_cv_HAVE_UNSIGNED_CHAR=cross)])
113if test x"$rsync_cv_HAVE_UNSIGNED_CHAR" = x"yes"; then
7597e1a9
AT
114 AC_DEFINE(HAVE_UNSIGNED_CHAR)
115fi
bcacc18b 116
7b3d4257 117AC_CACHE_CHECK([for broken readdir],rsync_cv_HAVE_BROKEN_READDIR,[
59503278
AT
118AC_TRY_RUN([#include <sys/types.h>
119#include <dirent.h>
120main() { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
121if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
7597e1a9 122di->d_name[0] == 0) exit(0); exit(1);} ],
7b3d4257
AT
123rsync_cv_HAVE_BROKEN_READDIR=yes,rsync_cv_HAVE_BROKEN_READDIR=no,rsync_cv_HAVE_BROKEN_READDIR=cross)])
124if test x"$rsync_cv_HAVE_BROKEN_READDIR" = x"yes"; then
7597e1a9
AT
125 AC_DEFINE(HAVE_BROKEN_READDIR)
126fi
1e9f155a 127
7b3d4257 128AC_CACHE_CHECK([for utimbuf],rsync_cv_HAVE_UTIMBUF,[
d6e6ecbd
AT
129AC_TRY_COMPILE([#include <sys/types.h>
130#include <utime.h>],
7597e1a9 131[struct utimbuf tbuf; tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));],
7b3d4257
AT
132rsync_cv_HAVE_UTIMBUF=yes,rsync_cv_HAVE_UTIMBUF=no,rsync_cv_HAVE_UTIMBUF=cross)])
133if test x"$rsync_cv_HAVE_UTIMBUF" = x"yes"; then
7597e1a9
AT
134 AC_DEFINE(HAVE_UTIMBUF)
135fi
d6e6ecbd 136
7b3d4257
AT
137AC_CACHE_CHECK([for broken inet_ntoa],rsync_cv_REPLACE_INET_NTOA,[
138AC_TRY_RUN([
139#include <stdio.h>
140#include <sys/types.h>
141#include <netinet/in.h>
142#include <arpa/inet.h>
143main() { struct in_addr ip; ip.s_addr = 0x12345678;
144if (strcmp(inet_ntoa(ip),"18.52.86.120") &&
145 strcmp(inet_ntoa(ip),"120.86.52.18")) { exit(0); }
146exit(1);}],
147 rsync_cv_REPLACE_INET_NTOA=yes,rsync_cv_REPLACE_INET_NTOA=no,rsync_cv_REPLACE_INET_NTOA=cross)])
148if test x"$rsync_cv_REPLACE_INET_NTOA" = x"yes"; then
149 AC_DEFINE(REPLACE_INET_NTOA)
150fi
151
8ef4ffd6 152# The following test taken from the cvs sources
7d29d4ba
AT
153# If we can't find connect, try looking in -lsocket, -lnsl, and -linet.
154# The Irix 5 libc.so has connect and gethostbyname, but Irix 5 also has
155# libsocket.so which has a bad implementation of gethostbyname (it
156# only looks in /etc/hosts), so we only look for -lsocket if we need
157# it.
7597e1a9
AT
158AC_CHECK_FUNCS(connect)
159if test x"$ac_cv_func_connect" = x"no"; then
160 case "$LIBS" in
161 *-lnsl*) ;;
162 *) AC_CHECK_LIB(nsl_s, printf) ;;
163 esac
164 case "$LIBS" in
165 *-lnsl*) ;;
166 *) AC_CHECK_LIB(nsl, printf) ;;
167 esac
168 case "$LIBS" in
169 *-lsocket*) ;;
170 *) AC_CHECK_LIB(socket, connect) ;;
171 esac
172 case "$LIBS" in
173 *-linet*) ;;
174 *) AC_CHECK_LIB(inet, connect) ;;
175 esac
176 dnl We can't just call AC_CHECK_FUNCS(connect) here, because the value
177 dnl has been cached.
178 if test x"$ac_cv_lib_socket_connect" = x"yes" ||
179 test x"$ac_cv_lib_inet_connect" = x"yes"; then
180 # ac_cv_func_connect=yes
181 # don't! it would cause AC_CHECK_FUNC to succeed next time configure is run
182 AC_DEFINE(HAVE_CONNECT)
183 fi
184fi
7d29d4ba 185
6bd98f06
DD
186#
187# if we can't find strcasecmp, look in -lresolv (for Unixware at least)
188#
189AC_CHECK_FUNCS(strcasecmp)
190if test x"$ac_cv_func_strcasecmp" = x"no"; then
191 AC_CHECK_LIB(resolv, strcasecmp)
192fi
193
692da0b5
DD
194#
195# The following test was mostly taken from the tcl/tk plus patches
196#
79fc6bdb 197AC_CACHE_CHECK([whether -c -o works],rsync_cv_DASHC_WORKS_WITH_DASHO,[
692da0b5
DD
198rm -rf conftest*
199cat > conftest.$ac_ext <<EOF
200int main() { return 0; }
201EOF
202${CC-cc} -c -o conftest..o conftest.$ac_ext
203if test -f conftest..o; then
79fc6bdb
DD
204 rsync_cv_DASHC_WORKS_WITH_DASHO=yes
205else
206 rsync_cv_DASHC_WORKS_WITH_DASHO=no
207fi
208rm -rf conftest*
209])
210if test x"$rsync_cv_DASHC_WORKS_WITH_DASHO" = x"yes"; then
692da0b5
DD
211 OBJ_SAVE="#"
212 OBJ_RESTORE="#"
213 CC_SHOBJ_FLAG='-o $@'
692da0b5
DD
214else
215 OBJ_SAVE=' @b=`basename $@ .o`;rm -f $$b.o.sav;if test -f $$b.o; then mv $$b.o $$b.o.sav;fi;'
216 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'
217 CC_SHOBJ_FLAG=""
692da0b5 218fi
79fc6bdb 219
692da0b5
DD
220AC_SUBST(OBJ_SAVE)
221AC_SUBST(OBJ_RESTORE)
222AC_SUBST(CC_SHOBJ_FLAG)
223
7d29d4ba 224
db199cfa 225AC_OUTPUT(Makefile lib/dummy zlib/dummy)