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