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