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