Rolled over the news file for the next version.
[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=2.6.8
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_TARGET([])
17
18dnl Checks for programs.
19AC_PROG_CC
20AC_PROG_CPP
21AC_PROG_EGREP
22AC_PROG_INSTALL
23AC_PROG_CC_STDC
24AC_SUBST(SHELL)
25
26AC_DEFINE([_GNU_SOURCE], 1,
27 [Define _GNU_SOURCE so that we get all necessary prototypes])
28
29if test x"$ac_cv_prog_cc_stdc" = x"no"; then
30 AC_MSG_WARN([rsync requires an ANSI C compiler and you don't seem to have one])
31fi
32
33# We must decide this before testing the compiler.
34
35# Please allow this to default to yes, so that your users have more
36# chance of getting a useful stack trace if problems occur.
37
38AC_MSG_CHECKING([whether to include debugging symbols])
39AC_ARG_ENABLE(debug,
40 AC_HELP_STRING([--disable-debug],
41 [turn off debugging symbols and features]))
42
43if test x"$enable_debug" = x"no"; then
44 AC_MSG_RESULT(no)
45 CFLAGS=${CFLAGS-"-O"}
46else
47 AC_MSG_RESULT([yes])
48 # leave CFLAGS alone; AC_PROG_CC will try to include -g if it can
49 dnl AC_DEFINE(DEBUG, 1, [Define to turn on debugging code that may slow normal operation])
50 dnl CFLAGS=${CFLAGS-"-g"}
51fi
52
53
54AC_ARG_ENABLE(profile,
55 AC_HELP_STRING([--enable-profile],
56 [turn on CPU profiling]))
57if test x"$enable_profile" = x"yes"; then
58 CFLAGS="$CFLAGS -pg"
59fi
60
61
62# Specifically, this turns on panic_action handling.
63AC_ARG_ENABLE(maintainer-mode,
64 AC_HELP_STRING([--enable-maintainer-mode],
65 [turn on extra debug features]))
66if test x"$enable_maintainer_mode" = x"yes"; then
67 CFLAGS="$CFLAGS -DMAINTAINER_MODE"
68fi
69
70
71# This is needed for our included version of popt. Kind of silly, but
72# I don't want our version too far out of sync.
73CFLAGS="$CFLAGS -DHAVE_CONFIG_H"
74
75# If GCC, turn on warnings.
76if test x"$GCC" = x"yes"; then
77 CFLAGS="$CFLAGS -Wall -W"
78fi
79
80AC_ARG_WITH(included-popt,
81 AC_HELP_STRING([--with-included-popt], [use bundled popt library, not from system]))
82
83AC_ARG_WITH(rsync-path,
84 AC_HELP_STRING([--with-rsync-path=PATH], [set default --rsync-path to PATH (default: rsync)]),
85 [ RSYNC_PATH="$with_rsync_path" ],
86 [ RSYNC_PATH="rsync" ])
87
88AC_DEFINE_UNQUOTED(RSYNC_PATH, "$RSYNC_PATH", [location of rsync on remote machine])
89
90AC_ARG_WITH(rsyncd-conf,
91 AC_HELP_STRING([--with-rsyncd-conf=PATH], [set configuration file for rsync server to PATH (default: /etc/rsyncd.conf)]),
92 [ if test ! -z "$with_rsyncd_conf" ; then
93 case $with_rsyncd_conf in
94 yes|no)
95 RSYNCD_SYSCONF="/etc/rsyncd.conf"
96 ;;
97 /*)
98 RSYNCD_SYSCONF="$with_rsyncd_conf"
99 ;;
100 *)
101 AC_MSG_ERROR(You must specify an absolute path to --with-rsyncd-conf=PATH)
102 ;;
103 esac
104 else
105 RSYNCD_SYSCONF="/etc/rsyncd.conf"
106 fi ],
107 [ RSYNCD_SYSCONF="/etc/rsyncd.conf" ])
108
109AC_DEFINE_UNQUOTED(RSYNCD_SYSCONF, "$RSYNCD_SYSCONF", [location of configuration file for rsync server])
110
111AC_ARG_WITH(rsh,
112 AC_HELP_STRING([--with-rsh=CMD], [set remote shell command to CMD (default: ssh)]))
113
114AC_CHECK_PROG(HAVE_REMSH, remsh, 1, 0)
115if test x$HAVE_REMSH = x1; then
116 AC_DEFINE(HAVE_REMSH, 1, [Define to 1 if remote shell is remsh, not rsh])
117fi
118
119if test x"$with_rsh" != x; then
120 RSYNC_RSH="$with_rsh"
121else
122 RSYNC_RSH="ssh"
123fi
124AC_DEFINE_UNQUOTED(RSYNC_RSH, "$RSYNC_RSH", [default -e command])
125
126AC_MSG_CHECKING([the group for user "nobody"])
127if grep '^nobody:' /etc/group >/dev/null 2>&1; then
128 NOBODY_GROUP=nobody
129elif grep '^nogroup:' /etc/group >/dev/null 2>&1; then
130 NOBODY_GROUP=nogroup
131else
132 NOBODY_GROUP=nobody # test for others?
133fi
134AC_MSG_RESULT($NOBODY_GROUP)
135AC_DEFINE_UNQUOTED(NOBODY_USER, "nobody", [unprivileged user--e.g. nobody])
136AC_DEFINE_UNQUOTED(NOBODY_GROUP, "$NOBODY_GROUP", [unprivileged group for unprivileged user])
137
138# arrgh. libc in some old debian version screwed up the largefile
139# stuff, getting byte range locking wrong
140AC_CACHE_CHECK([for broken largefile support],rsync_cv_HAVE_BROKEN_LARGEFILE,[
141AC_TRY_RUN([
142#define _FILE_OFFSET_BITS 64
143#include <stdio.h>
144#include <fcntl.h>
145#include <sys/types.h>
146#include <sys/wait.h>
147
148int main(void)
149{
150 struct flock lock;
151 int status;
152 char tpl[32] = "/tmp/locktest.XXXXXX";
153 int fd = mkstemp(tpl);
154 if (fd < 0) {
155 strcpy(tpl, "conftest.dat");
156 fd = open(tpl, O_CREAT|O_RDWR, 0600);
157 }
158
159 lock.l_type = F_WRLCK;
160 lock.l_whence = SEEK_SET;
161 lock.l_start = 0;
162 lock.l_len = 1;
163 lock.l_pid = 0;
164 fcntl(fd,F_SETLK,&lock);
165 if (fork() == 0) {
166 lock.l_start = 1;
167 _exit(fcntl(fd,F_SETLK,&lock) == 0);
168 }
169 wait(&status);
170 unlink(tpl);
171 exit(WEXITSTATUS(status));
172}
173],
174rsync_cv_HAVE_BROKEN_LARGEFILE=yes,rsync_cv_HAVE_BROKEN_LARGEFILE=no,rsync_cv_HAVE_BROKEN_LARGEFILE=cross)])
175if test x"$rsync_cv_HAVE_BROKEN_LARGEFILE" != x"yes"; then
176 AC_SYS_LARGEFILE
177fi
178
179ipv6type=unknown
180ipv6lib=none
181ipv6trylibc=yes
182
183AC_ARG_ENABLE(ipv6,
184 AC_HELP_STRING([--disable-ipv6],
185 [don't even try to use IPv6]))
186if test x"$enable_ipv6" != x"no"; then
187 AC_MSG_CHECKING([ipv6 stack type])
188 for i in inria kame linux-glibc linux-inet6 toshiba v6d zeta; do
189 case $i in
190 inria)
191 # http://www.kame.net/
192 AC_EGREP_CPP(yes, [
193#include <netinet/in.h>
194#ifdef IPV6_INRIA_VERSION
195yes
196#endif],
197 [ipv6type=$i;
198 AC_DEFINE(INET6, 1, [true if you have IPv6])
199 ])
200 ;;
201 kame)
202 # http://www.kame.net/
203 AC_EGREP_CPP(yes, [
204#include <netinet/in.h>
205#ifdef __KAME__
206yes
207#endif],
208 [ipv6type=$i;
209 AC_DEFINE(INET6, 1, [true if you have IPv6])])
210 ;;
211 linux-glibc)
212 # http://www.v6.linux.or.jp/
213 AC_EGREP_CPP(yes, [
214#include <features.h>
215#if defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
216yes
217#endif],
218 [ipv6type=$i;
219AC_DEFINE(INET6, 1, [true if you have IPv6])])
220 ;;
221 linux-inet6)
222 # http://www.v6.linux.or.jp/
223 if test -d /usr/inet6 -o -f /usr/inet6/lib/libinet6.a; then
224 ipv6type=$i
225 ipv6lib=inet6
226 ipv6libdir=/usr/inet6/lib
227 ipv6trylibc=yes;
228 AC_DEFINE(INET6, 1, [true if you have IPv6])
229 CFLAGS="-I/usr/inet6/include $CFLAGS"
230 fi
231 ;;
232 toshiba)
233 AC_EGREP_CPP(yes, [
234#include <sys/param.h>
235#ifdef _TOSHIBA_INET6
236yes
237#endif],
238 [ipv6type=$i;
239 ipv6lib=inet6;
240 ipv6libdir=/usr/local/v6/lib;
241 AC_DEFINE(INET6, 1, [true if you have IPv6])])
242 ;;
243 v6d)
244 AC_EGREP_CPP(yes, [
245#include </usr/local/v6/include/sys/v6config.h>
246#ifdef __V6D__
247yes
248#endif],
249 [ipv6type=$i;
250 ipv6lib=v6;
251 ipv6libdir=/usr/local/v6/lib;
252 AC_DEFINE(INET6, 1, [true if you have IPv6])])
253 ;;
254 zeta)
255 AC_EGREP_CPP(yes, [
256#include <sys/param.h>
257#ifdef _ZETA_MINAMI_INET6
258yes
259#endif],
260 [ipv6type=$i;
261 ipv6lib=inet6;
262 ipv6libdir=/usr/local/v6/lib;
263 AC_DEFINE(INET6, 1, [true if you have IPv6])])
264 ;;
265 esac
266 if test "$ipv6type" != "unknown"; then
267 break
268 fi
269 done
270 AC_MSG_RESULT($ipv6type)
271
272 AC_SEARCH_LIBS(getaddrinfo, inet6)
273fi
274
275dnl Do you want to disable use of locale functions
276AC_ARG_ENABLE([locale],
277 AC_HELP_STRING([--disable-locale],
278 [turn off locale features]))
279AH_TEMPLATE([CONFIG_LOCALE],
280[Undefine if you don't want locale features. By default this is defined.])
281if test x"$enable_locale" != x"no"; then
282 AC_DEFINE(CONFIG_LOCALE)
283fi
284
285AC_MSG_CHECKING([whether to call shutdown on all sockets])
286case $host_os in
287 *cygwin* ) AC_MSG_RESULT(yes)
288 AC_DEFINE(SHUTDOWN_ALL_SOCKETS, 1,
289 [Define to 1 if sockets need to be shutdown])
290 ;;
291 * ) AC_MSG_RESULT(no);;
292esac
293
294AC_C_BIGENDIAN
295AC_HEADER_DIRENT
296AC_HEADER_TIME
297AC_HEADER_SYS_WAIT
298AC_CHECK_HEADERS(sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h \
299 unistd.h utime.h grp.h compat.h sys/param.h ctype.h sys/wait.h \
300 sys/ioctl.h sys/filio.h string.h stdlib.h sys/socket.h sys/mode.h \
301 sys/un.h glob.h mcheck.h arpa/inet.h arpa/nameser.h locale.h \
302 netdb.h malloc.h float.h limits.h iconv.h libcharset.h langinfo.h)
303AC_HEADER_MAJOR
304
305AC_CHECK_SIZEOF(int)
306AC_CHECK_SIZEOF(long)
307AC_CHECK_SIZEOF(long long)
308AC_CHECK_SIZEOF(short)
309AC_CHECK_SIZEOF(off_t)
310AC_CHECK_SIZEOF(off64_t)
311
312AC_C_INLINE
313AC_C_LONG_DOUBLE
314
315AC_TYPE_SIGNAL
316AC_TYPE_UID_T
317AC_TYPE_MODE_T
318AC_TYPE_OFF_T
319AC_TYPE_SIZE_T
320AC_TYPE_PID_T
321AC_TYPE_GETGROUPS
322AC_CHECK_MEMBERS([struct stat.st_rdev])
323
324TYPE_SOCKLEN_T
325
326AC_CACHE_CHECK([for errno in errno.h],rsync_cv_errno, [
327 AC_TRY_COMPILE([#include <errno.h>],[int i = errno],
328 rsync_cv_errno=yes,rsync_cv_have_errno_decl=no)])
329if test x"$rsync_cv_errno" = x"yes"; then
330 AC_DEFINE(HAVE_ERRNO_DECL, 1, [Define to 1 if errno is declared in errno.h])
331fi
332
333# The following test taken from the cvs sources
334# If we can't find connect, try looking in -lsocket, -lnsl, and -linet.
335# These need checks to be before checks for any other functions that
336# might be in the same libraries.
337# The Irix 5 libc.so has connect and gethostbyname, but Irix 5 also has
338# libsocket.so which has a bad implementation of gethostbyname (it
339# only looks in /etc/hosts), so we only look for -lsocket if we need
340# it.
341AC_CHECK_FUNCS(connect)
342if test x"$ac_cv_func_connect" = x"no"; then
343 case "$LIBS" in
344 *-lnsl*) ;;
345 *) AC_CHECK_LIB(nsl_s, printf) ;;
346 esac
347 case "$LIBS" in
348 *-lnsl*) ;;
349 *) AC_CHECK_LIB(nsl, printf) ;;
350 esac
351 case "$LIBS" in
352 *-lsocket*) ;;
353 *) AC_CHECK_LIB(socket, connect) ;;
354 esac
355 case "$LIBS" in
356 *-linet*) ;;
357 *) AC_CHECK_LIB(inet, connect) ;;
358 esac
359 dnl We can't just call AC_CHECK_FUNCS(connect) here, because the value
360 dnl has been cached.
361 if test x"$ac_cv_lib_socket_connect" = x"yes" ||
362 test x"$ac_cv_lib_inet_connect" = x"yes"; then
363 # ac_cv_func_connect=yes
364 # don't! it would cause AC_CHECK_FUNC to succeed next time configure is run
365 AC_DEFINE(HAVE_CONNECT, 1, [Define to 1 if you have the "connect" function])
366 fi
367fi
368
369AC_SEARCH_LIBS(inet_ntop, resolv)
370
371# Solaris and HP-UX weirdness:
372# Search for libiconv_open (not iconv_open) to discover if -liconv is needed!
373AC_SEARCH_LIBS(libiconv_open, iconv)
374
375dnl AC_MSG_NOTICE([Looking in libraries: $LIBS])
376
377AC_CHECK_FUNCS(inet_ntop, , [AC_LIBOBJ(lib/inet_ntop)])
378AC_CHECK_FUNCS(inet_pton, , [AC_LIBOBJ(lib/inet_pton)])
379
380# Irix 6.5 has getaddrinfo but not the corresponding defines, so use
381# builtin getaddrinfo if one of the defines don't exist
382AC_CACHE_CHECK([whether defines needed by getaddrinfo exist],
383 rsync_cv_HAVE_GETADDR_DEFINES,[
384 AC_EGREP_CPP(yes, [
385 #include <sys/types.h>
386 #include <sys/socket.h>
387 #include <netdb.h>
388 #ifdef AI_PASSIVE
389 yes
390 #endif],
391 rsync_cv_HAVE_GETADDR_DEFINES=yes,
392 rsync_cv_HAVE_GETADDR_DEFINES=no)])
393if test x"$rsync_cv_HAVE_GETADDR_DEFINES" = x"yes"; then
394 # Tru64 UNIX has getaddrinfo() but has it renamed in libc as
395 # something else so we must include <netdb.h> to get the
396 # redefinition.
397 AC_CHECK_FUNCS(getaddrinfo, ,
398 [AC_MSG_CHECKING([for getaddrinfo by including <netdb.h>])
399 AC_TRY_LINK([#include <sys/types.h>
400 #include <sys/socket.h>
401 #include <netdb.h>],[getaddrinfo(NULL, NULL, NULL, NULL);],
402 [AC_MSG_RESULT([yes])
403 AC_DEFINE(HAVE_GETADDRINFO, 1,
404 [Define to 1 if you have the "getaddrinfo" function.])],
405 [AC_MSG_RESULT([no])
406 AC_LIBOBJ(lib/getaddrinfo)])])
407 AC_CHECK_FUNCS(getnameinfo, , [AC_LIBOBJ(lib/getnameinfo)])
408else
409 AC_LIBOBJ(lib/getaddrinfo)
410 AC_LIBOBJ(lib/getnameinfo)
411fi
412
413AC_CHECK_MEMBER([struct sockaddr.sa_len],
414 [ AC_DEFINE(HAVE_SOCKADDR_LEN, 1, [Do we have sockaddr.sa_len?]) ],
415 [],
416 [
417#include <sys/types.h>
418#include <sys/socket.h>
419])
420
421AC_CHECK_MEMBER([struct sockaddr_in.sin_len],
422 [ AC_DEFINE(HAVE_SOCKADDR_IN_LEN, 1, [Do we have sockaddr_in.sin_len?]) ],
423 [],
424 [
425#include <sys/types.h>
426#include <sys/socket.h>
427#include <netinet/in.h>
428])
429
430AC_CHECK_MEMBER([struct sockaddr_un.sun_len],
431 [ AC_DEFINE(HAVE_SOCKADDR_UN_LEN, 1, [Do we have sockaddr_un.sun_len?]) ],
432 [],
433 [
434#include <sys/types.h>
435#include <sys/socket.h>
436#include <netinet/in.h>
437])
438
439AC_MSG_CHECKING(struct sockaddr_storage)
440AC_TRY_COMPILE([#include <sys/types.h>
441#include <sys/socket.h>],
442[struct sockaddr_storage x;],
443 AC_MSG_RESULT(yes)
444 AC_DEFINE(HAVE_SOCKADDR_STORAGE, 1,
445 [Define to 1 if you have struct sockaddr_storage.] ),
446 AC_MSG_RESULT(no))
447
448AC_CHECK_MEMBER([struct sockaddr_in6.sin6_scope_id],
449 [ AC_DEFINE(HAVE_SOCKADDR_IN6_SCOPE_ID, 1, [Do we have sockaddr_in6.sin6_scope_id?]) ],
450 [],
451 [
452#include <sys/types.h>
453#include <sys/socket.h>
454#include <netinet/in.h>
455])
456
457AC_MSG_CHECKING(struct stat64)
458AC_TRY_COMPILE([#include <stdio.h>
459#if HAVE_SYS_TYPES_H
460# include <sys/types.h>
461#endif
462#if HAVE_SYS_STAT_H
463# include <sys/stat.h>
464#endif
465#if STDC_HEADERS
466# include <stdlib.h>
467# include <stddef.h>
468#else
469# if HAVE_STDLIB_H
470# include <stdlib.h>
471# endif
472#endif
473],[struct stat64 st;],
474 AC_MSG_RESULT(yes)
475 AC_DEFINE(HAVE_STRUCT_STAT64,1,[Define to 1 if you have struct stat64.]),
476 AC_MSG_RESULT(no))
477
478# if we can't find strcasecmp, look in -lresolv (for Unixware at least)
479#
480AC_CHECK_FUNCS(strcasecmp)
481if test x"$ac_cv_func_strcasecmp" = x"no"; then
482 AC_CHECK_LIB(resolv, strcasecmp)
483fi
484
485dnl At the moment we don't test for a broken memcmp(), because all we
486dnl need to do is test for equality, not comparison, and it seems that
487dnl every platform has a memcmp that can do at least that.
488dnl AC_FUNC_MEMCMP
489
490AC_FUNC_UTIME_NULL
491AC_FUNC_ALLOCA
492AC_CHECK_FUNCS(waitpid wait4 getcwd strdup chown chmod lchmod mknod mkfifo \
493 fchmod fstat ftruncate strchr readlink link utime utimes lutimes strftime \
494 memmove lchown vsnprintf snprintf vasprintf asprintf setsid glob strpbrk \
495 strlcat strlcpy strtol mallinfo getgroups setgroups geteuid getegid \
496 setlocale setmode open64 lseek64 mkstemp64 mtrace va_copy __va_copy \
497 strerror putenv iconv_open locale_charset nl_langinfo \
498 sigaction sigprocmask)
499
500AC_CHECK_FUNCS(getpgrp tcgetpgrp)
501if test $ac_cv_func_getpgrp = yes; then
502 AC_FUNC_GETPGRP
503fi
504
505AC_CACHE_CHECK([whether chown() modifies symlinks],rsync_cv_chown_modifies_symlink,[
506 AC_TRY_RUN([
507#if HAVE_UNISTD_H
508# include <unistd.h>
509#endif
510#include <stdlib.h>
511#include <errno.h>
512 main() {
513 char const *dangling_symlink = "conftest.dangle";
514 unlink(dangling_symlink);
515 if (symlink("conftest.no-such", dangling_symlink) < 0) abort();
516 if (chown(dangling_symlink, getuid(), getgid()) < 0 && errno == ENOENT) exit(1);
517 exit(0);
518 }],
519 rsync_cv_chown_modifies_symlink=yes,rsync_cv_chown_modifies_symlink=no,rsync_cv_chown_modifies_symlink=no)])
520if test $rsync_cv_chown_modifies_symlink = yes; then
521 AC_DEFINE(CHOWN_MODIFIES_SYMLINK, 1, [Define to 1 if chown modifies symlinks.])
522fi
523
524AC_CACHE_CHECK([whether link() can hard-link symlinks],rsync_cv_can_hardlink_symlink,[
525 AC_TRY_RUN([
526#if HAVE_UNISTD_H
527# include <unistd.h>
528#endif
529#include <stdlib.h>
530#include <errno.h>
531#define FILENAME "conftest.dangle"
532 main() {
533 unlink(FILENAME);
534 if (symlink("conftest.no-such", FILENAME) < 0) abort();
535 if (link(FILENAME, FILENAME "2") < 0) exit(1);
536 exit(0);
537 }],
538 rsync_cv_can_hardlink_symlink=yes,rsync_cv_can_hardlink_symlink=no,rsync_cv_can_hardlink_symlink=no)])
539if test $rsync_cv_can_hardlink_symlink = yes; then
540 AC_DEFINE(CAN_HARDLINK_SYMLINK, 1, [Define to 1 if link() can hard-link symlinks.])
541fi
542
543AC_CACHE_CHECK([whether link() can hard-link special files],rsync_cv_can_hardlink_special,[
544 AC_TRY_RUN([
545#if HAVE_UNISTD_H
546# include <unistd.h>
547#endif
548#include <stdlib.h>
549#include <errno.h>
550#define FILENAME "conftest.fifi"
551 main() {
552 unlink(FILENAME);
553 if (mkfifo(FILENAME, 0777) < 0) abort();
554 if (link(FILENAME, FILENAME "2") < 0) exit(1);
555 exit(0);
556 }],
557 rsync_cv_can_hardlink_special=yes,rsync_cv_can_hardlink_special=no,rsync_cv_can_hardlink_special=no)])
558if test $rsync_cv_can_hardlink_special = yes; then
559 AC_DEFINE(CAN_HARDLINK_SPECIAL, 1, [Define to 1 if link() can hard-link special files.])
560fi
561
562AC_CACHE_CHECK([for working socketpair],rsync_cv_HAVE_SOCKETPAIR,[
563AC_TRY_RUN([
564#include <sys/types.h>
565#include <sys/socket.h>
566
567main() {
568 int fd[2];
569 exit((socketpair(AF_UNIX, SOCK_STREAM, 0, fd) != -1) ? 0 : 1);
570}],
571rsync_cv_HAVE_SOCKETPAIR=yes,rsync_cv_HAVE_SOCKETPAIR=no,rsync_cv_HAVE_SOCKETPAIR=cross)])
572if test x"$rsync_cv_HAVE_SOCKETPAIR" = x"yes"; then
573 AC_DEFINE(HAVE_SOCKETPAIR, 1, [Define to 1 if you have the "socketpair" function])
574fi
575
576if test x"$with_included_popt" != x"yes"; then
577 AC_CHECK_LIB(popt, poptGetContext, , [with_included_popt=yes])
578fi
579
580AC_MSG_CHECKING([whether to use included libpopt])
581if test x"$with_included_popt" = x"yes"; then
582 AC_MSG_RESULT($srcdir/popt)
583 BUILD_POPT='$(popt_OBJS)'
584 CFLAGS="$CFLAGS -I$srcdir/popt"
585 if test x"$ALLOCA" != x
586 then
587 # this can be removed when/if we add an included alloca.c;
588 # see autoconf documentation on AC_FUNC_ALLOCA
589 AC_MSG_WARN([included libpopt will use malloc, not alloca (which wastes a small amount of memory)])
590 fi
591else
592 AC_MSG_RESULT(no)
593fi
594
595AC_CACHE_CHECK([for unsigned char],rsync_cv_SIGNED_CHAR_OK,[
596AC_TRY_COMPILE([],[signed char *s = ""],
597rsync_cv_SIGNED_CHAR_OK=yes,rsync_cv_SIGNED_CHAR_OK=no)])
598if test x"$rsync_cv_SIGNED_CHAR_OK" = x"yes"; then
599 AC_DEFINE(SIGNED_CHAR_OK, 1, [Define to 1 if "signed char" is a valid type])
600fi
601
602AC_CACHE_CHECK([for broken readdir],rsync_cv_HAVE_BROKEN_READDIR,[
603AC_TRY_RUN([#include <sys/types.h>
604#include <dirent.h>
605main() { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
606if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
607di->d_name[0] == 0) exit(0); exit(1);} ],
608rsync_cv_HAVE_BROKEN_READDIR=yes,rsync_cv_HAVE_BROKEN_READDIR=no,rsync_cv_HAVE_BROKEN_READDIR=cross)])
609if test x"$rsync_cv_HAVE_BROKEN_READDIR" = x"yes"; then
610 AC_DEFINE(HAVE_BROKEN_READDIR, 1, [Define to 1 if readdir() is broken])
611fi
612
613AC_CACHE_CHECK([for utimbuf],rsync_cv_HAVE_UTIMBUF,[
614AC_TRY_COMPILE([#include <sys/types.h>
615#include <utime.h>],
616[struct utimbuf tbuf; tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));],
617rsync_cv_HAVE_UTIMBUF=yes,rsync_cv_HAVE_UTIMBUF=no)])
618if test x"$rsync_cv_HAVE_UTIMBUF" = x"yes"; then
619 AC_DEFINE(HAVE_UTIMBUF, 1, [Define to 1 if you have the "struct utimbuf" type])
620fi
621
622AC_CACHE_CHECK([if gettimeofday takes tz argument],rsync_cv_HAVE_GETTIMEOFDAY_TZ,[
623AC_TRY_COMPILE([#include <sys/time.h>
624#include <unistd.h>],
625[struct timeval tv; exit(gettimeofday(&tv, NULL));],
626rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes,rsync_cv_HAVE_GETTIMEOFDAY_TZ=no)])
627if test x"$rsync_cv_HAVE_GETTIMEOFDAY_TZ" != x"no"; then
628 AC_DEFINE(HAVE_GETTIMEOFDAY_TZ, 1, [Define to 1 if gettimeofday() takes a time-zone arg])
629fi
630
631AC_CACHE_CHECK([for C99 vsnprintf],rsync_cv_HAVE_C99_VSNPRINTF,[
632AC_TRY_RUN([
633#include <sys/types.h>
634#include <stdarg.h>
635void foo(const char *format, ...) {
636 va_list ap;
637 int len;
638 char buf[5];
639
640 va_start(ap, format);
641 len = vsnprintf(0, 0, format, ap);
642 va_end(ap);
643 if (len != 5) exit(1);
644
645 if (snprintf(buf, 3, "hello") != 5 || strcmp(buf, "he") != 0) exit(1);
646
647 exit(0);
648}
649main() { foo("hello"); }
650],
651rsync_cv_HAVE_C99_VSNPRINTF=yes,rsync_cv_HAVE_C99_VSNPRINTF=no,rsync_cv_HAVE_C99_VSNPRINTF=cross)])
652if test x"$rsync_cv_HAVE_C99_VSNPRINTF" = x"yes"; then
653 AC_DEFINE(HAVE_C99_VSNPRINTF, 1, [Define to 1 if vsprintf has a C99-compatible return value])
654fi
655
656
657AC_CACHE_CHECK([for secure mkstemp],rsync_cv_HAVE_SECURE_MKSTEMP,[
658AC_TRY_RUN([#include <stdlib.h>
659#include <sys/types.h>
660#include <sys/stat.h>
661#include <unistd.h>
662main() {
663 struct stat st;
664 char tpl[20]="/tmp/test.XXXXXX";
665 int fd = mkstemp(tpl);
666 if (fd == -1) exit(1);
667 unlink(tpl);
668 if (fstat(fd, &st) != 0) exit(1);
669 if ((st.st_mode & 0777) != 0600) exit(1);
670 exit(0);
671}],
672rsync_cv_HAVE_SECURE_MKSTEMP=yes,
673rsync_cv_HAVE_SECURE_MKSTEMP=no,
674rsync_cv_HAVE_SECURE_MKSTEMP=cross)])
675if test x"$rsync_cv_HAVE_SECURE_MKSTEMP" = x"yes"; then
676 case $target_os in
677 hpux*)
678 dnl HP-UX has a broken mkstemp() implementation they refuse to fix,
679 dnl so we noisily skip using it. See HP change request JAGaf34426
680 dnl for details. (sbonds)
681 AC_MSG_WARN(Skipping broken HP-UX mkstemp() -- using mktemp() instead)
682 ;;
683 *)
684 AC_DEFINE(HAVE_SECURE_MKSTEMP, 1, [Define to 1 if mkstemp() is available and works right])
685 ;;
686 esac
687fi
688
689
690AC_CACHE_CHECK([if mknod creates FIFOs],rsync_cv_MKNOD_CREATES_FIFOS,[
691AC_TRY_RUN([
692#include <stdio.h>
693#include <sys/stat.h>
694#include <errno.h>
695main() { int rc, ec; char *fn = "fifo-test";
696unlink(fn); rc = mknod(fn,S_IFIFO,0600); ec = errno; unlink(fn);
697if (rc) {printf("(%d %d) ",rc,ec); return ec;}
698return 0;}],
699 rsync_cv_MKNOD_CREATES_FIFOS=yes,rsync_cv_MKNOD_CREATES_FIFOS=no,rsync_cv_MKNOD_CREATES_FIFOS=cross)])
700if test x"$rsync_cv_MKNOD_CREATES_FIFOS" = x"yes"; then
701 AC_DEFINE(MKNOD_CREATES_FIFOS, 1, [Define to 1 if mknod() can create FIFOs.])
702fi
703
704AC_CACHE_CHECK([if mknod creates sockets],rsync_cv_MKNOD_CREATES_SOCKETS,[
705AC_TRY_RUN([
706#include <stdio.h>
707#include <sys/stat.h>
708#include <errno.h>
709main() { int rc, ec; char *fn = "sock-test";
710unlink(fn); rc = mknod(fn,S_IFSOCK,0600); ec = errno; unlink(fn);
711if (rc) {printf("(%d %d) ",rc,ec); return ec;}
712return 0;}],
713 rsync_cv_MKNOD_CREATES_SOCKETS=yes,rsync_cv_MKNOD_CREATES_SOCKETS=no,rsync_cv_MKNOD_CREATES_SOCKETS=cross)])
714if test x"$rsync_cv_MKNOD_CREATES_SOCKETS" = x"yes"; then
715 AC_DEFINE(MKNOD_CREATES_SOCKETS, 1, [Define to 1 if mknod() can create sockets.])
716fi
717
718#
719# The following test was mostly taken from the tcl/tk plus patches
720#
721AC_CACHE_CHECK([whether -c -o works],rsync_cv_DASHC_WORKS_WITH_DASHO,[
722rm -rf conftest*
723cat > conftest.$ac_ext <<EOF
724int main() { return 0; }
725EOF
726${CC-cc} -c -o conftest..o conftest.$ac_ext
727if test -f conftest..o; then
728 rsync_cv_DASHC_WORKS_WITH_DASHO=yes
729else
730 rsync_cv_DASHC_WORKS_WITH_DASHO=no
731fi
732rm -rf conftest*
733])
734if test x"$rsync_cv_DASHC_WORKS_WITH_DASHO" = x"yes"; then
735 OBJ_SAVE="#"
736 OBJ_RESTORE="#"
737 CC_SHOBJ_FLAG='-o $@'
738else
739 OBJ_SAVE=' @b=`basename $@ .o`;rm -f $$b.o.sav;if test -f $$b.o; then mv $$b.o $$b.o.sav;fi;'
740 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'
741 CC_SHOBJ_FLAG=""
742fi
743
744AC_SUBST(OBJ_SAVE)
745AC_SUBST(OBJ_RESTORE)
746AC_SUBST(CC_SHOBJ_FLAG)
747AC_SUBST(BUILD_POPT)
748
749AC_CONFIG_FILES([Makefile lib/dummy zlib/dummy popt/dummy shconfig])
750AC_OUTPUT
751
752AC_MSG_RESULT()
753AC_MSG_RESULT([ rsync ${RSYNC_VERSION} configuration successful])
754AC_MSG_RESULT()