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