If there is no lchown(), don't try to set the user & group of a symlink.
[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
DD
458
459AC_CACHE_CHECK([for working socketpair],rsync_cv_HAVE_SOCKETPAIR,[
6a5ef41f
MP
460AC_TRY_RUN([
461#include <sys/types.h>
462#include <sys/socket.h>
463
464main() {
465 int fd[2];
466 exit((socketpair(AF_UNIX, SOCK_STREAM, 0, fd) != -1) ? 0 : 1);
467}],
24c857f1
DD
468rsync_cv_HAVE_SOCKETPAIR=yes,rsync_cv_HAVE_SOCKETPAIR=no,rsync_cv_HAVE_SOCKETPAIR=cross)])
469if test x"$rsync_cv_HAVE_SOCKETPAIR" = x"yes"; then
d4e4cbe1 470 AC_DEFINE(HAVE_SOCKETPAIR, 1, [ ])
24c857f1 471fi
c627d613 472
1ac15cd8
MP
473if test x"$with_included_popt" != x"yes"
474then
475 AC_CHECK_LIB(popt, poptGetContext, , [with_included_popt=yes])
476fi
2d1ebe9c 477
12458878 478AC_MSG_CHECKING([whether to use included libpopt])
2d1ebe9c
MP
479if test x"$with_included_popt" = x"yes"
480then
12458878 481 AC_MSG_RESULT($srcdir/popt)
1ac15cd8 482 BUILD_POPT='$(popt_OBJS)'
26ef00bd 483 CFLAGS="$CFLAGS -I$srcdir/popt"
5216de37 484 if test x"$ALLOCA" != x
7fc08908 485 then
5216de37
DD
486 # this can be removed when/if we add an included alloca.c;
487 # see autoconf documentation on AC_FUNC_ALLOCA
8af534a5 488 AC_MSG_WARN([included libpopt will use malloc, not alloca (which wastes a small amount of memory)])
7fc08908 489 fi
2d1ebe9c
MP
490else
491 AC_MSG_RESULT(no)
79fc6bdb 492fi
c627d613 493
79fc6bdb 494AC_CACHE_CHECK([for long long],rsync_cv_HAVE_LONGLONG,[
0d0e2e93 495AC_TRY_RUN([#include <stdio.h>
efb2f6bf 496main() { long long x = 1000000; x *= x; exit(((x/1000000) == 1000000)? 0: 1); }],
79fc6bdb
DD
497rsync_cv_HAVE_LONGLONG=yes,rsync_cv_HAVE_LONGLONG=no,rsync_cv_HAVE_LONGLONG=cross)])
498if test x"$rsync_cv_HAVE_LONGLONG" = x"yes"; then
d4e4cbe1 499 AC_DEFINE(HAVE_LONGLONG, 1, [ ])
7597e1a9 500fi
0d0e2e93 501
7b3d4257 502AC_CACHE_CHECK([for off64_t],rsync_cv_HAVE_OFF64_T,[
bcacc18b
AT
503AC_TRY_RUN([#include <stdio.h>
504#include <sys/stat.h>
7597e1a9 505main() { 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
506rsync_cv_HAVE_OFF64_T=yes,rsync_cv_HAVE_OFF64_T=no,rsync_cv_HAVE_OFF64_T=cross)])
507if test x"$rsync_cv_HAVE_OFF64_T" = x"yes"; then
d4e4cbe1 508 AC_DEFINE(HAVE_OFF64_T, 1, [ ])
7597e1a9 509fi
debb4505 510
79fc6bdb 511AC_CACHE_CHECK([for short ino_t],rsync_cv_HAVE_SHORT_INO_T,[
c29ee43d
AT
512AC_TRY_RUN([#include <stdio.h>
513#include <sys/types.h>
514#include <sys/stat.h>
515main() { if (sizeof(ino_t) < sizeof(unsigned int)) return 0; return 1; }],
79fc6bdb
DD
516rsync_cv_HAVE_SHORT_INO_T=yes,rsync_cv_HAVE_SHORT_INO_T=no,rsync_cv_HAVE_SHORT_INO_T=cross)])
517if test x"$rsync_cv_HAVE_SHORT_INO_T" = x"yes"; then
d4e4cbe1 518 AC_DEFINE(HAVE_SHORT_INO_T, 1, [ ])
79fc6bdb 519fi
c29ee43d 520
7b3d4257 521AC_CACHE_CHECK([for unsigned char],rsync_cv_HAVE_UNSIGNED_CHAR,[
debb4505
AT
522AC_TRY_RUN([#include <stdio.h>
523main() { char c; c=250; exit((c > 0)?0:1); }],
7b3d4257
AT
524rsync_cv_HAVE_UNSIGNED_CHAR=yes,rsync_cv_HAVE_UNSIGNED_CHAR=no,rsync_cv_HAVE_UNSIGNED_CHAR=cross)])
525if test x"$rsync_cv_HAVE_UNSIGNED_CHAR" = x"yes"; then
d4e4cbe1 526 AC_DEFINE(HAVE_UNSIGNED_CHAR, 1, [ ])
7597e1a9 527fi
bcacc18b 528
7b3d4257 529AC_CACHE_CHECK([for broken readdir],rsync_cv_HAVE_BROKEN_READDIR,[
59503278
AT
530AC_TRY_RUN([#include <sys/types.h>
531#include <dirent.h>
532main() { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
533if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
7597e1a9 534di->d_name[0] == 0) exit(0); exit(1);} ],
7b3d4257
AT
535rsync_cv_HAVE_BROKEN_READDIR=yes,rsync_cv_HAVE_BROKEN_READDIR=no,rsync_cv_HAVE_BROKEN_READDIR=cross)])
536if test x"$rsync_cv_HAVE_BROKEN_READDIR" = x"yes"; then
d4e4cbe1 537 AC_DEFINE(HAVE_BROKEN_READDIR, 1, [ ])
7597e1a9 538fi
1e9f155a 539
7b3d4257 540AC_CACHE_CHECK([for utimbuf],rsync_cv_HAVE_UTIMBUF,[
d6e6ecbd
AT
541AC_TRY_COMPILE([#include <sys/types.h>
542#include <utime.h>],
7597e1a9 543[struct utimbuf tbuf; tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));],
7b3d4257
AT
544rsync_cv_HAVE_UTIMBUF=yes,rsync_cv_HAVE_UTIMBUF=no,rsync_cv_HAVE_UTIMBUF=cross)])
545if test x"$rsync_cv_HAVE_UTIMBUF" = x"yes"; then
d4e4cbe1 546 AC_DEFINE(HAVE_UTIMBUF, 1, [ ])
7597e1a9 547fi
d6e6ecbd 548
3060d4aa
AT
549AC_CACHE_CHECK([if gettimeofday takes tz argument],rsync_cv_HAVE_GETTIMEOFDAY_TZ,[
550AC_TRY_RUN([
551#include <sys/time.h>
552#include <unistd.h>
553main() { struct timeval tv; exit(gettimeofday(&tv, NULL));}],
554 rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes,rsync_cv_HAVE_GETTIMEOFDAY_TZ=no,rsync_cv_HAVE_GETTIMEOFDAY_TZ=cross)])
a20a88d2 555if test x"$rsync_cv_HAVE_GETTIMEOFDAY_TZ" != x"no"; then
d4e4cbe1 556 AC_DEFINE(HAVE_GETTIMEOFDAY_TZ, 1, [ ])
3060d4aa
AT
557fi
558
8950ac03
AT
559AC_CACHE_CHECK([for C99 vsnprintf],rsync_cv_HAVE_C99_VSNPRINTF,[
560AC_TRY_RUN([
561#include <sys/types.h>
562#include <stdarg.h>
2ef2e822 563void foo(const char *format, ...) {
8950ac03
AT
564 va_list ap;
565 int len;
566 char buf[5];
567
568 va_start(ap, format);
569 len = vsnprintf(0, 0, format, ap);
570 va_end(ap);
571 if (len != 5) exit(1);
572
573 if (snprintf(buf, 3, "hello") != 5 || strcmp(buf, "he") != 0) exit(1);
574
575 exit(0);
576}
577main() { foo("hello"); }
578],
579rsync_cv_HAVE_C99_VSNPRINTF=yes,rsync_cv_HAVE_C99_VSNPRINTF=no,rsync_cv_HAVE_C99_VSNPRINTF=cross)])
580if test x"$rsync_cv_HAVE_C99_VSNPRINTF" = x"yes"; then
d4e4cbe1 581 AC_DEFINE(HAVE_C99_VSNPRINTF, 1, [ ])
8950ac03
AT
582fi
583
584
f62c17e3
AT
585AC_CACHE_CHECK([for secure mkstemp],rsync_cv_HAVE_SECURE_MKSTEMP,[
586AC_TRY_RUN([#include <stdlib.h>
587#include <sys/types.h>
588#include <sys/stat.h>
589#include <unistd.h>
2ef2e822 590main() {
f62c17e3 591 struct stat st;
2ef2e822
WD
592 char tpl[20]="/tmp/test.XXXXXX";
593 int fd = mkstemp(tpl);
f62c17e3
AT
594 if (fd == -1) exit(1);
595 unlink(tpl);
596 if (fstat(fd, &st) != 0) exit(1);
597 if ((st.st_mode & 0777) != 0600) exit(1);
598 exit(0);
599}],
600rsync_cv_HAVE_SECURE_MKSTEMP=yes,
601rsync_cv_HAVE_SECURE_MKSTEMP=no,
602rsync_cv_HAVE_SECURE_MKSTEMP=cross)])
603if test x"$rsync_cv_HAVE_SECURE_MKSTEMP" = x"yes"; then
d4e4cbe1 604 AC_DEFINE(HAVE_SECURE_MKSTEMP, 1, [ ])
f62c17e3
AT
605fi
606
3060d4aa 607
7b3d4257
AT
608AC_CACHE_CHECK([for broken inet_ntoa],rsync_cv_REPLACE_INET_NTOA,[
609AC_TRY_RUN([
610#include <stdio.h>
611#include <sys/types.h>
612#include <netinet/in.h>
613#include <arpa/inet.h>
614main() { struct in_addr ip; ip.s_addr = 0x12345678;
615if (strcmp(inet_ntoa(ip),"18.52.86.120") &&
2ef2e822 616 strcmp(inet_ntoa(ip),"120.86.52.18")) { exit(1); }
fca3ef06
AT
617exit(0);}],
618 rsync_cv_REPLACE_INET_NTOA=no,rsync_cv_REPLACE_INET_NTOA=yes,rsync_cv_REPLACE_INET_NTOA=cross)])
7b3d4257 619if test x"$rsync_cv_REPLACE_INET_NTOA" = x"yes"; then
d4e4cbe1 620 AC_DEFINE(REPLACE_INET_NTOA, 1, [ ])
7b3d4257
AT
621fi
622
fca3ef06
AT
623
624AC_CACHE_CHECK([for broken inet_aton],rsync_cv_REPLACE_INET_ATON,[
625AC_TRY_RUN([
626#include <stdio.h>
627#include <sys/types.h>
628#include <netinet/in.h>
629#include <arpa/inet.h>
2ef2e822 630main() { struct in_addr ip;
fca3ef06
AT
631if (inet_aton("example", &ip) == 0) exit(0); exit(1);}],
632 rsync_cv_REPLACE_INET_ATON=no,rsync_cv_REPLACE_INET_ATON=yes,rsync_cv_REPLACE_INET_ATON=cross)])
633if test x"$rsync_cv_REPLACE_INET_ATON" = x"yes"; then
d4e4cbe1 634 AC_DEFINE(REPLACE_INET_ATON, 1, [ ])
fca3ef06
AT
635fi
636
e49d7200
WD
637AC_CACHE_CHECK([if mknod creates FIFOs],rsync_cv_MKNOD_CREATES_FIFOS,[
638AC_TRY_RUN([
639#include <stdio.h>
640#include <sys/stat.h>
641#include <errno.h>
642main() { int rc, ec; char *fn = "fifo-test";
643unlink(fn); rc = mknod(fn,S_IFIFO,0600); ec = errno; unlink(fn);
644if (rc) {printf("%d %d\n",rc,ec); return ec;}
645return 0;}],
646 rsync_cv_MKNOD_CREATES_FIFOS=yes,rsync_cv_MKNOD_CREATES_FIFOS=no,rsync_cv_MKNOD_CREATES_FIFOS=cross)])
647if test x"$rsync_cv_MKNOD_CREATES_FIFOS" = x"yes"; then
648 AC_DEFINE(MKNOD_CREATES_FIFOS, 1, [Define to 1 if mknod() can create FIFOs.])
649fi
650
651AC_CACHE_CHECK([if mknod creates sockets],rsync_cv_MKNOD_CREATES_SOCKETS,[
652AC_TRY_RUN([
653#include <stdio.h>
654#include <sys/stat.h>
655#include <errno.h>
656main() { int rc, ec; char *fn = "sock-test";
657unlink(fn); rc = mknod(fn,S_IFSOCK,0600); ec = errno; unlink(fn);
658if (rc) {printf("%d %d\n",rc,ec); return ec;}
659return 0;}],
660 rsync_cv_MKNOD_CREATES_SOCKETS=yes,rsync_cv_MKNOD_CREATES_SOCKETS=no,rsync_cv_MKNOD_CREATES_SOCKETS=cross)])
661if test x"$rsync_cv_MKNOD_CREATES_SOCKETS" = x"yes"; then
662 AC_DEFINE(MKNOD_CREATES_SOCKETS, 1, [Define to 1 if mknod() can create sockets.])
663fi
664
692da0b5
DD
665#
666# The following test was mostly taken from the tcl/tk plus patches
667#
79fc6bdb 668AC_CACHE_CHECK([whether -c -o works],rsync_cv_DASHC_WORKS_WITH_DASHO,[
692da0b5
DD
669rm -rf conftest*
670cat > conftest.$ac_ext <<EOF
671int main() { return 0; }
672EOF
673${CC-cc} -c -o conftest..o conftest.$ac_ext
674if test -f conftest..o; then
79fc6bdb
DD
675 rsync_cv_DASHC_WORKS_WITH_DASHO=yes
676else
677 rsync_cv_DASHC_WORKS_WITH_DASHO=no
678fi
679rm -rf conftest*
680])
681if test x"$rsync_cv_DASHC_WORKS_WITH_DASHO" = x"yes"; then
692da0b5
DD
682 OBJ_SAVE="#"
683 OBJ_RESTORE="#"
684 CC_SHOBJ_FLAG='-o $@'
692da0b5
DD
685else
686 OBJ_SAVE=' @b=`basename $@ .o`;rm -f $$b.o.sav;if test -f $$b.o; then mv $$b.o $$b.o.sav;fi;'
687 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'
688 CC_SHOBJ_FLAG=""
692da0b5 689fi
79fc6bdb 690
692da0b5
DD
691AC_SUBST(OBJ_SAVE)
692AC_SUBST(OBJ_RESTORE)
693AC_SUBST(CC_SHOBJ_FLAG)
1ac15cd8 694AC_SUBST(BUILD_POPT)
7d29d4ba 695
bf5c2bf6
MP
696AC_CONFIG_FILES([Makefile lib/dummy zlib/dummy popt/dummy shconfig])
697AC_OUTPUT
a4677968 698
18ced146
WD
699if test x"$with_rsh" = x; then
700 if test x"$HAVE_REMSH" = x1; then
701 rmsh1='remsh:'
702 rmsh2='=remsh'
703 else
704 rmsh1='rsh: '
705 rmsh2='=rsh '
706 fi
707 AC_MSG_RESULT()
708 AC_MSG_RESULT([ **********************************************************************])
709 AC_MSG_RESULT([ * As of v2.6.0, the default remote shell is ssh instead of rsh!! *])
710 AC_MSG_RESULT([ * To use previous default of $rmsh1 ./configure --with-rsh$rmsh2 *])
711 AC_MSG_RESULT([ **********************************************************************])
712fi
713
a4677968
MP
714AC_MSG_RESULT()
715AC_MSG_RESULT([ rsync ${RSYNC_VERSION} configuration successful])
716AC_MSG_RESULT()