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