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