]> git.ipfire.org Git - thirdparty/rsync.git/blame - configure.ac
Add progress output via SIGINFO and SIGVTALRM
[thirdparty/rsync.git] / configure.ac
CommitLineData
c627d613 1dnl Process this file with autoconf to produce a configure script.
06963d0f 2
fb7a162f 3AC_INIT([rsync],[3.1.4dev],[http://rsync.samba.org/bugzilla.html])
066ad8c7
TM
4
5AC_CONFIG_MACRO_DIR([m4])
bf5c2bf6 6AC_CONFIG_SRCDIR([byteorder.h])
c627d613 7AC_CONFIG_HEADER(config.h)
23afe207 8AC_PREREQ([2.69])
c627d613 9
00694610
TM
10AC_SUBST(RSYNC_VERSION, $PACKAGE_VERSION)
11AC_MSG_NOTICE([Configuring rsync $PACKAGE_VERSION])
68b2cc55 12
00694610 13AC_DEFINE_UNQUOTED(RSYNC_VERSION, ["$PACKAGE_VERSION"], [rsync release version])
68b2cc55 14
6a48ca56 15LDFLAGS=${LDFLAGS-""}
50abd20b 16
83238ed0 17AC_CANONICAL_HOST
bf5c2bf6 18
317a0e8c
TM
19dnl define the directory for replacement function since AC_LIBOBJ does not
20dnl officially support subdirs and fails with automake
21AC_CONFIG_LIBOBJ_DIR([lib])
22
03b1cddc 23# We must decide this before testing the compiler.
2d1ebe9c 24
47759343
MP
25# Please allow this to default to yes, so that your users have more
26# chance of getting a useful stack trace if problems occur.
27
bf5c2bf6 28AC_MSG_CHECKING([whether to include debugging symbols])
2d1ebe9c 29AC_ARG_ENABLE(debug,
23afe207 30 AS_HELP_STRING([--disable-debug],[disable debugging symbols and features]))
2d1ebe9c 31
79f48760 32if test x"$enable_debug" = x"no"; then
2d1ebe9c 33 AC_MSG_RESULT(no)
44ae5411 34 ac_cv_prog_cc_g=no
bf5c2bf6
MP
35else
36 AC_MSG_RESULT([yes])
23bf32f7 37 dnl AC_DEFINE(DEBUG, 1, [Define to turn on debugging code that may slow normal operation])
44ae5411 38 # leave ac_cv_prog_cc_g alone; AC_PROG_CC will try to include -g if it can
2d1ebe9c
MP
39fi
40
44ae5411
WD
41dnl Checks for programs.
42AC_PROG_CC
43AC_PROG_CPP
44AC_PROG_EGREP
45AC_PROG_INSTALL
70d4a945 46AC_PROG_MKDIR_P
44ae5411
WD
47AC_PROG_CC_STDC
48AC_SUBST(SHELL)
b560a96b 49AC_PATH_PROG([PERL], [perl])
44ae5411
WD
50
51AC_DEFINE([_GNU_SOURCE], 1,
52 [Define _GNU_SOURCE so that we get all necessary prototypes])
53
54if test x"$ac_cv_prog_cc_stdc" = x"no"; then
3f770ab0 55 AC_MSG_WARN([rsync requires an ANSI C compiler and you do not seem to have one])
44ae5411 56fi
da7b6397 57
da7b6397 58AC_ARG_ENABLE(profile,
23afe207 59 AS_HELP_STRING([--enable-profile],[turn on CPU profiling]))
79f48760 60if test x"$enable_profile" = x"yes"; then
da7b6397
MP
61 CFLAGS="$CFLAGS -pg"
62fi
63
64
c0531332
MP
65# Specifically, this turns on panic_action handling.
66AC_ARG_ENABLE(maintainer-mode,
23afe207 67 AS_HELP_STRING([--enable-maintainer-mode],[turn on extra debug features]))
79f48760 68if test x"$enable_maintainer_mode" = x"yes"; then
c0531332
MP
69 CFLAGS="$CFLAGS -DMAINTAINER_MODE"
70fi
71
72
da7b6397
MP
73# This is needed for our included version of popt. Kind of silly, but
74# I don't want our version too far out of sync.
1ac15cd8
MP
75CFLAGS="$CFLAGS -DHAVE_CONFIG_H"
76
47759343 77# If GCC, turn on warnings.
79f48760 78if test x"$GCC" = x"yes"; then
99f106d1 79 CFLAGS="$CFLAGS -Wall -W"
47759343
MP
80fi
81
2d1ebe9c 82AC_ARG_WITH(included-popt,
23afe207 83 AS_HELP_STRING([--with-included-popt],[use bundled popt library, not from system]))
2d1ebe9c 84
7da17144 85AC_ARG_WITH(included-zlib,
23afe207 86 AS_HELP_STRING([--with-included-zlib],[use bundled zlib library, not from system]))
7da17144 87
4c4a2962 88AC_ARG_WITH(protected-args,
23afe207 89 AS_HELP_STRING([--with-protected-args],[make --protected-args option the default]))
4c4a2962
WD
90if test x"$with_protected_args" = x"yes"; then
91 AC_DEFINE_UNQUOTED(RSYNC_USE_PROTECTED_ARGS, 1, [Define to 1 if --protected-args should be the default])
92fi
93
41bd28fe 94AC_ARG_WITH(rsync-path,
23afe207 95 AS_HELP_STRING([--with-rsync-path=PATH],[set default --rsync-path to PATH (default: rsync)]),
8642efd0 96 [ RSYNC_PATH="$with_rsync_path" ],
41bd28fe 97 [ RSYNC_PATH="rsync" ])
81c652d5
MP
98
99AC_DEFINE_UNQUOTED(RSYNC_PATH, "$RSYNC_PATH", [location of rsync on remote machine])
100
cd3fe9fb 101AC_ARG_WITH(rsyncd-conf,
23afe207 102 AS_HELP_STRING([--with-rsyncd-conf=PATH],[set configuration file for rsync server to PATH (default: /etc/rsyncd.conf)]),
cd3fe9fb
WD
103 [ if test ! -z "$with_rsyncd_conf" ; then
104 case $with_rsyncd_conf in
105 yes|no)
106 RSYNCD_SYSCONF="/etc/rsyncd.conf"
107 ;;
108 /*)
109 RSYNCD_SYSCONF="$with_rsyncd_conf"
110 ;;
111 *)
112 AC_MSG_ERROR(You must specify an absolute path to --with-rsyncd-conf=PATH)
113 ;;
114 esac
115 else
116 RSYNCD_SYSCONF="/etc/rsyncd.conf"
117 fi ],
118 [ RSYNCD_SYSCONF="/etc/rsyncd.conf" ])
119
120AC_DEFINE_UNQUOTED(RSYNCD_SYSCONF, "$RSYNCD_SYSCONF", [location of configuration file for rsync server])
121
81c652d5 122AC_ARG_WITH(rsh,
23afe207 123 AS_HELP_STRING([--with-rsh=CMD],[set remote shell command to CMD (default: ssh)]))
41bd28fe 124
7b8356d0 125AC_CHECK_PROG(HAVE_REMSH, remsh, 1, 0)
89ec535a
WD
126if test x$HAVE_REMSH = x1; then
127 AC_DEFINE(HAVE_REMSH, 1, [Define to 1 if remote shell is remsh, not rsh])
128fi
81c652d5 129
79f48760 130if test x"$with_rsh" != x; then
81c652d5 131 RSYNC_RSH="$with_rsh"
81c652d5 132else
f40f2fc8 133 RSYNC_RSH="ssh"
81c652d5 134fi
81c652d5 135AC_DEFINE_UNQUOTED(RSYNC_RSH, "$RSYNC_RSH", [default -e command])
f0af1e5e 136
225787a4
WD
137AC_CHECK_PROG(HAVE_YODL2MAN, yodl2man, 1, 0)
138if test x$HAVE_YODL2MAN = x1; then
139 MAKE_MAN=man
03080929
WD
140else
141 MAKE_MAN=man-copy
225787a4
WD
142fi
143
439d5d89
WD
144# Some programs on solaris are only found in /usr/xpg4/bin (or work better than others versions).
145AC_PATH_PROG(SHELL_PATH, sh, /bin/sh, [/usr/xpg4/bin$PATH_SEPARATOR$PATH])
146AC_PATH_PROG(FAKEROOT_PATH, fakeroot, /usr/bin/fakeroot, [/usr/xpg4/bin$PATH_SEPARATOR$PATH])
147
cc1b4f77 148AC_ARG_WITH(nobody-group,
23afe207 149 AS_HELP_STRING([--with-nobody-group=GROUP],[set the default unprivileged group (default nobody or nogroup)]),
cc1b4f77
WD
150 [ NOBODY_GROUP="$with_nobody_group" ])
151
152if test x"$with_nobody_group" = x; then
153 AC_MSG_CHECKING([the group for user "nobody"])
154 if grep '^nobody:' /etc/group >/dev/null 2>&1; then
155 NOBODY_GROUP=nobody
156 elif grep '^nogroup:' /etc/group >/dev/null 2>&1; then
157 NOBODY_GROUP=nogroup
158 else
159 NOBODY_GROUP=nobody # test for others?
160 fi
161 AC_MSG_RESULT($NOBODY_GROUP)
58418cb0 162fi
cc1b4f77 163
58418cb0
WD
164AC_DEFINE_UNQUOTED(NOBODY_USER, "nobody", [unprivileged user--e.g. nobody])
165AC_DEFINE_UNQUOTED(NOBODY_GROUP, "$NOBODY_GROUP", [unprivileged group for unprivileged user])
166
03e23e07 167# arrgh. libc in some old debian version screwed up the largefile
f0af1e5e
AT
168# stuff, getting byte range locking wrong
169AC_CACHE_CHECK([for broken largefile support],rsync_cv_HAVE_BROKEN_LARGEFILE,[
23afe207 170AC_RUN_IFELSE([AC_LANG_SOURCE([[
f0af1e5e
AT
171#define _FILE_OFFSET_BITS 64
172#include <stdio.h>
173#include <fcntl.h>
174#include <sys/types.h>
175#include <sys/wait.h>
176
2ef2e822 177int main(void)
f0af1e5e
AT
178{
179 struct flock lock;
9eac94a4
WD
180 int status;
181 char tpl[32] = "/tmp/locktest.XXXXXX";
182 int fd = mkstemp(tpl);
183 if (fd < 0) {
184 strcpy(tpl, "conftest.dat");
185 fd = open(tpl, O_CREAT|O_RDWR, 0600);
186 }
187
f0af1e5e
AT
188 lock.l_type = F_WRLCK;
189 lock.l_whence = SEEK_SET;
190 lock.l_start = 0;
191 lock.l_len = 1;
192 lock.l_pid = 0;
f0af1e5e
AT
193 fcntl(fd,F_SETLK,&lock);
194 if (fork() == 0) {
9eac94a4
WD
195 lock.l_start = 1;
196 _exit(fcntl(fd,F_SETLK,&lock) == 0);
197 }
198 wait(&status);
199 unlink(tpl);
f0af1e5e
AT
200 exit(WEXITSTATUS(status));
201}
23afe207 202]])],[rsync_cv_HAVE_BROKEN_LARGEFILE=yes],[rsync_cv_HAVE_BROKEN_LARGEFILE=no],[rsync_cv_HAVE_BROKEN_LARGEFILE=cross])])
f0af1e5e
AT
203if test x"$rsync_cv_HAVE_BROKEN_LARGEFILE" != x"yes"; then
204 AC_SYS_LARGEFILE
205fi
206
06963d0f
MP
207ipv6type=unknown
208ipv6lib=none
22cd0063 209ipv6trylibc=yes
06963d0f 210
2ef2e822 211AC_ARG_ENABLE(ipv6,
23afe207 212 AS_HELP_STRING([--disable-ipv6],[do not even try to use IPv6]))
79f48760 213if test x"$enable_ipv6" != x"no"; then
06963d0f 214 AC_MSG_CHECKING([ipv6 stack type])
8a68cad1 215 for i in inria kame linux-glibc linux-inet6 solaris toshiba v6d zeta cygwin; do
06963d0f
MP
216 case $i in
217 inria)
218 # http://www.kame.net/
219 AC_EGREP_CPP(yes, [
220#include <netinet/in.h>
221#ifdef IPV6_INRIA_VERSION
222yes
223#endif],
224 [ipv6type=$i;
a358449a
MP
225 AC_DEFINE(INET6, 1, [true if you have IPv6])
226 ])
06963d0f
MP
227 ;;
228 kame)
229 # http://www.kame.net/
230 AC_EGREP_CPP(yes, [
231#include <netinet/in.h>
232#ifdef __KAME__
233yes
234#endif],
2ef2e822 235 [ipv6type=$i;
a358449a 236 AC_DEFINE(INET6, 1, [true if you have IPv6])])
06963d0f
MP
237 ;;
238 linux-glibc)
239 # http://www.v6.linux.or.jp/
240 AC_EGREP_CPP(yes, [
241#include <features.h>
242#if defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
243yes
244#endif],
245 [ipv6type=$i;
a358449a 246AC_DEFINE(INET6, 1, [true if you have IPv6])])
06963d0f
MP
247 ;;
248 linux-inet6)
249 # http://www.v6.linux.or.jp/
250 if test -d /usr/inet6 -o -f /usr/inet6/lib/libinet6.a; then
251 ipv6type=$i
252 ipv6lib=inet6
253 ipv6libdir=/usr/inet6/lib
254 ipv6trylibc=yes;
a358449a
MP
255 AC_DEFINE(INET6, 1, [true if you have IPv6])
256 CFLAGS="-I/usr/inet6/include $CFLAGS"
06963d0f
MP
257 fi
258 ;;
62342430
WD
259 solaris)
260 # http://www.sun.com
261 AC_EGREP_CPP(yes, [
262#include <netinet/ip6.h>
263#ifdef __sun
264yes
265#endif],
266 [ipv6type=$i;
267 AC_DEFINE(INET6, 1, [true if you have IPv6])])
268 ;;
06963d0f
MP
269 toshiba)
270 AC_EGREP_CPP(yes, [
271#include <sys/param.h>
272#ifdef _TOSHIBA_INET6
273yes
274#endif],
275 [ipv6type=$i;
276 ipv6lib=inet6;
277 ipv6libdir=/usr/local/v6/lib;
a358449a 278 AC_DEFINE(INET6, 1, [true if you have IPv6])])
06963d0f
MP
279 ;;
280 v6d)
281 AC_EGREP_CPP(yes, [
282#include </usr/local/v6/include/sys/v6config.h>
283#ifdef __V6D__
284yes
285#endif],
286 [ipv6type=$i;
287 ipv6lib=v6;
288 ipv6libdir=/usr/local/v6/lib;
a358449a 289 AC_DEFINE(INET6, 1, [true if you have IPv6])])
06963d0f
MP
290 ;;
291 zeta)
292 AC_EGREP_CPP(yes, [
293#include <sys/param.h>
294#ifdef _ZETA_MINAMI_INET6
295yes
296#endif],
297 [ipv6type=$i;
298 ipv6lib=inet6;
299 ipv6libdir=/usr/local/v6/lib;
a358449a 300 AC_DEFINE(INET6, 1, [true if you have IPv6])])
06963d0f 301 ;;
8a68cad1
WD
302 cygwin)
303 AC_EGREP_CPP(yes, [
304#include <netinet/in.h>
305#ifdef _CYGWIN_IN6_H
306yes
307#endif],
308 [ipv6type=$i;
309 AC_DEFINE(INET6, 1, [true if you have IPv6])])
310 ;;
06963d0f
MP
311 esac
312 if test "$ipv6type" != "unknown"; then
313 break
314 fi
315 done
316 AC_MSG_RESULT($ipv6type)
06963d0f 317
17d5a07e
MP
318 AC_SEARCH_LIBS(getaddrinfo, inet6)
319fi
06963d0f 320
79f48760
WD
321dnl Do you want to disable use of locale functions
322AC_ARG_ENABLE([locale],
23afe207 323 AS_HELP_STRING([--disable-locale],[disable locale features]))
79f48760 324AH_TEMPLATE([CONFIG_LOCALE],
3f770ab0 325[Undefine if you do not want locale features. By default this is defined.])
79f48760
WD
326if test x"$enable_locale" != x"no"; then
327 AC_DEFINE(CONFIG_LOCALE)
328fi
329
9f639210
DD
330AC_MSG_CHECKING([whether to call shutdown on all sockets])
331case $host_os in
332 *cygwin* ) AC_MSG_RESULT(yes)
2ef2e822 333 AC_DEFINE(SHUTDOWN_ALL_SOCKETS, 1,
0d2aa5d9 334 [Define to 1 if sockets need to be shutdown])
8ed16deb
DD
335 ;;
336 * ) AC_MSG_RESULT(no);;
337esac
338
cd957c70 339AC_C_BIGENDIAN
c627d613 340AC_HEADER_DIRENT
c627d613
AT
341AC_HEADER_TIME
342AC_HEADER_SYS_WAIT
1cb6f3bf
WD
343AC_CHECK_HEADERS(sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h \
344 unistd.h utime.h grp.h compat.h sys/param.h ctype.h sys/wait.h \
345 sys/ioctl.h sys/filio.h string.h stdlib.h sys/socket.h sys/mode.h \
4d30f176 346 sys/un.h sys/attr.h mcheck.h arpa/inet.h arpa/nameser.h locale.h \
8afaef42
WD
347 netdb.h malloc.h float.h limits.h iconv.h libcharset.h langinfo.h \
348 sys/acl.h acl/libacl.h attr/xattr.h sys/xattr.h sys/extattr.h \
7da17144
WD
349 popt.h popt/popt.h linux/falloc.h netinet/in_systm.h netinet/ip.h \
350 zlib.h)
3c3791e8 351AC_HEADER_MAJOR
c627d613 352
e8d97006 353AC_CACHE_CHECK([if makedev takes 3 args],rsync_cv_MAKEDEV_TAKES_3_ARGS,[
23afe207 354AC_RUN_IFELSE([AC_LANG_SOURCE([[
e8d97006
WD
355#include <sys/types.h>
356#ifdef MAJOR_IN_MKDEV
357#include <sys/mkdev.h>
358# if !defined makedev && (defined mkdev || defined _WIN32 || defined __WIN32__)
359# define makedev mkdev
360# endif
361#elif defined MAJOR_IN_SYSMACROS
362#include <sys/sysmacros.h>
363#endif
364
365int main(void)
366{
367 dev_t dev = makedev(0, 5, 7);
368 if (major(dev) != 5 || minor(dev) != 7)
369 exit(1);
370 return 0;
371}
23afe207 372]])],[rsync_cv_MAKEDEV_TAKES_3_ARGS=yes],[rsync_cv_MAKEDEV_TAKES_3_ARGS=no],[rsync_cv_MAKEDEV_TAKES_3_ARGS=no])])
e8d97006
WD
373if test x"$rsync_cv_MAKEDEV_TAKES_3_ARGS" = x"yes"; then
374 AC_DEFINE(MAKEDEV_TAKES_3_ARGS, 1, [Define to 1 if makedev() takes 3 args])
375fi
376
c627d613
AT
377AC_CHECK_SIZEOF(int)
378AC_CHECK_SIZEOF(long)
e32db5c9 379AC_CHECK_SIZEOF(long long)
c627d613 380AC_CHECK_SIZEOF(short)
edb4ba5f
WD
381AC_CHECK_SIZEOF(int16_t)
382AC_CHECK_SIZEOF(uint16_t)
383AC_CHECK_SIZEOF(int32_t)
384AC_CHECK_SIZEOF(uint32_t)
385AC_CHECK_SIZEOF(int64_t)
e32db5c9
WD
386AC_CHECK_SIZEOF(off_t)
387AC_CHECK_SIZEOF(off64_t)
f3c93b17 388AC_CHECK_SIZEOF(time_t)
c627d613
AT
389
390AC_C_INLINE
391
23afe207
WD
392AC_TYPE_LONG_DOUBLE_WIDER
393ac_cv_c_long_double=$ac_cv_type_long_double_wider
394if test $ac_cv_c_long_double = yes; then
395 AC_DEFINE([HAVE_LONG_DOUBLE],[1],[Define to 1 if the type `long double' works and has more range or precision than `double'.])
396fi
397
c627d613 398AC_TYPE_UID_T
a1f7c8e2 399AC_CHECK_TYPES([mode_t,off_t,size_t,pid_t,id_t])
9422bb3f 400AC_TYPE_GETGROUPS
1a2e41af
WD
401AC_CHECK_MEMBERS([struct stat.st_rdev,
402 struct stat.st_mtimensec,
b7799aae 403 struct stat.st_mtimespec.tv_nsec,
1a2e41af
WD
404 struct stat.st_mtim.tv_nsec],,,[
405#ifdef HAVE_SYS_TYPES_H
406#include <sys/types.h>
407#endif
408#ifdef HAVE_SYS_STAT_H
409#include <sys/stat.h>
410#endif
411#ifdef HAVE_UNISTD_H
412#include <unistd.h>
413#endif])
bf5c2bf6 414
7ca6e856 415TYPE_SOCKLEN_T
c627d613 416
7b3d4257 417AC_CACHE_CHECK([for errno in errno.h],rsync_cv_errno, [
23afe207 418 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <errno.h>]], [[int i = errno]])],[rsync_cv_errno=yes],[rsync_cv_have_errno_decl=no])])
7b3d4257 419if test x"$rsync_cv_errno" = x"yes"; then
0d2aa5d9 420 AC_DEFINE(HAVE_ERRNO_DECL, 1, [Define to 1 if errno is declared in errno.h])
7597e1a9 421fi
c627d613 422
a784e10d
DD
423# The following test taken from the cvs sources
424# If we can't find connect, try looking in -lsocket, -lnsl, and -linet.
425# These need checks to be before checks for any other functions that
426# might be in the same libraries.
427# The Irix 5 libc.so has connect and gethostbyname, but Irix 5 also has
428# libsocket.so which has a bad implementation of gethostbyname (it
429# only looks in /etc/hosts), so we only look for -lsocket if we need
430# it.
431AC_CHECK_FUNCS(connect)
432if test x"$ac_cv_func_connect" = x"no"; then
433 case "$LIBS" in
434 *-lnsl*) ;;
435 *) AC_CHECK_LIB(nsl_s, printf) ;;
436 esac
437 case "$LIBS" in
438 *-lnsl*) ;;
439 *) AC_CHECK_LIB(nsl, printf) ;;
440 esac
441 case "$LIBS" in
442 *-lsocket*) ;;
443 *) AC_CHECK_LIB(socket, connect) ;;
444 esac
445 case "$LIBS" in
446 *-linet*) ;;
447 *) AC_CHECK_LIB(inet, connect) ;;
448 esac
449 dnl We can't just call AC_CHECK_FUNCS(connect) here, because the value
450 dnl has been cached.
2ef2e822 451 if test x"$ac_cv_lib_socket_connect" = x"yes" ||
a784e10d
DD
452 test x"$ac_cv_lib_inet_connect" = x"yes"; then
453 # ac_cv_func_connect=yes
454 # don't! it would cause AC_CHECK_FUNC to succeed next time configure is run
0d2aa5d9 455 AC_DEFINE(HAVE_CONNECT, 1, [Define to 1 if you have the "connect" function])
a784e10d
DD
456 fi
457fi
458
10a1d6b4 459AC_SEARCH_LIBS(inet_ntop, resolv)
f9cfaae9 460
d699d815
WD
461# For OS X, Solaris, HP-UX, etc.: figure out if -liconv is needed. We'll
462# accept either iconv_open or libiconv_open, since some include files map
463# the former to the latter.
464AC_SEARCH_LIBS(iconv_open, iconv)
f9cfaae9 465AC_SEARCH_LIBS(libiconv_open, iconv)
8f694072 466
f9b66bc4
WD
467AC_MSG_CHECKING([for iconv declaration])
468AC_CACHE_VAL(am_cv_proto_iconv, [
23afe207 469 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
3ebdd3c7
WD
470#include <stdlib.h>
471#include <iconv.h>
472extern
473#ifdef __cplusplus
474"C"
475#endif
476#if defined(__STDC__) || defined(__cplusplus)
477size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
478#else
479size_t iconv();
480#endif
23afe207 481]], [[]])],[am_cv_proto_iconv_arg1=""],[am_cv_proto_iconv_arg1="const"])
3ebdd3c7
WD
482 am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"])
483 am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'`
f9b66bc4 484AC_MSG_RESULT([$]{ac_t:-
3ebdd3c7 485 }[$]am_cv_proto_iconv)
f9b66bc4
WD
486AC_DEFINE_UNQUOTED(ICONV_CONST, $am_cv_proto_iconv_arg1,
487 [Define as const if the declaration of iconv() needs const.])
3ebdd3c7 488
99f106d1 489dnl AC_MSG_NOTICE([Looking in libraries: $LIBS])
e94989fe 490
317a0e8c 491AC_REPLACE_FUNCS([inet_ntop inet_pton])
356bbb83 492
4021aa45 493AC_HAVE_TYPE([struct addrinfo], [#include <netdb.h>])
2213961e
WD
494AC_HAVE_TYPE([struct sockaddr_storage], [#include <sys/types.h>
495#include <sys/socket.h>])
4021aa45 496
824f1c79
DD
497# Irix 6.5 has getaddrinfo but not the corresponding defines, so use
498# builtin getaddrinfo if one of the defines don't exist
184dede9
DD
499AC_CACHE_CHECK([whether defines needed by getaddrinfo exist],
500 rsync_cv_HAVE_GETADDR_DEFINES,[
501 AC_EGREP_CPP(yes, [
502 #include <sys/types.h>
503 #include <sys/socket.h>
504 #include <netdb.h>
505 #ifdef AI_PASSIVE
506 yes
2ef2e822 507 #endif],
184dede9
DD
508 rsync_cv_HAVE_GETADDR_DEFINES=yes,
509 rsync_cv_HAVE_GETADDR_DEFINES=no)])
3bc31976 510AS_IF([test x"$rsync_cv_HAVE_GETADDR_DEFINES" = x"yes" -a x"$ac_cv_type_struct_addrinfo" = x"yes"],[
824f1c79
DD
511 # Tru64 UNIX has getaddrinfo() but has it renamed in libc as
512 # something else so we must include <netdb.h> to get the
513 # redefinition.
514 AC_CHECK_FUNCS(getaddrinfo, ,
515 [AC_MSG_CHECKING([for getaddrinfo by including <netdb.h>])
23afe207 516 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
824f1c79 517 #include <sys/socket.h>
23afe207 518 #include <netdb.h>]], [[getaddrinfo(NULL, NULL, NULL, NULL);]])],[AC_MSG_RESULT([yes])
824f1c79 519 AC_DEFINE(HAVE_GETADDRINFO, 1,
23afe207 520 [Define to 1 if you have the "getaddrinfo" function and required types.])],[AC_MSG_RESULT([no])
8e3a6db8 521 AC_LIBOBJ([getaddrinfo])])])
3bc31976 522 ],[AC_LIBOBJ([getaddrinfo])])
824f1c79 523
2ef2e822 524AC_CHECK_MEMBER([struct sockaddr.sa_len],
b4b90120 525 [ AC_DEFINE(HAVE_SOCKADDR_LEN, 1, [Do we have sockaddr.sa_len?]) ],
0042f818
WD
526 [],
527 [
528#include <sys/types.h>
529#include <sys/socket.h>
530])
531
b4b90120
WD
532AC_CHECK_MEMBER([struct sockaddr_in.sin_len],
533 [ AC_DEFINE(HAVE_SOCKADDR_IN_LEN, 1, [Do we have sockaddr_in.sin_len?]) ],
356bbb83
MP
534 [],
535 [
536#include <sys/types.h>
537#include <sys/socket.h>
b4b90120 538#include <netinet/in.h>
356bbb83
MP
539])
540
e49d7200
WD
541AC_CHECK_MEMBER([struct sockaddr_un.sun_len],
542 [ AC_DEFINE(HAVE_SOCKADDR_UN_LEN, 1, [Do we have sockaddr_un.sun_len?]) ],
543 [],
544 [
545#include <sys/types.h>
546#include <sys/socket.h>
547#include <netinet/in.h>
548])
549
bc2b4963 550AC_CHECK_MEMBER([struct sockaddr_in6.sin6_scope_id],
a1d8f29a 551 [ AC_DEFINE(HAVE_SOCKADDR_IN6_SCOPE_ID, 1, [Do we have sockaddr_in6.sin6_scope_id?]) ],
bc2b4963
DD
552 [],
553 [
554#include <sys/types.h>
555#include <sys/socket.h>
556#include <netinet/in.h>
557])
558
4021aa45 559AC_HAVE_TYPE([struct stat64], [#include <stdio.h>
c83a2c8e
WD
560#if HAVE_SYS_TYPES_H
561# include <sys/types.h>
562#endif
563#if HAVE_SYS_STAT_H
564# include <sys/stat.h>
565#endif
566#if STDC_HEADERS
567# include <stdlib.h>
568# include <stddef.h>
569#else
570# if HAVE_STDLIB_H
571# include <stdlib.h>
572# endif
573#endif
4021aa45 574])
c83a2c8e 575
a784e10d
DD
576# if we can't find strcasecmp, look in -lresolv (for Unixware at least)
577#
578AC_CHECK_FUNCS(strcasecmp)
579if test x"$ac_cv_func_strcasecmp" = x"no"; then
580 AC_CHECK_LIB(resolv, strcasecmp)
581fi
582
1c3344a1
WD
583AC_CHECK_FUNCS(aclsort)
584if test x"$ac_cv_func_aclsort" = x"no"; then
585 AC_CHECK_LIB(sec, aclsort)
586fi
587
87fcb639
MP
588dnl At the moment we don't test for a broken memcmp(), because all we
589dnl need to do is test for equality, not comparison, and it seems that
2ef2e822 590dnl every platform has a memcmp that can do at least that.
87fcb639
MP
591dnl AC_FUNC_MEMCMP
592
c627d613 593AC_FUNC_UTIME_NULL
7fc08908 594AC_FUNC_ALLOCA
8ce65463
WD
595AC_CHECK_FUNCS(waitpid wait4 getcwd strdup chown chmod lchmod mknod mkfifo \
596 fchmod fstat ftruncate strchr readlink link utime utimes lutimes strftime \
4d30f176 597 memmove lchown vsnprintf snprintf vasprintf asprintf setsid strpbrk \
84e1a698 598 strlcat strlcpy strtol mallinfo getgroups setgroups geteuid getegid \
8ce65463 599 setlocale setmode open64 lseek64 mkstemp64 mtrace va_copy __va_copy \
cece2e3f 600 seteuid strerror putenv iconv_open locale_charset nl_langinfo getxattr \
7f367bb1 601 extattr_get_link sigaction sigprocmask setattrlist getgrouplist \
51e23e0a 602 initgroups utimensat posix_fallocate attropen setvbuf nanosleep usleep)
24c857f1 603
b6800a0b
WD
604dnl cygwin iconv.h defines iconv_open as libiconv_open
605if test x"$ac_cv_func_iconv_open" != x"yes"; then
606 AC_CHECK_FUNC(libiconv_open, [ac_cv_func_iconv_open=yes; AC_DEFINE(HAVE_ICONV_OPEN, 1)])
607fi
608
28b519c9
WD
609dnl Preallocation stuff (also fallocate, posix_fallocate function tests above):
610
611AC_CACHE_CHECK([for useable fallocate],rsync_cv_have_fallocate,[
23afe207
WD
612AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <fcntl.h>
613#include <sys/types.h>]], [[fallocate(0, 0, 0, 0);]])],[rsync_cv_have_fallocate=yes],[rsync_cv_have_fallocate=no])])
28b519c9
WD
614if test x"$rsync_cv_have_fallocate" = x"yes"; then
615 AC_DEFINE(HAVE_FALLOCATE, 1, [Define to 1 if you have the fallocate function and it compiles and links without error])
616fi
617
f3873b3d
WD
618AC_MSG_CHECKING([for FALLOC_FL_PUNCH_HOLE])
619AC_PREPROC_IFELSE([AC_LANG_SOURCE([[
620 #define _GNU_SOURCE 1
621 #include <linux/falloc.h>
622 #ifndef FALLOC_FL_PUNCH_HOLE
623 #error FALLOC_FL_PUNCH_HOLE is missing
624 #endif
625 ]])], [
626 AC_MSG_RESULT([yes])
627 AC_DEFINE([HAVE_FALLOC_FL_PUNCH_HOLE], [1], [Define if FALLOC_FL_PUNCH_HOLE is available.])
628 ], [
629 AC_MSG_RESULT([no])
630 ]
631)
632
633AC_MSG_CHECKING([for FALLOC_FL_ZERO_RANGE])
634AC_PREPROC_IFELSE([AC_LANG_SOURCE([[
635 #define _GNU_SOURCE 1
636 #include <linux/falloc.h>
637 #ifndef FALLOC_FL_ZERO_RANGE
638 #error FALLOC_FL_ZERO_RANGE is missing
639 #endif
640 ]])], [
641 AC_MSG_RESULT([yes])
642 AC_DEFINE([HAVE_FALLOC_FL_ZERO_RANGE], [1], [Define if FALLOC_FL_ZERO_RANGE is available.])
643 ], [
644 AC_MSG_RESULT([no])
645 ]
646)
647
28b519c9 648AC_CACHE_CHECK([for SYS_fallocate],rsync_cv_have_sys_fallocate,[
23afe207
WD
649AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/syscall.h>
650#include <sys/types.h>]], [[syscall(SYS_fallocate, 0, 0, (loff_t)0, (loff_t)0);]])],[rsync_cv_have_sys_fallocate=yes],[rsync_cv_have_sys_fallocate=no])])
28b519c9
WD
651if test x"$rsync_cv_have_sys_fallocate" = x"yes"; then
652 AC_DEFINE(HAVE_SYS_FALLOCATE, 1, [Define to 1 if you have the SYS_fallocate syscall number])
653fi
654
655if test x"$ac_cv_func_posix_fallocate" = x"yes"; then
656 AC_MSG_CHECKING([whether posix_fallocate is efficient])
657 case $host_os in
658 *cygwin*)
659 AC_MSG_RESULT(yes)
660 AC_DEFINE(HAVE_EFFICIENT_POSIX_FALLOCATE, 1,
661 [Define if posix_fallocate is efficient (Cygwin)])
662 ;;
663 *)
664 AC_MSG_RESULT(no)
665 ;;
666 esac
667fi
668
669dnl End of preallocation stuff
670
21524e30
WD
671AC_CHECK_FUNCS(getpgrp tcgetpgrp)
672if test $ac_cv_func_getpgrp = yes; then
673 AC_FUNC_GETPGRP
674fi
675
49c24071 676AC_ARG_ENABLE(iconv-open,
23afe207 677 AS_HELP_STRING([--disable-iconv-open],[disable all use of iconv_open() function]),
49c24071
WD
678 [], [enable_iconv_open=$ac_cv_func_iconv_open])
679
680if test x"$enable_iconv_open" != x"no"; then
681 AC_DEFINE(USE_ICONV_OPEN, 1, [Define to 1 if you want rsync to make use of iconv_open()])
682fi
683
332cf6df 684AC_ARG_ENABLE(iconv,
23afe207 685 AS_HELP_STRING([--disable-iconv],[disable rsync's --iconv option]),
49c24071 686 [], [enable_iconv=$enable_iconv_open])
332cf6df
WD
687AH_TEMPLATE([ICONV_OPTION],
688[Define if you want the --iconv option. Specifing a value will set the
689default iconv setting (a NULL means no --iconv processing by default).])
690if test x"$enable_iconv" != x"no"; then
691 if test x"$enable_iconv" = x"yes"; then
692 AC_DEFINE(ICONV_OPTION, NULL)
693 else
694 AC_DEFINE_UNQUOTED(ICONV_OPTION, "$enable_iconv")
695 fi
696 AC_DEFINE(UTF8_CHARSET, "UTF-8", [String to pass to iconv() for the UTF-8 charset.])
697fi
698
0037bf23 699AC_CACHE_CHECK([whether chown() modifies symlinks],rsync_cv_chown_modifies_symlink,[
23afe207 700 AC_RUN_IFELSE([AC_LANG_SOURCE([[
21524e30
WD
701#if HAVE_UNISTD_H
702# include <unistd.h>
703#endif
704#include <stdlib.h>
705#include <errno.h>
706 main() {
707 char const *dangling_symlink = "conftest.dangle";
708 unlink(dangling_symlink);
709 if (symlink("conftest.no-such", dangling_symlink) < 0) abort();
0037bf23
WD
710 if (chown(dangling_symlink, getuid(), getgid()) < 0 && errno == ENOENT) exit(1);
711 exit(0);
23afe207 712 }]])],[rsync_cv_chown_modifies_symlink=yes],[rsync_cv_chown_modifies_symlink=no],[rsync_cv_chown_modifies_symlink=no])])
0037bf23 713if test $rsync_cv_chown_modifies_symlink = yes; then
0d2aa5d9 714 AC_DEFINE(CHOWN_MODIFIES_SYMLINK, 1, [Define to 1 if chown modifies symlinks.])
21524e30
WD
715fi
716
0037bf23 717AC_CACHE_CHECK([whether link() can hard-link symlinks],rsync_cv_can_hardlink_symlink,[
23afe207 718 AC_RUN_IFELSE([AC_LANG_SOURCE([[
0037bf23
WD
719#if HAVE_UNISTD_H
720# include <unistd.h>
721#endif
722#include <stdlib.h>
723#include <errno.h>
724#define FILENAME "conftest.dangle"
725 main() {
726 unlink(FILENAME);
727 if (symlink("conftest.no-such", FILENAME) < 0) abort();
0466e46b 728 unlink(FILENAME "2");
0037bf23
WD
729 if (link(FILENAME, FILENAME "2") < 0) exit(1);
730 exit(0);
23afe207 731 }]])],[rsync_cv_can_hardlink_symlink=yes],[rsync_cv_can_hardlink_symlink=no],[rsync_cv_can_hardlink_symlink=no])])
0037bf23
WD
732if test $rsync_cv_can_hardlink_symlink = yes; then
733 AC_DEFINE(CAN_HARDLINK_SYMLINK, 1, [Define to 1 if link() can hard-link symlinks.])
734fi
735
736AC_CACHE_CHECK([whether link() can hard-link special files],rsync_cv_can_hardlink_special,[
23afe207 737 AC_RUN_IFELSE([AC_LANG_SOURCE([[
0037bf23
WD
738#if HAVE_UNISTD_H
739# include <unistd.h>
740#endif
741#include <stdlib.h>
742#include <errno.h>
743#define FILENAME "conftest.fifi"
744 main() {
745 unlink(FILENAME);
746 if (mkfifo(FILENAME, 0777) < 0) abort();
0466e46b 747 unlink(FILENAME "2");
0037bf23
WD
748 if (link(FILENAME, FILENAME "2") < 0) exit(1);
749 exit(0);
23afe207 750 }]])],[rsync_cv_can_hardlink_special=yes],[rsync_cv_can_hardlink_special=no],[rsync_cv_can_hardlink_special=no])])
0037bf23
WD
751if test $rsync_cv_can_hardlink_special = yes; then
752 AC_DEFINE(CAN_HARDLINK_SPECIAL, 1, [Define to 1 if link() can hard-link special files.])
753fi
754
24c857f1 755AC_CACHE_CHECK([for working socketpair],rsync_cv_HAVE_SOCKETPAIR,[
23afe207 756AC_RUN_IFELSE([AC_LANG_SOURCE([[
6a5ef41f
MP
757#include <sys/types.h>
758#include <sys/socket.h>
759
760main() {
761 int fd[2];
762 exit((socketpair(AF_UNIX, SOCK_STREAM, 0, fd) != -1) ? 0 : 1);
23afe207 763}]])],[rsync_cv_HAVE_SOCKETPAIR=yes],[rsync_cv_HAVE_SOCKETPAIR=no],[rsync_cv_HAVE_SOCKETPAIR=cross])])
24c857f1 764if test x"$rsync_cv_HAVE_SOCKETPAIR" = x"yes"; then
0d2aa5d9 765 AC_DEFINE(HAVE_SOCKETPAIR, 1, [Define to 1 if you have the "socketpair" function])
24c857f1 766fi
c627d613 767
317a0e8c 768AC_REPLACE_FUNCS([getpass])
333e3a9f 769
79f48760 770if test x"$with_included_popt" != x"yes"; then
1ac15cd8
MP
771 AC_CHECK_LIB(popt, poptGetContext, , [with_included_popt=yes])
772fi
8afaef42
WD
773if test x"$ac_cv_header_popt_popt_h" = x"yes"; then
774 # If the system has /usr/include/popt/popt.h, we enable the
775 # included popt because an attempt to "#include <popt/popt.h>"
776 # would use our included header file anyway (due to -I.), and
d7b6774d 777 # might conflict with the system popt.
8afaef42 778 with_included_popt=yes
6de417d9
WD
779elif test x"$ac_cv_header_popt_h" != x"yes"; then
780 with_included_popt=yes
8afaef42 781fi
2d1ebe9c 782
12458878 783AC_MSG_CHECKING([whether to use included libpopt])
79f48760 784if test x"$with_included_popt" = x"yes"; then
12458878 785 AC_MSG_RESULT($srcdir/popt)
1ac15cd8 786 BUILD_POPT='$(popt_OBJS)'
6ffd8f21 787 CFLAGS="-I$srcdir/popt $CFLAGS"
5216de37 788 if test x"$ALLOCA" != x
7fc08908 789 then
5216de37
DD
790 # this can be removed when/if we add an included alloca.c;
791 # see autoconf documentation on AC_FUNC_ALLOCA
8af534a5 792 AC_MSG_WARN([included libpopt will use malloc, not alloca (which wastes a small amount of memory)])
7fc08908 793 fi
2d1ebe9c
MP
794else
795 AC_MSG_RESULT(no)
79fc6bdb 796fi
c627d613 797
7da17144
WD
798# We default to using our zlib unless --with-included-zlib=no is given.
799if test x"$with_included_zlib" != x"no"; then
800 with_included_zlib=yes
801elif test x"$ac_cv_header_zlib_h" != x"yes"; then
802 with_included_zlib=yes
803fi
804if test x"$with_included_zlib" != x"yes"; then
805 AC_CHECK_LIB(z, deflateParams, , [with_included_zlib=yes])
806fi
807
808AC_MSG_CHECKING([whether to use included zlib])
809if test x"$with_included_zlib" = x"yes"; then
810 AC_MSG_RESULT($srcdir/zlib)
811 BUILD_ZLIB='$(zlib_OBJS)'
6ffd8f21 812 CFLAGS="-I$srcdir/zlib $CFLAGS"
7da17144 813else
22a3ac0b 814 AC_DEFINE(EXTERNAL_ZLIB, 1, [Define to 1 if using external zlib])
7da17144
WD
815 AC_MSG_RESULT(no)
816fi
817
0d2aa5d9 818AC_CACHE_CHECK([for unsigned char],rsync_cv_SIGNED_CHAR_OK,[
23afe207 819AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[signed char *s = ""]])],[rsync_cv_SIGNED_CHAR_OK=yes],[rsync_cv_SIGNED_CHAR_OK=no])])
0d2aa5d9
WD
820if test x"$rsync_cv_SIGNED_CHAR_OK" = x"yes"; then
821 AC_DEFINE(SIGNED_CHAR_OK, 1, [Define to 1 if "signed char" is a valid type])
7597e1a9 822fi
bcacc18b 823
7b3d4257 824AC_CACHE_CHECK([for broken readdir],rsync_cv_HAVE_BROKEN_READDIR,[
23afe207 825AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <sys/types.h>
59503278
AT
826#include <dirent.h>
827main() { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
828if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
23afe207 829di->d_name[0] == 0) exit(0); exit(1);} ]])],[rsync_cv_HAVE_BROKEN_READDIR=yes],[rsync_cv_HAVE_BROKEN_READDIR=no],[rsync_cv_HAVE_BROKEN_READDIR=cross])])
7b3d4257 830if test x"$rsync_cv_HAVE_BROKEN_READDIR" = x"yes"; then
0d2aa5d9 831 AC_DEFINE(HAVE_BROKEN_READDIR, 1, [Define to 1 if readdir() is broken])
7597e1a9 832fi
1e9f155a 833
4021aa45 834AC_CACHE_CHECK([for utimbuf],rsync_cv_HAVE_STRUCT_UTIMBUF,[
23afe207
WD
835AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
836#include <utime.h>]], [[struct utimbuf tbuf; tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));]])],[rsync_cv_HAVE_STRUCT_UTIMBUF=yes],[rsync_cv_HAVE_STRUCT_UTIMBUF=no])])
4021aa45
WD
837if test x"$rsync_cv_HAVE_STRUCT_UTIMBUF" = x"yes"; then
838 AC_DEFINE(HAVE_STRUCT_UTIMBUF, 1, [Define to 1 if you have the "struct utimbuf" type])
7597e1a9 839fi
d6e6ecbd 840
3060d4aa 841AC_CACHE_CHECK([if gettimeofday takes tz argument],rsync_cv_HAVE_GETTIMEOFDAY_TZ,[
23afe207
WD
842AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/time.h>
843#include <unistd.h>]], [[struct timeval tv; exit(gettimeofday(&tv, NULL));]])],[rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes],[rsync_cv_HAVE_GETTIMEOFDAY_TZ=no])])
a20a88d2 844if test x"$rsync_cv_HAVE_GETTIMEOFDAY_TZ" != x"no"; then
0d2aa5d9 845 AC_DEFINE(HAVE_GETTIMEOFDAY_TZ, 1, [Define to 1 if gettimeofday() takes a time-zone arg])
3060d4aa
AT
846fi
847
8950ac03 848AC_CACHE_CHECK([for C99 vsnprintf],rsync_cv_HAVE_C99_VSNPRINTF,[
23afe207 849AC_RUN_IFELSE([AC_LANG_SOURCE([[
8950ac03
AT
850#include <sys/types.h>
851#include <stdarg.h>
2ef2e822 852void foo(const char *format, ...) {
8950ac03
AT
853 va_list ap;
854 int len;
855 char buf[5];
856
857 va_start(ap, format);
858 len = vsnprintf(0, 0, format, ap);
859 va_end(ap);
860 if (len != 5) exit(1);
861
862 if (snprintf(buf, 3, "hello") != 5 || strcmp(buf, "he") != 0) exit(1);
863
864 exit(0);
865}
866main() { foo("hello"); }
23afe207 867]])],[rsync_cv_HAVE_C99_VSNPRINTF=yes],[rsync_cv_HAVE_C99_VSNPRINTF=no],[rsync_cv_HAVE_C99_VSNPRINTF=cross])])
8950ac03 868if test x"$rsync_cv_HAVE_C99_VSNPRINTF" = x"yes"; then
0d2aa5d9 869 AC_DEFINE(HAVE_C99_VSNPRINTF, 1, [Define to 1 if vsprintf has a C99-compatible return value])
8950ac03
AT
870fi
871
872
f62c17e3 873AC_CACHE_CHECK([for secure mkstemp],rsync_cv_HAVE_SECURE_MKSTEMP,[
23afe207 874AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdlib.h>
f62c17e3
AT
875#include <sys/types.h>
876#include <sys/stat.h>
877#include <unistd.h>
2ef2e822 878main() {
f62c17e3 879 struct stat st;
2ef2e822
WD
880 char tpl[20]="/tmp/test.XXXXXX";
881 int fd = mkstemp(tpl);
f62c17e3
AT
882 if (fd == -1) exit(1);
883 unlink(tpl);
884 if (fstat(fd, &st) != 0) exit(1);
885 if ((st.st_mode & 0777) != 0600) exit(1);
886 exit(0);
23afe207 887}]])],[rsync_cv_HAVE_SECURE_MKSTEMP=yes],[rsync_cv_HAVE_SECURE_MKSTEMP=no],[rsync_cv_HAVE_SECURE_MKSTEMP=cross])])
f62c17e3 888if test x"$rsync_cv_HAVE_SECURE_MKSTEMP" = x"yes"; then
83238ed0 889 case $host_os in
5f2c5bf1
WD
890 hpux*)
891 dnl HP-UX has a broken mkstemp() implementation they refuse to fix,
892 dnl so we noisily skip using it. See HP change request JAGaf34426
893 dnl for details. (sbonds)
894 AC_MSG_WARN(Skipping broken HP-UX mkstemp() -- using mktemp() instead)
895 ;;
896 *)
897 AC_DEFINE(HAVE_SECURE_MKSTEMP, 1, [Define to 1 if mkstemp() is available and works right])
898 ;;
899 esac
f62c17e3
AT
900fi
901
3060d4aa 902
e49d7200 903AC_CACHE_CHECK([if mknod creates FIFOs],rsync_cv_MKNOD_CREATES_FIFOS,[
23afe207 904AC_RUN_IFELSE([AC_LANG_SOURCE([[
e49d7200
WD
905#include <stdio.h>
906#include <sys/stat.h>
907#include <errno.h>
908main() { int rc, ec; char *fn = "fifo-test";
909unlink(fn); rc = mknod(fn,S_IFIFO,0600); ec = errno; unlink(fn);
12a01be1 910if (rc) {printf("(%d %d) ",rc,ec); return ec;}
23afe207 911return 0;}]])],[rsync_cv_MKNOD_CREATES_FIFOS=yes],[rsync_cv_MKNOD_CREATES_FIFOS=no],[rsync_cv_MKNOD_CREATES_FIFOS=cross])])
e49d7200
WD
912if test x"$rsync_cv_MKNOD_CREATES_FIFOS" = x"yes"; then
913 AC_DEFINE(MKNOD_CREATES_FIFOS, 1, [Define to 1 if mknod() can create FIFOs.])
914fi
915
916AC_CACHE_CHECK([if mknod creates sockets],rsync_cv_MKNOD_CREATES_SOCKETS,[
23afe207 917AC_RUN_IFELSE([AC_LANG_SOURCE([[
e49d7200
WD
918#include <stdio.h>
919#include <sys/stat.h>
920#include <errno.h>
921main() { int rc, ec; char *fn = "sock-test";
922unlink(fn); rc = mknod(fn,S_IFSOCK,0600); ec = errno; unlink(fn);
12a01be1 923if (rc) {printf("(%d %d) ",rc,ec); return ec;}
23afe207 924return 0;}]])],[rsync_cv_MKNOD_CREATES_SOCKETS=yes],[rsync_cv_MKNOD_CREATES_SOCKETS=no],[rsync_cv_MKNOD_CREATES_SOCKETS=cross])])
e49d7200
WD
925if test x"$rsync_cv_MKNOD_CREATES_SOCKETS" = x"yes"; then
926 AC_DEFINE(MKNOD_CREATES_SOCKETS, 1, [Define to 1 if mknod() can create sockets.])
927fi
928
692da0b5
DD
929#
930# The following test was mostly taken from the tcl/tk plus patches
931#
79fc6bdb 932AC_CACHE_CHECK([whether -c -o works],rsync_cv_DASHC_WORKS_WITH_DASHO,[
692da0b5
DD
933rm -rf conftest*
934cat > conftest.$ac_ext <<EOF
935int main() { return 0; }
936EOF
937${CC-cc} -c -o conftest..o conftest.$ac_ext
938if test -f conftest..o; then
79fc6bdb
DD
939 rsync_cv_DASHC_WORKS_WITH_DASHO=yes
940else
941 rsync_cv_DASHC_WORKS_WITH_DASHO=no
942fi
943rm -rf conftest*
944])
945if test x"$rsync_cv_DASHC_WORKS_WITH_DASHO" = x"yes"; then
692da0b5
DD
946 OBJ_SAVE="#"
947 OBJ_RESTORE="#"
948 CC_SHOBJ_FLAG='-o $@'
692da0b5
DD
949else
950 OBJ_SAVE=' @b=`basename $@ .o`;rm -f $$b.o.sav;if test -f $$b.o; then mv $$b.o $$b.o.sav;fi;'
951 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'
952 CC_SHOBJ_FLAG=""
692da0b5 953fi
79fc6bdb 954
692da0b5
DD
955AC_SUBST(OBJ_SAVE)
956AC_SUBST(OBJ_RESTORE)
957AC_SUBST(CC_SHOBJ_FLAG)
1ac15cd8 958AC_SUBST(BUILD_POPT)
7da17144 959AC_SUBST(BUILD_ZLIB)
225787a4 960AC_SUBST(MAKE_MAN)
7d29d4ba 961
70d4a945
WD
962AC_PATH_PROG([STUNNEL], [stunnel], [stunnel], [$PATH$PATH_SEPARATOR/usr/sbin$PATH_SEPARATOR/sbin])
963AC_PATH_PROG([STUNNEL4], [stunnel4], [$STUNNEL], [$PATH$PATH_SEPARATOR/usr/sbin$PATH_SEPARATOR/sbin])
964
1c3344a1
WD
965AC_CHECK_FUNCS(_acl __acl _facl __facl)
966#################################################
967# check for ACL support
968
969AC_MSG_CHECKING([whether to support ACLs])
970AC_ARG_ENABLE(acl-support,
23afe207 971 AS_HELP_STRING([--disable-acl-support],[disable ACL support]))
1c3344a1
WD
972
973if test x"$enable_acl_support" = x"no"; then
974 AC_MSG_RESULT(no)
975else
1c3344a1
WD
976 case "$host_os" in
977 *sysv5*)
978 AC_MSG_RESULT(Using UnixWare ACLs)
979 AC_DEFINE(HAVE_UNIXWARE_ACLS, 1, [true if you have UnixWare ACLs])
545584cb 980 AC_DEFINE(SUPPORT_ACLS, 1, [Define to 1 to add support for ACLs])
1c3344a1 981 ;;
6af8e114 982 solaris*)
1c3344a1
WD
983 AC_MSG_RESULT(Using solaris ACLs)
984 AC_DEFINE(HAVE_SOLARIS_ACLS, 1, [true if you have solaris ACLs])
987838fd 985 AC_DEFINE(SUPPORT_ACLS, 1)
1c3344a1
WD
986 ;;
987 *hpux*)
988 AC_MSG_RESULT(Using HPUX ACLs)
989 AC_DEFINE(HAVE_HPUX_ACLS, 1, [true if you have HPUX ACLs])
987838fd 990 AC_DEFINE(SUPPORT_ACLS, 1)
1c3344a1
WD
991 ;;
992 *irix*)
993 AC_MSG_RESULT(Using IRIX ACLs)
994 AC_DEFINE(HAVE_IRIX_ACLS, 1, [true if you have IRIX ACLs])
987838fd 995 AC_DEFINE(SUPPORT_ACLS, 1)
1c3344a1
WD
996 ;;
997 *aix*)
998 AC_MSG_RESULT(Using AIX ACLs)
999 AC_DEFINE(HAVE_AIX_ACLS, 1, [true if you have AIX ACLs])
987838fd 1000 AC_DEFINE(SUPPORT_ACLS, 1)
1c3344a1
WD
1001 ;;
1002 *osf*)
1003 AC_MSG_RESULT(Using Tru64 ACLs)
1004 AC_DEFINE(HAVE_TRU64_ACLS, 1, [true if you have Tru64 ACLs])
987838fd 1005 AC_DEFINE(SUPPORT_ACLS, 1)
1c3344a1
WD
1006 LIBS="$LIBS -lpacl"
1007 ;;
16edf865 1008 darwin*)
49ea69b3
WD
1009 AC_MSG_RESULT(Using OS X ACLs)
1010 AC_DEFINE(HAVE_OSX_ACLS, 1, [true if you have Mac OS X ACLs])
1011 AC_DEFINE(SUPPORT_ACLS, 1)
88467ec4 1012 ;;
1c3344a1
WD
1013 *)
1014 AC_MSG_RESULT(running tests:)
1015 AC_CHECK_LIB(acl,acl_get_file)
677c6e14 1016 AC_CACHE_CHECK([for ACL support],samba_cv_HAVE_POSIX_ACLS,[
23afe207
WD
1017 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
1018#include <sys/acl.h>]], [[ acl_t acl; int entry_id; acl_entry_t *entry_p; return acl_get_entry( acl, entry_id, entry_p);]])],[samba_cv_HAVE_POSIX_ACLS=yes],[samba_cv_HAVE_POSIX_ACLS=no])])
1c3344a1
WD
1019 AC_MSG_CHECKING(ACL test results)
1020 if test x"$samba_cv_HAVE_POSIX_ACLS" = x"yes"; then
1021 AC_MSG_RESULT(Using posix ACLs)
1022 AC_DEFINE(HAVE_POSIX_ACLS, 1, [true if you have posix ACLs])
987838fd 1023 AC_DEFINE(SUPPORT_ACLS, 1)
1c3344a1 1024 AC_CACHE_CHECK([for acl_get_perm_np],samba_cv_HAVE_ACL_GET_PERM_NP,[
23afe207
WD
1025 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
1026#include <sys/acl.h>]], [[ acl_permset_t permset_d; acl_perm_t perm; return acl_get_perm_np( permset_d, perm);]])],[samba_cv_HAVE_ACL_GET_PERM_NP=yes],[samba_cv_HAVE_ACL_GET_PERM_NP=no])])
1c3344a1
WD
1027 if test x"$samba_cv_HAVE_ACL_GET_PERM_NP" = x"yes"; then
1028 AC_DEFINE(HAVE_ACL_GET_PERM_NP, 1, [true if you have acl_get_perm_np])
1029 fi
1030 else
987838fd
WD
1031 if test x"$enable_acl_support" = x"yes"; then
1032 AC_MSG_ERROR(Failed to find ACL support)
1033 else
1034 AC_MSG_RESULT(No ACL support found)
1c3344a1
WD
1035 fi
1036 fi
1037 ;;
1038 esac
1039fi
1040
16edf865
WD
1041#################################################
1042# check for extended attribute support
1043AC_MSG_CHECKING(whether to support extended attributes)
1044AC_ARG_ENABLE(xattr-support,
23afe207 1045 AS_HELP_STRING([--disable-xattr-support],[disable extended attributes]),
c4170cba 1046 [], [case "$ac_cv_func_getxattr$ac_cv_func_extattr_get_link$ac_cv_func_attropen" in
6b5a8f80
WD
1047 *yes*) enable_xattr_support=maybe ;;
1048 *) enable_xattr_support=no ;;
1049 esac])
e8c64ffd
WD
1050AH_TEMPLATE([SUPPORT_XATTRS],
1051[Define to 1 to add support for extended attributes])
16edf865
WD
1052if test x"$enable_xattr_support" = x"no"; then
1053 AC_MSG_RESULT(no)
1054else
1055 case "$host_os" in
19831980 1056 *linux*|*netbsd*)
16edf865 1057 AC_MSG_RESULT(Using Linux xattrs)
19831980 1058 AC_DEFINE(HAVE_LINUX_XATTRS, 1, [True if you have Linux xattrs (or equivalent)])
e8c64ffd 1059 AC_DEFINE(SUPPORT_XATTRS, 1)
e2c1e482 1060 AC_DEFINE(NO_SYMLINK_USER_XATTRS, 1, [True if symlinks do not support user xattrs])
677c6e14 1061 AC_CHECK_LIB(attr,getxattr)
16edf865
WD
1062 ;;
1063 darwin*)
1064 AC_MSG_RESULT(Using OS X xattrs)
1065 AC_DEFINE(HAVE_OSX_XATTRS, 1, [True if you have Mac OS X xattrs])
1066 AC_DEFINE(SUPPORT_XATTRS, 1)
6500e076
WD
1067 AC_DEFINE(NO_DEVICE_XATTRS, 1, [True if device files do not support xattrs])
1068 AC_DEFINE(NO_SPECIAL_XATTRS, 1, [True if special files do not support xattrs])
16edf865
WD
1069 ;;
1070 freebsd*)
1071 AC_MSG_RESULT(Using FreeBSD extattrs)
1072 AC_DEFINE(HAVE_FREEBSD_XATTRS, 1, [True if you have FreeBSD xattrs])
1073 AC_DEFINE(SUPPORT_XATTRS, 1)
1074 ;;
05a652d0
WD
1075 solaris*)
1076 AC_MSG_RESULT(Using Solaris xattrs)
1077 AC_DEFINE(HAVE_SOLARIS_XATTRS, 1, [True if you have Solaris xattrs])
1078 AC_DEFINE(SUPPORT_XATTRS, 1)
a131954b 1079 AC_DEFINE(NO_SYMLINK_XATTRS, 1, [True if symlinks do not support xattrs])
05a652d0 1080 ;;
16edf865
WD
1081 *)
1082 if test x"$enable_xattr_support" = x"yes"; then
1083 AC_MSG_ERROR(Failed to find extended attribute support)
1084 else
1085 AC_MSG_RESULT(No extended attribute support found)
1086 fi
1087 ;;
1088 esac
1089fi
1090
f4901024
WD
1091if test x"$enable_acl_support" = x"no" -o x"$enable_xattr_support" = x"no" -o x"$enable_iconv" = x"no"; then
1092 AC_MSG_CHECKING([whether $CC supports -Wno-unused-parameter])
1093 OLD_CFLAGS="$CFLAGS"
1094 CFLAGS="$CFLAGS -Wno-unused-parameter"
23afe207 1095 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>]], [[printf("hello\n");]])],[rsync_warn_flag=yes],[rsync_warn_flag=no])
f4901024
WD
1096 AC_MSG_RESULT([$rsync_warn_flag])
1097 if test x"$rsync_warn_flag" = x"no"; then
1098 CFLAGS="$OLD_CFLAGS"
1099 fi
1100fi
1101
aa0e6b99 1102case "$CC" in
d4c5cb2b 1103' checker'*|checker*)
aa0e6b99
WD
1104 AC_DEFINE(FORCE_FD_ZERO_MEMSET, 1, [Used to make "checker" understand that FD_ZERO() clears memory.])
1105 ;;
1106esac
1107
bf5c2bf6
MP
1108AC_CONFIG_FILES([Makefile lib/dummy zlib/dummy popt/dummy shconfig])
1109AC_OUTPUT
a4677968
MP
1110
1111AC_MSG_RESULT()
1112AC_MSG_RESULT([ rsync ${RSYNC_VERSION} configuration successful])
1113AC_MSG_RESULT()
d3414a7d
WD
1114if test x$HAVE_YODL2MAN != x1; then
1115 AC_MSG_RESULT([ Note that yodl2man was not found, so pre-existing manpage files will be])
1116 AC_MSG_RESULT([ used w/o change (if available) -- no .yo file changes will be used.])
1117 AC_MSG_RESULT()
1118fi