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