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