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