Added a TODO item about temporary file names bumping up against the
[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
e3cd2645 8RSYNC_VERSION=2.5.6pre3cvs
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
21AC_PROG_INSTALL
68b2cc55 22AC_PROG_CC_STDC
bf5c2bf6 23AC_SUBST(SHELL)
8de330a3 24
70ed474b
MP
25AC_DEFINE([_GNU_SOURCE], 1,
26 [Define _GNU_SOURCE so that we get all necessary prototypes])
27
5216de37 28if test "x$ac_cv_prog_cc_stdc" = xno
68b2cc55
MP
29then
30 AC_MSG_WARN([rsync requires an ANSI C compiler and you don't seem to have one])
31fi
a358449a 32
03b1cddc 33# We must decide this before testing the compiler.
2d1ebe9c 34
47759343
MP
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
bf5c2bf6 38AC_MSG_CHECKING([whether to include debugging symbols])
2d1ebe9c 39AC_ARG_ENABLE(debug,
bf5c2bf6
MP
40 AC_HELP_STRING([--enable-debug],
41 [including debugging symbols and features (default yes)]),
42 [], [])
2d1ebe9c 43
bf5c2bf6 44if test x"$enable_debug" = x"no"
2d1ebe9c 45then
2d1ebe9c
MP
46 AC_MSG_RESULT(no)
47 CFLAGS=${CFLAGS-"-O"}
bf5c2bf6
MP
48else
49 AC_MSG_RESULT([yes])
50 # leave CFLAGS alone; AC_PROG_CC will try to include -g if it can
23bf32f7 51 dnl AC_DEFINE(DEBUG, 1, [Define to turn on debugging code that may slow normal operation])
bf5c2bf6 52 dnl CFLAGS=${CFLAGS-"-g"}
2d1ebe9c
MP
53fi
54
da7b6397
MP
55
56
57
58AC_ARG_ENABLE(profile,
59 AC_HELP_STRING([--enable-profile],
60 [turn on CPU profiling (default no)],
61 [], []))
62if test x"$enable_profile" = xyes
63then
64 CFLAGS="$CFLAGS -pg"
65fi
66
67
c0531332
MP
68# Specifically, this turns on panic_action handling.
69AC_ARG_ENABLE(maintainer-mode,
70 AC_HELP_STRING([--enable-maintainer-mode],
71 [turn on extra debug features],
72 [], []))
73if test x"$enable_maintainer_mode" = xyes
74then
75 CFLAGS="$CFLAGS -DMAINTAINER_MODE"
76fi
77
78
da7b6397
MP
79# This is needed for our included version of popt. Kind of silly, but
80# I don't want our version too far out of sync.
1ac15cd8
MP
81CFLAGS="$CFLAGS -DHAVE_CONFIG_H"
82
47759343
MP
83# If GCC, turn on warnings.
84if test "x$GCC" = "xyes"
85then
99f106d1 86 CFLAGS="$CFLAGS -Wall -W"
47759343
MP
87fi
88
2d1ebe9c
MP
89AC_ARG_WITH(included-popt,
90 [ --with-included-popt use bundled popt library, not from system])
91
41bd28fe 92AC_ARG_WITH(rsync-path,
ddd491d4 93 [ --with-rsync-path=PATH set default --rsync-path to PATH (default: \"rsync\")],
8642efd0 94 [ RSYNC_PATH="$with_rsync_path" ],
41bd28fe 95 [ RSYNC_PATH="rsync" ])
81c652d5
MP
96
97AC_DEFINE_UNQUOTED(RSYNC_PATH, "$RSYNC_PATH", [location of rsync on remote machine])
98
99AC_ARG_WITH(rsh,
100 AC_HELP_STRING([--with-rsh=CMD], [set rsh command to CMD (default: \"remsh\" or \"rsh\")]))
41bd28fe 101
7b8356d0 102AC_CHECK_PROG(HAVE_REMSH, remsh, 1, 0)
81c652d5
MP
103AC_DEFINE_UNQUOTED(HAVE_REMSH, $HAVE_REMSH, [remote shell is remsh not rsh])
104
105if test x"$with_rsh" != x
106then
107 RSYNC_RSH="$with_rsh"
108elif test x"$HAVE_REMSH" = x1
109then
110 RSYNC_RSH="remsh"
111else
112 RSYNC_RSH="rsh"
113fi
7b8356d0 114
81c652d5 115AC_DEFINE_UNQUOTED(RSYNC_RSH, "$RSYNC_RSH", [default -e command])
f0af1e5e
AT
116
117# arrgh. libc in the current debian stable screws up the largefile
118# stuff, getting byte range locking wrong
119AC_CACHE_CHECK([for broken largefile support],rsync_cv_HAVE_BROKEN_LARGEFILE,[
120AC_TRY_RUN([
121#define _FILE_OFFSET_BITS 64
122#include <stdio.h>
123#include <fcntl.h>
124#include <sys/types.h>
125#include <sys/wait.h>
126
127int main(void)
128{
129 struct flock lock;
130 int status;
131 int fd = open("conftest.dat", O_CREAT|O_RDWR, 0600);
132 lock.l_type = F_WRLCK;
133 lock.l_whence = SEEK_SET;
134 lock.l_start = 0;
135 lock.l_len = 1;
136 lock.l_pid = 0;
137
138 fcntl(fd,F_SETLK,&lock);
139 if (fork() == 0) {
140 lock.l_start = 1;
141 exit(fcntl(fd,F_SETLK,&lock) == 0);
142 }
143 wait(&status);
144 unlink("conftest.dat");
145 exit(WEXITSTATUS(status));
146}
147],
148rsync_cv_HAVE_BROKEN_LARGEFILE=yes,rsync_cv_HAVE_BROKEN_LARGEFILE=no,rsync_cv_HAVE_BROKEN_LARGEFILE=cross)])
149if test x"$rsync_cv_HAVE_BROKEN_LARGEFILE" != x"yes"; then
150 AC_SYS_LARGEFILE
151fi
152
06963d0f
MP
153ipv6type=unknown
154ipv6lib=none
22cd0063 155ipv6trylibc=yes
06963d0f 156
17d5a07e
MP
157AC_ARG_ENABLE(ipv6,
158 AC_HELP_STRING([--disable-ipv6], [don't even try to use IPv6]))
159
160if test "x$enable_ipv6" != xno
161then
06963d0f
MP
162 AC_MSG_CHECKING([ipv6 stack type])
163 for i in inria kame linux-glibc linux-inet6 toshiba v6d zeta; do
164 case $i in
165 inria)
166 # http://www.kame.net/
167 AC_EGREP_CPP(yes, [
168#include <netinet/in.h>
169#ifdef IPV6_INRIA_VERSION
170yes
171#endif],
172 [ipv6type=$i;
a358449a
MP
173 AC_DEFINE(INET6, 1, [true if you have IPv6])
174 ])
06963d0f
MP
175 ;;
176 kame)
177 # http://www.kame.net/
178 AC_EGREP_CPP(yes, [
179#include <netinet/in.h>
180#ifdef __KAME__
181yes
182#endif],
a358449a
MP
183 [ipv6type=$i;
184 AC_DEFINE(INET6, 1, [true if you have IPv6])])
06963d0f
MP
185 ;;
186 linux-glibc)
187 # http://www.v6.linux.or.jp/
188 AC_EGREP_CPP(yes, [
189#include <features.h>
190#if defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
191yes
192#endif],
193 [ipv6type=$i;
a358449a 194AC_DEFINE(INET6, 1, [true if you have IPv6])])
06963d0f
MP
195 ;;
196 linux-inet6)
197 # http://www.v6.linux.or.jp/
198 if test -d /usr/inet6 -o -f /usr/inet6/lib/libinet6.a; then
199 ipv6type=$i
200 ipv6lib=inet6
201 ipv6libdir=/usr/inet6/lib
202 ipv6trylibc=yes;
a358449a
MP
203 AC_DEFINE(INET6, 1, [true if you have IPv6])
204 CFLAGS="-I/usr/inet6/include $CFLAGS"
06963d0f
MP
205 fi
206 ;;
207 toshiba)
208 AC_EGREP_CPP(yes, [
209#include <sys/param.h>
210#ifdef _TOSHIBA_INET6
211yes
212#endif],
213 [ipv6type=$i;
214 ipv6lib=inet6;
215 ipv6libdir=/usr/local/v6/lib;
a358449a 216 AC_DEFINE(INET6, 1, [true if you have IPv6])])
06963d0f
MP
217 ;;
218 v6d)
219 AC_EGREP_CPP(yes, [
220#include </usr/local/v6/include/sys/v6config.h>
221#ifdef __V6D__
222yes
223#endif],
224 [ipv6type=$i;
225 ipv6lib=v6;
226 ipv6libdir=/usr/local/v6/lib;
a358449a 227 AC_DEFINE(INET6, 1, [true if you have IPv6])])
06963d0f
MP
228 ;;
229 zeta)
230 AC_EGREP_CPP(yes, [
231#include <sys/param.h>
232#ifdef _ZETA_MINAMI_INET6
233yes
234#endif],
235 [ipv6type=$i;
236 ipv6lib=inet6;
237 ipv6libdir=/usr/local/v6/lib;
a358449a 238 AC_DEFINE(INET6, 1, [true if you have IPv6])])
06963d0f
MP
239 ;;
240 esac
241 if test "$ipv6type" != "unknown"; then
242 break
243 fi
244 done
245 AC_MSG_RESULT($ipv6type)
06963d0f 246
17d5a07e
MP
247 AC_SEARCH_LIBS(getaddrinfo, inet6)
248fi
06963d0f 249
688d5732
DD
250AC_MSG_CHECKING([default value for --modify-window])
251case $host_os in
06669664 252 *cygwin* ) DEFAULT_MODIFY_WINDOW=${DEFAULT_MODIFY_WINDOW:-1};;
688d5732
DD
253 * ) DEFAULT_MODIFY_WINDOW=${DEFAULT_MODIFY_WINDOW:-0};;
254esac
255AC_MSG_RESULT($DEFAULT_MODIFY_WINDOW)
256AC_DEFINE_UNQUOTED(DEFAULT_MODIFY_WINDOW, $DEFAULT_MODIFY_WINDOW,
257 [Set to the default value for the --modify-window option])
258
9f639210
DD
259AC_MSG_CHECKING([whether to call shutdown on all sockets])
260case $host_os in
261 *cygwin* ) AC_MSG_RESULT(yes)
262 AC_DEFINE(SHUTDOWN_ALL_SOCKETS, 1, [Define if sockets need to be shutdown])
263 ;;
264 * ) AC_MSG_RESULT(no);;
265esac
266
cd957c70 267AC_C_BIGENDIAN
c627d613 268AC_HEADER_DIRENT
c627d613
AT
269AC_HEADER_TIME
270AC_HEADER_SYS_WAIT
8bf73749 271AC_CHECK_HEADERS(sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h unistd.h utime.h grp.h)
94481d91 272AC_CHECK_HEADERS(compat.h sys/param.h ctype.h sys/wait.h sys/ioctl.h)
1433e6da 273AC_CHECK_HEADERS(sys/filio.h string.h stdlib.h sys/socket.h sys/mode.h sys/un.h)
7fc08908 274AC_CHECK_HEADERS(glob.h mcheck.h sys/sysctl.h arpa/inet.h arpa/nameser.h)
15c17078 275AC_CHECK_HEADERS(netdb.h)
e5a2b854 276AC_CHECK_HEADERS(malloc.h)
7c66b860 277AC_CHECK_HEADERS(float.h)
c627d613
AT
278
279AC_CHECK_SIZEOF(int)
280AC_CHECK_SIZEOF(long)
281AC_CHECK_SIZEOF(short)
282
283AC_C_INLINE
284
285AC_TYPE_SIGNAL
286AC_TYPE_UID_T
287AC_TYPE_MODE_T
288AC_TYPE_OFF_T
289AC_TYPE_SIZE_T
290AC_TYPE_PID_T
9422bb3f 291AC_TYPE_GETGROUPS
bf5c2bf6
MP
292AC_CHECK_MEMBERS([struct stat.st_rdev])
293
e2ba16cc 294AC_CHECK_TYPE([ino_t], [unsigned])
7ca6e856 295TYPE_SOCKLEN_T
c627d613 296
7b3d4257 297AC_CACHE_CHECK([for errno in errno.h],rsync_cv_errno, [
7597e1a9 298 AC_TRY_COMPILE([#include <errno.h>],[int i = errno],
7b3d4257
AT
299 rsync_cv_errno=yes,rsync_cv_have_errno_decl=no)])
300if test x"$rsync_cv_errno" = x"yes"; then
d4e4cbe1 301 AC_DEFINE(HAVE_ERRNO_DECL, 1, [ ])
7597e1a9 302fi
c627d613 303
a784e10d
DD
304# The following test taken from the cvs sources
305# If we can't find connect, try looking in -lsocket, -lnsl, and -linet.
306# These need checks to be before checks for any other functions that
307# might be in the same libraries.
308# The Irix 5 libc.so has connect and gethostbyname, but Irix 5 also has
309# libsocket.so which has a bad implementation of gethostbyname (it
310# only looks in /etc/hosts), so we only look for -lsocket if we need
311# it.
312AC_CHECK_FUNCS(connect)
313if test x"$ac_cv_func_connect" = x"no"; then
314 case "$LIBS" in
315 *-lnsl*) ;;
316 *) AC_CHECK_LIB(nsl_s, printf) ;;
317 esac
318 case "$LIBS" in
319 *-lnsl*) ;;
320 *) AC_CHECK_LIB(nsl, printf) ;;
321 esac
322 case "$LIBS" in
323 *-lsocket*) ;;
324 *) AC_CHECK_LIB(socket, connect) ;;
325 esac
326 case "$LIBS" in
327 *-linet*) ;;
328 *) AC_CHECK_LIB(inet, connect) ;;
329 esac
330 dnl We can't just call AC_CHECK_FUNCS(connect) here, because the value
331 dnl has been cached.
332 if test x"$ac_cv_lib_socket_connect" = x"yes" ||
333 test x"$ac_cv_lib_inet_connect" = x"yes"; then
334 # ac_cv_func_connect=yes
335 # don't! it would cause AC_CHECK_FUNC to succeed next time configure is run
d4e4cbe1 336 AC_DEFINE(HAVE_CONNECT, 1, [ ])
a784e10d
DD
337 fi
338fi
339
8f694072
MP
340AC_CHECK_LIB(resolv, inet_ntop)
341
99f106d1 342dnl AC_MSG_NOTICE([Looking in libraries: $LIBS])
e94989fe 343
9fecec5e
MP
344AC_CHECK_FUNCS(inet_ntop, , AC_LIBOBJ(lib/inet_ntop))
345AC_CHECK_FUNCS(inet_pton, , AC_LIBOBJ(lib/inet_pton))
356bbb83 346
824f1c79
DD
347# Irix 6.5 has getaddrinfo but not the corresponding defines, so use
348# builtin getaddrinfo if one of the defines don't exist
184dede9
DD
349AC_CACHE_CHECK([whether defines needed by getaddrinfo exist],
350 rsync_cv_HAVE_GETADDR_DEFINES,[
351 AC_EGREP_CPP(yes, [
352 #include <sys/types.h>
353 #include <sys/socket.h>
354 #include <netdb.h>
355 #ifdef AI_PASSIVE
356 yes
357 #endif],
358 rsync_cv_HAVE_GETADDR_DEFINES=yes,
359 rsync_cv_HAVE_GETADDR_DEFINES=no)])
360if test x"$rsync_cv_HAVE_GETADDR_DEFINES" = x"yes"; then
824f1c79
DD
361 # Tru64 UNIX has getaddrinfo() but has it renamed in libc as
362 # something else so we must include <netdb.h> to get the
363 # redefinition.
364 AC_CHECK_FUNCS(getaddrinfo, ,
365 [AC_MSG_CHECKING([for getaddrinfo by including <netdb.h>])
366 AC_TRY_LINK([#include <sys/types.h>
367 #include <sys/socket.h>
368 #include <netdb.h>],[getaddrinfo(NULL, NULL, NULL, NULL);],
369 [AC_MSG_RESULT([yes])
370 AC_DEFINE(HAVE_GETADDRINFO, 1,
371 [Define if you have the `getaddrinfo' function.])],
372 [AC_MSG_RESULT([no])
373 AC_LIBOBJ(lib/getaddrinfo)])])
374 AC_CHECK_FUNCS(getnameinfo, , AC_LIBOBJ(lib/getnameinfo))
184dede9 375else
d2cc0323 376 AC_LIBOBJ(lib/getaddrinfo)
184dede9
DD
377 AC_LIBOBJ(lib/getnameinfo)
378fi
824f1c79 379
82923068 380
356bbb83
MP
381AC_CHECK_MEMBER([struct sockaddr.sa_len],
382 [ AC_DEFINE(HAVE_SOCKADDR_LEN) ],
383 [],
384 [
385#include <sys/types.h>
386#include <sys/socket.h>
387])
388
2d6dbe29
MP
389AC_MSG_CHECKING(struct sockaddr_storage)
390AC_TRY_COMPILE([#include <sys/types.h>
391#include <sys/socket.h>],
392[struct sockaddr_storage x;],
393 AC_MSG_RESULT(yes)
9fecec5e
MP
394 AC_DEFINE(HAVE_SOCKADDR_STORAGE, 1,
395 [Define if you have strct sockaddr_storage.] ),
2d6dbe29
MP
396 AC_MSG_RESULT(no))
397
bc2b4963
DD
398AC_CHECK_MEMBER([struct sockaddr_in6.sin6_scope_id],
399 [ AC_DEFINE(HAVE_SOCKADDR_IN6_SCOPE_ID) ],
400 [],
401 [
402#include <sys/types.h>
403#include <sys/socket.h>
404#include <netinet/in.h>
405])
406
a784e10d
DD
407# if we can't find strcasecmp, look in -lresolv (for Unixware at least)
408#
409AC_CHECK_FUNCS(strcasecmp)
410if test x"$ac_cv_func_strcasecmp" = x"no"; then
411 AC_CHECK_LIB(resolv, strcasecmp)
412fi
413
87fcb639
MP
414dnl At the moment we don't test for a broken memcmp(), because all we
415dnl need to do is test for equality, not comparison, and it seems that
416dnl every platform has a memcmp that can do at least that.
417dnl AC_FUNC_MEMCMP
418
c627d613 419AC_FUNC_UTIME_NULL
7fc08908 420AC_FUNC_ALLOCA
1433e6da 421AC_CHECK_FUNCS(waitpid wait4 getcwd strdup strerror chown chmod mknod mkfifo)
e0414f42 422AC_CHECK_FUNCS(fchmod fstat strchr readlink link utime utimes strftime)
8950ac03 423AC_CHECK_FUNCS(memmove lchown vsnprintf snprintf asprintf setsid glob strpbrk)
bc2b4963 424AC_CHECK_FUNCS(strlcat strlcpy strtol mtrace mallinfo setgroups)
24c857f1
DD
425
426AC_CACHE_CHECK([for working socketpair],rsync_cv_HAVE_SOCKETPAIR,[
6a5ef41f
MP
427AC_TRY_RUN([
428#include <sys/types.h>
429#include <sys/socket.h>
430
431main() {
432 int fd[2];
433 exit((socketpair(AF_UNIX, SOCK_STREAM, 0, fd) != -1) ? 0 : 1);
434}],
24c857f1
DD
435rsync_cv_HAVE_SOCKETPAIR=yes,rsync_cv_HAVE_SOCKETPAIR=no,rsync_cv_HAVE_SOCKETPAIR=cross)])
436if test x"$rsync_cv_HAVE_SOCKETPAIR" = x"yes"; then
d4e4cbe1 437 AC_DEFINE(HAVE_SOCKETPAIR, 1, [ ])
24c857f1 438fi
c627d613 439
79fc6bdb 440AC_CACHE_CHECK([for working fnmatch],rsync_cv_HAVE_FNMATCH,[
c627d613 441AC_TRY_RUN([#include <fnmatch.h>
e7d6e0aa
AT
442main() { exit((fnmatch("*.o", "x.o", FNM_PATHNAME) == 0 &&
443 fnmatch("a/b/*", "a/b/c/d", FNM_PATHNAME) != 0) ? 0: 1); }],
79fc6bdb
DD
444rsync_cv_HAVE_FNMATCH=yes,rsync_cv_HAVE_FNMATCH=no,rsync_cv_HAVE_FNMATCH=cross)])
445if test x"$rsync_cv_HAVE_FNMATCH" = x"yes"; then
d4e4cbe1 446 AC_DEFINE(HAVE_FNMATCH, 1, [ ])
79fc6bdb
DD
447fi
448
1ac15cd8
MP
449if test x"$with_included_popt" != x"yes"
450then
451 AC_CHECK_LIB(popt, poptGetContext, , [with_included_popt=yes])
452fi
2d1ebe9c 453
12458878 454AC_MSG_CHECKING([whether to use included libpopt])
2d1ebe9c
MP
455if test x"$with_included_popt" = x"yes"
456then
12458878 457 AC_MSG_RESULT($srcdir/popt)
1ac15cd8 458 BUILD_POPT='$(popt_OBJS)'
26ef00bd 459 CFLAGS="$CFLAGS -I$srcdir/popt"
5216de37 460 if test x"$ALLOCA" != x
7fc08908 461 then
5216de37
DD
462 # this can be removed when/if we add an included alloca.c;
463 # see autoconf documentation on AC_FUNC_ALLOCA
8af534a5 464 AC_MSG_WARN([included libpopt will use malloc, not alloca (which wastes a small amount of memory)])
7fc08908 465 fi
2d1ebe9c
MP
466else
467 AC_MSG_RESULT(no)
79fc6bdb 468fi
c627d613 469
79fc6bdb 470AC_CACHE_CHECK([for long long],rsync_cv_HAVE_LONGLONG,[
0d0e2e93 471AC_TRY_RUN([#include <stdio.h>
efb2f6bf 472main() { long long x = 1000000; x *= x; exit(((x/1000000) == 1000000)? 0: 1); }],
79fc6bdb
DD
473rsync_cv_HAVE_LONGLONG=yes,rsync_cv_HAVE_LONGLONG=no,rsync_cv_HAVE_LONGLONG=cross)])
474if test x"$rsync_cv_HAVE_LONGLONG" = x"yes"; then
d4e4cbe1 475 AC_DEFINE(HAVE_LONGLONG, 1, [ ])
7597e1a9 476fi
0d0e2e93 477
7b3d4257 478AC_CACHE_CHECK([for off64_t],rsync_cv_HAVE_OFF64_T,[
bcacc18b
AT
479AC_TRY_RUN([#include <stdio.h>
480#include <sys/stat.h>
7597e1a9 481main() { 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
482rsync_cv_HAVE_OFF64_T=yes,rsync_cv_HAVE_OFF64_T=no,rsync_cv_HAVE_OFF64_T=cross)])
483if test x"$rsync_cv_HAVE_OFF64_T" = x"yes"; then
d4e4cbe1 484 AC_DEFINE(HAVE_OFF64_T, 1, [ ])
7597e1a9 485fi
debb4505 486
79fc6bdb 487AC_CACHE_CHECK([for short ino_t],rsync_cv_HAVE_SHORT_INO_T,[
c29ee43d
AT
488AC_TRY_RUN([#include <stdio.h>
489#include <sys/types.h>
490#include <sys/stat.h>
491main() { if (sizeof(ino_t) < sizeof(unsigned int)) return 0; return 1; }],
79fc6bdb
DD
492rsync_cv_HAVE_SHORT_INO_T=yes,rsync_cv_HAVE_SHORT_INO_T=no,rsync_cv_HAVE_SHORT_INO_T=cross)])
493if test x"$rsync_cv_HAVE_SHORT_INO_T" = x"yes"; then
d4e4cbe1 494 AC_DEFINE(HAVE_SHORT_INO_T, 1, [ ])
79fc6bdb 495fi
c29ee43d 496
7b3d4257 497AC_CACHE_CHECK([for unsigned char],rsync_cv_HAVE_UNSIGNED_CHAR,[
debb4505
AT
498AC_TRY_RUN([#include <stdio.h>
499main() { char c; c=250; exit((c > 0)?0:1); }],
7b3d4257
AT
500rsync_cv_HAVE_UNSIGNED_CHAR=yes,rsync_cv_HAVE_UNSIGNED_CHAR=no,rsync_cv_HAVE_UNSIGNED_CHAR=cross)])
501if test x"$rsync_cv_HAVE_UNSIGNED_CHAR" = x"yes"; then
d4e4cbe1 502 AC_DEFINE(HAVE_UNSIGNED_CHAR, 1, [ ])
7597e1a9 503fi
bcacc18b 504
7b3d4257 505AC_CACHE_CHECK([for broken readdir],rsync_cv_HAVE_BROKEN_READDIR,[
59503278
AT
506AC_TRY_RUN([#include <sys/types.h>
507#include <dirent.h>
508main() { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
509if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
7597e1a9 510di->d_name[0] == 0) exit(0); exit(1);} ],
7b3d4257
AT
511rsync_cv_HAVE_BROKEN_READDIR=yes,rsync_cv_HAVE_BROKEN_READDIR=no,rsync_cv_HAVE_BROKEN_READDIR=cross)])
512if test x"$rsync_cv_HAVE_BROKEN_READDIR" = x"yes"; then
d4e4cbe1 513 AC_DEFINE(HAVE_BROKEN_READDIR, 1, [ ])
7597e1a9 514fi
1e9f155a 515
7b3d4257 516AC_CACHE_CHECK([for utimbuf],rsync_cv_HAVE_UTIMBUF,[
d6e6ecbd
AT
517AC_TRY_COMPILE([#include <sys/types.h>
518#include <utime.h>],
7597e1a9 519[struct utimbuf tbuf; tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));],
7b3d4257
AT
520rsync_cv_HAVE_UTIMBUF=yes,rsync_cv_HAVE_UTIMBUF=no,rsync_cv_HAVE_UTIMBUF=cross)])
521if test x"$rsync_cv_HAVE_UTIMBUF" = x"yes"; then
d4e4cbe1 522 AC_DEFINE(HAVE_UTIMBUF, 1, [ ])
7597e1a9 523fi
d6e6ecbd 524
3060d4aa
AT
525AC_CACHE_CHECK([if gettimeofday takes tz argument],rsync_cv_HAVE_GETTIMEOFDAY_TZ,[
526AC_TRY_RUN([
527#include <sys/time.h>
528#include <unistd.h>
529main() { struct timeval tv; exit(gettimeofday(&tv, NULL));}],
530 rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes,rsync_cv_HAVE_GETTIMEOFDAY_TZ=no,rsync_cv_HAVE_GETTIMEOFDAY_TZ=cross)])
531if test x"$rsync_cv_HAVE_GETTIMEOFDAY_TZ" = x"yes"; then
d4e4cbe1 532 AC_DEFINE(HAVE_GETTIMEOFDAY_TZ, 1, [ ])
3060d4aa
AT
533fi
534
8950ac03
AT
535AC_CACHE_CHECK([for C99 vsnprintf],rsync_cv_HAVE_C99_VSNPRINTF,[
536AC_TRY_RUN([
537#include <sys/types.h>
538#include <stdarg.h>
539void foo(const char *format, ...) {
540 va_list ap;
541 int len;
542 char buf[5];
543
544 va_start(ap, format);
545 len = vsnprintf(0, 0, format, ap);
546 va_end(ap);
547 if (len != 5) exit(1);
548
549 if (snprintf(buf, 3, "hello") != 5 || strcmp(buf, "he") != 0) exit(1);
550
551 exit(0);
552}
553main() { foo("hello"); }
554],
555rsync_cv_HAVE_C99_VSNPRINTF=yes,rsync_cv_HAVE_C99_VSNPRINTF=no,rsync_cv_HAVE_C99_VSNPRINTF=cross)])
556if test x"$rsync_cv_HAVE_C99_VSNPRINTF" = x"yes"; then
d4e4cbe1 557 AC_DEFINE(HAVE_C99_VSNPRINTF, 1, [ ])
8950ac03
AT
558fi
559
560
f62c17e3
AT
561AC_CACHE_CHECK([for secure mkstemp],rsync_cv_HAVE_SECURE_MKSTEMP,[
562AC_TRY_RUN([#include <stdlib.h>
563#include <sys/types.h>
564#include <sys/stat.h>
565#include <unistd.h>
566main() {
567 struct stat st;
568 char tpl[20]="/tmp/test.XXXXXX";
569 int fd = mkstemp(tpl);
570 if (fd == -1) exit(1);
571 unlink(tpl);
572 if (fstat(fd, &st) != 0) exit(1);
573 if ((st.st_mode & 0777) != 0600) exit(1);
574 exit(0);
575}],
576rsync_cv_HAVE_SECURE_MKSTEMP=yes,
577rsync_cv_HAVE_SECURE_MKSTEMP=no,
578rsync_cv_HAVE_SECURE_MKSTEMP=cross)])
579if test x"$rsync_cv_HAVE_SECURE_MKSTEMP" = x"yes"; then
d4e4cbe1 580 AC_DEFINE(HAVE_SECURE_MKSTEMP, 1, [ ])
f62c17e3
AT
581fi
582
3060d4aa 583
7b3d4257
AT
584AC_CACHE_CHECK([for broken inet_ntoa],rsync_cv_REPLACE_INET_NTOA,[
585AC_TRY_RUN([
586#include <stdio.h>
587#include <sys/types.h>
588#include <netinet/in.h>
589#include <arpa/inet.h>
590main() { struct in_addr ip; ip.s_addr = 0x12345678;
591if (strcmp(inet_ntoa(ip),"18.52.86.120") &&
fca3ef06
AT
592 strcmp(inet_ntoa(ip),"120.86.52.18")) { exit(1); }
593exit(0);}],
594 rsync_cv_REPLACE_INET_NTOA=no,rsync_cv_REPLACE_INET_NTOA=yes,rsync_cv_REPLACE_INET_NTOA=cross)])
7b3d4257 595if test x"$rsync_cv_REPLACE_INET_NTOA" = x"yes"; then
d4e4cbe1 596 AC_DEFINE(REPLACE_INET_NTOA, 1, [ ])
7b3d4257
AT
597fi
598
fca3ef06
AT
599
600AC_CACHE_CHECK([for broken inet_aton],rsync_cv_REPLACE_INET_ATON,[
601AC_TRY_RUN([
602#include <stdio.h>
603#include <sys/types.h>
604#include <netinet/in.h>
605#include <arpa/inet.h>
606main() { struct in_addr ip;
607if (inet_aton("example", &ip) == 0) exit(0); exit(1);}],
608 rsync_cv_REPLACE_INET_ATON=no,rsync_cv_REPLACE_INET_ATON=yes,rsync_cv_REPLACE_INET_ATON=cross)])
609if test x"$rsync_cv_REPLACE_INET_ATON" = x"yes"; then
d4e4cbe1 610 AC_DEFINE(REPLACE_INET_ATON, 1, [ ])
fca3ef06
AT
611fi
612
692da0b5
DD
613#
614# The following test was mostly taken from the tcl/tk plus patches
615#
79fc6bdb 616AC_CACHE_CHECK([whether -c -o works],rsync_cv_DASHC_WORKS_WITH_DASHO,[
692da0b5
DD
617rm -rf conftest*
618cat > conftest.$ac_ext <<EOF
619int main() { return 0; }
620EOF
621${CC-cc} -c -o conftest..o conftest.$ac_ext
622if test -f conftest..o; then
79fc6bdb
DD
623 rsync_cv_DASHC_WORKS_WITH_DASHO=yes
624else
625 rsync_cv_DASHC_WORKS_WITH_DASHO=no
626fi
627rm -rf conftest*
628])
629if test x"$rsync_cv_DASHC_WORKS_WITH_DASHO" = x"yes"; then
692da0b5
DD
630 OBJ_SAVE="#"
631 OBJ_RESTORE="#"
632 CC_SHOBJ_FLAG='-o $@'
692da0b5
DD
633else
634 OBJ_SAVE=' @b=`basename $@ .o`;rm -f $$b.o.sav;if test -f $$b.o; then mv $$b.o $$b.o.sav;fi;'
635 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'
636 CC_SHOBJ_FLAG=""
692da0b5 637fi
79fc6bdb 638
692da0b5
DD
639AC_SUBST(OBJ_SAVE)
640AC_SUBST(OBJ_RESTORE)
641AC_SUBST(CC_SHOBJ_FLAG)
1ac15cd8 642AC_SUBST(BUILD_POPT)
7d29d4ba 643
bf5c2bf6
MP
644AC_CONFIG_FILES([Makefile lib/dummy zlib/dummy popt/dummy shconfig])
645AC_OUTPUT
a4677968
MP
646
647AC_MSG_RESULT()
648AC_MSG_RESULT([ rsync ${RSYNC_VERSION} configuration successful])
649AC_MSG_RESULT()