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