Avoid the getgroups program when cross-compiliing.
[rsync.git] / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2
3 AC_INIT([rsync],[ ],[https://rsync.samba.org/bug-tracking.html])
4
5 AC_C_BIGENDIAN
6 AC_HEADER_DIRENT
7 AC_HEADER_TIME
8 AC_HEADER_SYS_WAIT
9 AC_CHECK_HEADERS(sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h \
10     unistd.h utime.h compat.h sys/param.h ctype.h sys/wait.h sys/stat.h \
11     sys/ioctl.h sys/filio.h string.h stdlib.h sys/socket.h sys/mode.h grp.h \
12     sys/un.h sys/attr.h arpa/inet.h arpa/nameser.h locale.h sys/types.h \
13     netdb.h malloc.h float.h limits.h iconv.h libcharset.h langinfo.h mcheck.h \
14     sys/acl.h acl/libacl.h attr/xattr.h sys/xattr.h sys/extattr.h dl.h \
15     popt.h popt/popt.h linux/falloc.h netinet/in_systm.h netgroup.h \
16     zlib.h xxhash.h openssl/md4.h openssl/md5.h zstd.h lz4.h sys/file.h \
17     bsd/string.h)
18 AC_CHECK_HEADERS([netinet/ip.h], [], [], [[#include <netinet/in.h>]])
19 AC_HEADER_MAJOR_FIXED
20
21 AC_CONFIG_MACRO_DIR([m4])
22 AC_CONFIG_SRCDIR([byteorder.h])
23 AC_CONFIG_HEADER(config.h)
24 AC_PREREQ([2.69])
25
26 PACKAGE_VERSION=`sed -n 's/.*RSYNC_VERSION.*"\(.*\)".*/\1/p' <$srcdir/version.h`
27
28 AC_MSG_NOTICE([Configuring rsync $PACKAGE_VERSION])
29
30 LDFLAGS=${LDFLAGS-""}
31
32 AC_CANONICAL_HOST
33
34 dnl define the directory for replacement function since AC_LIBOBJ does not
35 dnl officially support subdirs and fails with automake
36 AC_CONFIG_LIBOBJ_DIR([lib])
37
38 # We must decide this before testing the compiler.
39
40 # Please allow this to default to yes, so that your users have more
41 # chance of getting a useful stack trace if problems occur.
42
43 AC_MSG_CHECKING([whether to include debugging symbols])
44 AC_ARG_ENABLE(debug,
45         AS_HELP_STRING([--disable-debug],[disable to omit debugging symbols and features]))
46
47 if test x"$enable_debug" = x"no"; then
48     AC_MSG_RESULT(no)
49     ac_cv_prog_cc_g=no
50 else
51     AC_MSG_RESULT([yes])
52     dnl AC_DEFINE(DEBUG, 1, [Define to turn on debugging code that may slow normal operation])
53     # leave ac_cv_prog_cc_g alone; AC_PROG_CC will try to include -g if it can
54 fi
55
56 dnl Checks for programs.
57 AC_PROG_CC
58 AC_PROG_CPP
59 AC_PROG_CXX
60 AC_PROG_AWK
61 AC_PROG_EGREP
62 AC_PROG_INSTALL
63 AC_PROG_MKDIR_P
64 AC_PROG_CC_STDC
65 AC_SUBST(SHELL)
66 AC_PATH_PROG([PERL], [perl])
67 AC_PATH_PROG([PYTHON3], [python3])
68
69 AC_DEFINE([_GNU_SOURCE], 1,
70           [Define _GNU_SOURCE so that we get all necessary prototypes])
71
72 if test x"$ac_cv_prog_cc_stdc" = x"no"; then
73         AC_MSG_WARN([rsync requires an ANSI C compiler and you do not seem to have one])
74 fi
75
76 no_lib=''
77 err_msg=''
78 nl='
79 '
80
81 AC_ARG_ENABLE(profile,
82         AS_HELP_STRING([--enable-profile],[enable to turn on CPU profiling]))
83 if test x"$enable_profile" = x"yes"; then
84         CFLAGS="$CFLAGS -pg"
85 fi
86
87 AC_MSG_CHECKING([if md2man can create manpages])
88 if test x"$ac_cv_path_PYTHON3" = x; then
89     AC_MSG_RESULT(no - python3 not found)
90     md2man_works=no
91 else
92     md2man_out=`"$srcdir/md2man" --test "$srcdir/rsync-ssl.1.md" 2>&1`
93     if test $? = 0; then
94         AC_MSG_RESULT(yes)
95         md2man_works=yes
96     else
97         AC_MSG_RESULT(no)
98         md2man_works=no
99         echo "$md2man_out"
100     fi
101 fi
102
103 AC_MSG_CHECKING([if we require man-page building])
104 AC_ARG_ENABLE([md2man],
105         AS_HELP_STRING([--disable-md2man],[disable to omit manpage creation]))
106 if test x"$enable_md2man" != x"no"; then
107     if test -f "$srcdir/rsync.1"; then
108         AC_MSG_RESULT(optional)
109     else
110         AC_MSG_RESULT(required)
111         if test x"$md2man_works" = x"no"; then
112             err_msg="$err_msg$nl- You need python3 and either the cmarkgfm OR commonmark python3 lib in order"
113             err_msg="$err_msg$nl  to build manpages based on the git source (manpages are included in the"
114             err_msg="$err_msg$nl  official release tar files)."
115             no_lib="$no_lib md2man"
116         fi
117     fi
118     MAKE_MAN=man
119 else
120     AC_MSG_RESULT(no)
121 fi
122
123 # Specifically, this turns on panic_action handling.
124 AC_ARG_ENABLE(maintainer-mode,
125         AS_HELP_STRING([--enable-maintainer-mode],[enable to turn on extra debug features]))
126 if test x"$enable_maintainer_mode" = x"yes"; then
127         CFLAGS="$CFLAGS -DMAINTAINER_MODE"
128 fi
129
130 # This is needed for our included version of popt.  Kind of silly, but
131 # I don't want our version too far out of sync.
132 CFLAGS="$CFLAGS -DHAVE_CONFIG_H"
133
134 # If GCC, turn on warnings.
135 if test x"$GCC" = x"yes"; then
136         CFLAGS="$CFLAGS -Wall -W"
137 fi
138
139 AC_ARG_WITH(rrsync,
140         AS_HELP_STRING([--with-rrsync],[also install the rrsync script and its manpage]))
141 if test x"$with_rrsync" != x"yes"; then
142     with_rrsync=no
143 else
144     MAKE_RRSYNC='rrsync'
145     MAKE_RRSYNC_1='rrsync.1'
146     GEN_RRSYNC='rrsync.1 rrsync.1.html'
147 fi
148 AC_SUBST(with_rrsync)
149
150 AC_ARG_WITH(included-popt,
151         AS_HELP_STRING([--with-included-popt],[use bundled popt library, not from system]))
152
153 AC_ARG_WITH(included-zlib,
154         AS_HELP_STRING([--with-included-zlib],[use bundled zlib library, not from system]))
155
156 AC_ARG_WITH(protected-args,
157         AS_HELP_STRING([--with-protected-args],[make --protected-args option the default]))
158 if test x"$with_protected_args" = x"yes"; then
159         AC_DEFINE_UNQUOTED(RSYNC_USE_PROTECTED_ARGS, 1, [Define to 1 if --protected-args should be the default])
160 fi
161
162 AC_ARG_WITH(rsync-path,
163         AS_HELP_STRING([--with-rsync-path=PATH],[set default --rsync-path to PATH (default: rsync)]),
164         [ RSYNC_PATH="$with_rsync_path" ],
165         [ RSYNC_PATH="rsync" ])
166
167 AC_DEFINE_UNQUOTED(RSYNC_PATH, "$RSYNC_PATH", [location of rsync on remote machine])
168
169 AC_ARG_WITH(rsyncd-conf,
170         AS_HELP_STRING([--with-rsyncd-conf=PATH],[set configuration file for rsync server to PATH (default: /etc/rsyncd.conf)]),
171         [ if test ! -z "$with_rsyncd_conf" ; then
172                 case $with_rsyncd_conf in
173                         yes|no)
174                                 RSYNCD_SYSCONF="/etc/rsyncd.conf"
175                                 ;;
176                         /*)
177                                 RSYNCD_SYSCONF="$with_rsyncd_conf"
178                                 ;;
179                         *)
180                                 AC_MSG_ERROR(You must specify an absolute path to --with-rsyncd-conf=PATH)
181                                 ;;
182                 esac
183         else
184                 RSYNCD_SYSCONF="/etc/rsyncd.conf"
185         fi ],
186         [ RSYNCD_SYSCONF="/etc/rsyncd.conf" ])
187
188 AC_DEFINE_UNQUOTED(RSYNCD_SYSCONF, "$RSYNCD_SYSCONF", [location of configuration file for rsync server])
189
190 AC_ARG_WITH(rsh,
191         AS_HELP_STRING([--with-rsh=CMD],[set remote shell command to CMD (default: ssh)]))
192
193 AC_CHECK_PROG(HAVE_REMSH, remsh, 1, 0)
194 if test x$HAVE_REMSH = x1; then
195         AC_DEFINE(HAVE_REMSH, 1, [Define to 1 if remote shell is remsh, not rsh])
196 fi
197
198 if test x"$with_rsh" != x; then
199         RSYNC_RSH="$with_rsh"
200 else
201         RSYNC_RSH="ssh"
202 fi
203 AC_DEFINE_UNQUOTED(RSYNC_RSH, "$RSYNC_RSH", [default -e command])
204
205 # Some programs on solaris are only found in /usr/xpg4/bin (or work better than others versions).
206 AC_PATH_PROG(SHELL_PATH, sh, /bin/sh, [/usr/xpg4/bin$PATH_SEPARATOR$PATH])
207 AC_PATH_PROG(FAKEROOT_PATH, fakeroot, /usr/bin/fakeroot, [/usr/xpg4/bin$PATH_SEPARATOR$PATH])
208
209 AC_ARG_WITH(nobody-user,
210     AS_HELP_STRING([--with-nobody-user=USER],[set the default unprivileged user (default nobody)]),
211     [ NOBODY_USER="$with_nobody_user" ],
212     [ NOBODY_USER="nobody" ])
213
214 AC_ARG_WITH(nobody-group,
215     AS_HELP_STRING([--with-nobody-group=GROUP],[set the default unprivileged group (default nobody or nogroup)]),
216     [ NOBODY_GROUP="$with_nobody_group" ])
217
218 if test x"$with_nobody_group" = x; then
219     AC_MSG_CHECKING([the group for user "nobody"])
220     if grep '^nobody:' /etc/group >/dev/null 2>&1; then
221         NOBODY_GROUP=nobody
222     elif grep '^nogroup:' /etc/group >/dev/null 2>&1; then
223         NOBODY_GROUP=nogroup
224     else
225         NOBODY_GROUP=nobody # test for others?
226     fi
227     AC_MSG_RESULT($NOBODY_GROUP)
228 fi
229
230 AC_DEFINE_UNQUOTED(NOBODY_USER, "$NOBODY_USER", [unprivileged user--e.g. nobody])
231 AC_DEFINE_UNQUOTED(NOBODY_GROUP, "$NOBODY_GROUP", [unprivileged group for unprivileged user])
232
233 # rolling-checksum SIMD optimizations
234 ROLL_SIMD=
235
236 AC_MSG_CHECKING([whether to enable rolling-checksum SIMD optimizations])
237 AC_ARG_ENABLE(roll-simd,
238     AS_HELP_STRING([--enable-roll-simd],[enable/disable to control rolling-checksum SIMD optimizations (requires c++)]))
239
240 # Clag is crashing with -g -O2, so we'll get rid of -g for now.
241 CXXFLAGS=`echo "$CXXFLAGS" | sed 's/-g //'`
242 m4_define(SIMD_X86_64_TEST, [[#include <stdio.h>
243 #if HAVE_STDLIB_H
244 #include <stdlib.h>
245 #endif
246 #include <immintrin.h>
247 __attribute__ ((target("default"))) int test_ssse3(int x) { return x; }
248 __attribute__ ((target("default"))) int test_sse2(int x) { return x; }
249 __attribute__ ((target("default"))) int test_avx2(int x) { return x; }
250 __attribute__ ((target("ssse3"))) int test_ssse3(int x) { return x; }
251 __attribute__ ((target("sse2"))) int test_sse2(int x) { return x; }
252 __attribute__ ((target("avx2"))) int test_avx2(int x) { return x; }
253 typedef long long __m128i_u __attribute__((__vector_size__(16), __may_alias__, __aligned__(1)));
254 typedef long long __m256i_u __attribute__((__vector_size__(32), __may_alias__, __aligned__(1)));
255 __attribute__ ((target("default"))) void more_testing(char* buf, int len) { }
256 __attribute__ ((target("ssse3"))) void more_testing(char* buf, int len)
257 {
258     int i;
259     for (i = 0; i < (len-32); i+=32) {
260         __m128i in8_1, in8_2;
261         in8_1 = _mm_lddqu_si128((__m128i_u*)&buf[i]);
262         in8_2 = _mm_lddqu_si128((__m128i_u*)&buf[i + 16]);
263     }
264 }
265 ]])
266
267 if test x"$enable_roll_simd" = x""; then
268     case "$host_os" in
269         *linux*) ;;
270         *) enable_roll_simd=no ;;
271     esac
272 fi
273
274 if test x"$enable_roll_simd" != x"no"; then
275     # For x86-64 SIMD, g++ >=5 or clang++ >=7 is required
276     if test x"$host_cpu" = x"x86_64" || test x"$host_cpu" = x"amd64"; then
277         AC_LANG(C++)
278         if test x"$host" = x"$build"; then
279             AC_RUN_IFELSE([AC_LANG_PROGRAM([SIMD_X86_64_TEST],[[if (test_ssse3(42) != 42 || test_sse2(42) != 42 || test_avx2(42) != 42) exit(1);]])],
280                 [CXX_OK=yes],[CXX_OK=no])
281         else
282             AC_COMPILE_IFELSE([AC_LANG_PROGRAM([SIMD_X86_64_TEST])],[CXX_OK=yes],[CXX_OK=no])
283         fi
284         AC_LANG(C)
285         if test x"$CXX_OK" = x"yes"; then
286             # AC_MSG_RESULT() is called below.
287             ROLL_SIMD="$host_cpu"
288         elif test x"$enable_roll_simd" = x"yes"; then
289             AC_MSG_RESULT(error)
290             AC_MSG_ERROR(The rolling-checksum SIMD compilation test failed.
291 Omit --enable-roll-simd to continue without it.)
292         fi
293     elif test x"$enable_roll_simd" = x"yes"; then
294         AC_MSG_RESULT(unavailable)
295         AC_MSG_ERROR(The rolling-checksum SIMD optimizations are currently x86_64|amd64 only.
296 Omit --enable-roll-simd to continue without it.)
297     fi
298 fi
299
300 if test x"$ROLL_SIMD" != x""; then
301     AC_MSG_RESULT([yes ($ROLL_SIMD)])
302     AC_DEFINE(USE_ROLL_SIMD, 1, [Define to 1 to enable rolling-checksum SIMD optimizations])
303     ROLL_SIMD='$(ROLL_SIMD_'"$ROLL_SIMD)"
304     # We only use c++ for its target attribute dispatching, disable unneeded bulky features
305     CXXFLAGS="$CXXFLAGS -fno-exceptions -fno-rtti"
306     # Apple often has "g++" as a symlink for clang. Try to find out the truth.
307     CXX_VERSION=`$CXX --version 2>/dev/null | head -n 2`
308     case "$CXX_VERSION" in
309     *clang*) CXXFLAGS="$CXXFLAGS -fno-slp-vectorize" ;; # avoid a performance hit
310     esac
311 else
312     AC_MSG_RESULT(no)
313 fi
314
315 AC_SUBST(ROLL_SIMD)
316
317 AC_MSG_CHECKING([if assembler accepts noexecstack])
318 OLD_CFLAGS="$CFLAGS"
319 CFLAGS="$CFLAGS -Wa,--noexecstack"
320 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ ]], [[return 0;]])],
321 [ NOEXECSTACK='-Wa,--noexecstack' ; AC_MSG_RESULT(yes) ],
322 [ NOEXECSTACK='' ; AC_MSG_RESULT(no) ])
323 CFLAGS="$OLD_CFLAGS"
324 AC_SUBST(NOEXECSTACK)
325
326 # arrgh. libc in some old debian version screwed up the largefile
327 # stuff, getting byte range locking wrong
328 AC_CACHE_CHECK([for broken largefile support],rsync_cv_HAVE_BROKEN_LARGEFILE,[
329 AC_RUN_IFELSE([AC_LANG_SOURCE([[
330 #define _FILE_OFFSET_BITS 64
331 $ac_includes_default
332 #ifdef HAVE_FCNTL_H
333 # include <fcntl.h>
334 #elif defined HAVE_SYS_FCNTL_H
335 # include <sys/fcntl.h>
336 #endif
337 #ifdef HAVE_SYS_WAIT_H
338 #include <sys/wait.h>
339 #endif
340
341 int main(void)
342 {
343         struct flock lock;
344         int status;
345         char tpl[32] = "/tmp/locktest.XXXXXX";
346         int fd = mkstemp(tpl);
347         if (fd < 0) {
348                 strcpy(tpl, "conftest.dat");
349                 fd = open(tpl, O_CREAT|O_RDWR, 0600);
350         }
351
352         lock.l_type = F_WRLCK;
353         lock.l_whence = SEEK_SET;
354         lock.l_start = 0;
355         lock.l_len = 1;
356         lock.l_pid = 0;
357         fcntl(fd,F_SETLK,&lock);
358         if (fork() == 0) {
359                 lock.l_start = 1;
360                 _exit(fcntl(fd,F_SETLK,&lock) == 0);
361         }
362         wait(&status);
363         unlink(tpl);
364         return WEXITSTATUS(status);
365 }
366 ]])],[rsync_cv_HAVE_BROKEN_LARGEFILE=yes],[rsync_cv_HAVE_BROKEN_LARGEFILE=no],[rsync_cv_HAVE_BROKEN_LARGEFILE=cross])])
367 if test x"$rsync_cv_HAVE_BROKEN_LARGEFILE" != x"yes"; then
368    AC_SYS_LARGEFILE
369 fi
370
371 AC_MSG_CHECKING([whether to enable ipv6])
372 AC_ARG_ENABLE(ipv6,
373 AS_HELP_STRING([--disable-ipv6],[disable to omit ipv6 support]),
374 [ case "$enableval" in
375   no)
376         AC_MSG_RESULT(no)
377         ;;
378   *)    AC_MSG_RESULT(yes)
379         AC_DEFINE(INET6, 1, [true if you have IPv6])
380         ;;
381   esac ],
382
383   AC_TRY_RUN([ /* AF_INET6 availability check */
384 #include <stdlib.h>
385 #include <sys/types.h>
386 #include <sys/socket.h>
387 main()
388 {
389    if (socket(AF_INET6, SOCK_STREAM, 0) < 0)
390      exit(1);
391    else
392      exit(0);
393 }
394 ],
395   AC_MSG_RESULT(yes)
396   AC_DEFINE(INET6, 1, [true if you have IPv6]),
397   AC_MSG_RESULT(no),
398   AC_MSG_RESULT(no)
399 ))
400
401 dnl Do you want to disable use of locale functions
402 AC_ARG_ENABLE([locale],
403         AS_HELP_STRING([--disable-locale],[disable to omit locale features]))
404 AH_TEMPLATE([CONFIG_LOCALE],
405 [Undefine if you do not want locale features.  By default this is defined.])
406 if test x"$enable_locale" != x"no"; then
407         AC_DEFINE(CONFIG_LOCALE)
408 fi
409
410 AC_MSG_CHECKING([whether to call shutdown on all sockets])
411 case $host_os in
412         *cygwin* ) AC_MSG_RESULT(yes)
413                    AC_DEFINE(SHUTDOWN_ALL_SOCKETS, 1,
414                             [Define to 1 if sockets need to be shutdown])
415                    ;;
416                * ) AC_MSG_RESULT(no);;
417 esac
418
419 AC_MSG_CHECKING([whether to enable use of openssl crypto library])
420 AC_ARG_ENABLE([openssl],
421         AS_HELP_STRING([--disable-openssl],[disable to omit openssl crypto library]))
422 AH_TEMPLATE([USE_OPENSSL],
423 [Undefine if you do not want to use openssl crypto library.  By default this is defined.])
424 if test x"$enable_openssl" != x"no"; then
425     if test x"$ac_cv_header_openssl_md4_h" = x"yes" && test x"$ac_cv_header_openssl_md5_h" = x"yes"; then
426       AC_MSG_RESULT(yes)
427       AC_SEARCH_LIBS(MD5_Init, crypto,
428           [AC_DEFINE(USE_OPENSSL)
429            enable_openssl=yes],
430           [err_msg="$err_msg$nl- Failed to find MD5_Init function in openssl crypto lib.";
431            no_lib="$no_lib openssl"])
432     else
433         AC_MSG_RESULT(no)
434         err_msg="$err_msg$nl- Failed to find openssl/md4.h and openssl/md5.h for openssl crypto lib support."
435         no_lib="$no_lib openssl"
436     fi
437     if test x"$enable_md5_asm" != x"yes"; then
438         enable_md5_asm=no
439     fi
440 else
441     AC_MSG_RESULT(no)
442 fi
443
444 MD5_ASM=
445
446 AC_MSG_CHECKING([whether to enable MD5 ASM optimizations])
447 AC_ARG_ENABLE(md5-asm,
448     AS_HELP_STRING([--enable-md5-asm],[enable/disable to control MD5 ASM optimizations]))
449
450 if test x"$enable_md5_asm" = x""; then
451     case "$host_os" in
452         *linux*) ;;
453         *) enable_md5_asm=no ;;
454     esac
455 fi
456
457 if test x"$enable_md5_asm" != x"no"; then
458     if test x"$host_cpu" = x"x86_64" || test x"$host_cpu" = x"amd64"; then
459         MD5_ASM="$host_cpu"
460     elif test x"$enable_md5_asm" = x"yes"; then
461         AC_MSG_RESULT(unavailable)
462         AC_MSG_ERROR(The ASM optimizations are currently x86_64|amd64 only.
463 Omit --enable-md5-asm to continue without it.)
464     fi
465 fi
466
467 if test x"$MD5_ASM" != x""; then
468     AC_MSG_RESULT([yes ($MD5_ASM)])
469     AC_DEFINE(USE_MD5_ASM, 1, [Define to 1 to enable MD5 ASM optimizations])
470     MD5_ASM='$(MD5_ASM_'"$MD5_ASM)"
471 else
472     AC_MSG_RESULT(no)
473 fi
474
475 AC_SUBST(MD5_ASM)
476
477 ROLL_ASM=
478
479 AC_MSG_CHECKING([whether to enable rolling-checksum ASM optimizations])
480 AC_ARG_ENABLE(roll-asm,
481     AS_HELP_STRING([--enable-roll-asm],[enable/disable to control rolling-checksum ASM optimizations (requires --enable-roll-simd)]))
482
483 if test x"$ROLL_SIMD" = x""; then
484     enable_roll_asm=no
485 fi
486
487 if test x"$enable_roll_asm" = x"yes"; then
488     ROLL_ASM="$host_cpu"
489     AC_MSG_RESULT([yes ($ROLL_ASM)])
490     AC_DEFINE(USE_ROLL_ASM, 1, [Define to 1 to enable rolling-checksum ASM optimizations (requires --enable-roll-simd)])
491     ROLL_ASM='$(ROLL_ASM_'"$ROLL_ASM)"
492 else
493     AC_MSG_RESULT(no)
494 fi
495
496 AC_SUBST(ROLL_ASM)
497
498 AC_MSG_CHECKING([whether to enable xxhash checksum support])
499 AC_ARG_ENABLE([xxhash],
500         AS_HELP_STRING([--disable-xxhash],[disable to omit xxhash checksums]))
501 AH_TEMPLATE([SUPPORT_XXHASH],
502 [Undefine if you do not want xxhash checksums.  By default this is defined.])
503 if test x"$enable_xxhash" != x"no"; then
504     if test x"$ac_cv_header_xxhash_h" = x"yes"; then
505         AC_MSG_RESULT(yes)
506         AC_SEARCH_LIBS(XXH64_createState, xxhash,
507             [AC_DEFINE(SUPPORT_XXHASH)],
508             [err_msg="$err_msg$nl- Failed to find XXH64_createState function in xxhash lib.";
509              no_lib="$no_lib xxhash"])
510     else
511         AC_MSG_RESULT(no)
512         err_msg="$err_msg$nl- Failed to find xxhash.h for xxhash checksum support.";
513         no_lib="$no_lib xxhash"
514     fi
515 else
516     AC_MSG_RESULT(no)
517 fi
518
519 AC_MSG_CHECKING([whether to enable zstd compression])
520 AC_ARG_ENABLE([zstd],
521         AC_HELP_STRING([--disable-zstd], [disable to omit zstd compression]))
522 AH_TEMPLATE([SUPPORT_ZSTD],
523 [Undefine if you do not want zstd compression.  By default this is defined.])
524 if test x"$enable_zstd" != x"no"; then
525     if test x"$ac_cv_header_zstd_h" = x"yes"; then
526         AC_MSG_RESULT(yes)
527         AC_SEARCH_LIBS(ZSTD_minCLevel, zstd,
528             [AC_DEFINE(SUPPORT_ZSTD)],
529             [err_msg="$err_msg$nl- Failed to find ZSTD_minCLevel function in zstd lib.";
530              no_lib="$no_lib zstd"])
531     else
532         AC_MSG_RESULT(no)
533         err_msg="$err_msg$nl- Failed to find zstd.h for zstd compression support.";
534         no_lib="$no_lib zstd"
535     fi
536 else
537     AC_MSG_RESULT(no)
538 fi
539
540 AC_MSG_CHECKING([whether to enable LZ4 compression])
541 AC_ARG_ENABLE([lz4],
542         AC_HELP_STRING([--disable-lz4], [disable to omit LZ4 compression]))
543 AH_TEMPLATE([SUPPORT_LZ4],
544 [Undefine if you do not want LZ4 compression.  By default this is defined.])
545 if test x"$enable_lz4" != x"no"; then
546     if test x"$ac_cv_header_lz4_h" = x"yes"; then
547         AC_MSG_RESULT(yes)
548         AC_SEARCH_LIBS(LZ4_compress_default, lz4,
549             [AC_DEFINE(SUPPORT_LZ4)],
550             [err_msg="$err_msg$nl- Failed to find LZ4_compress_default function in lz4 lib.";
551              no_lib="$no_lib lz4"])
552     else
553         AC_MSG_RESULT(no)
554         err_msg="$err_msg$nl- Failed to find lz4.h for lz4 compression support."
555         no_lib="$no_lib lz4"
556     fi
557 else
558     AC_MSG_RESULT(no)
559 fi
560
561 if test x"$no_lib" != x; then
562     echo ""
563     echo "Configure found the following issues:"
564     echo "$err_msg"
565     echo ""
566     echo "See the INSTALL file for hints on how to install the missing libraries and/or"
567     echo "how to generate (or fetch) manpages:"
568     echo "    https://github.com/WayneD/rsync/blob/master/INSTALL.md"
569     echo ""
570     echo "To disable one or more features, the relevant configure options are:"
571     for lib in $no_lib; do
572         echo "    --disable-$lib"
573     done
574     echo ""
575     AC_MSG_ERROR(Aborting configure run)
576 fi
577
578 AC_CACHE_CHECK([if makedev takes 3 args],rsync_cv_MAKEDEV_TAKES_3_ARGS,[
579 AC_RUN_IFELSE([AC_LANG_SOURCE([[
580 #ifdef HAVE_SYS_TYPES_H
581 #include <sys/types.h>
582 #endif
583 #ifdef MAJOR_IN_MKDEV
584 #include <sys/mkdev.h>
585 # if !defined makedev && (defined mkdev || defined _WIN32 || defined __WIN32__)
586 #  define makedev mkdev
587 # endif
588 #elif defined MAJOR_IN_SYSMACROS
589 #include <sys/sysmacros.h>
590 #endif
591
592 int main(void)
593 {
594         dev_t dev = makedev(0, 5, 7);
595         if (major(dev) != 5 || minor(dev) != 7)
596                 return 1;
597         return 0;
598 }
599 ]])],[rsync_cv_MAKEDEV_TAKES_3_ARGS=yes],[rsync_cv_MAKEDEV_TAKES_3_ARGS=no],[rsync_cv_MAKEDEV_TAKES_3_ARGS=no])])
600 if test x"$rsync_cv_MAKEDEV_TAKES_3_ARGS" = x"yes"; then
601    AC_DEFINE(MAKEDEV_TAKES_3_ARGS, 1, [Define to 1 if makedev() takes 3 args])
602 fi
603
604 AC_CHECK_SIZEOF(int)
605 AC_CHECK_SIZEOF(long)
606 AC_CHECK_SIZEOF(long long)
607 AC_CHECK_SIZEOF(short)
608 AC_CHECK_SIZEOF(int16_t)
609 AC_CHECK_SIZEOF(uint16_t)
610 AC_CHECK_SIZEOF(int32_t)
611 AC_CHECK_SIZEOF(uint32_t)
612 AC_CHECK_SIZEOF(int64_t)
613 AC_CHECK_SIZEOF(off_t)
614 AC_CHECK_SIZEOF(off64_t)
615 AC_CHECK_SIZEOF(time_t)
616 AC_CHECK_SIZEOF(char*)
617
618 AC_C_INLINE
619
620 AC_TYPE_LONG_DOUBLE_WIDER
621 ac_cv_c_long_double=$ac_cv_type_long_double_wider
622 if test $ac_cv_c_long_double = yes; then
623   AC_DEFINE([HAVE_LONG_DOUBLE],[1],[Define to 1 if the type `long double' works and has more range or precision than `double'.])
624 fi
625
626 AC_TYPE_UID_T
627 AC_CHECK_TYPES([mode_t,off_t,size_t,pid_t,id_t])
628 if test "$cross_compiling" = no; then
629     AC_TYPE_GETGROUPS
630 else
631     AC_DEFINE([GETGROUPS_T],[gid_t],[Define to the type of elements in the array set by `getgroups'. Usually this is either `int' or `gid_t'.])
632 fi
633 AC_CHECK_MEMBERS([struct stat.st_rdev,
634                   struct stat.st_mtimensec,
635                   struct stat.st_mtimespec.tv_nsec,
636                   struct stat.st_mtim.tv_nsec],,,[
637 #ifdef HAVE_SYS_TYPES_H
638 #include <sys/types.h>
639 #endif
640 #ifdef HAVE_SYS_STAT_H
641 #include <sys/stat.h>
642 #endif
643 #ifdef HAVE_UNISTD_H
644 #include <unistd.h>
645 #endif])
646
647 TYPE_SOCKLEN_T
648
649 AC_CACHE_CHECK([for errno in errno.h],rsync_cv_errno, [
650     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <errno.h>]], [[int i = errno]])],[rsync_cv_errno=yes],[rsync_cv_have_errno_decl=no])])
651 if test x"$rsync_cv_errno" = x"yes"; then
652    AC_DEFINE(HAVE_ERRNO_DECL, 1, [Define to 1 if errno is declared in errno.h])
653 fi
654
655 # The following test taken from the cvs sources
656 # If we can't find connect, try looking in -lsocket, -lnsl, and -linet.
657 # These need checks to be before checks for any other functions that
658 #    might be in the same libraries.
659 # The Irix 5 libc.so has connect and gethostbyname, but Irix 5 also has
660 # libsocket.so which has a bad implementation of gethostbyname (it
661 # only looks in /etc/hosts), so we only look for -lsocket if we need
662 # it.
663 AC_CHECK_FUNCS(connect)
664 if test x"$ac_cv_func_connect" = x"no"; then
665     case "$LIBS" in
666     *-lnsl*) ;;
667     *) AC_CHECK_LIB(nsl_s, printf) ;;
668     esac
669     case "$LIBS" in
670     *-lnsl*) ;;
671     *) AC_CHECK_LIB(nsl, printf) ;;
672     esac
673     case "$LIBS" in
674     *-lsocket*) ;;
675     *) AC_CHECK_LIB(socket, connect) ;;
676     esac
677     case "$LIBS" in
678     *-linet*) ;;
679     *) AC_CHECK_LIB(inet, connect) ;;
680     esac
681     dnl We can't just call AC_CHECK_FUNCS(connect) here, because the value
682     dnl has been cached.
683     if test x"$ac_cv_lib_socket_connect" = x"yes" ||
684        test x"$ac_cv_lib_inet_connect" = x"yes"; then
685         # ac_cv_func_connect=yes
686         # don't!  it would cause AC_CHECK_FUNC to succeed next time configure is run
687         AC_DEFINE(HAVE_CONNECT, 1, [Define to 1 if you have the "connect" function])
688     fi
689 fi
690
691 AC_SEARCH_LIBS(inet_ntop, resolv)
692
693 # For OS X, Solaris, HP-UX, etc.: figure out if -liconv is needed.  We'll
694 # accept either iconv_open or libiconv_open, since some include files map
695 # the former to the latter.
696 AC_SEARCH_LIBS(iconv_open, iconv)
697 AC_SEARCH_LIBS(libiconv_open, iconv)
698
699 AC_MSG_CHECKING([for iconv declaration])
700 AC_CACHE_VAL(am_cv_proto_iconv, [
701     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
702 #if HAVE_STDLIB_H
703 #include <stdlib.h>
704 #endif
705 #include <iconv.h>
706 extern
707 #ifdef __cplusplus
708 "C"
709 #endif
710 #if defined(__STDC__) || defined(__cplusplus)
711 size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
712 #else
713 size_t iconv();
714 #endif
715 ]], [[]])],[am_cv_proto_iconv_arg1=""],[am_cv_proto_iconv_arg1="const"])
716       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);"])
717     am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed 's/( /(/'`
718 AC_MSG_RESULT([$]{ac_t:-
719          }[$]am_cv_proto_iconv)
720 AC_DEFINE_UNQUOTED(ICONV_CONST, $am_cv_proto_iconv_arg1,
721                    [Define as const if the declaration of iconv() needs const.])
722
723 dnl AC_MSG_NOTICE([Looking in libraries: $LIBS])
724
725 AC_REPLACE_FUNCS([inet_ntop inet_pton])
726
727 AC_HAVE_TYPE([struct addrinfo], [#include <netdb.h>])
728 AC_HAVE_TYPE([struct sockaddr_storage], [
729 #ifdef HAVE_SYS_TYPES_H
730 #include <sys/types.h>
731 #endif
732 #ifdef HAVE_SYS_SOCKET_H
733 #include <sys/socket.h>
734 #endif])
735
736 # Irix 6.5 has getaddrinfo but not the corresponding defines, so use
737 #   builtin getaddrinfo if one of the defines don't exist
738 AC_CACHE_CHECK([whether defines needed by getaddrinfo exist],
739                rsync_cv_HAVE_GETADDR_DEFINES,[
740                         AC_EGREP_CPP(yes, [
741 #ifdef HAVE_SYS_TYPES_H
742 #include <sys/types.h>
743 #endif
744 #ifdef HAVE_SYS_SOCKET_H
745 #include <sys/socket.h>
746 #endif
747 #ifdef HAVE_NETDB_H
748 #include <netdb.h>
749 #endif
750 #ifdef AI_PASSIVE
751 yes
752 #endif],
753                         rsync_cv_HAVE_GETADDR_DEFINES=yes,
754                         rsync_cv_HAVE_GETADDR_DEFINES=no)])
755 AS_IF([test x"$rsync_cv_HAVE_GETADDR_DEFINES" = x"yes" && test x"$ac_cv_type_struct_addrinfo" = x"yes"],[
756         # Tru64 UNIX has getaddrinfo() but has it renamed in libc as
757         # something else so we must include <netdb.h> to get the
758         # redefinition.
759         AC_CHECK_FUNCS(getaddrinfo, ,
760                 [AC_MSG_CHECKING([for getaddrinfo by including <netdb.h>])
761                 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
762 #ifdef HAVE_SYS_TYPES_H
763 #include <sys/types.h>
764 #endif
765 #ifdef HAVE_SYS_SOCKET_H
766 #include <sys/socket.h>
767 #endif
768 #include <netdb.h>]], [[getaddrinfo(NULL, NULL, NULL, NULL);]])],[AC_MSG_RESULT([yes])
769                         AC_DEFINE(HAVE_GETADDRINFO, 1,
770                                 [Define to 1 if you have the "getaddrinfo" function and required types.])],[AC_MSG_RESULT([no])
771                         AC_LIBOBJ([getaddrinfo])])])
772     ],[AC_LIBOBJ([getaddrinfo])])
773
774 AC_CHECK_MEMBER([struct sockaddr.sa_len],
775                 [ AC_DEFINE(HAVE_SOCKADDR_LEN, 1, [Do we have sockaddr.sa_len?]) ],
776                 [],
777                 [
778 #ifdef HAVE_SYS_TYPES_H
779 #include <sys/types.h>
780 #endif
781 #ifdef HAVE_SYS_SOCKET_H
782 #include <sys/socket.h>
783 #endif
784 ])
785
786 AC_CHECK_MEMBER([struct sockaddr_in.sin_len],
787                 [ AC_DEFINE(HAVE_SOCKADDR_IN_LEN, 1, [Do we have sockaddr_in.sin_len?]) ],
788                 [],
789                 [
790 #ifdef HAVE_SYS_TYPES_H
791 #include <sys/types.h>
792 #endif
793 #ifdef HAVE_SYS_SOCKET_H
794 #include <sys/socket.h>
795 #endif
796 #include <netinet/in.h>
797 ])
798
799 AC_CHECK_MEMBER([struct sockaddr_un.sun_len],
800                 [ AC_DEFINE(HAVE_SOCKADDR_UN_LEN, 1, [Do we have sockaddr_un.sun_len?]) ],
801                 [],
802                 [
803 #ifdef HAVE_SYS_TYPES_H
804 #include <sys/types.h>
805 #endif
806 #ifdef HAVE_SYS_SOCKET_H
807 #include <sys/socket.h>
808 #endif
809 #include <netinet/in.h>
810 ])
811
812 AC_CHECK_MEMBER([struct sockaddr_in6.sin6_scope_id],
813                 [ AC_DEFINE(HAVE_SOCKADDR_IN6_SCOPE_ID, 1, [Do we have sockaddr_in6.sin6_scope_id?]) ],
814                 [],
815                 [
816 #ifdef HAVE_SYS_TYPES_H
817 #include <sys/types.h>
818 #endif
819 #ifdef HAVE_SYS_SOCKET_H
820 #include <sys/socket.h>
821 #endif
822 #include <netinet/in.h>
823 ])
824
825 AC_HAVE_TYPE([struct stat64], [#include <stdio.h>
826 #if HAVE_SYS_TYPES_H
827 # include <sys/types.h>
828 #endif
829 #if HAVE_SYS_STAT_H
830 # include <sys/stat.h>
831 #endif
832 #if STDC_HEADERS
833 # include <stdlib.h>
834 # include <stddef.h>
835 #else
836 # if HAVE_STDLIB_H
837 #  include <stdlib.h>
838 # endif
839 #endif
840 ])
841
842 # if we can't find strcasecmp, look in -lresolv (for Unixware at least)
843 #
844 AC_CHECK_FUNCS(strcasecmp)
845 if test x"$ac_cv_func_strcasecmp" = x"no"; then
846     AC_CHECK_LIB(resolv, strcasecmp)
847 fi
848
849 AC_CHECK_FUNCS(aclsort)
850 if test x"$ac_cv_func_aclsort" = x"no"; then
851     AC_CHECK_LIB(sec, aclsort)
852 fi
853
854 dnl At the moment we don't test for a broken memcmp(), because all we
855 dnl need to do is test for equality, not comparison, and it seems that
856 dnl every platform has a memcmp that can do at least that.
857 dnl AC_FUNC_MEMCMP
858
859 AC_FUNC_UTIME_NULL
860 AC_FUNC_ALLOCA
861 AC_CHECK_FUNCS(waitpid wait4 getcwd chown chmod lchmod mknod mkfifo \
862     fchmod fstat ftruncate strchr readlink link utime utimes lutimes strftime \
863     chflags getattrlist mktime innetgr linkat \
864     memmove lchown vsnprintf snprintf vasprintf asprintf setsid strpbrk \
865     strlcat strlcpy strtol mallinfo mallinfo2 getgroups setgroups geteuid getegid \
866     setlocale setmode open64 lseek64 mkstemp64 mtrace va_copy __va_copy \
867     seteuid strerror putenv iconv_open locale_charset nl_langinfo getxattr \
868     extattr_get_link sigaction sigprocmask setattrlist getgrouplist \
869     initgroups utimensat posix_fallocate attropen setvbuf nanosleep usleep \
870     setenv unsetenv)
871
872 dnl cygwin iconv.h defines iconv_open as libiconv_open
873 if test x"$ac_cv_func_iconv_open" != x"yes"; then
874     AC_CHECK_FUNC(libiconv_open, [ac_cv_func_iconv_open=yes; AC_DEFINE(HAVE_ICONV_OPEN, 1)])
875 fi
876
877 dnl Preallocation stuff (also fallocate, posix_fallocate function tests above):
878
879 AC_CACHE_CHECK([for useable fallocate],rsync_cv_have_fallocate,[
880 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <fcntl.h>
881 #ifdef HAVE_SYS_TYPES_H
882 #include <sys/types.h>
883 #endif]], [[fallocate(0, 0, 0, 0);]])],[rsync_cv_have_fallocate=yes],[rsync_cv_have_fallocate=no])])
884 if test x"$rsync_cv_have_fallocate" = x"yes"; then
885     AC_DEFINE(HAVE_FALLOCATE, 1, [Define to 1 if you have the fallocate function and it compiles and links without error])
886 fi
887
888 AC_MSG_CHECKING([for FALLOC_FL_PUNCH_HOLE])
889 AC_PREPROC_IFELSE([AC_LANG_SOURCE([[
890         #define _GNU_SOURCE 1
891         #include <linux/falloc.h>
892         #ifndef FALLOC_FL_PUNCH_HOLE
893         #error FALLOC_FL_PUNCH_HOLE is missing
894         #endif
895     ]])], [
896         AC_MSG_RESULT([yes])
897         AC_DEFINE([HAVE_FALLOC_FL_PUNCH_HOLE], [1], [Define if FALLOC_FL_PUNCH_HOLE is available.])
898     ], [
899         AC_MSG_RESULT([no])
900     ]
901 )
902
903 AC_MSG_CHECKING([for FALLOC_FL_ZERO_RANGE])
904 AC_PREPROC_IFELSE([AC_LANG_SOURCE([[
905         #define _GNU_SOURCE 1
906         #include <linux/falloc.h>
907         #ifndef FALLOC_FL_ZERO_RANGE
908         #error FALLOC_FL_ZERO_RANGE is missing
909         #endif
910     ]])], [
911         AC_MSG_RESULT([yes])
912         AC_DEFINE([HAVE_FALLOC_FL_ZERO_RANGE], [1], [Define if FALLOC_FL_ZERO_RANGE is available.])
913     ], [
914         AC_MSG_RESULT([no])
915     ]
916 )
917
918 AC_CACHE_CHECK([for SYS_fallocate],rsync_cv_have_sys_fallocate,[
919 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/syscall.h>
920 #ifdef HAVE_UNISTD_H
921 #include <unistd.h>
922 #endif
923 #ifdef HAVE_SYS_TYPES_H
924 #include <sys/types.h>
925 #endif]], [[syscall(SYS_fallocate, 0, 0, (loff_t)0, (loff_t)0);]])],[rsync_cv_have_sys_fallocate=yes],[rsync_cv_have_sys_fallocate=no])])
926 if test x"$rsync_cv_have_sys_fallocate" = x"yes"; then
927     AC_DEFINE(HAVE_SYS_FALLOCATE, 1, [Define to 1 if you have the SYS_fallocate syscall number])
928 fi
929
930 if test x"$ac_cv_func_posix_fallocate" = x"yes"; then
931     AC_MSG_CHECKING([whether posix_fallocate is efficient])
932     case $host_os in
933     *cygwin*)
934         AC_MSG_RESULT(yes)
935         AC_DEFINE(HAVE_EFFICIENT_POSIX_FALLOCATE, 1,
936                   [Define if posix_fallocate is efficient (Cygwin)])
937         ;;
938     *)
939         AC_MSG_RESULT(no)
940         ;;
941     esac
942 fi
943
944 dnl End of preallocation stuff
945
946 AC_CHECK_FUNCS(getpgrp tcgetpgrp)
947 if test $ac_cv_func_getpgrp = yes; then
948     AC_FUNC_GETPGRP
949 fi
950
951 AC_ARG_ENABLE(iconv-open,
952     AS_HELP_STRING([--disable-iconv-open],[disable to avoid all use of iconv_open()]),
953     [], [enable_iconv_open=$ac_cv_func_iconv_open])
954
955 if test x"$enable_iconv_open" != x"no"; then
956     AC_DEFINE(USE_ICONV_OPEN, 1, [Define to 1 if you want rsync to make use of iconv_open()])
957 fi
958
959 AC_ARG_ENABLE(iconv,
960     AS_HELP_STRING([--disable-iconv],[disable to omit the --iconv option]),
961     [], [enable_iconv=$enable_iconv_open])
962 AH_TEMPLATE([ICONV_OPTION],
963 [Define if you want the --iconv option.  Specifying a value will set the
964 default iconv setting (a NULL means no --iconv processing by default).])
965 if test x"$enable_iconv" != x"no"; then
966         if test x"$enable_iconv" = x"yes"; then
967                 AC_DEFINE(ICONV_OPTION, NULL)
968         else
969                 AC_DEFINE_UNQUOTED(ICONV_OPTION, "$enable_iconv")
970         fi
971         AC_DEFINE(UTF8_CHARSET, "UTF-8", [String to pass to iconv() for the UTF-8 charset.])
972 fi
973
974 AC_CACHE_CHECK([whether chown() modifies symlinks],rsync_cv_chown_modifies_symlink,[
975   AC_RUN_IFELSE([AC_LANG_SOURCE([[
976 #if HAVE_UNISTD_H
977 # include <unistd.h>
978 #endif
979 #include <stdlib.h>
980 #include <errno.h>
981 int main(void) {
982         char const *dangling_symlink = "conftest.dangle";
983         unlink(dangling_symlink);
984         if (symlink("conftest.no-such", dangling_symlink) < 0) abort();
985         if (chown(dangling_symlink, getuid(), getgid()) < 0 && errno == ENOENT) return 1;
986         return 0;
987     }]])],[rsync_cv_chown_modifies_symlink=yes],[rsync_cv_chown_modifies_symlink=no],[rsync_cv_chown_modifies_symlink=no])])
988 if test $rsync_cv_chown_modifies_symlink = yes; then
989   AC_DEFINE(CHOWN_MODIFIES_SYMLINK, 1, [Define to 1 if chown modifies symlinks.])
990 fi
991
992 AC_CACHE_CHECK([whether link() can hard-link symlinks],rsync_cv_can_hardlink_symlink,[
993   AC_RUN_IFELSE([AC_LANG_SOURCE([[
994 #ifdef HAVE_FCNTL_H
995 # include <fcntl.h>
996 #elif defined HAVE_SYS_FCNTL_H
997 # include <sys/fcntl.h>
998 #endif
999 #if HAVE_UNISTD_H
1000 # include <unistd.h>
1001 #endif
1002 #include <stdlib.h>
1003 #include <errno.h>
1004 #define FILENAME "conftest.dangle"
1005 int main(void) {
1006         unlink(FILENAME);
1007         if (symlink("conftest.no-such", FILENAME) < 0) abort();
1008         unlink(FILENAME "2");
1009 #ifdef HAVE_LINKAT
1010         if (linkat(AT_FDCWD, FILENAME, AT_FDCWD, FILENAME "2", 0) < 0) return 1;
1011 #else
1012         if (link(FILENAME, FILENAME "2") < 0) return 1;
1013 #endif
1014         return 0;
1015     }]])],[rsync_cv_can_hardlink_symlink=yes],[rsync_cv_can_hardlink_symlink=no],[rsync_cv_can_hardlink_symlink=no])])
1016 if test $rsync_cv_can_hardlink_symlink = yes; then
1017   AC_DEFINE(CAN_HARDLINK_SYMLINK, 1, [Define to 1 if link() can hard-link symlinks.])
1018 fi
1019
1020 AC_CACHE_CHECK([whether link() can hard-link special files],rsync_cv_can_hardlink_special,[
1021   AC_RUN_IFELSE([AC_LANG_SOURCE([[
1022 #if HAVE_UNISTD_H
1023 # include <unistd.h>
1024 #endif
1025 #ifdef HAVE_SYS_STAT_H
1026 #include <sys/stat.h>
1027 #endif
1028 #include <stdlib.h>
1029 #include <errno.h>
1030 #define FILENAME "conftest.fifi"
1031 int main(void) {
1032         unlink(FILENAME);
1033         if (mkfifo(FILENAME, 0777) < 0) abort();
1034         unlink(FILENAME "2");
1035         if (link(FILENAME, FILENAME "2") < 0) return 1;
1036         return 0;
1037     }]])],[rsync_cv_can_hardlink_special=yes],[rsync_cv_can_hardlink_special=no],[rsync_cv_can_hardlink_special=no])])
1038 if test $rsync_cv_can_hardlink_special = yes; then
1039     AC_DEFINE(CAN_HARDLINK_SPECIAL, 1, [Define to 1 if link() can hard-link special files.])
1040 fi
1041
1042 AC_CACHE_CHECK([for working socketpair],rsync_cv_HAVE_SOCKETPAIR,[
1043 AC_RUN_IFELSE([AC_LANG_SOURCE([[
1044 #ifdef HAVE_SYS_TYPES_H
1045 #include <sys/types.h>
1046 #endif
1047 #ifdef HAVE_SYS_SOCKET_H
1048 #include <sys/socket.h>
1049 #endif
1050
1051 int main(void) {
1052        int fd[2];
1053        return (socketpair(AF_UNIX, SOCK_STREAM, 0, fd) != -1) ? 0 : 1;
1054 }]])],[rsync_cv_HAVE_SOCKETPAIR=yes],[rsync_cv_HAVE_SOCKETPAIR=no],[rsync_cv_HAVE_SOCKETPAIR=cross])])
1055 if test x"$rsync_cv_HAVE_SOCKETPAIR" = x"yes"; then
1056     AC_DEFINE(HAVE_SOCKETPAIR, 1, [Define to 1 if you have the "socketpair" function])
1057 fi
1058
1059 AC_REPLACE_FUNCS([getpass])
1060
1061 if test x"$with_included_popt" != x"yes"; then
1062     AC_CHECK_LIB(popt, poptGetContext, , [with_included_popt=yes])
1063 fi
1064 if test x"$ac_cv_header_popt_popt_h" = x"yes"; then
1065     # If the system has /usr/include/popt/popt.h, we enable the
1066     # included popt because an attempt to "#include <popt/popt.h>"
1067     # would use our included header file anyway (due to -I.), and
1068     # might conflict with the system popt.
1069     with_included_popt=yes
1070 elif test x"$ac_cv_header_popt_h" != x"yes"; then
1071     with_included_popt=yes
1072 fi
1073
1074 if test x"$GCC" = x"yes"; then
1075     if test x"$with_included_popt" != x"yes"; then
1076         # Turn pedantic warnings into errors to ensure an array-init overflow is an error.
1077         CFLAGS="$CFLAGS -pedantic-errors"
1078     else
1079         # Our internal popt code cannot be compiled with pedantic warnings as errors, so try to
1080         # turn off pedantic warnings (which will not lose the error for array-init overflow).
1081         # Older gcc versions don't understand -Wno-pedantic, so check if --help=warnings lists
1082         # -Wpedantic and use that as a flag.
1083         case `$CC --help=warnings 2>/dev/null | grep Wpedantic` in
1084             *-Wpedantic*) CFLAGS="$CFLAGS -pedantic-errors -Wno-pedantic" ;;
1085         esac
1086     fi
1087 fi
1088
1089 AC_MSG_CHECKING([whether to use included libpopt])
1090 if test x"$with_included_popt" = x"yes"; then
1091     AC_MSG_RESULT($srcdir/popt)
1092     BUILD_POPT='$(popt_OBJS)'
1093     CFLAGS="-I$srcdir/popt $CFLAGS"
1094     if test x"$ALLOCA" != x
1095     then
1096         # this can be removed when/if we add an included alloca.c;
1097         #  see autoconf documentation on AC_FUNC_ALLOCA
1098         AC_MSG_WARN([included libpopt will use malloc, not alloca (which wastes a small amount of memory)])
1099     fi
1100 else
1101     AC_MSG_RESULT(no)
1102 fi
1103
1104 # We default to using our zlib unless --with-included-zlib=no is given.
1105 if test x"$with_included_zlib" != x"no"; then
1106     with_included_zlib=yes
1107 elif test x"$ac_cv_header_zlib_h" != x"yes"; then
1108     with_included_zlib=yes
1109 fi
1110 if test x"$with_included_zlib" != x"yes"; then
1111     AC_CHECK_LIB(z, deflateParams, , [with_included_zlib=yes])
1112 fi
1113
1114 AC_MSG_CHECKING([whether to use included zlib])
1115 if test x"$with_included_zlib" = x"yes"; then
1116     AC_MSG_RESULT($srcdir/zlib)
1117     BUILD_ZLIB='$(zlib_OBJS)'
1118     CFLAGS="-I$srcdir/zlib $CFLAGS"
1119 else
1120     AC_DEFINE(EXTERNAL_ZLIB, 1, [Define to 1 if using external zlib])
1121     AC_MSG_RESULT(no)
1122 fi
1123
1124 AC_CACHE_CHECK([for unsigned char],rsync_cv_SIGNED_CHAR_OK,[
1125 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[signed char *s = (signed char *)""]])],[rsync_cv_SIGNED_CHAR_OK=yes],[rsync_cv_SIGNED_CHAR_OK=no])])
1126 if test x"$rsync_cv_SIGNED_CHAR_OK" = x"yes"; then
1127     AC_DEFINE(SIGNED_CHAR_OK, 1, [Define to 1 if "signed char" is a valid type])
1128 fi
1129
1130 AC_CACHE_CHECK([for broken readdir],rsync_cv_HAVE_BROKEN_READDIR,[
1131 AC_RUN_IFELSE([AC_LANG_SOURCE([[
1132 #ifdef HAVE_SYS_TYPES_H
1133 #include <sys/types.h>
1134 #endif
1135 #include <dirent.h>
1136 int main(void) { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
1137 if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
1138 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])])
1139 if test x"$rsync_cv_HAVE_BROKEN_READDIR" = x"yes"; then
1140     AC_DEFINE(HAVE_BROKEN_READDIR, 1, [Define to 1 if readdir() is broken])
1141 fi
1142
1143 AC_CACHE_CHECK([for utimbuf],rsync_cv_HAVE_STRUCT_UTIMBUF,[
1144 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1145 #ifdef HAVE_SYS_TYPES_H
1146 #include <sys/types.h>
1147 #endif
1148 #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])])
1149 if test x"$rsync_cv_HAVE_STRUCT_UTIMBUF" = x"yes"; then
1150     AC_DEFINE(HAVE_STRUCT_UTIMBUF, 1, [Define to 1 if you have the "struct utimbuf" type])
1151 fi
1152
1153 AC_CACHE_CHECK([if gettimeofday takes tz argument],rsync_cv_HAVE_GETTIMEOFDAY_TZ,[
1154 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/time.h>
1155 #ifdef HAVE_UNISTD_H
1156 #include <unistd.h>
1157 #endif]], [[struct timeval tv; return gettimeofday(&tv, NULL);]])],[rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes],[rsync_cv_HAVE_GETTIMEOFDAY_TZ=no])])
1158 if test x"$rsync_cv_HAVE_GETTIMEOFDAY_TZ" != x"no"; then
1159     AC_DEFINE(HAVE_GETTIMEOFDAY_TZ, 1, [Define to 1 if gettimeofday() takes a time-zone arg])
1160 fi
1161
1162 AC_CACHE_CHECK([for C99 vsnprintf],rsync_cv_HAVE_C99_VSNPRINTF,[
1163 AC_RUN_IFELSE([AC_LANG_SOURCE([[
1164 #ifdef HAVE_SYS_TYPES_H
1165 #include <sys/types.h>
1166 #endif
1167 #include <stdarg.h>
1168 #include <stdio.h>
1169 #if HAVE_STDLIB_H
1170 #include <stdlib.h>
1171 #endif
1172 #include <string.h>
1173 void foo(const char *format, ...) {
1174        va_list ap;
1175        int len;
1176        static char buf[] = "12345678901234567890";
1177
1178        va_start(ap, format);
1179        len = vsnprintf(0, 0, format, ap);
1180        va_end(ap);
1181        if (len != 5) exit(1);
1182
1183        if (snprintf(buf, 3, "hello") != 5 || strcmp(buf, "he") != 0) exit(1);
1184 }
1185 int main(void) { foo("hello"); return 0; }
1186 ]])],[rsync_cv_HAVE_C99_VSNPRINTF=yes],[rsync_cv_HAVE_C99_VSNPRINTF=no],[rsync_cv_HAVE_C99_VSNPRINTF=cross])])
1187 if test x"$rsync_cv_HAVE_C99_VSNPRINTF" = x"yes"; then
1188     AC_DEFINE(HAVE_C99_VSNPRINTF, 1, [Define to 1 if vsprintf has a C99-compatible return value])
1189 fi
1190
1191
1192 AC_CACHE_CHECK([for secure mkstemp],rsync_cv_HAVE_SECURE_MKSTEMP,[
1193 AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdlib.h>
1194 #ifdef HAVE_SYS_TYPES_H
1195 #include <sys/types.h>
1196 #endif
1197 #include <sys/stat.h>
1198 #ifdef HAVE_UNISTD_H
1199 #include <unistd.h>
1200 #endif
1201 int main(void) {
1202   struct stat st;
1203   char tpl[20]="/tmp/test.XXXXXX";
1204   int fd = mkstemp(tpl);
1205   if (fd == -1) return 1;
1206   unlink(tpl);
1207   if (fstat(fd, &st) != 0) return 1;
1208   if ((st.st_mode & 0777) != 0600) return 1;
1209   return 0;
1210 }]])],[rsync_cv_HAVE_SECURE_MKSTEMP=yes],[rsync_cv_HAVE_SECURE_MKSTEMP=no],[rsync_cv_HAVE_SECURE_MKSTEMP=cross])])
1211 if test x"$rsync_cv_HAVE_SECURE_MKSTEMP" = x"yes"; then
1212     case $host_os in
1213     hpux*)
1214         dnl HP-UX has a broken mkstemp() implementation they refuse to fix,
1215         dnl so we noisily skip using it.  See HP change request JAGaf34426
1216         dnl for details. (sbonds)
1217         AC_MSG_WARN(Skipping broken HP-UX mkstemp() -- using mktemp() instead)
1218         ;;
1219     *)
1220         AC_DEFINE(HAVE_SECURE_MKSTEMP, 1, [Define to 1 if mkstemp() is available and works right])
1221         ;;
1222     esac
1223 fi
1224
1225
1226 AC_CACHE_CHECK([if mknod creates FIFOs],rsync_cv_MKNOD_CREATES_FIFOS,[
1227 AC_RUN_IFELSE([AC_LANG_SOURCE([[
1228 #include <stdio.h>
1229 #include <sys/stat.h>
1230 #include <errno.h>
1231 #if HAVE_UNISTD_H
1232 # include <unistd.h>
1233 #endif
1234 int main(void) { int rc, ec; char *fn = "fifo-test";
1235 unlink(fn); rc = mknod(fn,S_IFIFO,0600); ec = errno; unlink(fn);
1236 if (rc) {printf("(%d %d) ",rc,ec); return ec;}
1237 return 0;}]])],[rsync_cv_MKNOD_CREATES_FIFOS=yes],[rsync_cv_MKNOD_CREATES_FIFOS=no],[rsync_cv_MKNOD_CREATES_FIFOS=cross])])
1238 if test x"$rsync_cv_MKNOD_CREATES_FIFOS" = x"yes"; then
1239     AC_DEFINE(MKNOD_CREATES_FIFOS, 1, [Define to 1 if mknod() can create FIFOs.])
1240 fi
1241
1242 AC_CACHE_CHECK([if mknod creates sockets],rsync_cv_MKNOD_CREATES_SOCKETS,[
1243 AC_RUN_IFELSE([AC_LANG_SOURCE([[
1244 #include <stdio.h>
1245 #include <sys/stat.h>
1246 #include <errno.h>
1247 #if HAVE_UNISTD_H
1248 # include <unistd.h>
1249 #endif
1250 int main(void) { int rc, ec; char *fn = "sock-test";
1251 unlink(fn); rc = mknod(fn,S_IFSOCK,0600); ec = errno; unlink(fn);
1252 if (rc) {printf("(%d %d) ",rc,ec); return ec;}
1253 return 0;}]])],[rsync_cv_MKNOD_CREATES_SOCKETS=yes],[rsync_cv_MKNOD_CREATES_SOCKETS=no],[rsync_cv_MKNOD_CREATES_SOCKETS=cross])])
1254 if test x"$rsync_cv_MKNOD_CREATES_SOCKETS" = x"yes"; then
1255     AC_DEFINE(MKNOD_CREATES_SOCKETS, 1, [Define to 1 if mknod() can create sockets.])
1256 fi
1257
1258 #
1259 # The following test was mostly taken from the tcl/tk plus patches
1260 #
1261 AC_CACHE_CHECK([whether -c -o works],rsync_cv_DASHC_WORKS_WITH_DASHO,[
1262 rm -rf conftest*
1263 cat > conftest.$ac_ext <<EOF
1264 int main(void) { return 0; }
1265 EOF
1266 ${CC-cc} -c -o conftest..o conftest.$ac_ext
1267 if test -f conftest..o; then
1268     rsync_cv_DASHC_WORKS_WITH_DASHO=yes
1269 else
1270     rsync_cv_DASHC_WORKS_WITH_DASHO=no
1271 fi
1272 rm -rf conftest*
1273 ])
1274 if test x"$rsync_cv_DASHC_WORKS_WITH_DASHO" = x"yes"; then
1275     OBJ_SAVE="#"
1276     OBJ_RESTORE="#"
1277     CC_SHOBJ_FLAG='-o $@'
1278 else
1279     OBJ_SAVE='  @b=`basename $@ .o`;rm -f $$b.o.sav;if test -f $$b.o; then mv $$b.o $$b.o.sav;fi;'
1280     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'
1281     CC_SHOBJ_FLAG=""
1282 fi
1283
1284 AC_SUBST(OBJ_SAVE)
1285 AC_SUBST(OBJ_RESTORE)
1286 AC_SUBST(CC_SHOBJ_FLAG)
1287 AC_SUBST(BUILD_POPT)
1288 AC_SUBST(BUILD_ZLIB)
1289 AC_SUBST(MAKE_RRSYNC)
1290 AC_SUBST(MAKE_RRSYNC_1)
1291 AC_SUBST(GEN_RRSYNC)
1292 AC_SUBST(MAKE_MAN)
1293
1294 AC_CHECK_FUNCS(_acl __acl _facl __facl)
1295 #################################################
1296 # check for ACL support
1297
1298 AC_MSG_CHECKING([whether to support ACLs])
1299 AC_ARG_ENABLE(acl-support,
1300         AS_HELP_STRING([--disable-acl-support],[disable to omit ACL support]))
1301
1302 if test x"$enable_acl_support" = x"no"; then
1303     AC_MSG_RESULT(no)
1304 else
1305     case "$host_os" in
1306     *sysv5*)
1307         AC_MSG_RESULT(Using UnixWare ACLs)
1308         AC_DEFINE(HAVE_UNIXWARE_ACLS, 1, [true if you have UnixWare ACLs])
1309         AC_DEFINE(SUPPORT_ACLS, 1, [Define to 1 to add support for ACLs])
1310         ;;
1311     solaris*)
1312         AC_MSG_RESULT(Using solaris ACLs)
1313         AC_DEFINE(HAVE_SOLARIS_ACLS, 1, [true if you have solaris ACLs])
1314         AC_DEFINE(SUPPORT_ACLS, 1)
1315         ;;
1316     *irix*)
1317         AC_MSG_RESULT(Using IRIX ACLs)
1318         AC_DEFINE(HAVE_IRIX_ACLS, 1, [true if you have IRIX ACLs])
1319         AC_DEFINE(SUPPORT_ACLS, 1)
1320         ;;
1321     *aix*)
1322         AC_MSG_RESULT(Using AIX ACLs)
1323         AC_DEFINE(HAVE_AIX_ACLS, 1, [true if you have AIX ACLs])
1324         AC_DEFINE(SUPPORT_ACLS, 1)
1325         ;;
1326     *osf*)
1327         AC_MSG_RESULT(Using Tru64 ACLs)
1328         AC_DEFINE(HAVE_TRU64_ACLS, 1, [true if you have Tru64 ACLs])
1329         AC_DEFINE(SUPPORT_ACLS, 1)
1330         LIBS="$LIBS -lpacl"
1331         ;;
1332     darwin*)
1333         AC_MSG_RESULT(Using OS X ACLs)
1334         AC_DEFINE(HAVE_OSX_ACLS, 1, [true if you have Mac OS X ACLs])
1335         AC_DEFINE(SUPPORT_ACLS, 1)
1336         ;;
1337     *hpux*|*nsk*)
1338         AC_MSG_RESULT(Using HPUX ACLs)
1339         AC_DEFINE(HAVE_HPUX_ACLS, 1, [true if you have HPUX ACLs])
1340         AC_DEFINE(SUPPORT_ACLS, 1)
1341         ;;
1342     *)
1343         AC_MSG_RESULT(running tests:)
1344         AC_CHECK_LIB(acl,acl_get_file)
1345         AC_CACHE_CHECK([for ACL support],samba_cv_HAVE_POSIX_ACLS,[
1346             AC_LINK_IFELSE([AC_LANG_PROGRAM([[
1347 #ifdef HAVE_SYS_TYPES_H
1348 #include <sys/types.h>
1349 #endif
1350 #ifdef HAVE_SYS_ACL_H
1351 #include <sys/acl.h>
1352 #endif]], [[ 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])])
1353         AC_MSG_CHECKING(ACL test results)
1354         if test x"$samba_cv_HAVE_POSIX_ACLS" = x"yes"; then
1355             AC_MSG_RESULT(Using posix ACLs)
1356             AC_DEFINE(HAVE_POSIX_ACLS, 1, [true if you have posix ACLs])
1357             AC_DEFINE(SUPPORT_ACLS, 1)
1358             AC_CACHE_CHECK([for acl_get_perm_np],samba_cv_HAVE_ACL_GET_PERM_NP,[
1359                 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
1360 #ifdef HAVE_SYS_TYPES_H
1361 #include <sys/types.h>
1362 #endif
1363 #ifdef HAVE_SYS_ACL_H
1364 #include <sys/acl.h>
1365 #endif]], [[ 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])])
1366             if test x"$samba_cv_HAVE_ACL_GET_PERM_NP" = x"yes"; then
1367                 AC_DEFINE(HAVE_ACL_GET_PERM_NP, 1, [true if you have acl_get_perm_np])
1368             fi
1369         else
1370             if test x"$enable_acl_support" = x"yes"; then
1371                 AC_MSG_ERROR(Failed to find ACL support)
1372             else
1373                 AC_MSG_RESULT(No ACL support found)
1374             fi
1375         fi
1376         ;;
1377     esac
1378 fi
1379
1380 #################################################
1381 # check for extended attribute support
1382 AC_MSG_CHECKING(whether to support extended attributes)
1383 AC_ARG_ENABLE(xattr-support,
1384     AS_HELP_STRING([--disable-xattr-support],[disable to omit extended attributes]),
1385     [], [case "$ac_cv_func_getxattr$ac_cv_func_extattr_get_link$ac_cv_func_attropen" in
1386         *yes*) enable_xattr_support=maybe ;;
1387         *) enable_xattr_support=no ;;
1388         esac])
1389 AH_TEMPLATE([SUPPORT_XATTRS],
1390 [Define to 1 to add support for extended attributes])
1391 if test x"$enable_xattr_support" = x"no"; then
1392     AC_MSG_RESULT(no)
1393 else
1394     case "$host_os" in
1395     *linux*|*netbsd*|*cygwin*)
1396         AC_MSG_RESULT(Using Linux xattrs)
1397         AC_DEFINE(HAVE_LINUX_XATTRS, 1, [True if you have Linux xattrs (or equivalent)])
1398         AC_DEFINE(SUPPORT_XATTRS, 1)
1399         AC_DEFINE(NO_SYMLINK_USER_XATTRS, 1, [True if symlinks do not support user xattrs])
1400         AC_CHECK_LIB(attr,getxattr)
1401         ;;
1402     darwin*)
1403         AC_MSG_RESULT(Using OS X xattrs)
1404         AC_DEFINE(HAVE_OSX_XATTRS, 1, [True if you have Mac OS X xattrs])
1405         AC_DEFINE(SUPPORT_XATTRS, 1)
1406         AC_DEFINE(NO_DEVICE_XATTRS, 1, [True if device files do not support xattrs])
1407         AC_DEFINE(NO_SPECIAL_XATTRS, 1, [True if special files do not support xattrs])
1408         ;;
1409     freebsd*)
1410         AC_MSG_RESULT(Using FreeBSD extattrs)
1411         AC_DEFINE(HAVE_FREEBSD_XATTRS, 1, [True if you have FreeBSD xattrs])
1412         AC_DEFINE(SUPPORT_XATTRS, 1)
1413         ;;
1414     solaris*)
1415         AC_MSG_RESULT(Using Solaris xattrs)
1416         AC_DEFINE(HAVE_SOLARIS_XATTRS, 1, [True if you have Solaris xattrs])
1417         AC_DEFINE(SUPPORT_XATTRS, 1)
1418         AC_DEFINE(NO_SYMLINK_XATTRS, 1, [True if symlinks do not support xattrs])
1419         ;;
1420     *)
1421         if test x"$enable_xattr_support" = x"yes"; then
1422             AC_MSG_ERROR(Failed to find extended attribute support)
1423         else
1424             AC_MSG_RESULT(No extended attribute support found)
1425         fi
1426         ;;
1427     esac
1428 fi
1429
1430 if test x"$enable_acl_support" = x"no" || test x"$enable_xattr_support" = x"no" || test x"$enable_iconv" = x"no"; then
1431     AC_MSG_CHECKING([whether $CC supports -Wno-unused-parameter])
1432     OLD_CFLAGS="$CFLAGS"
1433     CFLAGS="$CFLAGS -Wno-unused-parameter"
1434     AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>]], [[printf("hello\n");]])],[rsync_warn_flag=yes],[rsync_warn_flag=no])
1435     AC_MSG_RESULT([$rsync_warn_flag])
1436     if test x"$rsync_warn_flag" = x"no"; then
1437         CFLAGS="$OLD_CFLAGS"
1438     fi
1439 fi
1440
1441 case "$CC" in
1442 ' checker'*|checker*)
1443     AC_DEFINE(FORCE_FD_ZERO_MEMSET, 1, [Used to make "checker" understand that FD_ZERO() clears memory.])
1444     ;;
1445 esac
1446
1447 AC_CONFIG_FILES([Makefile lib/dummy zlib/dummy popt/dummy shconfig])
1448 AC_OUTPUT
1449
1450 AC_MSG_RESULT()
1451 AC_MSG_RESULT([    rsync $PACKAGE_VERSION configuration successful])
1452 AC_MSG_RESULT()