- Added function tests for va_copy and __va_copy for snprintf.c code.
[rsync/rsync.git] / configure.in
... / ...
CommitLineData
1dnl Process this file with autoconf to produce a configure script.
2
3AC_INIT()
4AC_CONFIG_SRCDIR([byteorder.h])
5AC_CONFIG_HEADER(config.h)
6AC_PREREQ(2.59)
7
8RSYNC_VERSION=2.6.4cvs
9AC_SUBST(RSYNC_VERSION)
10AC_MSG_NOTICE([Configuring rsync $RSYNC_VERSION])
11
12AC_DEFINE_UNQUOTED(RSYNC_VERSION, ["$RSYNC_VERSION"], [rsync release version])
13
14LDFLAGS=${LDFLAGS-""}
15
16AC_CANONICAL_TARGET([])
17
18dnl Checks for programs.
19AC_PROG_CC
20AC_PROG_CPP
21AC_PROG_EGREP
22AC_PROG_INSTALL
23AC_PROG_CC_STDC
24AC_SUBST(SHELL)
25
26AC_DEFINE([_GNU_SOURCE], 1,
27 [Define _GNU_SOURCE so that we get all necessary prototypes])
28
29if test "x$ac_cv_prog_cc_stdc" = xno
30then
31 AC_MSG_WARN([rsync requires an ANSI C compiler and you don't seem to have one])
32fi
33
34# We must decide this before testing the compiler.
35
36# Please allow this to default to yes, so that your users have more
37# chance of getting a useful stack trace if problems occur.
38
39AC_MSG_CHECKING([whether to include debugging symbols])
40AC_ARG_ENABLE(debug,
41 AC_HELP_STRING([--enable-debug],
42 [including debugging symbols and features (default yes)]),
43 [], [])
44
45if test x"$enable_debug" = x"no"
46then
47 AC_MSG_RESULT(no)
48 CFLAGS=${CFLAGS-"-O"}
49else
50 AC_MSG_RESULT([yes])
51 # leave CFLAGS alone; AC_PROG_CC will try to include -g if it can
52 dnl AC_DEFINE(DEBUG, 1, [Define to turn on debugging code that may slow normal operation])
53 dnl CFLAGS=${CFLAGS-"-g"}
54fi
55
56
57
58
59AC_ARG_ENABLE(profile,
60 AC_HELP_STRING([--enable-profile],
61 [turn on CPU profiling (default no)],
62 [], []))
63if test x"$enable_profile" = xyes
64then
65 CFLAGS="$CFLAGS -pg"
66fi
67
68
69# Specifically, this turns on panic_action handling.
70AC_ARG_ENABLE(maintainer-mode,
71 AC_HELP_STRING([--enable-maintainer-mode],
72 [turn on extra debug features],
73 [], []))
74if test x"$enable_maintainer_mode" = xyes
75then
76 CFLAGS="$CFLAGS -DMAINTAINER_MODE"
77fi
78
79
80# This is needed for our included version of popt. Kind of silly, but
81# I don't want our version too far out of sync.
82CFLAGS="$CFLAGS -DHAVE_CONFIG_H"
83
84# If GCC, turn on warnings.
85if test x"$GCC" = x"yes"
86then
87 CFLAGS="$CFLAGS -Wall -W"
88fi
89
90AC_ARG_WITH(included-popt,
91 [ --with-included-popt use bundled popt library, not from system])
92
93AC_ARG_WITH(rsync-path,
94 [ --with-rsync-path=PATH set default --rsync-path to PATH (default: rsync)],
95 [ RSYNC_PATH="$with_rsync_path" ],
96 [ RSYNC_PATH="rsync" ])
97
98AC_DEFINE_UNQUOTED(RSYNC_PATH, "$RSYNC_PATH", [location of rsync on remote machine])
99
100AC_ARG_WITH(rsyncd-conf,
101 AC_HELP_STRING([--with-rsyncd-conf=PATH], [set configuration file for rsync server to PATH (default: /etc/rsyncd.conf)]),
102 [ if test ! -z "$with_rsyncd_conf" ; then
103 case $with_rsyncd_conf in
104 yes|no)
105 RSYNCD_SYSCONF="/etc/rsyncd.conf"
106 ;;
107 /*)
108 RSYNCD_SYSCONF="$with_rsyncd_conf"
109 ;;
110 *)
111 AC_MSG_ERROR(You must specify an absolute path to --with-rsyncd-conf=PATH)
112 ;;
113 esac
114 else
115 RSYNCD_SYSCONF="/etc/rsyncd.conf"
116 fi ],
117 [ RSYNCD_SYSCONF="/etc/rsyncd.conf" ])
118
119AC_DEFINE_UNQUOTED(RSYNCD_SYSCONF, "$RSYNCD_SYSCONF", [location of configuration file for rsync server])
120
121AC_ARG_WITH(rsh,
122 AC_HELP_STRING([--with-rsh=CMD], [set remote shell command to CMD (default: ssh)]))
123
124AC_CHECK_PROG(HAVE_REMSH, remsh, 1, 0)
125AC_DEFINE_UNQUOTED(HAVE_REMSH, $HAVE_REMSH, [remote shell is remsh not rsh])
126
127if test x"$with_rsh" != x
128then
129 RSYNC_RSH="$with_rsh"
130else
131 RSYNC_RSH="ssh"
132fi
133
134AC_DEFINE_UNQUOTED(RSYNC_RSH, "$RSYNC_RSH", [default -e command])
135
136# arrgh. libc in the current debian stable screws up the largefile
137# stuff, getting byte range locking wrong
138AC_CACHE_CHECK([for broken largefile support],rsync_cv_HAVE_BROKEN_LARGEFILE,[
139AC_TRY_RUN([
140#define _FILE_OFFSET_BITS 64
141#include <stdio.h>
142#include <fcntl.h>
143#include <sys/types.h>
144#include <sys/wait.h>
145
146int main(void)
147{
148 struct flock lock;
149 int status;
150 char tpl[32] = "/tmp/locktest.XXXXXX";
151 int fd = mkstemp(tpl);
152 if (fd < 0) {
153 strcpy(tpl, "conftest.dat");
154 fd = open(tpl, O_CREAT|O_RDWR, 0600);
155 }
156
157 lock.l_type = F_WRLCK;
158 lock.l_whence = SEEK_SET;
159 lock.l_start = 0;
160 lock.l_len = 1;
161 lock.l_pid = 0;
162 fcntl(fd,F_SETLK,&lock);
163 if (fork() == 0) {
164 lock.l_start = 1;
165 _exit(fcntl(fd,F_SETLK,&lock) == 0);
166 }
167 wait(&status);
168 unlink(tpl);
169 exit(WEXITSTATUS(status));
170}
171],
172rsync_cv_HAVE_BROKEN_LARGEFILE=yes,rsync_cv_HAVE_BROKEN_LARGEFILE=no,rsync_cv_HAVE_BROKEN_LARGEFILE=cross)])
173if test x"$rsync_cv_HAVE_BROKEN_LARGEFILE" != x"yes"; then
174 AC_SYS_LARGEFILE
175fi
176
177ipv6type=unknown
178ipv6lib=none
179ipv6trylibc=yes
180
181AC_ARG_ENABLE(ipv6,
182 AC_HELP_STRING([--disable-ipv6], [don't even try to use IPv6]))
183
184if test "x$enable_ipv6" != xno
185then
186 AC_MSG_CHECKING([ipv6 stack type])
187 for i in inria kame linux-glibc linux-inet6 toshiba v6d zeta; do
188 case $i in
189 inria)
190 # http://www.kame.net/
191 AC_EGREP_CPP(yes, [
192#include <netinet/in.h>
193#ifdef IPV6_INRIA_VERSION
194yes
195#endif],
196 [ipv6type=$i;
197 AC_DEFINE(INET6, 1, [true if you have IPv6])
198 ])
199 ;;
200 kame)
201 # http://www.kame.net/
202 AC_EGREP_CPP(yes, [
203#include <netinet/in.h>
204#ifdef __KAME__
205yes
206#endif],
207 [ipv6type=$i;
208 AC_DEFINE(INET6, 1, [true if you have IPv6])])
209 ;;
210 linux-glibc)
211 # http://www.v6.linux.or.jp/
212 AC_EGREP_CPP(yes, [
213#include <features.h>
214#if defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
215yes
216#endif],
217 [ipv6type=$i;
218AC_DEFINE(INET6, 1, [true if you have IPv6])])
219 ;;
220 linux-inet6)
221 # http://www.v6.linux.or.jp/
222 if test -d /usr/inet6 -o -f /usr/inet6/lib/libinet6.a; then
223 ipv6type=$i
224 ipv6lib=inet6
225 ipv6libdir=/usr/inet6/lib
226 ipv6trylibc=yes;
227 AC_DEFINE(INET6, 1, [true if you have IPv6])
228 CFLAGS="-I/usr/inet6/include $CFLAGS"
229 fi
230 ;;
231 toshiba)
232 AC_EGREP_CPP(yes, [
233#include <sys/param.h>
234#ifdef _TOSHIBA_INET6
235yes
236#endif],
237 [ipv6type=$i;
238 ipv6lib=inet6;
239 ipv6libdir=/usr/local/v6/lib;
240 AC_DEFINE(INET6, 1, [true if you have IPv6])])
241 ;;
242 v6d)
243 AC_EGREP_CPP(yes, [
244#include </usr/local/v6/include/sys/v6config.h>
245#ifdef __V6D__
246yes
247#endif],
248 [ipv6type=$i;
249 ipv6lib=v6;
250 ipv6libdir=/usr/local/v6/lib;
251 AC_DEFINE(INET6, 1, [true if you have IPv6])])
252 ;;
253 zeta)
254 AC_EGREP_CPP(yes, [
255#include <sys/param.h>
256#ifdef _ZETA_MINAMI_INET6
257yes
258#endif],
259 [ipv6type=$i;
260 ipv6lib=inet6;
261 ipv6libdir=/usr/local/v6/lib;
262 AC_DEFINE(INET6, 1, [true if you have IPv6])])
263 ;;
264 esac
265 if test "$ipv6type" != "unknown"; then
266 break
267 fi
268 done
269 AC_MSG_RESULT($ipv6type)
270
271 AC_SEARCH_LIBS(getaddrinfo, inet6)
272fi
273
274AC_MSG_CHECKING([whether to call shutdown on all sockets])
275case $host_os in
276 *cygwin* ) AC_MSG_RESULT(yes)
277 AC_DEFINE(SHUTDOWN_ALL_SOCKETS, 1,
278 [Define to 1 if sockets need to be shutdown])
279 ;;
280 * ) AC_MSG_RESULT(no);;
281esac
282
283AC_C_BIGENDIAN
284AC_HEADER_DIRENT
285AC_HEADER_TIME
286AC_HEADER_SYS_WAIT
287AC_CHECK_HEADERS(sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h \
288 unistd.h utime.h grp.h compat.h sys/param.h ctype.h sys/wait.h \
289 sys/ioctl.h sys/filio.h string.h stdlib.h sys/socket.h sys/mode.h \
290 sys/un.h glob.h mcheck.h arpa/inet.h arpa/nameser.h \
291 netdb.h malloc.h float.h)
292AC_HEADER_MAJOR
293
294AC_CHECK_SIZEOF(int)
295AC_CHECK_SIZEOF(long)
296AC_CHECK_SIZEOF(long long)
297AC_CHECK_SIZEOF(short)
298AC_CHECK_SIZEOF(off_t)
299AC_CHECK_SIZEOF(off64_t)
300
301AC_C_INLINE
302AC_C_LONG_DOUBLE
303
304AC_TYPE_SIGNAL
305AC_TYPE_UID_T
306AC_TYPE_MODE_T
307AC_TYPE_OFF_T
308AC_TYPE_SIZE_T
309AC_TYPE_PID_T
310AC_TYPE_GETGROUPS
311AC_CHECK_MEMBERS([struct stat.st_rdev])
312
313TYPE_SOCKLEN_T
314
315AC_CACHE_CHECK([for errno in errno.h],rsync_cv_errno, [
316 AC_TRY_COMPILE([#include <errno.h>],[int i = errno],
317 rsync_cv_errno=yes,rsync_cv_have_errno_decl=no)])
318if test x"$rsync_cv_errno" = x"yes"; then
319 AC_DEFINE(HAVE_ERRNO_DECL, 1, [Define to 1 if errno is declared in errno.h])
320fi
321
322# The following test taken from the cvs sources
323# If we can't find connect, try looking in -lsocket, -lnsl, and -linet.
324# These need checks to be before checks for any other functions that
325# might be in the same libraries.
326# The Irix 5 libc.so has connect and gethostbyname, but Irix 5 also has
327# libsocket.so which has a bad implementation of gethostbyname (it
328# only looks in /etc/hosts), so we only look for -lsocket if we need
329# it.
330AC_CHECK_FUNCS(connect)
331if test x"$ac_cv_func_connect" = x"no"; then
332 case "$LIBS" in
333 *-lnsl*) ;;
334 *) AC_CHECK_LIB(nsl_s, printf) ;;
335 esac
336 case "$LIBS" in
337 *-lnsl*) ;;
338 *) AC_CHECK_LIB(nsl, printf) ;;
339 esac
340 case "$LIBS" in
341 *-lsocket*) ;;
342 *) AC_CHECK_LIB(socket, connect) ;;
343 esac
344 case "$LIBS" in
345 *-linet*) ;;
346 *) AC_CHECK_LIB(inet, connect) ;;
347 esac
348 dnl We can't just call AC_CHECK_FUNCS(connect) here, because the value
349 dnl has been cached.
350 if test x"$ac_cv_lib_socket_connect" = x"yes" ||
351 test x"$ac_cv_lib_inet_connect" = x"yes"; then
352 # ac_cv_func_connect=yes
353 # don't! it would cause AC_CHECK_FUNC to succeed next time configure is run
354 AC_DEFINE(HAVE_CONNECT, 1, [Define to 1 if you have the "connect" function])
355 fi
356fi
357
358AC_CHECK_LIB(resolv, inet_ntop)
359
360dnl AC_MSG_NOTICE([Looking in libraries: $LIBS])
361
362AC_CHECK_FUNCS(inet_ntop, , [AC_LIBOBJ(lib/inet_ntop)])
363AC_CHECK_FUNCS(inet_pton, , [AC_LIBOBJ(lib/inet_pton)])
364
365# Irix 6.5 has getaddrinfo but not the corresponding defines, so use
366# builtin getaddrinfo if one of the defines don't exist
367AC_CACHE_CHECK([whether defines needed by getaddrinfo exist],
368 rsync_cv_HAVE_GETADDR_DEFINES,[
369 AC_EGREP_CPP(yes, [
370 #include <sys/types.h>
371 #include <sys/socket.h>
372 #include <netdb.h>
373 #ifdef AI_PASSIVE
374 yes
375 #endif],
376 rsync_cv_HAVE_GETADDR_DEFINES=yes,
377 rsync_cv_HAVE_GETADDR_DEFINES=no)])
378if test x"$rsync_cv_HAVE_GETADDR_DEFINES" = x"yes"; then
379 # Tru64 UNIX has getaddrinfo() but has it renamed in libc as
380 # something else so we must include <netdb.h> to get the
381 # redefinition.
382 AC_CHECK_FUNCS(getaddrinfo, ,
383 [AC_MSG_CHECKING([for getaddrinfo by including <netdb.h>])
384 AC_TRY_LINK([#include <sys/types.h>
385 #include <sys/socket.h>
386 #include <netdb.h>],[getaddrinfo(NULL, NULL, NULL, NULL);],
387 [AC_MSG_RESULT([yes])
388 AC_DEFINE(HAVE_GETADDRINFO, 1,
389 [Define to 1 if you have the "getaddrinfo" function.])],
390 [AC_MSG_RESULT([no])
391 AC_LIBOBJ(lib/getaddrinfo)])])
392 AC_CHECK_FUNCS(getnameinfo, , [AC_LIBOBJ(lib/getnameinfo)])
393else
394 AC_LIBOBJ(lib/getaddrinfo)
395 AC_LIBOBJ(lib/getnameinfo)
396fi
397
398AC_CHECK_MEMBER([struct sockaddr.sa_len],
399 [ AC_DEFINE(HAVE_SOCKADDR_LEN, 1, [Do we have sockaddr.sa_len?]) ],
400 [],
401 [
402#include <sys/types.h>
403#include <sys/socket.h>
404])
405
406AC_CHECK_MEMBER([struct sockaddr_in.sin_len],
407 [ AC_DEFINE(HAVE_SOCKADDR_IN_LEN, 1, [Do we have sockaddr_in.sin_len?]) ],
408 [],
409 [
410#include <sys/types.h>
411#include <sys/socket.h>
412#include <netinet/in.h>
413])
414
415AC_CHECK_MEMBER([struct sockaddr_un.sun_len],
416 [ AC_DEFINE(HAVE_SOCKADDR_UN_LEN, 1, [Do we have sockaddr_un.sun_len?]) ],
417 [],
418 [
419#include <sys/types.h>
420#include <sys/socket.h>
421#include <netinet/in.h>
422])
423
424AC_MSG_CHECKING(struct sockaddr_storage)
425AC_TRY_COMPILE([#include <sys/types.h>
426#include <sys/socket.h>],
427[struct sockaddr_storage x;],
428 AC_MSG_RESULT(yes)
429 AC_DEFINE(HAVE_SOCKADDR_STORAGE, 1,
430 [Define to 1 if you have struct sockaddr_storage.] ),
431 AC_MSG_RESULT(no))
432
433AC_CHECK_MEMBER([struct sockaddr_in6.sin6_scope_id],
434 [ AC_DEFINE(HAVE_SOCKADDR_IN6_SCOPE_ID, 1, [Do we have sockaddr_in6.sin6_scope_id?]) ],
435 [],
436 [
437#include <sys/types.h>
438#include <sys/socket.h>
439#include <netinet/in.h>
440])
441
442AC_MSG_CHECKING(struct stat64)
443AC_TRY_COMPILE([#include <stdio.h>
444#if HAVE_SYS_TYPES_H
445# include <sys/types.h>
446#endif
447#if HAVE_SYS_STAT_H
448# include <sys/stat.h>
449#endif
450#if STDC_HEADERS
451# include <stdlib.h>
452# include <stddef.h>
453#else
454# if HAVE_STDLIB_H
455# include <stdlib.h>
456# endif
457#endif
458],[struct stat64 st;],
459 AC_MSG_RESULT(yes)
460 AC_DEFINE(HAVE_STRUCT_STAT64,1,[Define to 1 if you have struct stat64.]),
461 AC_MSG_RESULT(no))
462
463# if we can't find strcasecmp, look in -lresolv (for Unixware at least)
464#
465AC_CHECK_FUNCS(strcasecmp)
466if test x"$ac_cv_func_strcasecmp" = x"no"; then
467 AC_CHECK_LIB(resolv, strcasecmp)
468fi
469
470dnl At the moment we don't test for a broken memcmp(), because all we
471dnl need to do is test for equality, not comparison, and it seems that
472dnl every platform has a memcmp that can do at least that.
473dnl AC_FUNC_MEMCMP
474
475AC_FUNC_UTIME_NULL
476AC_FUNC_ALLOCA
477AC_CHECK_FUNCS(waitpid wait4 getcwd strdup strerror chown chmod mknod mkfifo \
478 fchmod fstat strchr readlink link utime utimes strftime mtrace ftruncate \
479 memmove lchown vsnprintf snprintf asprintf setsid glob strpbrk setmode \
480 strlcat strlcpy strtol mallinfo getgroups setgroups geteuid getegid \
481 open64 mkstemp64 va_copy __va_copy)
482
483AC_CHECK_FUNCS(getpgrp tcgetpgrp)
484if test $ac_cv_func_getpgrp = yes; then
485 AC_FUNC_GETPGRP
486fi
487
488# Determine whether chown follows symlinks (it should).
489AC_CACHE_CHECK([whether chown() dereferences symlinks],rsync_cv_chown_follows_symlink,[
490 AC_TRY_RUN([
491#if HAVE_UNISTD_H
492# include <unistd.h>
493#endif
494#include <stdlib.h>
495#include <errno.h>
496 main() {
497 char const *dangling_symlink = "conftest.dangle";
498 unlink(dangling_symlink);
499 if (symlink("conftest.no-such", dangling_symlink) < 0) abort();
500 if (chown(dangling_symlink, getuid(), getgid()) < 0 && errno == ENOENT) exit(0);
501 exit(1);
502 }],
503 rsync_cv_chown_follows_symlink=yes,rsync_cv_chown_follows_symlink=no,rsync_cv_chown_follows_symlink=yes)])
504if test $rsync_cv_chown_follows_symlink = no; then
505 AC_DEFINE(CHOWN_MODIFIES_SYMLINK, 1, [Define to 1 if chown modifies symlinks.])
506fi
507
508AC_CACHE_CHECK([for working socketpair],rsync_cv_HAVE_SOCKETPAIR,[
509AC_TRY_RUN([
510#include <sys/types.h>
511#include <sys/socket.h>
512
513main() {
514 int fd[2];
515 exit((socketpair(AF_UNIX, SOCK_STREAM, 0, fd) != -1) ? 0 : 1);
516}],
517rsync_cv_HAVE_SOCKETPAIR=yes,rsync_cv_HAVE_SOCKETPAIR=no,rsync_cv_HAVE_SOCKETPAIR=cross)])
518if test x"$rsync_cv_HAVE_SOCKETPAIR" = x"yes"; then
519 AC_DEFINE(HAVE_SOCKETPAIR, 1, [Define to 1 if you have the "socketpair" function])
520fi
521
522if test x"$with_included_popt" != x"yes"
523then
524 AC_CHECK_LIB(popt, poptGetContext, , [with_included_popt=yes])
525fi
526
527AC_MSG_CHECKING([whether to use included libpopt])
528if test x"$with_included_popt" = x"yes"
529then
530 AC_MSG_RESULT($srcdir/popt)
531 BUILD_POPT='$(popt_OBJS)'
532 CFLAGS="$CFLAGS -I$srcdir/popt"
533 if test x"$ALLOCA" != x
534 then
535 # this can be removed when/if we add an included alloca.c;
536 # see autoconf documentation on AC_FUNC_ALLOCA
537 AC_MSG_WARN([included libpopt will use malloc, not alloca (which wastes a small amount of memory)])
538 fi
539else
540 AC_MSG_RESULT(no)
541fi
542
543AC_CACHE_CHECK([for unsigned char],rsync_cv_SIGNED_CHAR_OK,[
544AC_TRY_COMPILE([],[signed char *s = ""],
545rsync_cv_SIGNED_CHAR_OK=yes,rsync_cv_SIGNED_CHAR_OK=no)])
546if test x"$rsync_cv_SIGNED_CHAR_OK" = x"yes"; then
547 AC_DEFINE(SIGNED_CHAR_OK, 1, [Define to 1 if "signed char" is a valid type])
548fi
549
550AC_CACHE_CHECK([for broken readdir],rsync_cv_HAVE_BROKEN_READDIR,[
551AC_TRY_RUN([#include <sys/types.h>
552#include <dirent.h>
553main() { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
554if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
555di->d_name[0] == 0) exit(0); exit(1);} ],
556rsync_cv_HAVE_BROKEN_READDIR=yes,rsync_cv_HAVE_BROKEN_READDIR=no,rsync_cv_HAVE_BROKEN_READDIR=cross)])
557if test x"$rsync_cv_HAVE_BROKEN_READDIR" = x"yes"; then
558 AC_DEFINE(HAVE_BROKEN_READDIR, 1, [Define to 1 if readdir() is broken])
559fi
560
561AC_CACHE_CHECK([for utimbuf],rsync_cv_HAVE_UTIMBUF,[
562AC_TRY_COMPILE([#include <sys/types.h>
563#include <utime.h>],
564[struct utimbuf tbuf; tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));],
565rsync_cv_HAVE_UTIMBUF=yes,rsync_cv_HAVE_UTIMBUF=no)])
566if test x"$rsync_cv_HAVE_UTIMBUF" = x"yes"; then
567 AC_DEFINE(HAVE_UTIMBUF, 1, [Define to 1 if you have the "struct utimbuf" type])
568fi
569
570AC_CACHE_CHECK([if gettimeofday takes tz argument],rsync_cv_HAVE_GETTIMEOFDAY_TZ,[
571AC_TRY_COMPILE([#include <sys/time.h>
572#include <unistd.h>],
573[struct timeval tv; exit(gettimeofday(&tv, NULL));],
574rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes,rsync_cv_HAVE_GETTIMEOFDAY_TZ=no)])
575if test x"$rsync_cv_HAVE_GETTIMEOFDAY_TZ" != x"no"; then
576 AC_DEFINE(HAVE_GETTIMEOFDAY_TZ, 1, [Define to 1 if gettimeofday() takes a time-zone arg])
577fi
578
579AC_CACHE_CHECK([for C99 vsnprintf],rsync_cv_HAVE_C99_VSNPRINTF,[
580AC_TRY_RUN([
581#include <sys/types.h>
582#include <stdarg.h>
583void foo(const char *format, ...) {
584 va_list ap;
585 int len;
586 char buf[5];
587
588 va_start(ap, format);
589 len = vsnprintf(0, 0, format, ap);
590 va_end(ap);
591 if (len != 5) exit(1);
592
593 if (snprintf(buf, 3, "hello") != 5 || strcmp(buf, "he") != 0) exit(1);
594
595 exit(0);
596}
597main() { foo("hello"); }
598],
599rsync_cv_HAVE_C99_VSNPRINTF=yes,rsync_cv_HAVE_C99_VSNPRINTF=no,rsync_cv_HAVE_C99_VSNPRINTF=cross)])
600if test x"$rsync_cv_HAVE_C99_VSNPRINTF" = x"yes"; then
601 AC_DEFINE(HAVE_C99_VSNPRINTF, 1, [Define to 1 if vsprintf has a C99-compatible return value])
602fi
603
604
605AC_CACHE_CHECK([for secure mkstemp],rsync_cv_HAVE_SECURE_MKSTEMP,[
606AC_TRY_RUN([#include <stdlib.h>
607#include <sys/types.h>
608#include <sys/stat.h>
609#include <unistd.h>
610main() {
611 struct stat st;
612 char tpl[20]="/tmp/test.XXXXXX";
613 int fd = mkstemp(tpl);
614 if (fd == -1) exit(1);
615 unlink(tpl);
616 if (fstat(fd, &st) != 0) exit(1);
617 if ((st.st_mode & 0777) != 0600) exit(1);
618 exit(0);
619}],
620rsync_cv_HAVE_SECURE_MKSTEMP=yes,
621rsync_cv_HAVE_SECURE_MKSTEMP=no,
622rsync_cv_HAVE_SECURE_MKSTEMP=cross)])
623if test x"$rsync_cv_HAVE_SECURE_MKSTEMP" = x"yes"; then
624 AC_DEFINE(HAVE_SECURE_MKSTEMP, 1, [Define to 1 if mkstemp() is available and works right])
625fi
626
627
628AC_CACHE_CHECK([for broken inet_ntoa],rsync_cv_REPLACE_INET_NTOA,[
629AC_TRY_RUN([
630#include <stdio.h>
631#include <sys/types.h>
632#include <netinet/in.h>
633#include <arpa/inet.h>
634main() { struct in_addr ip; ip.s_addr = 0x12345678;
635if (strcmp(inet_ntoa(ip),"18.52.86.120") &&
636 strcmp(inet_ntoa(ip),"120.86.52.18")) { exit(1); }
637exit(0);}],
638 rsync_cv_REPLACE_INET_NTOA=no,rsync_cv_REPLACE_INET_NTOA=yes,rsync_cv_REPLACE_INET_NTOA=cross)])
639if test x"$rsync_cv_REPLACE_INET_NTOA" = x"yes"; then
640 AC_DEFINE(REPLACE_INET_NTOA, 1, [Define to 1 if inet_ntoa() needs to be replaced])
641fi
642
643
644AC_CACHE_CHECK([for broken inet_aton],rsync_cv_REPLACE_INET_ATON,[
645AC_TRY_RUN([
646#include <stdio.h>
647#include <sys/types.h>
648#include <netinet/in.h>
649#include <arpa/inet.h>
650main() { struct in_addr ip;
651if (inet_aton("example", &ip) == 0) exit(0); exit(1);}],
652 rsync_cv_REPLACE_INET_ATON=no,rsync_cv_REPLACE_INET_ATON=yes,rsync_cv_REPLACE_INET_ATON=cross)])
653if test x"$rsync_cv_REPLACE_INET_ATON" = x"yes"; then
654 AC_DEFINE(REPLACE_INET_ATON, 1, [Define to 1 if inet_aton() needs to be replaced])
655fi
656
657AC_CACHE_CHECK([if mknod creates FIFOs],rsync_cv_MKNOD_CREATES_FIFOS,[
658AC_TRY_RUN([
659#include <stdio.h>
660#include <sys/stat.h>
661#include <errno.h>
662main() { int rc, ec; char *fn = "fifo-test";
663unlink(fn); rc = mknod(fn,S_IFIFO,0600); ec = errno; unlink(fn);
664if (rc) {printf("%d %d\n",rc,ec); return ec;}
665return 0;}],
666 rsync_cv_MKNOD_CREATES_FIFOS=yes,rsync_cv_MKNOD_CREATES_FIFOS=no,rsync_cv_MKNOD_CREATES_FIFOS=cross)])
667if test x"$rsync_cv_MKNOD_CREATES_FIFOS" = x"yes"; then
668 AC_DEFINE(MKNOD_CREATES_FIFOS, 1, [Define to 1 if mknod() can create FIFOs.])
669fi
670
671AC_CACHE_CHECK([if mknod creates sockets],rsync_cv_MKNOD_CREATES_SOCKETS,[
672AC_TRY_RUN([
673#include <stdio.h>
674#include <sys/stat.h>
675#include <errno.h>
676main() { int rc, ec; char *fn = "sock-test";
677unlink(fn); rc = mknod(fn,S_IFSOCK,0600); ec = errno; unlink(fn);
678if (rc) {printf("%d %d\n",rc,ec); return ec;}
679return 0;}],
680 rsync_cv_MKNOD_CREATES_SOCKETS=yes,rsync_cv_MKNOD_CREATES_SOCKETS=no,rsync_cv_MKNOD_CREATES_SOCKETS=cross)])
681if test x"$rsync_cv_MKNOD_CREATES_SOCKETS" = x"yes"; then
682 AC_DEFINE(MKNOD_CREATES_SOCKETS, 1, [Define to 1 if mknod() can create sockets.])
683fi
684
685#
686# The following test was mostly taken from the tcl/tk plus patches
687#
688AC_CACHE_CHECK([whether -c -o works],rsync_cv_DASHC_WORKS_WITH_DASHO,[
689rm -rf conftest*
690cat > conftest.$ac_ext <<EOF
691int main() { return 0; }
692EOF
693${CC-cc} -c -o conftest..o conftest.$ac_ext
694if test -f conftest..o; then
695 rsync_cv_DASHC_WORKS_WITH_DASHO=yes
696else
697 rsync_cv_DASHC_WORKS_WITH_DASHO=no
698fi
699rm -rf conftest*
700])
701if test x"$rsync_cv_DASHC_WORKS_WITH_DASHO" = x"yes"; then
702 OBJ_SAVE="#"
703 OBJ_RESTORE="#"
704 CC_SHOBJ_FLAG='-o $@'
705else
706 OBJ_SAVE=' @b=`basename $@ .o`;rm -f $$b.o.sav;if test -f $$b.o; then mv $$b.o $$b.o.sav;fi;'
707 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'
708 CC_SHOBJ_FLAG=""
709fi
710
711AC_SUBST(OBJ_SAVE)
712AC_SUBST(OBJ_RESTORE)
713AC_SUBST(CC_SHOBJ_FLAG)
714AC_SUBST(BUILD_POPT)
715
716AC_CONFIG_FILES([Makefile lib/dummy zlib/dummy popt/dummy shconfig])
717AC_OUTPUT
718
719if test x"$with_rsh" = x; then
720 if test x"$HAVE_REMSH" = x1; then
721 rmsh1='remsh:'
722 rmsh2='=remsh'
723 else
724 rmsh1='rsh: '
725 rmsh2='=rsh '
726 fi
727 AC_MSG_RESULT()
728 AC_MSG_RESULT([ **********************************************************************])
729 AC_MSG_RESULT([ * As of v2.6.0, the default remote shell is ssh instead of rsh!! *])
730 AC_MSG_RESULT([ * To use previous default of $rmsh1 ./configure --with-rsh$rmsh2 *])
731 AC_MSG_RESULT([ **********************************************************************])
732fi
733
734AC_MSG_RESULT()
735AC_MSG_RESULT([ rsync ${RSYNC_VERSION} configuration successful])
736AC_MSG_RESULT()