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