Change from getopt to popt.
[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"}
6a48ca56 7LDFLAGS=${LDFLAGS-""}
50abd20b 8
8de330a3
AT
9AC_CANONICAL_SYSTEM
10AC_VALIDATE_CACHE_SYSTEM_TYPE
11
6a48ca56 12# look for getconf early as this affects just about everything
ef325f0c
AT
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`
6a48ca56
AT
17fi
18
c627d613
AT
19dnl Checks for programs.
20AC_PROG_CC
21AC_PROG_INSTALL
22AC_SUBST(SHELL)
23
6a48ca56 24
7b8356d0
AT
25AC_CHECK_PROG(HAVE_REMSH, remsh, 1, 0)
26AC_DEFINE_UNQUOTED(HAVE_REMSH, $HAVE_REMSH)
27
cd957c70 28AC_C_BIGENDIAN
c627d613 29AC_HEADER_DIRENT
c627d613
AT
30AC_HEADER_TIME
31AC_HEADER_SYS_WAIT
8bf73749 32AC_CHECK_HEADERS(sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h unistd.h utime.h grp.h)
94481d91 33AC_CHECK_HEADERS(compat.h sys/param.h ctype.h sys/wait.h sys/ioctl.h)
fdd71e17 34AC_CHECK_HEADERS(sys/filio.h string.h stdlib.h sys/socket.h sys/mode.h)
932be9aa 35AC_CHECK_HEADERS(glob.h)
c627d613
AT
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
9422bb3f 49AC_TYPE_GETGROUPS
c627d613 50AC_STRUCT_ST_RDEV
dc5ddbcc 51AC_CHECK_TYPE(ino_t,unsigned)
c627d613 52
7b3d4257 53AC_CACHE_CHECK([for errno in errno.h],rsync_cv_errno, [
7597e1a9 54 AC_TRY_COMPILE([#include <errno.h>],[int i = errno],
7b3d4257
AT
55 rsync_cv_errno=yes,rsync_cv_have_errno_decl=no)])
56if test x"$rsync_cv_errno" = x"yes"; then
7597e1a9
AT
57 AC_DEFINE(HAVE_ERRNO_DECL)
58fi
c627d613 59
a784e10d
DD
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
c627d613 104AC_FUNC_MEMCMP
c627d613 105AC_FUNC_UTIME_NULL
e68f3481 106AC_CHECK_FUNCS(waitpid wait4 getcwd strdup strerror chown chmod mknod)
e0414f42 107AC_CHECK_FUNCS(fchmod fstat strchr readlink link utime utimes strftime)
79fc6bdb 108AC_CHECK_FUNCS(memmove lchown vsnprintf snprintf setsid glob strpbrk)
fca3ef06 109AC_CHECK_FUNCS(strlcat strlcpy)
24c857f1
DD
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
c627d613 122
79fc6bdb 123AC_CACHE_CHECK([for working fnmatch],rsync_cv_HAVE_FNMATCH,[
c627d613 124AC_TRY_RUN([#include <fnmatch.h>
e7d6e0aa
AT
125main() { exit((fnmatch("*.o", "x.o", FNM_PATHNAME) == 0 &&
126 fnmatch("a/b/*", "a/b/c/d", FNM_PATHNAME) != 0) ? 0: 1); }],
79fc6bdb
DD
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
c627d613 147
79fc6bdb 148AC_CACHE_CHECK([for long long],rsync_cv_HAVE_LONGLONG,[
0d0e2e93 149AC_TRY_RUN([#include <stdio.h>
efb2f6bf 150main() { long long x = 1000000; x *= x; exit(((x/1000000) == 1000000)? 0: 1); }],
79fc6bdb
DD
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
7597e1a9
AT
153 AC_DEFINE(HAVE_LONGLONG)
154fi
0d0e2e93 155
7b3d4257 156AC_CACHE_CHECK([for off64_t],rsync_cv_HAVE_OFF64_T,[
bcacc18b
AT
157AC_TRY_RUN([#include <stdio.h>
158#include <sys/stat.h>
7597e1a9 159main() { 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
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
7597e1a9
AT
162 AC_DEFINE(HAVE_OFF64_T)
163fi
debb4505 164
79fc6bdb 165AC_CACHE_CHECK([for short ino_t],rsync_cv_HAVE_SHORT_INO_T,[
c29ee43d
AT
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; }],
79fc6bdb
DD
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
c29ee43d 174
7b3d4257 175AC_CACHE_CHECK([for unsigned char],rsync_cv_HAVE_UNSIGNED_CHAR,[
debb4505
AT
176AC_TRY_RUN([#include <stdio.h>
177main() { char c; c=250; exit((c > 0)?0:1); }],
7b3d4257
AT
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
7597e1a9
AT
180 AC_DEFINE(HAVE_UNSIGNED_CHAR)
181fi
bcacc18b 182
7b3d4257 183AC_CACHE_CHECK([for broken readdir],rsync_cv_HAVE_BROKEN_READDIR,[
59503278
AT
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 &&
7597e1a9 188di->d_name[0] == 0) exit(0); exit(1);} ],
7b3d4257
AT
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
7597e1a9
AT
191 AC_DEFINE(HAVE_BROKEN_READDIR)
192fi
1e9f155a 193
7b3d4257 194AC_CACHE_CHECK([for utimbuf],rsync_cv_HAVE_UTIMBUF,[
d6e6ecbd
AT
195AC_TRY_COMPILE([#include <sys/types.h>
196#include <utime.h>],
7597e1a9 197[struct utimbuf tbuf; tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));],
7b3d4257
AT
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
7597e1a9
AT
200 AC_DEFINE(HAVE_UTIMBUF)
201fi
d6e6ecbd 202
3060d4aa
AT
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
7b3d4257
AT
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") &&
fca3ef06
AT
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)])
7b3d4257
AT
225if test x"$rsync_cv_REPLACE_INET_NTOA" = x"yes"; then
226 AC_DEFINE(REPLACE_INET_NTOA)
227fi
228
fca3ef06
AT
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
692da0b5
DD
243#
244# The following test was mostly taken from the tcl/tk plus patches
245#
79fc6bdb 246AC_CACHE_CHECK([whether -c -o works],rsync_cv_DASHC_WORKS_WITH_DASHO,[
692da0b5
DD
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
79fc6bdb
DD
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
692da0b5
DD
260 OBJ_SAVE="#"
261 OBJ_RESTORE="#"
262 CC_SHOBJ_FLAG='-o $@'
692da0b5
DD
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=""
692da0b5 267fi
79fc6bdb 268
692da0b5
DD
269AC_SUBST(OBJ_SAVE)
270AC_SUBST(OBJ_RESTORE)
271AC_SUBST(CC_SHOBJ_FLAG)
272
7d29d4ba 273
db199cfa 274AC_OUTPUT(Makefile lib/dummy zlib/dummy)