Got rid of trailing whitespace.
[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
c8d771a0 8RSYNC_VERSION=2.6.2
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
2d6dbe29
MP
412AC_MSG_CHECKING(struct sockaddr_storage)
413AC_TRY_COMPILE([#include <sys/types.h>
414#include <sys/socket.h>],
415[struct sockaddr_storage x;],
416 AC_MSG_RESULT(yes)
2ef2e822 417 AC_DEFINE(HAVE_SOCKADDR_STORAGE, 1,
9fecec5e 418 [Define if you have strct sockaddr_storage.] ),
2d6dbe29
MP
419 AC_MSG_RESULT(no))
420
bc2b4963 421AC_CHECK_MEMBER([struct sockaddr_in6.sin6_scope_id],
a1d8f29a 422 [ AC_DEFINE(HAVE_SOCKADDR_IN6_SCOPE_ID, 1, [Do we have sockaddr_in6.sin6_scope_id?]) ],
bc2b4963
DD
423 [],
424 [
425#include <sys/types.h>
426#include <sys/socket.h>
427#include <netinet/in.h>
428])
429
a784e10d
DD
430# if we can't find strcasecmp, look in -lresolv (for Unixware at least)
431#
432AC_CHECK_FUNCS(strcasecmp)
433if test x"$ac_cv_func_strcasecmp" = x"no"; then
434 AC_CHECK_LIB(resolv, strcasecmp)
435fi
436
87fcb639
MP
437dnl At the moment we don't test for a broken memcmp(), because all we
438dnl need to do is test for equality, not comparison, and it seems that
2ef2e822 439dnl every platform has a memcmp that can do at least that.
87fcb639
MP
440dnl AC_FUNC_MEMCMP
441
c627d613 442AC_FUNC_UTIME_NULL
7fc08908 443AC_FUNC_ALLOCA
5fdf2e70 444AC_CHECK_FUNCS(waitpid wait4 getcwd strdup strerror chown chmod mknod mkfifo \
2c713fcd 445 fchmod fstat strchr readlink link utime utimes strftime mtrace ftruncate \
5fdf2e70
WD
446 memmove lchown vsnprintf snprintf asprintf setsid glob strpbrk \
447 strlcat strlcpy strtol mallinfo getgroups setgroups geteuid getegid)
24c857f1
DD
448
449AC_CACHE_CHECK([for working socketpair],rsync_cv_HAVE_SOCKETPAIR,[
6a5ef41f
MP
450AC_TRY_RUN([
451#include <sys/types.h>
452#include <sys/socket.h>
453
454main() {
455 int fd[2];
456 exit((socketpair(AF_UNIX, SOCK_STREAM, 0, fd) != -1) ? 0 : 1);
457}],
24c857f1
DD
458rsync_cv_HAVE_SOCKETPAIR=yes,rsync_cv_HAVE_SOCKETPAIR=no,rsync_cv_HAVE_SOCKETPAIR=cross)])
459if test x"$rsync_cv_HAVE_SOCKETPAIR" = x"yes"; then
d4e4cbe1 460 AC_DEFINE(HAVE_SOCKETPAIR, 1, [ ])
24c857f1 461fi
c627d613 462
1ac15cd8
MP
463if test x"$with_included_popt" != x"yes"
464then
465 AC_CHECK_LIB(popt, poptGetContext, , [with_included_popt=yes])
466fi
2d1ebe9c 467
12458878 468AC_MSG_CHECKING([whether to use included libpopt])
2d1ebe9c
MP
469if test x"$with_included_popt" = x"yes"
470then
12458878 471 AC_MSG_RESULT($srcdir/popt)
1ac15cd8 472 BUILD_POPT='$(popt_OBJS)'
26ef00bd 473 CFLAGS="$CFLAGS -I$srcdir/popt"
5216de37 474 if test x"$ALLOCA" != x
7fc08908 475 then
5216de37
DD
476 # this can be removed when/if we add an included alloca.c;
477 # see autoconf documentation on AC_FUNC_ALLOCA
8af534a5 478 AC_MSG_WARN([included libpopt will use malloc, not alloca (which wastes a small amount of memory)])
7fc08908 479 fi
2d1ebe9c
MP
480else
481 AC_MSG_RESULT(no)
79fc6bdb 482fi
c627d613 483
79fc6bdb 484AC_CACHE_CHECK([for long long],rsync_cv_HAVE_LONGLONG,[
0d0e2e93 485AC_TRY_RUN([#include <stdio.h>
efb2f6bf 486main() { long long x = 1000000; x *= x; exit(((x/1000000) == 1000000)? 0: 1); }],
79fc6bdb
DD
487rsync_cv_HAVE_LONGLONG=yes,rsync_cv_HAVE_LONGLONG=no,rsync_cv_HAVE_LONGLONG=cross)])
488if test x"$rsync_cv_HAVE_LONGLONG" = x"yes"; then
d4e4cbe1 489 AC_DEFINE(HAVE_LONGLONG, 1, [ ])
7597e1a9 490fi
0d0e2e93 491
7b3d4257 492AC_CACHE_CHECK([for off64_t],rsync_cv_HAVE_OFF64_T,[
bcacc18b
AT
493AC_TRY_RUN([#include <stdio.h>
494#include <sys/stat.h>
7597e1a9 495main() { 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
496rsync_cv_HAVE_OFF64_T=yes,rsync_cv_HAVE_OFF64_T=no,rsync_cv_HAVE_OFF64_T=cross)])
497if test x"$rsync_cv_HAVE_OFF64_T" = x"yes"; then
d4e4cbe1 498 AC_DEFINE(HAVE_OFF64_T, 1, [ ])
7597e1a9 499fi
debb4505 500
79fc6bdb 501AC_CACHE_CHECK([for short ino_t],rsync_cv_HAVE_SHORT_INO_T,[
c29ee43d
AT
502AC_TRY_RUN([#include <stdio.h>
503#include <sys/types.h>
504#include <sys/stat.h>
505main() { if (sizeof(ino_t) < sizeof(unsigned int)) return 0; return 1; }],
79fc6bdb
DD
506rsync_cv_HAVE_SHORT_INO_T=yes,rsync_cv_HAVE_SHORT_INO_T=no,rsync_cv_HAVE_SHORT_INO_T=cross)])
507if test x"$rsync_cv_HAVE_SHORT_INO_T" = x"yes"; then
d4e4cbe1 508 AC_DEFINE(HAVE_SHORT_INO_T, 1, [ ])
79fc6bdb 509fi
c29ee43d 510
7b3d4257 511AC_CACHE_CHECK([for unsigned char],rsync_cv_HAVE_UNSIGNED_CHAR,[
debb4505
AT
512AC_TRY_RUN([#include <stdio.h>
513main() { char c; c=250; exit((c > 0)?0:1); }],
7b3d4257
AT
514rsync_cv_HAVE_UNSIGNED_CHAR=yes,rsync_cv_HAVE_UNSIGNED_CHAR=no,rsync_cv_HAVE_UNSIGNED_CHAR=cross)])
515if test x"$rsync_cv_HAVE_UNSIGNED_CHAR" = x"yes"; then
d4e4cbe1 516 AC_DEFINE(HAVE_UNSIGNED_CHAR, 1, [ ])
7597e1a9 517fi
bcacc18b 518
7b3d4257 519AC_CACHE_CHECK([for broken readdir],rsync_cv_HAVE_BROKEN_READDIR,[
59503278
AT
520AC_TRY_RUN([#include <sys/types.h>
521#include <dirent.h>
522main() { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
523if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
7597e1a9 524di->d_name[0] == 0) exit(0); exit(1);} ],
7b3d4257
AT
525rsync_cv_HAVE_BROKEN_READDIR=yes,rsync_cv_HAVE_BROKEN_READDIR=no,rsync_cv_HAVE_BROKEN_READDIR=cross)])
526if test x"$rsync_cv_HAVE_BROKEN_READDIR" = x"yes"; then
d4e4cbe1 527 AC_DEFINE(HAVE_BROKEN_READDIR, 1, [ ])
7597e1a9 528fi
1e9f155a 529
7b3d4257 530AC_CACHE_CHECK([for utimbuf],rsync_cv_HAVE_UTIMBUF,[
d6e6ecbd
AT
531AC_TRY_COMPILE([#include <sys/types.h>
532#include <utime.h>],
7597e1a9 533[struct utimbuf tbuf; tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));],
7b3d4257
AT
534rsync_cv_HAVE_UTIMBUF=yes,rsync_cv_HAVE_UTIMBUF=no,rsync_cv_HAVE_UTIMBUF=cross)])
535if test x"$rsync_cv_HAVE_UTIMBUF" = x"yes"; then
d4e4cbe1 536 AC_DEFINE(HAVE_UTIMBUF, 1, [ ])
7597e1a9 537fi
d6e6ecbd 538
3060d4aa
AT
539AC_CACHE_CHECK([if gettimeofday takes tz argument],rsync_cv_HAVE_GETTIMEOFDAY_TZ,[
540AC_TRY_RUN([
541#include <sys/time.h>
542#include <unistd.h>
543main() { struct timeval tv; exit(gettimeofday(&tv, NULL));}],
544 rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes,rsync_cv_HAVE_GETTIMEOFDAY_TZ=no,rsync_cv_HAVE_GETTIMEOFDAY_TZ=cross)])
545if test x"$rsync_cv_HAVE_GETTIMEOFDAY_TZ" = x"yes"; then
d4e4cbe1 546 AC_DEFINE(HAVE_GETTIMEOFDAY_TZ, 1, [ ])
3060d4aa
AT
547fi
548
8950ac03
AT
549AC_CACHE_CHECK([for C99 vsnprintf],rsync_cv_HAVE_C99_VSNPRINTF,[
550AC_TRY_RUN([
551#include <sys/types.h>
552#include <stdarg.h>
2ef2e822 553void foo(const char *format, ...) {
8950ac03
AT
554 va_list ap;
555 int len;
556 char buf[5];
557
558 va_start(ap, format);
559 len = vsnprintf(0, 0, format, ap);
560 va_end(ap);
561 if (len != 5) exit(1);
562
563 if (snprintf(buf, 3, "hello") != 5 || strcmp(buf, "he") != 0) exit(1);
564
565 exit(0);
566}
567main() { foo("hello"); }
568],
569rsync_cv_HAVE_C99_VSNPRINTF=yes,rsync_cv_HAVE_C99_VSNPRINTF=no,rsync_cv_HAVE_C99_VSNPRINTF=cross)])
570if test x"$rsync_cv_HAVE_C99_VSNPRINTF" = x"yes"; then
d4e4cbe1 571 AC_DEFINE(HAVE_C99_VSNPRINTF, 1, [ ])
8950ac03
AT
572fi
573
574
f62c17e3
AT
575AC_CACHE_CHECK([for secure mkstemp],rsync_cv_HAVE_SECURE_MKSTEMP,[
576AC_TRY_RUN([#include <stdlib.h>
577#include <sys/types.h>
578#include <sys/stat.h>
579#include <unistd.h>
2ef2e822 580main() {
f62c17e3 581 struct stat st;
2ef2e822
WD
582 char tpl[20]="/tmp/test.XXXXXX";
583 int fd = mkstemp(tpl);
f62c17e3
AT
584 if (fd == -1) exit(1);
585 unlink(tpl);
586 if (fstat(fd, &st) != 0) exit(1);
587 if ((st.st_mode & 0777) != 0600) exit(1);
588 exit(0);
589}],
590rsync_cv_HAVE_SECURE_MKSTEMP=yes,
591rsync_cv_HAVE_SECURE_MKSTEMP=no,
592rsync_cv_HAVE_SECURE_MKSTEMP=cross)])
593if test x"$rsync_cv_HAVE_SECURE_MKSTEMP" = x"yes"; then
d4e4cbe1 594 AC_DEFINE(HAVE_SECURE_MKSTEMP, 1, [ ])
f62c17e3
AT
595fi
596
3060d4aa 597
7b3d4257
AT
598AC_CACHE_CHECK([for broken inet_ntoa],rsync_cv_REPLACE_INET_NTOA,[
599AC_TRY_RUN([
600#include <stdio.h>
601#include <sys/types.h>
602#include <netinet/in.h>
603#include <arpa/inet.h>
604main() { struct in_addr ip; ip.s_addr = 0x12345678;
605if (strcmp(inet_ntoa(ip),"18.52.86.120") &&
2ef2e822 606 strcmp(inet_ntoa(ip),"120.86.52.18")) { exit(1); }
fca3ef06
AT
607exit(0);}],
608 rsync_cv_REPLACE_INET_NTOA=no,rsync_cv_REPLACE_INET_NTOA=yes,rsync_cv_REPLACE_INET_NTOA=cross)])
7b3d4257 609if test x"$rsync_cv_REPLACE_INET_NTOA" = x"yes"; then
d4e4cbe1 610 AC_DEFINE(REPLACE_INET_NTOA, 1, [ ])
7b3d4257
AT
611fi
612
fca3ef06
AT
613
614AC_CACHE_CHECK([for broken inet_aton],rsync_cv_REPLACE_INET_ATON,[
615AC_TRY_RUN([
616#include <stdio.h>
617#include <sys/types.h>
618#include <netinet/in.h>
619#include <arpa/inet.h>
2ef2e822 620main() { struct in_addr ip;
fca3ef06
AT
621if (inet_aton("example", &ip) == 0) exit(0); exit(1);}],
622 rsync_cv_REPLACE_INET_ATON=no,rsync_cv_REPLACE_INET_ATON=yes,rsync_cv_REPLACE_INET_ATON=cross)])
623if test x"$rsync_cv_REPLACE_INET_ATON" = x"yes"; then
d4e4cbe1 624 AC_DEFINE(REPLACE_INET_ATON, 1, [ ])
fca3ef06
AT
625fi
626
692da0b5
DD
627#
628# The following test was mostly taken from the tcl/tk plus patches
629#
79fc6bdb 630AC_CACHE_CHECK([whether -c -o works],rsync_cv_DASHC_WORKS_WITH_DASHO,[
692da0b5
DD
631rm -rf conftest*
632cat > conftest.$ac_ext <<EOF
633int main() { return 0; }
634EOF
635${CC-cc} -c -o conftest..o conftest.$ac_ext
636if test -f conftest..o; then
79fc6bdb
DD
637 rsync_cv_DASHC_WORKS_WITH_DASHO=yes
638else
639 rsync_cv_DASHC_WORKS_WITH_DASHO=no
640fi
641rm -rf conftest*
642])
643if test x"$rsync_cv_DASHC_WORKS_WITH_DASHO" = x"yes"; then
692da0b5
DD
644 OBJ_SAVE="#"
645 OBJ_RESTORE="#"
646 CC_SHOBJ_FLAG='-o $@'
692da0b5
DD
647else
648 OBJ_SAVE=' @b=`basename $@ .o`;rm -f $$b.o.sav;if test -f $$b.o; then mv $$b.o $$b.o.sav;fi;'
649 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'
650 CC_SHOBJ_FLAG=""
692da0b5 651fi
79fc6bdb 652
692da0b5
DD
653AC_SUBST(OBJ_SAVE)
654AC_SUBST(OBJ_RESTORE)
655AC_SUBST(CC_SHOBJ_FLAG)
1ac15cd8 656AC_SUBST(BUILD_POPT)
7d29d4ba 657
bf5c2bf6
MP
658AC_CONFIG_FILES([Makefile lib/dummy zlib/dummy popt/dummy shconfig])
659AC_OUTPUT
a4677968 660
18ced146
WD
661if test x"$with_rsh" = x; then
662 if test x"$HAVE_REMSH" = x1; then
663 rmsh1='remsh:'
664 rmsh2='=remsh'
665 else
666 rmsh1='rsh: '
667 rmsh2='=rsh '
668 fi
669 AC_MSG_RESULT()
670 AC_MSG_RESULT([ **********************************************************************])
671 AC_MSG_RESULT([ * As of v2.6.0, the default remote shell is ssh instead of rsh!! *])
672 AC_MSG_RESULT([ * To use previous default of $rmsh1 ./configure --with-rsh$rmsh2 *])
673 AC_MSG_RESULT([ **********************************************************************])
674fi
675
a4677968
MP
676AC_MSG_RESULT()
677AC_MSG_RESULT([ rsync ${RSYNC_VERSION} configuration successful])
678AC_MSG_RESULT()