Added a few more details of changes since 2.6.3.
[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)
7ca6e856 6AC_PREREQ(2.52)
c627d613 7
618c8a73 8RSYNC_VERSION=2.6.3
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,
60 AC_HELP_STRING([--enable-profile],
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,
71 AC_HELP_STRING([--enable-maintainer-mode],
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
MP
84# If GCC, turn on warnings.
85if test "x$GCC" = "xyes"
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
184if test "x$enable_ipv6" != xno
185then
06963d0f
MP
186 AC_MSG_CHECKING([ipv6 stack type])
187 for i in inria kame linux-glibc linux-inet6 toshiba v6d zeta; do
188 case $i in
189 inria)
190 # http://www.kame.net/
191 AC_EGREP_CPP(yes, [
192#include <netinet/in.h>
193#ifdef IPV6_INRIA_VERSION
194yes
195#endif],
196 [ipv6type=$i;
a358449a
MP
197 AC_DEFINE(INET6, 1, [true if you have IPv6])
198 ])
06963d0f
MP
199 ;;
200 kame)
201 # http://www.kame.net/
202 AC_EGREP_CPP(yes, [
203#include <netinet/in.h>
204#ifdef __KAME__
205yes
206#endif],
2ef2e822 207 [ipv6type=$i;
a358449a 208 AC_DEFINE(INET6, 1, [true if you have IPv6])])
06963d0f
MP
209 ;;
210 linux-glibc)
211 # http://www.v6.linux.or.jp/
212 AC_EGREP_CPP(yes, [
213#include <features.h>
214#if defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
215yes
216#endif],
217 [ipv6type=$i;
a358449a 218AC_DEFINE(INET6, 1, [true if you have IPv6])])
06963d0f
MP
219 ;;
220 linux-inet6)
221 # http://www.v6.linux.or.jp/
222 if test -d /usr/inet6 -o -f /usr/inet6/lib/libinet6.a; then
223 ipv6type=$i
224 ipv6lib=inet6
225 ipv6libdir=/usr/inet6/lib
226 ipv6trylibc=yes;
a358449a
MP
227 AC_DEFINE(INET6, 1, [true if you have IPv6])
228 CFLAGS="-I/usr/inet6/include $CFLAGS"
06963d0f
MP
229 fi
230 ;;
231 toshiba)
232 AC_EGREP_CPP(yes, [
233#include <sys/param.h>
234#ifdef _TOSHIBA_INET6
235yes
236#endif],
237 [ipv6type=$i;
238 ipv6lib=inet6;
239 ipv6libdir=/usr/local/v6/lib;
a358449a 240 AC_DEFINE(INET6, 1, [true if you have IPv6])])
06963d0f
MP
241 ;;
242 v6d)
243 AC_EGREP_CPP(yes, [
244#include </usr/local/v6/include/sys/v6config.h>
245#ifdef __V6D__
246yes
247#endif],
248 [ipv6type=$i;
249 ipv6lib=v6;
250 ipv6libdir=/usr/local/v6/lib;
a358449a 251 AC_DEFINE(INET6, 1, [true if you have IPv6])])
06963d0f
MP
252 ;;
253 zeta)
254 AC_EGREP_CPP(yes, [
255#include <sys/param.h>
256#ifdef _ZETA_MINAMI_INET6
257yes
258#endif],
259 [ipv6type=$i;
260 ipv6lib=inet6;
261 ipv6libdir=/usr/local/v6/lib;
a358449a 262 AC_DEFINE(INET6, 1, [true if you have IPv6])])
06963d0f
MP
263 ;;
264 esac
265 if test "$ipv6type" != "unknown"; then
266 break
267 fi
268 done
269 AC_MSG_RESULT($ipv6type)
06963d0f 270
17d5a07e
MP
271 AC_SEARCH_LIBS(getaddrinfo, inet6)
272fi
06963d0f 273
9f639210
DD
274AC_MSG_CHECKING([whether to call shutdown on all sockets])
275case $host_os in
276 *cygwin* ) AC_MSG_RESULT(yes)
2ef2e822 277 AC_DEFINE(SHUTDOWN_ALL_SOCKETS, 1,
8ed16deb
DD
278 [Define if sockets need to be shutdown])
279 ;;
280 * ) AC_MSG_RESULT(no);;
281esac
282
cd957c70 283AC_C_BIGENDIAN
c627d613 284AC_HEADER_DIRENT
c627d613
AT
285AC_HEADER_TIME
286AC_HEADER_SYS_WAIT
1cb6f3bf
WD
287AC_CHECK_HEADERS(sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h \
288 unistd.h utime.h grp.h compat.h sys/param.h ctype.h sys/wait.h \
289 sys/ioctl.h sys/filio.h string.h stdlib.h sys/socket.h sys/mode.h \
e00df64b 290 sys/un.h glob.h mcheck.h arpa/inet.h arpa/nameser.h \
3c3791e8
WD
291 netdb.h malloc.h float.h)
292AC_HEADER_MAJOR
c627d613
AT
293
294AC_CHECK_SIZEOF(int)
295AC_CHECK_SIZEOF(long)
296AC_CHECK_SIZEOF(short)
297
298AC_C_INLINE
299
300AC_TYPE_SIGNAL
301AC_TYPE_UID_T
302AC_TYPE_MODE_T
303AC_TYPE_OFF_T
304AC_TYPE_SIZE_T
305AC_TYPE_PID_T
9422bb3f 306AC_TYPE_GETGROUPS
bf5c2bf6
MP
307AC_CHECK_MEMBERS([struct stat.st_rdev])
308
e2ba16cc 309AC_CHECK_TYPE([ino_t], [unsigned])
7ca6e856 310TYPE_SOCKLEN_T
c627d613 311
7b3d4257 312AC_CACHE_CHECK([for errno in errno.h],rsync_cv_errno, [
7597e1a9 313 AC_TRY_COMPILE([#include <errno.h>],[int i = errno],
7b3d4257
AT
314 rsync_cv_errno=yes,rsync_cv_have_errno_decl=no)])
315if test x"$rsync_cv_errno" = x"yes"; then
d4e4cbe1 316 AC_DEFINE(HAVE_ERRNO_DECL, 1, [ ])
7597e1a9 317fi
c627d613 318
a784e10d
DD
319# The following test taken from the cvs sources
320# If we can't find connect, try looking in -lsocket, -lnsl, and -linet.
321# These need checks to be before checks for any other functions that
322# might be in the same libraries.
323# The Irix 5 libc.so has connect and gethostbyname, but Irix 5 also has
324# libsocket.so which has a bad implementation of gethostbyname (it
325# only looks in /etc/hosts), so we only look for -lsocket if we need
326# it.
327AC_CHECK_FUNCS(connect)
328if test x"$ac_cv_func_connect" = x"no"; then
329 case "$LIBS" in
330 *-lnsl*) ;;
331 *) AC_CHECK_LIB(nsl_s, printf) ;;
332 esac
333 case "$LIBS" in
334 *-lnsl*) ;;
335 *) AC_CHECK_LIB(nsl, printf) ;;
336 esac
337 case "$LIBS" in
338 *-lsocket*) ;;
339 *) AC_CHECK_LIB(socket, connect) ;;
340 esac
341 case "$LIBS" in
342 *-linet*) ;;
343 *) AC_CHECK_LIB(inet, connect) ;;
344 esac
345 dnl We can't just call AC_CHECK_FUNCS(connect) here, because the value
346 dnl has been cached.
2ef2e822 347 if test x"$ac_cv_lib_socket_connect" = x"yes" ||
a784e10d
DD
348 test x"$ac_cv_lib_inet_connect" = x"yes"; then
349 # ac_cv_func_connect=yes
350 # don't! it would cause AC_CHECK_FUNC to succeed next time configure is run
d4e4cbe1 351 AC_DEFINE(HAVE_CONNECT, 1, [ ])
a784e10d
DD
352 fi
353fi
354
8f694072
MP
355AC_CHECK_LIB(resolv, inet_ntop)
356
99f106d1 357dnl AC_MSG_NOTICE([Looking in libraries: $LIBS])
e94989fe 358
2ef2e822
WD
359AC_CHECK_FUNCS(inet_ntop, , [AC_LIBOBJ(lib/inet_ntop)])
360AC_CHECK_FUNCS(inet_pton, , [AC_LIBOBJ(lib/inet_pton)])
356bbb83 361
824f1c79
DD
362# Irix 6.5 has getaddrinfo but not the corresponding defines, so use
363# builtin getaddrinfo if one of the defines don't exist
184dede9
DD
364AC_CACHE_CHECK([whether defines needed by getaddrinfo exist],
365 rsync_cv_HAVE_GETADDR_DEFINES,[
366 AC_EGREP_CPP(yes, [
367 #include <sys/types.h>
368 #include <sys/socket.h>
369 #include <netdb.h>
370 #ifdef AI_PASSIVE
371 yes
2ef2e822 372 #endif],
184dede9
DD
373 rsync_cv_HAVE_GETADDR_DEFINES=yes,
374 rsync_cv_HAVE_GETADDR_DEFINES=no)])
375if test x"$rsync_cv_HAVE_GETADDR_DEFINES" = x"yes"; then
824f1c79
DD
376 # Tru64 UNIX has getaddrinfo() but has it renamed in libc as
377 # something else so we must include <netdb.h> to get the
378 # redefinition.
379 AC_CHECK_FUNCS(getaddrinfo, ,
380 [AC_MSG_CHECKING([for getaddrinfo by including <netdb.h>])
381 AC_TRY_LINK([#include <sys/types.h>
382 #include <sys/socket.h>
383 #include <netdb.h>],[getaddrinfo(NULL, NULL, NULL, NULL);],
384 [AC_MSG_RESULT([yes])
385 AC_DEFINE(HAVE_GETADDRINFO, 1,
386 [Define if you have the `getaddrinfo' function.])],
387 [AC_MSG_RESULT([no])
388 AC_LIBOBJ(lib/getaddrinfo)])])
2ef2e822 389 AC_CHECK_FUNCS(getnameinfo, , [AC_LIBOBJ(lib/getnameinfo)])
184dede9 390else
d2cc0323 391 AC_LIBOBJ(lib/getaddrinfo)
184dede9
DD
392 AC_LIBOBJ(lib/getnameinfo)
393fi
824f1c79 394
2ef2e822 395AC_CHECK_MEMBER([struct sockaddr.sa_len],
b4b90120 396 [ AC_DEFINE(HAVE_SOCKADDR_LEN, 1, [Do we have sockaddr.sa_len?]) ],
0042f818
WD
397 [],
398 [
399#include <sys/types.h>
400#include <sys/socket.h>
401])
402
b4b90120
WD
403AC_CHECK_MEMBER([struct sockaddr_in.sin_len],
404 [ AC_DEFINE(HAVE_SOCKADDR_IN_LEN, 1, [Do we have sockaddr_in.sin_len?]) ],
356bbb83
MP
405 [],
406 [
407#include <sys/types.h>
408#include <sys/socket.h>
b4b90120 409#include <netinet/in.h>
356bbb83
MP
410])
411
e49d7200
WD
412AC_CHECK_MEMBER([struct sockaddr_un.sun_len],
413 [ AC_DEFINE(HAVE_SOCKADDR_UN_LEN, 1, [Do we have sockaddr_un.sun_len?]) ],
414 [],
415 [
416#include <sys/types.h>
417#include <sys/socket.h>
418#include <netinet/in.h>
419])
420
2d6dbe29
MP
421AC_MSG_CHECKING(struct sockaddr_storage)
422AC_TRY_COMPILE([#include <sys/types.h>
423#include <sys/socket.h>],
424[struct sockaddr_storage x;],
425 AC_MSG_RESULT(yes)
2ef2e822 426 AC_DEFINE(HAVE_SOCKADDR_STORAGE, 1,
9fecec5e 427 [Define if you have strct sockaddr_storage.] ),
2d6dbe29
MP
428 AC_MSG_RESULT(no))
429
bc2b4963 430AC_CHECK_MEMBER([struct sockaddr_in6.sin6_scope_id],
a1d8f29a 431 [ AC_DEFINE(HAVE_SOCKADDR_IN6_SCOPE_ID, 1, [Do we have sockaddr_in6.sin6_scope_id?]) ],
bc2b4963
DD
432 [],
433 [
434#include <sys/types.h>
435#include <sys/socket.h>
436#include <netinet/in.h>
437])
438
a784e10d
DD
439# if we can't find strcasecmp, look in -lresolv (for Unixware at least)
440#
441AC_CHECK_FUNCS(strcasecmp)
442if test x"$ac_cv_func_strcasecmp" = x"no"; then
443 AC_CHECK_LIB(resolv, strcasecmp)
444fi
445
87fcb639
MP
446dnl At the moment we don't test for a broken memcmp(), because all we
447dnl need to do is test for equality, not comparison, and it seems that
2ef2e822 448dnl every platform has a memcmp that can do at least that.
87fcb639
MP
449dnl AC_FUNC_MEMCMP
450
c627d613 451AC_FUNC_UTIME_NULL
7fc08908 452AC_FUNC_ALLOCA
5fdf2e70 453AC_CHECK_FUNCS(waitpid wait4 getcwd strdup strerror chown chmod mknod mkfifo \
2c713fcd 454 fchmod fstat strchr readlink link utime utimes strftime mtrace ftruncate \
3ba2c330 455 memmove lchown vsnprintf snprintf asprintf setsid glob strpbrk setmode \
84e1a698
WD
456 strlcat strlcpy strtol mallinfo getgroups setgroups geteuid getegid \
457 open64 mkstemp64)
24c857f1 458
21524e30
WD
459AC_CHECK_FUNCS(getpgrp tcgetpgrp)
460if test $ac_cv_func_getpgrp = yes; then
461 AC_FUNC_GETPGRP
462fi
463
464# Determine whether chown follows symlinks (it should).
465AC_CACHE_CHECK([whether chown() dereferences symlinks],rsync_cv_chown_follows_symlink,[
466 AC_TRY_RUN([
467#if HAVE_UNISTD_H
468# include <unistd.h>
469#endif
470#include <stdlib.h>
471#include <errno.h>
472 main() {
473 char const *dangling_symlink = "conftest.dangle";
474 unlink(dangling_symlink);
475 if (symlink("conftest.no-such", dangling_symlink) < 0) abort();
476 if (chown(dangling_symlink, getuid(), getgid()) < 0 && errno == ENOENT) exit(0);
477 exit(1);
478 }],
c61ba345 479 rsync_cv_chown_follows_symlink=yes,rsync_cv_chown_follows_symlink=no,rsync_cv_chown_follows_symlink=yes)])
21524e30
WD
480if test $rsync_cv_chown_follows_symlink = no; then
481 AC_DEFINE(CHOWN_MODIFIES_SYMLINK, 1, [Define if chown modifies symlinks.])
482fi
483
24c857f1 484AC_CACHE_CHECK([for working socketpair],rsync_cv_HAVE_SOCKETPAIR,[
6a5ef41f
MP
485AC_TRY_RUN([
486#include <sys/types.h>
487#include <sys/socket.h>
488
489main() {
490 int fd[2];
491 exit((socketpair(AF_UNIX, SOCK_STREAM, 0, fd) != -1) ? 0 : 1);
492}],
24c857f1
DD
493rsync_cv_HAVE_SOCKETPAIR=yes,rsync_cv_HAVE_SOCKETPAIR=no,rsync_cv_HAVE_SOCKETPAIR=cross)])
494if test x"$rsync_cv_HAVE_SOCKETPAIR" = x"yes"; then
d4e4cbe1 495 AC_DEFINE(HAVE_SOCKETPAIR, 1, [ ])
24c857f1 496fi
c627d613 497
1ac15cd8
MP
498if test x"$with_included_popt" != x"yes"
499then
500 AC_CHECK_LIB(popt, poptGetContext, , [with_included_popt=yes])
501fi
2d1ebe9c 502
12458878 503AC_MSG_CHECKING([whether to use included libpopt])
2d1ebe9c
MP
504if test x"$with_included_popt" = x"yes"
505then
12458878 506 AC_MSG_RESULT($srcdir/popt)
1ac15cd8 507 BUILD_POPT='$(popt_OBJS)'
26ef00bd 508 CFLAGS="$CFLAGS -I$srcdir/popt"
5216de37 509 if test x"$ALLOCA" != x
7fc08908 510 then
5216de37
DD
511 # this can be removed when/if we add an included alloca.c;
512 # see autoconf documentation on AC_FUNC_ALLOCA
8af534a5 513 AC_MSG_WARN([included libpopt will use malloc, not alloca (which wastes a small amount of memory)])
7fc08908 514 fi
2d1ebe9c
MP
515else
516 AC_MSG_RESULT(no)
79fc6bdb 517fi
c627d613 518
79fc6bdb 519AC_CACHE_CHECK([for long long],rsync_cv_HAVE_LONGLONG,[
0d0e2e93 520AC_TRY_RUN([#include <stdio.h>
efb2f6bf 521main() { long long x = 1000000; x *= x; exit(((x/1000000) == 1000000)? 0: 1); }],
79fc6bdb
DD
522rsync_cv_HAVE_LONGLONG=yes,rsync_cv_HAVE_LONGLONG=no,rsync_cv_HAVE_LONGLONG=cross)])
523if test x"$rsync_cv_HAVE_LONGLONG" = x"yes"; then
d4e4cbe1 524 AC_DEFINE(HAVE_LONGLONG, 1, [ ])
7597e1a9 525fi
0d0e2e93 526
7b3d4257 527AC_CACHE_CHECK([for off64_t],rsync_cv_HAVE_OFF64_T,[
bcacc18b
AT
528AC_TRY_RUN([#include <stdio.h>
529#include <sys/stat.h>
7597e1a9 530main() { struct stat64 st; off64_t s; if (sizeof(off_t) == sizeof(off64_t)) exit(1); exit((lstat64("/dev/null", &st)==0)?0:1); }],
7b3d4257
AT
531rsync_cv_HAVE_OFF64_T=yes,rsync_cv_HAVE_OFF64_T=no,rsync_cv_HAVE_OFF64_T=cross)])
532if test x"$rsync_cv_HAVE_OFF64_T" = x"yes"; then
d4e4cbe1 533 AC_DEFINE(HAVE_OFF64_T, 1, [ ])
7597e1a9 534fi
debb4505 535
79fc6bdb 536AC_CACHE_CHECK([for short ino_t],rsync_cv_HAVE_SHORT_INO_T,[
c29ee43d
AT
537AC_TRY_RUN([#include <stdio.h>
538#include <sys/types.h>
539#include <sys/stat.h>
540main() { if (sizeof(ino_t) < sizeof(unsigned int)) return 0; return 1; }],
79fc6bdb
DD
541rsync_cv_HAVE_SHORT_INO_T=yes,rsync_cv_HAVE_SHORT_INO_T=no,rsync_cv_HAVE_SHORT_INO_T=cross)])
542if test x"$rsync_cv_HAVE_SHORT_INO_T" = x"yes"; then
d4e4cbe1 543 AC_DEFINE(HAVE_SHORT_INO_T, 1, [ ])
79fc6bdb 544fi
c29ee43d 545
7b3d4257 546AC_CACHE_CHECK([for unsigned char],rsync_cv_HAVE_UNSIGNED_CHAR,[
debb4505
AT
547AC_TRY_RUN([#include <stdio.h>
548main() { char c; c=250; exit((c > 0)?0:1); }],
7b3d4257
AT
549rsync_cv_HAVE_UNSIGNED_CHAR=yes,rsync_cv_HAVE_UNSIGNED_CHAR=no,rsync_cv_HAVE_UNSIGNED_CHAR=cross)])
550if test x"$rsync_cv_HAVE_UNSIGNED_CHAR" = x"yes"; then
d4e4cbe1 551 AC_DEFINE(HAVE_UNSIGNED_CHAR, 1, [ ])
7597e1a9 552fi
bcacc18b 553
7b3d4257 554AC_CACHE_CHECK([for broken readdir],rsync_cv_HAVE_BROKEN_READDIR,[
59503278
AT
555AC_TRY_RUN([#include <sys/types.h>
556#include <dirent.h>
557main() { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
558if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
7597e1a9 559di->d_name[0] == 0) exit(0); exit(1);} ],
7b3d4257
AT
560rsync_cv_HAVE_BROKEN_READDIR=yes,rsync_cv_HAVE_BROKEN_READDIR=no,rsync_cv_HAVE_BROKEN_READDIR=cross)])
561if test x"$rsync_cv_HAVE_BROKEN_READDIR" = x"yes"; then
d4e4cbe1 562 AC_DEFINE(HAVE_BROKEN_READDIR, 1, [ ])
7597e1a9 563fi
1e9f155a 564
7b3d4257 565AC_CACHE_CHECK([for utimbuf],rsync_cv_HAVE_UTIMBUF,[
d6e6ecbd
AT
566AC_TRY_COMPILE([#include <sys/types.h>
567#include <utime.h>],
7597e1a9 568[struct utimbuf tbuf; tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));],
7b3d4257
AT
569rsync_cv_HAVE_UTIMBUF=yes,rsync_cv_HAVE_UTIMBUF=no,rsync_cv_HAVE_UTIMBUF=cross)])
570if test x"$rsync_cv_HAVE_UTIMBUF" = x"yes"; then
d4e4cbe1 571 AC_DEFINE(HAVE_UTIMBUF, 1, [ ])
7597e1a9 572fi
d6e6ecbd 573
3060d4aa
AT
574AC_CACHE_CHECK([if gettimeofday takes tz argument],rsync_cv_HAVE_GETTIMEOFDAY_TZ,[
575AC_TRY_RUN([
576#include <sys/time.h>
577#include <unistd.h>
578main() { struct timeval tv; exit(gettimeofday(&tv, NULL));}],
579 rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes,rsync_cv_HAVE_GETTIMEOFDAY_TZ=no,rsync_cv_HAVE_GETTIMEOFDAY_TZ=cross)])
a20a88d2 580if test x"$rsync_cv_HAVE_GETTIMEOFDAY_TZ" != x"no"; then
d4e4cbe1 581 AC_DEFINE(HAVE_GETTIMEOFDAY_TZ, 1, [ ])
3060d4aa
AT
582fi
583
8950ac03
AT
584AC_CACHE_CHECK([for C99 vsnprintf],rsync_cv_HAVE_C99_VSNPRINTF,[
585AC_TRY_RUN([
586#include <sys/types.h>
587#include <stdarg.h>
2ef2e822 588void foo(const char *format, ...) {
8950ac03
AT
589 va_list ap;
590 int len;
591 char buf[5];
592
593 va_start(ap, format);
594 len = vsnprintf(0, 0, format, ap);
595 va_end(ap);
596 if (len != 5) exit(1);
597
598 if (snprintf(buf, 3, "hello") != 5 || strcmp(buf, "he") != 0) exit(1);
599
600 exit(0);
601}
602main() { foo("hello"); }
603],
604rsync_cv_HAVE_C99_VSNPRINTF=yes,rsync_cv_HAVE_C99_VSNPRINTF=no,rsync_cv_HAVE_C99_VSNPRINTF=cross)])
605if test x"$rsync_cv_HAVE_C99_VSNPRINTF" = x"yes"; then
d4e4cbe1 606 AC_DEFINE(HAVE_C99_VSNPRINTF, 1, [ ])
8950ac03
AT
607fi
608
609
f62c17e3
AT
610AC_CACHE_CHECK([for secure mkstemp],rsync_cv_HAVE_SECURE_MKSTEMP,[
611AC_TRY_RUN([#include <stdlib.h>
612#include <sys/types.h>
613#include <sys/stat.h>
614#include <unistd.h>
2ef2e822 615main() {
f62c17e3 616 struct stat st;
2ef2e822
WD
617 char tpl[20]="/tmp/test.XXXXXX";
618 int fd = mkstemp(tpl);
f62c17e3
AT
619 if (fd == -1) exit(1);
620 unlink(tpl);
621 if (fstat(fd, &st) != 0) exit(1);
622 if ((st.st_mode & 0777) != 0600) exit(1);
623 exit(0);
624}],
625rsync_cv_HAVE_SECURE_MKSTEMP=yes,
626rsync_cv_HAVE_SECURE_MKSTEMP=no,
627rsync_cv_HAVE_SECURE_MKSTEMP=cross)])
628if test x"$rsync_cv_HAVE_SECURE_MKSTEMP" = x"yes"; then
d4e4cbe1 629 AC_DEFINE(HAVE_SECURE_MKSTEMP, 1, [ ])
f62c17e3
AT
630fi
631
3060d4aa 632
7b3d4257
AT
633AC_CACHE_CHECK([for broken inet_ntoa],rsync_cv_REPLACE_INET_NTOA,[
634AC_TRY_RUN([
635#include <stdio.h>
636#include <sys/types.h>
637#include <netinet/in.h>
638#include <arpa/inet.h>
639main() { struct in_addr ip; ip.s_addr = 0x12345678;
640if (strcmp(inet_ntoa(ip),"18.52.86.120") &&
2ef2e822 641 strcmp(inet_ntoa(ip),"120.86.52.18")) { exit(1); }
fca3ef06
AT
642exit(0);}],
643 rsync_cv_REPLACE_INET_NTOA=no,rsync_cv_REPLACE_INET_NTOA=yes,rsync_cv_REPLACE_INET_NTOA=cross)])
7b3d4257 644if test x"$rsync_cv_REPLACE_INET_NTOA" = x"yes"; then
d4e4cbe1 645 AC_DEFINE(REPLACE_INET_NTOA, 1, [ ])
7b3d4257
AT
646fi
647
fca3ef06
AT
648
649AC_CACHE_CHECK([for broken inet_aton],rsync_cv_REPLACE_INET_ATON,[
650AC_TRY_RUN([
651#include <stdio.h>
652#include <sys/types.h>
653#include <netinet/in.h>
654#include <arpa/inet.h>
2ef2e822 655main() { struct in_addr ip;
fca3ef06
AT
656if (inet_aton("example", &ip) == 0) exit(0); exit(1);}],
657 rsync_cv_REPLACE_INET_ATON=no,rsync_cv_REPLACE_INET_ATON=yes,rsync_cv_REPLACE_INET_ATON=cross)])
658if test x"$rsync_cv_REPLACE_INET_ATON" = x"yes"; then
d4e4cbe1 659 AC_DEFINE(REPLACE_INET_ATON, 1, [ ])
fca3ef06
AT
660fi
661
e49d7200
WD
662AC_CACHE_CHECK([if mknod creates FIFOs],rsync_cv_MKNOD_CREATES_FIFOS,[
663AC_TRY_RUN([
664#include <stdio.h>
665#include <sys/stat.h>
666#include <errno.h>
667main() { int rc, ec; char *fn = "fifo-test";
668unlink(fn); rc = mknod(fn,S_IFIFO,0600); ec = errno; unlink(fn);
669if (rc) {printf("%d %d\n",rc,ec); return ec;}
670return 0;}],
671 rsync_cv_MKNOD_CREATES_FIFOS=yes,rsync_cv_MKNOD_CREATES_FIFOS=no,rsync_cv_MKNOD_CREATES_FIFOS=cross)])
672if test x"$rsync_cv_MKNOD_CREATES_FIFOS" = x"yes"; then
673 AC_DEFINE(MKNOD_CREATES_FIFOS, 1, [Define to 1 if mknod() can create FIFOs.])
674fi
675
676AC_CACHE_CHECK([if mknod creates sockets],rsync_cv_MKNOD_CREATES_SOCKETS,[
677AC_TRY_RUN([
678#include <stdio.h>
679#include <sys/stat.h>
680#include <errno.h>
681main() { int rc, ec; char *fn = "sock-test";
682unlink(fn); rc = mknod(fn,S_IFSOCK,0600); ec = errno; unlink(fn);
683if (rc) {printf("%d %d\n",rc,ec); return ec;}
684return 0;}],
685 rsync_cv_MKNOD_CREATES_SOCKETS=yes,rsync_cv_MKNOD_CREATES_SOCKETS=no,rsync_cv_MKNOD_CREATES_SOCKETS=cross)])
686if test x"$rsync_cv_MKNOD_CREATES_SOCKETS" = x"yes"; then
687 AC_DEFINE(MKNOD_CREATES_SOCKETS, 1, [Define to 1 if mknod() can create sockets.])
688fi
689
692da0b5
DD
690#
691# The following test was mostly taken from the tcl/tk plus patches
692#
79fc6bdb 693AC_CACHE_CHECK([whether -c -o works],rsync_cv_DASHC_WORKS_WITH_DASHO,[
692da0b5
DD
694rm -rf conftest*
695cat > conftest.$ac_ext <<EOF
696int main() { return 0; }
697EOF
698${CC-cc} -c -o conftest..o conftest.$ac_ext
699if test -f conftest..o; then
79fc6bdb
DD
700 rsync_cv_DASHC_WORKS_WITH_DASHO=yes
701else
702 rsync_cv_DASHC_WORKS_WITH_DASHO=no
703fi
704rm -rf conftest*
705])
706if test x"$rsync_cv_DASHC_WORKS_WITH_DASHO" = x"yes"; then
692da0b5
DD
707 OBJ_SAVE="#"
708 OBJ_RESTORE="#"
709 CC_SHOBJ_FLAG='-o $@'
692da0b5
DD
710else
711 OBJ_SAVE=' @b=`basename $@ .o`;rm -f $$b.o.sav;if test -f $$b.o; then mv $$b.o $$b.o.sav;fi;'
712 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'
713 CC_SHOBJ_FLAG=""
692da0b5 714fi
79fc6bdb 715
692da0b5
DD
716AC_SUBST(OBJ_SAVE)
717AC_SUBST(OBJ_RESTORE)
718AC_SUBST(CC_SHOBJ_FLAG)
1ac15cd8 719AC_SUBST(BUILD_POPT)
7d29d4ba 720
bf5c2bf6
MP
721AC_CONFIG_FILES([Makefile lib/dummy zlib/dummy popt/dummy shconfig])
722AC_OUTPUT
a4677968 723
18ced146
WD
724if test x"$with_rsh" = x; then
725 if test x"$HAVE_REMSH" = x1; then
726 rmsh1='remsh:'
727 rmsh2='=remsh'
728 else
729 rmsh1='rsh: '
730 rmsh2='=rsh '
731 fi
732 AC_MSG_RESULT()
733 AC_MSG_RESULT([ **********************************************************************])
734 AC_MSG_RESULT([ * As of v2.6.0, the default remote shell is ssh instead of rsh!! *])
735 AC_MSG_RESULT([ * To use previous default of $rmsh1 ./configure --with-rsh$rmsh2 *])
736 AC_MSG_RESULT([ **********************************************************************])
737fi
738
a4677968
MP
739AC_MSG_RESULT()
740AC_MSG_RESULT([ rsync ${RSYNC_VERSION} configuration successful])
741AC_MSG_RESULT()