Improved error messages.
[rsync/rsync.git] / configure.in
CommitLineData
c627d613 1dnl Process this file with autoconf to produce a configure script.
06963d0f 2
bf5c2bf6
MP
3AC_INIT()
4AC_CONFIG_SRCDIR([byteorder.h])
c627d613 5AC_CONFIG_HEADER(config.h)
7ca6e856 6AC_PREREQ(2.52)
c627d613 7
6a48ca56 8LDFLAGS=${LDFLAGS-""}
50abd20b 9
bf5c2bf6
MP
10AC_CANONICAL_TARGET([])
11
12dnl Checks for programs.
13AC_PROG_CC
14AC_PROG_CPP
15AC_PROG_INSTALL
16AC_SUBST(SHELL)
8de330a3 17
2d1ebe9c
MP
18# compile with optimisation and without debugging by default, unless
19# --debug is given. We must decide this before testing the compiler.
20
bf5c2bf6 21AC_MSG_CHECKING([whether to include debugging symbols])
2d1ebe9c 22AC_ARG_ENABLE(debug,
bf5c2bf6
MP
23 AC_HELP_STRING([--enable-debug],
24 [including debugging symbols and features (default yes)]),
25 [], [])
2d1ebe9c 26
bf5c2bf6 27if test x"$enable_debug" = x"no"
2d1ebe9c 28then
2d1ebe9c
MP
29 AC_MSG_RESULT(no)
30 CFLAGS=${CFLAGS-"-O"}
bf5c2bf6
MP
31else
32 AC_MSG_RESULT([yes])
33 # leave CFLAGS alone; AC_PROG_CC will try to include -g if it can
34 AC_DEFINE(DEBUG, 1, [Define to turn on debugging code that may slow normal operation])
35 dnl CFLAGS=${CFLAGS-"-g"}
2d1ebe9c
MP
36fi
37
1ac15cd8
MP
38CFLAGS="$CFLAGS -DHAVE_CONFIG_H"
39
2d1ebe9c
MP
40AC_ARG_WITH(included-popt,
41 [ --with-included-popt use bundled popt library, not from system])
42
41bd28fe 43AC_ARG_WITH(rsync-path,
ddd491d4 44 [ --with-rsync-path=PATH set default --rsync-path to PATH (default: \"rsync\")],
8642efd0 45 [ RSYNC_PATH="$with_rsync_path" ],
41bd28fe 46 [ RSYNC_PATH="rsync" ])
c6a7f2f4 47AC_DEFINE_UNQUOTED(RSYNC_PATH, "$RSYNC_PATH", [ ])
41bd28fe 48
7b8356d0 49AC_CHECK_PROG(HAVE_REMSH, remsh, 1, 0)
d4e4cbe1 50AC_DEFINE_UNQUOTED(HAVE_REMSH, $HAVE_REMSH, [ ])
7b8356d0 51
f0af1e5e
AT
52
53# arrgh. libc in the current debian stable screws up the largefile
54# stuff, getting byte range locking wrong
55AC_CACHE_CHECK([for broken largefile support],rsync_cv_HAVE_BROKEN_LARGEFILE,[
56AC_TRY_RUN([
57#define _FILE_OFFSET_BITS 64
58#include <stdio.h>
59#include <fcntl.h>
60#include <sys/types.h>
61#include <sys/wait.h>
62
63int main(void)
64{
65 struct flock lock;
66 int status;
67 int fd = open("conftest.dat", O_CREAT|O_RDWR, 0600);
68 lock.l_type = F_WRLCK;
69 lock.l_whence = SEEK_SET;
70 lock.l_start = 0;
71 lock.l_len = 1;
72 lock.l_pid = 0;
73
74 fcntl(fd,F_SETLK,&lock);
75 if (fork() == 0) {
76 lock.l_start = 1;
77 exit(fcntl(fd,F_SETLK,&lock) == 0);
78 }
79 wait(&status);
80 unlink("conftest.dat");
81 exit(WEXITSTATUS(status));
82}
83],
84rsync_cv_HAVE_BROKEN_LARGEFILE=yes,rsync_cv_HAVE_BROKEN_LARGEFILE=no,rsync_cv_HAVE_BROKEN_LARGEFILE=cross)])
85if test x"$rsync_cv_HAVE_BROKEN_LARGEFILE" != x"yes"; then
86 AC_SYS_LARGEFILE
87fi
88
89
90
bf5c2bf6
MP
91AC_DEFINE(ss_family, __ss_family, [KAME hack])
92AC_DEFINE(ss_len, __ss_len, [KAME hack])
93
06963d0f 94CFLAGS="$CFLAGS"
bf5c2bf6 95AC_MSG_CHECKING([whether IPv6 is explicitly enabled])
06963d0f
MP
96AC_ARG_ENABLE(ipv6,
97[ --enable-ipv6 Enable ipv6 (with ipv4) support
98 --disable-ipv6 Disable ipv6 support],
99[ case "$enableval" in
100 no)
101 AC_MSG_RESULT(no)
102 ipv6=no
103 ;;
bf5c2bf6
MP
104 *)
105 AC_MSG_RESULT(yes)
06963d0f
MP
106 AC_DEFINE(ENABLE_IPV6)
107 ipv6=yes
108 ;;
109 esac ],
bf5c2bf6
MP
110 [
111 AC_MSG_RESULT(no)
112 dnl not specified; let's try
113 AC_MSG_CHECKING([whether IPv6 works anyhow])
114 AC_TRY_COMPILE([
06963d0f
MP
115#include <sys/types.h>
116#include <sys/socket.h>
bf5c2bf6
MP
117],
118[
06963d0f
MP
119main()
120{
121 if (socket(AF_INET6, SOCK_STREAM, 0) < 0)
122 exit(1);
123 else
124 exit(0);
125}
126],
bf5c2bf6 127 [
06963d0f
MP
128 AC_MSG_RESULT(yes)
129 AC_DEFINE(ENABLE_IPV6)
bf5c2bf6
MP
130 ipv6=yes],
131 [AC_MSG_RESULT(no)
132 ipv6=no])])
06963d0f
MP
133
134ipv6type=unknown
135ipv6lib=none
136ipv6trylibc=no
137
138if test "$ipv6" = "yes"; then
139 AC_MSG_CHECKING([ipv6 stack type])
140 for i in inria kame linux-glibc linux-inet6 toshiba v6d zeta; do
141 case $i in
142 inria)
143 # http://www.kame.net/
144 AC_EGREP_CPP(yes, [
145#include <netinet/in.h>
146#ifdef IPV6_INRIA_VERSION
147yes
148#endif],
149 [ipv6type=$i;
150 CFLAGS="-DINET6 $CFLAGS"])
151 ;;
152 kame)
153 # http://www.kame.net/
154 AC_EGREP_CPP(yes, [
155#include <netinet/in.h>
156#ifdef __KAME__
157yes
158#endif],
159 [ipv6type=$i;
160 CFLAGS="-DINET6 $CFLAGS"])
161 ;;
162 linux-glibc)
163 # http://www.v6.linux.or.jp/
164 AC_EGREP_CPP(yes, [
165#include <features.h>
166#if defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
167yes
168#endif],
169 [ipv6type=$i;
170 CFLAGS="-DINET6 $CFLAGS"])
171 ;;
172 linux-inet6)
173 # http://www.v6.linux.or.jp/
174 if test -d /usr/inet6 -o -f /usr/inet6/lib/libinet6.a; then
175 ipv6type=$i
176 ipv6lib=inet6
177 ipv6libdir=/usr/inet6/lib
178 ipv6trylibc=yes;
179 CFLAGS="-DINET6 -I/usr/inet6/include $CFLAGS"
180 fi
181 ;;
182 toshiba)
183 AC_EGREP_CPP(yes, [
184#include <sys/param.h>
185#ifdef _TOSHIBA_INET6
186yes
187#endif],
188 [ipv6type=$i;
189 ipv6lib=inet6;
190 ipv6libdir=/usr/local/v6/lib;
191 CFLAGS="-DINET6 $CFLAGS"])
192 ;;
193 v6d)
194 AC_EGREP_CPP(yes, [
195#include </usr/local/v6/include/sys/v6config.h>
196#ifdef __V6D__
197yes
198#endif],
199 [ipv6type=$i;
200 ipv6lib=v6;
201 ipv6libdir=/usr/local/v6/lib;
202 CFLAGS="-I/usr/local/v6/include $CFLAGS"])
203 ;;
204 zeta)
205 AC_EGREP_CPP(yes, [
206#include <sys/param.h>
207#ifdef _ZETA_MINAMI_INET6
208yes
209#endif],
210 [ipv6type=$i;
211 ipv6lib=inet6;
212 ipv6libdir=/usr/local/v6/lib;
213 CFLAGS="-DINET6 $CFLAGS"])
214 ;;
215 esac
216 if test "$ipv6type" != "unknown"; then
217 break
218 fi
219 done
220 AC_MSG_RESULT($ipv6type)
221fi
222
223if test "$ipv6" = "yes" -a -f /usr/local/v6/lib/libinet6.a; then
224 ac_inet6_LDFLAGS="inet6"
225 ipv6libdir=/usr/local/v6/lib
226 LDFLAGS="$LDFLAGS -L/usr/local/v6/lib"
227 AC_CHECK_LIB(inet6, getaddrinfo, , ipv6lib="$ac_inet6_LDFLAGS")
228fi
229
230if test "$ipv6" = "yes" -a -f /usr/lib/libinet6.a; then
231 ac_inet6_LDFLAGS="inet6"
232 AC_CHECK_LIB(inet6, getaddrinfo, , ipv6lib="$ac_inet6_LDFLAGS")
233fi
234
235if test "$ipv6" = "yes" -a "$ipv6lib" != "none"; then
236 if test -d $ipv6libdir -a -f $ipv6libdir/lib$ipv6lib.a; then
237 LIBS="-L$ipv6libdir -l$ipv6lib $LIBS"
238 echo "You have $ipv6lib library, using it"
239 else
240 if test "$ipv6trylibc" = "yes"; then
241 echo "You do not have $ipv6lib library, using libc"
242 else
243 echo 'Fatal: no $ipv6lib library found. cannot continue.'
244 echo "You need to fetch lib$ipv6lib.a from appropriate"
245 echo 'ipv6 kit and compile beforehand.'
246 exit 1
247 fi
248 fi
249fi
250
251
252AC_MSG_CHECKING(getaddrinfo bug)
253AC_TRY_RUN([
254#include <sys/types.h>
255#include <netdb.h>
256#include <string.h>
257#include <sys/socket.h>
258#include <netinet/in.h>
259
260main()
261{
262 int passive, gaierr, inet4 = 0, inet6 = 0;
263 struct addrinfo hints, *ai, *aitop;
264 char straddr[INET6_ADDRSTRLEN], strport[16];
265
266 for (passive = 0; passive <= 1; passive++) {
267 memset(&hints, 0, sizeof(hints));
268 hints.ai_family = AF_UNSPEC;
269 hints.ai_flags = passive ? AI_PASSIVE : 0;
270 hints.ai_socktype = SOCK_STREAM;
271 if ((gaierr = getaddrinfo(NULL, "54321", &hints, &aitop)) != 0) {
272 (void)gai_strerror(gaierr);
273 goto bad;
274 }
275 for (ai = aitop; ai; ai = ai->ai_next) {
276 if (ai->ai_addr == NULL ||
277 ai->ai_addrlen == 0 ||
278 getnameinfo(ai->ai_addr, ai->ai_addrlen,
279 straddr, sizeof(straddr), strport, sizeof(strport),
280 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
281 goto bad;
282 }
283 switch (ai->ai_family) {
284 case AF_INET:
285 if (strcmp(strport, "54321") != 0) {
286 goto bad;
287 }
288 if (passive) {
289 if (strcmp(straddr, "0.0.0.0") != 0) {
290 goto bad;
291 }
292 } else {
293 if (strcmp(straddr, "127.0.0.1") != 0) {
294 goto bad;
295 }
296 }
297 inet4++;
298 break;
299 case AF_INET6:
300 if (strcmp(strport, "54321") != 0) {
301 goto bad;
302 }
303 if (passive) {
304 if (strcmp(straddr, "::") != 0) {
305 goto bad;
306 }
307 } else {
308 if (strcmp(straddr, "::1") != 0) {
309 goto bad;
310 }
311 }
312 inet6++;
313 break;
314 case AF_UNSPEC:
315 goto bad;
316 break;
317 default:
318 /* another family support? */
319 break;
320 }
321 }
322 }
323
324 if (!(inet4 == 0 || inet4 == 2))
325 goto bad;
326 if (!(inet6 == 0 || inet6 == 2))
327 goto bad;
328
329 if (aitop)
330 freeaddrinfo(aitop);
331 exit(0);
332
333 bad:
334 if (aitop)
335 freeaddrinfo(aitop);
336 exit(1);
337}
338],
339AC_MSG_RESULT(good)
340buggygetaddrinfo=no,
341AC_MSG_RESULT(buggy)
342buggygetaddrinfo=yes,
343AC_MSG_RESULT(buggy)
344buggygetaddrinfo=yes)
345
346if test "$buggygetaddrinfo" = "yes"; then
347 if test "$ipv6" = "yes" -a "$ipv6type" != "linux"; then
348 echo 'Fatal: You must get working getaddrinfo() function.'
349 echo ' or you can specify "--disable-ipv6"'.
350 exit 1
351 elif test "$ipv6type" = "linux"; then
352 echo 'Warning: getaddrinfo() implementation on your system seems be buggy.'
353 echo ' Better upgreade your system library to newest version'
354 echo ' of GNU C library (aka glibc).'
355 fi
356fi
357AC_REPLACE_FUNCS(getaddrinfo getnameinfo)
358
bf5c2bf6
MP
359AC_CHECK_MEMBER([struct sockaddr.sa_len],
360 [ AC_DEFINE(HAVE_SOCKADDR_LEN) ],
361 [],
362 [
06963d0f
MP
363#include <sys/types.h>
364#include <sys/socket.h>
bf5c2bf6 365])
06963d0f 366
cd957c70 367AC_C_BIGENDIAN
c627d613 368AC_HEADER_DIRENT
c627d613
AT
369AC_HEADER_TIME
370AC_HEADER_SYS_WAIT
8bf73749 371AC_CHECK_HEADERS(sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h unistd.h utime.h grp.h)
94481d91 372AC_CHECK_HEADERS(compat.h sys/param.h ctype.h sys/wait.h sys/ioctl.h)
fdd71e17 373AC_CHECK_HEADERS(sys/filio.h string.h stdlib.h sys/socket.h sys/mode.h)
8ee3d639 374AC_CHECK_HEADERS(glob.h alloca.h mcheck.h)
c627d613
AT
375
376AC_CHECK_SIZEOF(int)
377AC_CHECK_SIZEOF(long)
378AC_CHECK_SIZEOF(short)
379
380AC_C_INLINE
381
382AC_TYPE_SIGNAL
383AC_TYPE_UID_T
384AC_TYPE_MODE_T
385AC_TYPE_OFF_T
386AC_TYPE_SIZE_T
387AC_TYPE_PID_T
9422bb3f 388AC_TYPE_GETGROUPS
bf5c2bf6
MP
389AC_CHECK_MEMBERS([struct stat.st_rdev])
390
e2ba16cc 391AC_CHECK_TYPE([ino_t], [unsigned])
7ca6e856 392TYPE_SOCKLEN_T
c627d613 393
7b3d4257 394AC_CACHE_CHECK([for errno in errno.h],rsync_cv_errno, [
7597e1a9 395 AC_TRY_COMPILE([#include <errno.h>],[int i = errno],
7b3d4257
AT
396 rsync_cv_errno=yes,rsync_cv_have_errno_decl=no)])
397if test x"$rsync_cv_errno" = x"yes"; then
d4e4cbe1 398 AC_DEFINE(HAVE_ERRNO_DECL, 1, [ ])
7597e1a9 399fi
c627d613 400
a784e10d
DD
401# The following test taken from the cvs sources
402# If we can't find connect, try looking in -lsocket, -lnsl, and -linet.
403# These need checks to be before checks for any other functions that
404# might be in the same libraries.
405# The Irix 5 libc.so has connect and gethostbyname, but Irix 5 also has
406# libsocket.so which has a bad implementation of gethostbyname (it
407# only looks in /etc/hosts), so we only look for -lsocket if we need
408# it.
409AC_CHECK_FUNCS(connect)
410if test x"$ac_cv_func_connect" = x"no"; then
411 case "$LIBS" in
412 *-lnsl*) ;;
413 *) AC_CHECK_LIB(nsl_s, printf) ;;
414 esac
415 case "$LIBS" in
416 *-lnsl*) ;;
417 *) AC_CHECK_LIB(nsl, printf) ;;
418 esac
419 case "$LIBS" in
420 *-lsocket*) ;;
421 *) AC_CHECK_LIB(socket, connect) ;;
422 esac
423 case "$LIBS" in
424 *-linet*) ;;
425 *) AC_CHECK_LIB(inet, connect) ;;
426 esac
427 dnl We can't just call AC_CHECK_FUNCS(connect) here, because the value
428 dnl has been cached.
429 if test x"$ac_cv_lib_socket_connect" = x"yes" ||
430 test x"$ac_cv_lib_inet_connect" = x"yes"; then
431 # ac_cv_func_connect=yes
432 # don't! it would cause AC_CHECK_FUNC to succeed next time configure is run
d4e4cbe1 433 AC_DEFINE(HAVE_CONNECT, 1, [ ])
a784e10d
DD
434 fi
435fi
436
437#
438# if we can't find strcasecmp, look in -lresolv (for Unixware at least)
439#
440AC_CHECK_FUNCS(strcasecmp)
441if test x"$ac_cv_func_strcasecmp" = x"no"; then
442 AC_CHECK_LIB(resolv, strcasecmp)
443fi
444
c627d613 445AC_FUNC_MEMCMP
c627d613 446AC_FUNC_UTIME_NULL
e68f3481 447AC_CHECK_FUNCS(waitpid wait4 getcwd strdup strerror chown chmod mknod)
e0414f42 448AC_CHECK_FUNCS(fchmod fstat strchr readlink link utime utimes strftime)
8950ac03 449AC_CHECK_FUNCS(memmove lchown vsnprintf snprintf asprintf setsid glob strpbrk)
8ee3d639 450AC_CHECK_FUNCS(strlcat strlcpy mtrace)
24c857f1
DD
451
452AC_CACHE_CHECK([for working socketpair],rsync_cv_HAVE_SOCKETPAIR,[
453AC_TRY_RUN([#include <sys/types.h>
454 #include <sys/socket.h>
455 main() {
456 int fd[2];
457 exit((socketpair(AF_UNIX, SOCK_STREAM, 0, fd) != -1) ? 0 : 1);
458 }],
459rsync_cv_HAVE_SOCKETPAIR=yes,rsync_cv_HAVE_SOCKETPAIR=no,rsync_cv_HAVE_SOCKETPAIR=cross)])
460if test x"$rsync_cv_HAVE_SOCKETPAIR" = x"yes"; then
d4e4cbe1 461 AC_DEFINE(HAVE_SOCKETPAIR, 1, [ ])
24c857f1 462fi
c627d613 463
79fc6bdb 464AC_CACHE_CHECK([for working fnmatch],rsync_cv_HAVE_FNMATCH,[
c627d613 465AC_TRY_RUN([#include <fnmatch.h>
e7d6e0aa
AT
466main() { exit((fnmatch("*.o", "x.o", FNM_PATHNAME) == 0 &&
467 fnmatch("a/b/*", "a/b/c/d", FNM_PATHNAME) != 0) ? 0: 1); }],
79fc6bdb
DD
468rsync_cv_HAVE_FNMATCH=yes,rsync_cv_HAVE_FNMATCH=no,rsync_cv_HAVE_FNMATCH=cross)])
469if test x"$rsync_cv_HAVE_FNMATCH" = x"yes"; then
d4e4cbe1 470 AC_DEFINE(HAVE_FNMATCH, 1, [ ])
79fc6bdb
DD
471fi
472
1ac15cd8
MP
473if test x"$with_included_popt" != x"yes"
474then
475 AC_CHECK_LIB(popt, poptGetContext, , [with_included_popt=yes])
476fi
2d1ebe9c 477
12458878 478AC_MSG_CHECKING([whether to use included libpopt])
2d1ebe9c
MP
479if test x"$with_included_popt" = x"yes"
480then
12458878 481 AC_MSG_RESULT($srcdir/popt)
1ac15cd8 482 BUILD_POPT='$(popt_OBJS)'
26ef00bd 483 CFLAGS="$CFLAGS -I$srcdir/popt"
2d1ebe9c
MP
484else
485 AC_MSG_RESULT(no)
79fc6bdb 486fi
c627d613 487
79fc6bdb 488AC_CACHE_CHECK([for long long],rsync_cv_HAVE_LONGLONG,[
0d0e2e93 489AC_TRY_RUN([#include <stdio.h>
efb2f6bf 490main() { long long x = 1000000; x *= x; exit(((x/1000000) == 1000000)? 0: 1); }],
79fc6bdb
DD
491rsync_cv_HAVE_LONGLONG=yes,rsync_cv_HAVE_LONGLONG=no,rsync_cv_HAVE_LONGLONG=cross)])
492if test x"$rsync_cv_HAVE_LONGLONG" = x"yes"; then
d4e4cbe1 493 AC_DEFINE(HAVE_LONGLONG, 1, [ ])
7597e1a9 494fi
0d0e2e93 495
7b3d4257 496AC_CACHE_CHECK([for off64_t],rsync_cv_HAVE_OFF64_T,[
bcacc18b
AT
497AC_TRY_RUN([#include <stdio.h>
498#include <sys/stat.h>
7597e1a9 499main() { 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
500rsync_cv_HAVE_OFF64_T=yes,rsync_cv_HAVE_OFF64_T=no,rsync_cv_HAVE_OFF64_T=cross)])
501if test x"$rsync_cv_HAVE_OFF64_T" = x"yes"; then
d4e4cbe1 502 AC_DEFINE(HAVE_OFF64_T, 1, [ ])
7597e1a9 503fi
debb4505 504
79fc6bdb 505AC_CACHE_CHECK([for short ino_t],rsync_cv_HAVE_SHORT_INO_T,[
c29ee43d
AT
506AC_TRY_RUN([#include <stdio.h>
507#include <sys/types.h>
508#include <sys/stat.h>
509main() { if (sizeof(ino_t) < sizeof(unsigned int)) return 0; return 1; }],
79fc6bdb
DD
510rsync_cv_HAVE_SHORT_INO_T=yes,rsync_cv_HAVE_SHORT_INO_T=no,rsync_cv_HAVE_SHORT_INO_T=cross)])
511if test x"$rsync_cv_HAVE_SHORT_INO_T" = x"yes"; then
d4e4cbe1 512 AC_DEFINE(HAVE_SHORT_INO_T, 1, [ ])
79fc6bdb 513fi
c29ee43d 514
7b3d4257 515AC_CACHE_CHECK([for unsigned char],rsync_cv_HAVE_UNSIGNED_CHAR,[
debb4505
AT
516AC_TRY_RUN([#include <stdio.h>
517main() { char c; c=250; exit((c > 0)?0:1); }],
7b3d4257
AT
518rsync_cv_HAVE_UNSIGNED_CHAR=yes,rsync_cv_HAVE_UNSIGNED_CHAR=no,rsync_cv_HAVE_UNSIGNED_CHAR=cross)])
519if test x"$rsync_cv_HAVE_UNSIGNED_CHAR" = x"yes"; then
d4e4cbe1 520 AC_DEFINE(HAVE_UNSIGNED_CHAR, 1, [ ])
7597e1a9 521fi
bcacc18b 522
7b3d4257 523AC_CACHE_CHECK([for broken readdir],rsync_cv_HAVE_BROKEN_READDIR,[
59503278
AT
524AC_TRY_RUN([#include <sys/types.h>
525#include <dirent.h>
526main() { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
527if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
7597e1a9 528di->d_name[0] == 0) exit(0); exit(1);} ],
7b3d4257
AT
529rsync_cv_HAVE_BROKEN_READDIR=yes,rsync_cv_HAVE_BROKEN_READDIR=no,rsync_cv_HAVE_BROKEN_READDIR=cross)])
530if test x"$rsync_cv_HAVE_BROKEN_READDIR" = x"yes"; then
d4e4cbe1 531 AC_DEFINE(HAVE_BROKEN_READDIR, 1, [ ])
7597e1a9 532fi
1e9f155a 533
7b3d4257 534AC_CACHE_CHECK([for utimbuf],rsync_cv_HAVE_UTIMBUF,[
d6e6ecbd
AT
535AC_TRY_COMPILE([#include <sys/types.h>
536#include <utime.h>],
7597e1a9 537[struct utimbuf tbuf; tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));],
7b3d4257
AT
538rsync_cv_HAVE_UTIMBUF=yes,rsync_cv_HAVE_UTIMBUF=no,rsync_cv_HAVE_UTIMBUF=cross)])
539if test x"$rsync_cv_HAVE_UTIMBUF" = x"yes"; then
d4e4cbe1 540 AC_DEFINE(HAVE_UTIMBUF, 1, [ ])
7597e1a9 541fi
d6e6ecbd 542
3060d4aa
AT
543AC_CACHE_CHECK([if gettimeofday takes tz argument],rsync_cv_HAVE_GETTIMEOFDAY_TZ,[
544AC_TRY_RUN([
545#include <sys/time.h>
546#include <unistd.h>
547main() { struct timeval tv; exit(gettimeofday(&tv, NULL));}],
548 rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes,rsync_cv_HAVE_GETTIMEOFDAY_TZ=no,rsync_cv_HAVE_GETTIMEOFDAY_TZ=cross)])
549if test x"$rsync_cv_HAVE_GETTIMEOFDAY_TZ" = x"yes"; then
d4e4cbe1 550 AC_DEFINE(HAVE_GETTIMEOFDAY_TZ, 1, [ ])
3060d4aa
AT
551fi
552
8950ac03
AT
553AC_CACHE_CHECK([for C99 vsnprintf],rsync_cv_HAVE_C99_VSNPRINTF,[
554AC_TRY_RUN([
555#include <sys/types.h>
556#include <stdarg.h>
557void foo(const char *format, ...) {
558 va_list ap;
559 int len;
560 char buf[5];
561
562 va_start(ap, format);
563 len = vsnprintf(0, 0, format, ap);
564 va_end(ap);
565 if (len != 5) exit(1);
566
567 if (snprintf(buf, 3, "hello") != 5 || strcmp(buf, "he") != 0) exit(1);
568
569 exit(0);
570}
571main() { foo("hello"); }
572],
573rsync_cv_HAVE_C99_VSNPRINTF=yes,rsync_cv_HAVE_C99_VSNPRINTF=no,rsync_cv_HAVE_C99_VSNPRINTF=cross)])
574if test x"$rsync_cv_HAVE_C99_VSNPRINTF" = x"yes"; then
d4e4cbe1 575 AC_DEFINE(HAVE_C99_VSNPRINTF, 1, [ ])
8950ac03
AT
576fi
577
578
f62c17e3
AT
579AC_CACHE_CHECK([for secure mkstemp],rsync_cv_HAVE_SECURE_MKSTEMP,[
580AC_TRY_RUN([#include <stdlib.h>
581#include <sys/types.h>
582#include <sys/stat.h>
583#include <unistd.h>
584main() {
585 struct stat st;
586 char tpl[20]="/tmp/test.XXXXXX";
587 int fd = mkstemp(tpl);
588 if (fd == -1) exit(1);
589 unlink(tpl);
590 if (fstat(fd, &st) != 0) exit(1);
591 if ((st.st_mode & 0777) != 0600) exit(1);
592 exit(0);
593}],
594rsync_cv_HAVE_SECURE_MKSTEMP=yes,
595rsync_cv_HAVE_SECURE_MKSTEMP=no,
596rsync_cv_HAVE_SECURE_MKSTEMP=cross)])
597if test x"$rsync_cv_HAVE_SECURE_MKSTEMP" = x"yes"; then
d4e4cbe1 598 AC_DEFINE(HAVE_SECURE_MKSTEMP, 1, [ ])
f62c17e3
AT
599fi
600
3060d4aa 601
7b3d4257
AT
602AC_CACHE_CHECK([for broken inet_ntoa],rsync_cv_REPLACE_INET_NTOA,[
603AC_TRY_RUN([
604#include <stdio.h>
605#include <sys/types.h>
606#include <netinet/in.h>
607#include <arpa/inet.h>
608main() { struct in_addr ip; ip.s_addr = 0x12345678;
609if (strcmp(inet_ntoa(ip),"18.52.86.120") &&
fca3ef06
AT
610 strcmp(inet_ntoa(ip),"120.86.52.18")) { exit(1); }
611exit(0);}],
612 rsync_cv_REPLACE_INET_NTOA=no,rsync_cv_REPLACE_INET_NTOA=yes,rsync_cv_REPLACE_INET_NTOA=cross)])
7b3d4257 613if test x"$rsync_cv_REPLACE_INET_NTOA" = x"yes"; then
d4e4cbe1 614 AC_DEFINE(REPLACE_INET_NTOA, 1, [ ])
7b3d4257
AT
615fi
616
fca3ef06
AT
617
618AC_CACHE_CHECK([for broken inet_aton],rsync_cv_REPLACE_INET_ATON,[
619AC_TRY_RUN([
620#include <stdio.h>
621#include <sys/types.h>
622#include <netinet/in.h>
623#include <arpa/inet.h>
624main() { struct in_addr ip;
625if (inet_aton("example", &ip) == 0) exit(0); exit(1);}],
626 rsync_cv_REPLACE_INET_ATON=no,rsync_cv_REPLACE_INET_ATON=yes,rsync_cv_REPLACE_INET_ATON=cross)])
627if test x"$rsync_cv_REPLACE_INET_ATON" = x"yes"; then
d4e4cbe1 628 AC_DEFINE(REPLACE_INET_ATON, 1, [ ])
fca3ef06
AT
629fi
630
692da0b5
DD
631#
632# The following test was mostly taken from the tcl/tk plus patches
633#
79fc6bdb 634AC_CACHE_CHECK([whether -c -o works],rsync_cv_DASHC_WORKS_WITH_DASHO,[
692da0b5
DD
635rm -rf conftest*
636cat > conftest.$ac_ext <<EOF
637int main() { return 0; }
638EOF
639${CC-cc} -c -o conftest..o conftest.$ac_ext
640if test -f conftest..o; then
79fc6bdb
DD
641 rsync_cv_DASHC_WORKS_WITH_DASHO=yes
642else
643 rsync_cv_DASHC_WORKS_WITH_DASHO=no
644fi
645rm -rf conftest*
646])
647if test x"$rsync_cv_DASHC_WORKS_WITH_DASHO" = x"yes"; then
692da0b5
DD
648 OBJ_SAVE="#"
649 OBJ_RESTORE="#"
650 CC_SHOBJ_FLAG='-o $@'
692da0b5
DD
651else
652 OBJ_SAVE=' @b=`basename $@ .o`;rm -f $$b.o.sav;if test -f $$b.o; then mv $$b.o $$b.o.sav;fi;'
653 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'
654 CC_SHOBJ_FLAG=""
692da0b5 655fi
79fc6bdb 656
692da0b5
DD
657AC_SUBST(OBJ_SAVE)
658AC_SUBST(OBJ_RESTORE)
659AC_SUBST(CC_SHOBJ_FLAG)
1ac15cd8 660AC_SUBST(BUILD_POPT)
7d29d4ba 661
bf5c2bf6
MP
662AC_CONFIG_FILES([Makefile lib/dummy zlib/dummy popt/dummy shconfig])
663AC_OUTPUT