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