1 dnl Process this file with autoconf to produce a configure script.
4 AC_CONFIG_SRCDIR([byteorder.h])
5 AC_CONFIG_HEADER(config.h)
8 RSYNC_VERSION=2.6.0pre2
9 AC_SUBST(RSYNC_VERSION)
10 AC_MSG_NOTICE([Configuring rsync $RSYNC_VERSION])
12 AC_DEFINE_UNQUOTED(RSYNC_VERSION, ["$RSYNC_VERSION"], [rsync release version])
16 AC_CANONICAL_TARGET([])
18 dnl Checks for programs.
25 AC_DEFINE([_GNU_SOURCE], 1,
26 [Define _GNU_SOURCE so that we get all necessary prototypes])
28 if test "x$ac_cv_prog_cc_stdc" = xno
30 AC_MSG_WARN([rsync requires an ANSI C compiler and you don't seem to have one])
33 # We must decide this before testing the compiler.
35 # Please allow this to default to yes, so that your users have more
36 # chance of getting a useful stack trace if problems occur.
38 AC_MSG_CHECKING([whether to include debugging symbols])
40 AC_HELP_STRING([--enable-debug],
41 [including debugging symbols and features (default yes)]),
44 if test x"$enable_debug" = x"no"
50 # leave CFLAGS alone; AC_PROG_CC will try to include -g if it can
51 dnl AC_DEFINE(DEBUG, 1, [Define to turn on debugging code that may slow normal operation])
52 dnl CFLAGS=${CFLAGS-"-g"}
58 AC_ARG_ENABLE(profile,
59 AC_HELP_STRING([--enable-profile],
60 [turn on CPU profiling (default no)],
62 if test x"$enable_profile" = xyes
68 # Specifically, this turns on panic_action handling.
69 AC_ARG_ENABLE(maintainer-mode,
70 AC_HELP_STRING([--enable-maintainer-mode],
71 [turn on extra debug features],
73 if test x"$enable_maintainer_mode" = xyes
75 CFLAGS="$CFLAGS -DMAINTAINER_MODE"
79 # This is needed for our included version of popt. Kind of silly, but
80 # I don't want our version too far out of sync.
81 CFLAGS="$CFLAGS -DHAVE_CONFIG_H"
83 # If GCC, turn on warnings.
84 if test "x$GCC" = "xyes"
86 CFLAGS="$CFLAGS -Wall -W"
89 AC_ARG_WITH(included-popt,
90 [ --with-included-popt use bundled popt library, not from system])
92 AC_ARG_WITH(rsync-path,
93 [ --with-rsync-path=PATH set default --rsync-path to PATH (default: rsync)],
94 [ RSYNC_PATH="$with_rsync_path" ],
95 [ RSYNC_PATH="rsync" ])
97 AC_DEFINE_UNQUOTED(RSYNC_PATH, "$RSYNC_PATH", [location of rsync on remote machine])
100 AC_HELP_STRING([--with-rsh=CMD], [set remote shell command to CMD (default: ssh)]))
102 AC_CHECK_PROG(HAVE_REMSH, remsh, 1, 0)
103 AC_DEFINE_UNQUOTED(HAVE_REMSH, $HAVE_REMSH, [remote shell is remsh not rsh])
105 if test x"$with_rsh" != x
107 RSYNC_RSH="$with_rsh"
112 AC_DEFINE_UNQUOTED(RSYNC_RSH, "$RSYNC_RSH", [default -e command])
114 # arrgh. libc in the current debian stable screws up the largefile
115 # stuff, getting byte range locking wrong
116 AC_CACHE_CHECK([for broken largefile support],rsync_cv_HAVE_BROKEN_LARGEFILE,[
118 #define _FILE_OFFSET_BITS 64
121 #include <sys/types.h>
122 #include <sys/wait.h>
128 int fd = open("conftest.dat", O_CREAT|O_RDWR, 0600);
129 lock.l_type = F_WRLCK;
130 lock.l_whence = SEEK_SET;
135 fcntl(fd,F_SETLK,&lock);
138 exit(fcntl(fd,F_SETLK,&lock) == 0);
141 unlink("conftest.dat");
142 exit(WEXITSTATUS(status));
145 rsync_cv_HAVE_BROKEN_LARGEFILE=yes,rsync_cv_HAVE_BROKEN_LARGEFILE=no,rsync_cv_HAVE_BROKEN_LARGEFILE=cross)])
146 if test x"$rsync_cv_HAVE_BROKEN_LARGEFILE" != x"yes"; then
155 AC_HELP_STRING([--disable-ipv6], [don't even try to use IPv6]))
157 if test "x$enable_ipv6" != xno
159 AC_MSG_CHECKING([ipv6 stack type])
160 for i in inria kame linux-glibc linux-inet6 toshiba v6d zeta; do
163 # http://www.kame.net/
165 #include <netinet/in.h>
166 #ifdef IPV6_INRIA_VERSION
170 AC_DEFINE(INET6, 1, [true if you have IPv6])
174 # http://www.kame.net/
176 #include <netinet/in.h>
181 AC_DEFINE(INET6, 1, [true if you have IPv6])])
184 # http://www.v6.linux.or.jp/
186 #include <features.h>
187 #if defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
191 AC_DEFINE(INET6, 1, [true if you have IPv6])])
194 # http://www.v6.linux.or.jp/
195 if test -d /usr/inet6 -o -f /usr/inet6/lib/libinet6.a; then
198 ipv6libdir=/usr/inet6/lib
200 AC_DEFINE(INET6, 1, [true if you have IPv6])
201 CFLAGS="-I/usr/inet6/include $CFLAGS"
206 #include <sys/param.h>
207 #ifdef _TOSHIBA_INET6
212 ipv6libdir=/usr/local/v6/lib;
213 AC_DEFINE(INET6, 1, [true if you have IPv6])])
217 #include </usr/local/v6/include/sys/v6config.h>
223 ipv6libdir=/usr/local/v6/lib;
224 AC_DEFINE(INET6, 1, [true if you have IPv6])])
228 #include <sys/param.h>
229 #ifdef _ZETA_MINAMI_INET6
234 ipv6libdir=/usr/local/v6/lib;
235 AC_DEFINE(INET6, 1, [true if you have IPv6])])
238 if test "$ipv6type" != "unknown"; then
242 AC_MSG_RESULT($ipv6type)
244 AC_SEARCH_LIBS(getaddrinfo, inet6)
247 AC_MSG_CHECKING([whether to call shutdown on all sockets])
249 *cygwin* ) AC_MSG_RESULT(yes)
250 AC_DEFINE(SHUTDOWN_ALL_SOCKETS, 1,
251 [Define if sockets need to be shutdown])
253 * ) AC_MSG_RESULT(no);;
260 AC_CHECK_HEADERS(sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h unistd.h utime.h grp.h)
261 AC_CHECK_HEADERS(compat.h sys/param.h ctype.h sys/wait.h sys/ioctl.h)
262 AC_CHECK_HEADERS(sys/filio.h string.h stdlib.h sys/socket.h sys/mode.h sys/un.h)
263 AC_CHECK_HEADERS(glob.h mcheck.h sys/sysctl.h arpa/inet.h arpa/nameser.h)
264 AC_CHECK_HEADERS(netdb.h)
265 AC_CHECK_HEADERS(malloc.h)
266 AC_CHECK_HEADERS(float.h)
269 AC_CHECK_SIZEOF(long)
270 AC_CHECK_SIZEOF(short)
281 AC_CHECK_MEMBERS([struct stat.st_rdev])
283 AC_CHECK_TYPE([ino_t], [unsigned])
286 AC_CACHE_CHECK([for errno in errno.h],rsync_cv_errno, [
287 AC_TRY_COMPILE([#include <errno.h>],[int i = errno],
288 rsync_cv_errno=yes,rsync_cv_have_errno_decl=no)])
289 if test x"$rsync_cv_errno" = x"yes"; then
290 AC_DEFINE(HAVE_ERRNO_DECL, 1, [ ])
293 # The following test taken from the cvs sources
294 # If we can't find connect, try looking in -lsocket, -lnsl, and -linet.
295 # These need checks to be before checks for any other functions that
296 # might be in the same libraries.
297 # The Irix 5 libc.so has connect and gethostbyname, but Irix 5 also has
298 # libsocket.so which has a bad implementation of gethostbyname (it
299 # only looks in /etc/hosts), so we only look for -lsocket if we need
301 AC_CHECK_FUNCS(connect)
302 if test x"$ac_cv_func_connect" = x"no"; then
305 *) AC_CHECK_LIB(nsl_s, printf) ;;
309 *) AC_CHECK_LIB(nsl, printf) ;;
313 *) AC_CHECK_LIB(socket, connect) ;;
317 *) AC_CHECK_LIB(inet, connect) ;;
319 dnl We can't just call AC_CHECK_FUNCS(connect) here, because the value
321 if test x"$ac_cv_lib_socket_connect" = x"yes" ||
322 test x"$ac_cv_lib_inet_connect" = x"yes"; then
323 # ac_cv_func_connect=yes
324 # don't! it would cause AC_CHECK_FUNC to succeed next time configure is run
325 AC_DEFINE(HAVE_CONNECT, 1, [ ])
329 AC_CHECK_LIB(resolv, inet_ntop)
331 dnl AC_MSG_NOTICE([Looking in libraries: $LIBS])
333 AC_CHECK_FUNCS(inet_ntop, , AC_LIBOBJ(lib/inet_ntop))
334 AC_CHECK_FUNCS(inet_pton, , AC_LIBOBJ(lib/inet_pton))
336 # Irix 6.5 has getaddrinfo but not the corresponding defines, so use
337 # builtin getaddrinfo if one of the defines don't exist
338 AC_CACHE_CHECK([whether defines needed by getaddrinfo exist],
339 rsync_cv_HAVE_GETADDR_DEFINES,[
341 #include <sys/types.h>
342 #include <sys/socket.h>
347 rsync_cv_HAVE_GETADDR_DEFINES=yes,
348 rsync_cv_HAVE_GETADDR_DEFINES=no)])
349 if test x"$rsync_cv_HAVE_GETADDR_DEFINES" = x"yes"; then
350 # Tru64 UNIX has getaddrinfo() but has it renamed in libc as
351 # something else so we must include <netdb.h> to get the
353 AC_CHECK_FUNCS(getaddrinfo, ,
354 [AC_MSG_CHECKING([for getaddrinfo by including <netdb.h>])
355 AC_TRY_LINK([#include <sys/types.h>
356 #include <sys/socket.h>
357 #include <netdb.h>],[getaddrinfo(NULL, NULL, NULL, NULL);],
358 [AC_MSG_RESULT([yes])
359 AC_DEFINE(HAVE_GETADDRINFO, 1,
360 [Define if you have the `getaddrinfo' function.])],
362 AC_LIBOBJ(lib/getaddrinfo)])])
363 AC_CHECK_FUNCS(getnameinfo, , AC_LIBOBJ(lib/getnameinfo))
365 AC_LIBOBJ(lib/getaddrinfo)
366 AC_LIBOBJ(lib/getnameinfo)
370 AC_CHECK_MEMBER([struct sockaddr.sa_len],
371 [ AC_DEFINE(HAVE_SOCKADDR_LEN) ],
374 #include <sys/types.h>
375 #include <sys/socket.h>
378 AC_MSG_CHECKING(struct sockaddr_storage)
379 AC_TRY_COMPILE([#include <sys/types.h>
380 #include <sys/socket.h>],
381 [struct sockaddr_storage x;],
383 AC_DEFINE(HAVE_SOCKADDR_STORAGE, 1,
384 [Define if you have strct sockaddr_storage.] ),
387 AC_CHECK_MEMBER([struct sockaddr_in6.sin6_scope_id],
388 [ AC_DEFINE(HAVE_SOCKADDR_IN6_SCOPE_ID) ],
391 #include <sys/types.h>
392 #include <sys/socket.h>
393 #include <netinet/in.h>
396 # if we can't find strcasecmp, look in -lresolv (for Unixware at least)
398 AC_CHECK_FUNCS(strcasecmp)
399 if test x"$ac_cv_func_strcasecmp" = x"no"; then
400 AC_CHECK_LIB(resolv, strcasecmp)
403 dnl At the moment we don't test for a broken memcmp(), because all we
404 dnl need to do is test for equality, not comparison, and it seems that
405 dnl every platform has a memcmp that can do at least that.
410 AC_CHECK_FUNCS(waitpid wait4 getcwd strdup strerror chown chmod mknod mkfifo)
411 AC_CHECK_FUNCS(fchmod fstat strchr readlink link utime utimes strftime)
412 AC_CHECK_FUNCS(memmove lchown vsnprintf snprintf asprintf setsid glob strpbrk)
413 AC_CHECK_FUNCS(strlcat strlcpy strtol mtrace mallinfo setgroups)
415 AC_CACHE_CHECK([for working socketpair],rsync_cv_HAVE_SOCKETPAIR,[
417 #include <sys/types.h>
418 #include <sys/socket.h>
422 exit((socketpair(AF_UNIX, SOCK_STREAM, 0, fd) != -1) ? 0 : 1);
424 rsync_cv_HAVE_SOCKETPAIR=yes,rsync_cv_HAVE_SOCKETPAIR=no,rsync_cv_HAVE_SOCKETPAIR=cross)])
425 if test x"$rsync_cv_HAVE_SOCKETPAIR" = x"yes"; then
426 AC_DEFINE(HAVE_SOCKETPAIR, 1, [ ])
429 if test x"$with_included_popt" != x"yes"
431 AC_CHECK_LIB(popt, poptGetContext, , [with_included_popt=yes])
434 AC_MSG_CHECKING([whether to use included libpopt])
435 if test x"$with_included_popt" = x"yes"
437 AC_MSG_RESULT($srcdir/popt)
438 BUILD_POPT='$(popt_OBJS)'
439 CFLAGS="$CFLAGS -I$srcdir/popt"
440 if test x"$ALLOCA" != x
442 # this can be removed when/if we add an included alloca.c;
443 # see autoconf documentation on AC_FUNC_ALLOCA
444 AC_MSG_WARN([included libpopt will use malloc, not alloca (which wastes a small amount of memory)])
450 AC_CACHE_CHECK([for long long],rsync_cv_HAVE_LONGLONG,[
451 AC_TRY_RUN([#include <stdio.h>
452 main() { long long x = 1000000; x *= x; exit(((x/1000000) == 1000000)? 0: 1); }],
453 rsync_cv_HAVE_LONGLONG=yes,rsync_cv_HAVE_LONGLONG=no,rsync_cv_HAVE_LONGLONG=cross)])
454 if test x"$rsync_cv_HAVE_LONGLONG" = x"yes"; then
455 AC_DEFINE(HAVE_LONGLONG, 1, [ ])
458 AC_CACHE_CHECK([for off64_t],rsync_cv_HAVE_OFF64_T,[
459 AC_TRY_RUN([#include <stdio.h>
460 #include <sys/stat.h>
461 main() { struct stat64 st; off64_t s; if (sizeof(off_t) == sizeof(off64_t)) exit(1); exit((lstat64("/dev/null", &st)==0)?0:1); }],
462 rsync_cv_HAVE_OFF64_T=yes,rsync_cv_HAVE_OFF64_T=no,rsync_cv_HAVE_OFF64_T=cross)])
463 if test x"$rsync_cv_HAVE_OFF64_T" = x"yes"; then
464 AC_DEFINE(HAVE_OFF64_T, 1, [ ])
467 AC_CACHE_CHECK([for short ino_t],rsync_cv_HAVE_SHORT_INO_T,[
468 AC_TRY_RUN([#include <stdio.h>
469 #include <sys/types.h>
470 #include <sys/stat.h>
471 main() { if (sizeof(ino_t) < sizeof(unsigned int)) return 0; return 1; }],
472 rsync_cv_HAVE_SHORT_INO_T=yes,rsync_cv_HAVE_SHORT_INO_T=no,rsync_cv_HAVE_SHORT_INO_T=cross)])
473 if test x"$rsync_cv_HAVE_SHORT_INO_T" = x"yes"; then
474 AC_DEFINE(HAVE_SHORT_INO_T, 1, [ ])
477 AC_CACHE_CHECK([for unsigned char],rsync_cv_HAVE_UNSIGNED_CHAR,[
478 AC_TRY_RUN([#include <stdio.h>
479 main() { char c; c=250; exit((c > 0)?0:1); }],
480 rsync_cv_HAVE_UNSIGNED_CHAR=yes,rsync_cv_HAVE_UNSIGNED_CHAR=no,rsync_cv_HAVE_UNSIGNED_CHAR=cross)])
481 if test x"$rsync_cv_HAVE_UNSIGNED_CHAR" = x"yes"; then
482 AC_DEFINE(HAVE_UNSIGNED_CHAR, 1, [ ])
485 AC_CACHE_CHECK([for broken readdir],rsync_cv_HAVE_BROKEN_READDIR,[
486 AC_TRY_RUN([#include <sys/types.h>
488 main() { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
489 if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
490 di->d_name[0] == 0) exit(0); exit(1);} ],
491 rsync_cv_HAVE_BROKEN_READDIR=yes,rsync_cv_HAVE_BROKEN_READDIR=no,rsync_cv_HAVE_BROKEN_READDIR=cross)])
492 if test x"$rsync_cv_HAVE_BROKEN_READDIR" = x"yes"; then
493 AC_DEFINE(HAVE_BROKEN_READDIR, 1, [ ])
496 AC_CACHE_CHECK([for utimbuf],rsync_cv_HAVE_UTIMBUF,[
497 AC_TRY_COMPILE([#include <sys/types.h>
499 [struct utimbuf tbuf; tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));],
500 rsync_cv_HAVE_UTIMBUF=yes,rsync_cv_HAVE_UTIMBUF=no,rsync_cv_HAVE_UTIMBUF=cross)])
501 if test x"$rsync_cv_HAVE_UTIMBUF" = x"yes"; then
502 AC_DEFINE(HAVE_UTIMBUF, 1, [ ])
505 AC_CACHE_CHECK([if gettimeofday takes tz argument],rsync_cv_HAVE_GETTIMEOFDAY_TZ,[
507 #include <sys/time.h>
509 main() { struct timeval tv; exit(gettimeofday(&tv, NULL));}],
510 rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes,rsync_cv_HAVE_GETTIMEOFDAY_TZ=no,rsync_cv_HAVE_GETTIMEOFDAY_TZ=cross)])
511 if test x"$rsync_cv_HAVE_GETTIMEOFDAY_TZ" = x"yes"; then
512 AC_DEFINE(HAVE_GETTIMEOFDAY_TZ, 1, [ ])
515 AC_CACHE_CHECK([for C99 vsnprintf],rsync_cv_HAVE_C99_VSNPRINTF,[
517 #include <sys/types.h>
519 void foo(const char *format, ...) {
524 va_start(ap, format);
525 len = vsnprintf(0, 0, format, ap);
527 if (len != 5) exit(1);
529 if (snprintf(buf, 3, "hello") != 5 || strcmp(buf, "he") != 0) exit(1);
533 main() { foo("hello"); }
535 rsync_cv_HAVE_C99_VSNPRINTF=yes,rsync_cv_HAVE_C99_VSNPRINTF=no,rsync_cv_HAVE_C99_VSNPRINTF=cross)])
536 if test x"$rsync_cv_HAVE_C99_VSNPRINTF" = x"yes"; then
537 AC_DEFINE(HAVE_C99_VSNPRINTF, 1, [ ])
541 AC_CACHE_CHECK([for secure mkstemp],rsync_cv_HAVE_SECURE_MKSTEMP,[
542 AC_TRY_RUN([#include <stdlib.h>
543 #include <sys/types.h>
544 #include <sys/stat.h>
548 char tpl[20]="/tmp/test.XXXXXX";
549 int fd = mkstemp(tpl);
550 if (fd == -1) exit(1);
552 if (fstat(fd, &st) != 0) exit(1);
553 if ((st.st_mode & 0777) != 0600) exit(1);
556 rsync_cv_HAVE_SECURE_MKSTEMP=yes,
557 rsync_cv_HAVE_SECURE_MKSTEMP=no,
558 rsync_cv_HAVE_SECURE_MKSTEMP=cross)])
559 if test x"$rsync_cv_HAVE_SECURE_MKSTEMP" = x"yes"; then
560 AC_DEFINE(HAVE_SECURE_MKSTEMP, 1, [ ])
564 AC_CACHE_CHECK([for broken inet_ntoa],rsync_cv_REPLACE_INET_NTOA,[
567 #include <sys/types.h>
568 #include <netinet/in.h>
569 #include <arpa/inet.h>
570 main() { struct in_addr ip; ip.s_addr = 0x12345678;
571 if (strcmp(inet_ntoa(ip),"18.52.86.120") &&
572 strcmp(inet_ntoa(ip),"120.86.52.18")) { exit(1); }
574 rsync_cv_REPLACE_INET_NTOA=no,rsync_cv_REPLACE_INET_NTOA=yes,rsync_cv_REPLACE_INET_NTOA=cross)])
575 if test x"$rsync_cv_REPLACE_INET_NTOA" = x"yes"; then
576 AC_DEFINE(REPLACE_INET_NTOA, 1, [ ])
580 AC_CACHE_CHECK([for broken inet_aton],rsync_cv_REPLACE_INET_ATON,[
583 #include <sys/types.h>
584 #include <netinet/in.h>
585 #include <arpa/inet.h>
586 main() { struct in_addr ip;
587 if (inet_aton("example", &ip) == 0) exit(0); exit(1);}],
588 rsync_cv_REPLACE_INET_ATON=no,rsync_cv_REPLACE_INET_ATON=yes,rsync_cv_REPLACE_INET_ATON=cross)])
589 if test x"$rsync_cv_REPLACE_INET_ATON" = x"yes"; then
590 AC_DEFINE(REPLACE_INET_ATON, 1, [ ])
594 # The following test was mostly taken from the tcl/tk plus patches
596 AC_CACHE_CHECK([whether -c -o works],rsync_cv_DASHC_WORKS_WITH_DASHO,[
598 cat > conftest.$ac_ext <<EOF
599 int main() { return 0; }
601 ${CC-cc} -c -o conftest..o conftest.$ac_ext
602 if test -f conftest..o; then
603 rsync_cv_DASHC_WORKS_WITH_DASHO=yes
605 rsync_cv_DASHC_WORKS_WITH_DASHO=no
609 if test x"$rsync_cv_DASHC_WORKS_WITH_DASHO" = x"yes"; then
612 CC_SHOBJ_FLAG='-o $@'
614 OBJ_SAVE=' @b=`basename $@ .o`;rm -f $$b.o.sav;if test -f $$b.o; then mv $$b.o $$b.o.sav;fi;'
615 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'
620 AC_SUBST(OBJ_RESTORE)
621 AC_SUBST(CC_SHOBJ_FLAG)
624 AC_CONFIG_FILES([Makefile lib/dummy zlib/dummy popt/dummy shconfig])
627 if test x"$with_rsh" = x; then
628 if test x"$HAVE_REMSH" = x1; then
636 AC_MSG_RESULT([ **********************************************************************])
637 AC_MSG_RESULT([ * As of v2.6.0, the default remote shell is ssh instead of rsh!! *])
638 AC_MSG_RESULT([ * To use previous default of $rmsh1 ./configure --with-rsh$rmsh2 *])
639 AC_MSG_RESULT([ **********************************************************************])
643 AC_MSG_RESULT([ rsync ${RSYNC_VERSION} configuration successful])