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