Added a simple check to see if the /etc/group file has the
[rsync/rsync.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2
3 AC_INIT()
4 AC_CONFIG_SRCDIR([byteorder.h])
5 AC_CONFIG_HEADER(config.h)
6 AC_PREREQ(2.59)
7
8 RSYNC_VERSION=2.6.6cvs
9 AC_SUBST(RSYNC_VERSION)
10 AC_MSG_NOTICE([Configuring rsync $RSYNC_VERSION])
11
12 AC_DEFINE_UNQUOTED(RSYNC_VERSION, ["$RSYNC_VERSION"], [rsync release version])
13
14 LDFLAGS=${LDFLAGS-""}
15
16 AC_CANONICAL_TARGET([])
17
18 dnl Checks for programs.
19 AC_PROG_CC
20 AC_PROG_CPP
21 AC_PROG_EGREP
22 AC_PROG_INSTALL
23 AC_PROG_CC_STDC
24 AC_SUBST(SHELL)
25
26 AC_DEFINE([_GNU_SOURCE], 1,
27           [Define _GNU_SOURCE so that we get all necessary prototypes])
28
29 if test "x$ac_cv_prog_cc_stdc" = xno
30 then
31         AC_MSG_WARN([rsync requires an ANSI C compiler and you don't seem to have one])
32 fi
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
39 AC_MSG_CHECKING([whether to include debugging symbols])
40 AC_ARG_ENABLE(debug,
41         AC_HELP_STRING([--enable-debug],
42                 [including debugging symbols and features (default yes)]),
43                 [], [])
44
45 if test x"$enable_debug" = x"no"
46 then
47     AC_MSG_RESULT(no)
48     CFLAGS=${CFLAGS-"-O"}
49 else
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"}
54 fi
55
56
57 AC_ARG_ENABLE(profile,
58         AC_HELP_STRING([--enable-profile],
59                 [turn on CPU profiling (default no)],
60                 [], []))
61 if test x"$enable_profile" = xyes
62 then
63         CFLAGS="$CFLAGS -pg"
64 fi
65
66
67 # Specifically, this turns on panic_action handling.
68 AC_ARG_ENABLE(maintainer-mode,
69         AC_HELP_STRING([--enable-maintainer-mode],
70                 [turn on extra debug features],
71                 [], []))
72 if test x"$enable_maintainer_mode" = xyes
73 then
74         CFLAGS="$CFLAGS -DMAINTAINER_MODE"
75 fi
76
77
78 # This is needed for our included version of popt.  Kind of silly, but
79 # I don't want our version too far out of sync.
80 CFLAGS="$CFLAGS -DHAVE_CONFIG_H"
81
82 # If GCC, turn on warnings.
83 if test x"$GCC" = x"yes"
84 then
85         CFLAGS="$CFLAGS -Wall -W"
86 fi
87
88 AC_ARG_WITH(included-popt,
89         [  --with-included-popt    use bundled popt library, not from system])
90
91 AC_ARG_WITH(rsync-path,
92         [  --with-rsync-path=PATH  set default --rsync-path to PATH (default: rsync)],
93         [ RSYNC_PATH="$with_rsync_path" ],
94         [ RSYNC_PATH="rsync" ])
95
96 AC_DEFINE_UNQUOTED(RSYNC_PATH, "$RSYNC_PATH", [location of rsync on remote machine])
97
98 AC_ARG_WITH(rsyncd-conf,
99         AC_HELP_STRING([--with-rsyncd-conf=PATH], [set configuration file for rsync server to PATH (default: /etc/rsyncd.conf)]),
100         [ if test ! -z "$with_rsyncd_conf" ; then
101                 case $with_rsyncd_conf in
102                         yes|no)
103                                 RSYNCD_SYSCONF="/etc/rsyncd.conf"
104                                 ;;
105                         /*)
106                                 RSYNCD_SYSCONF="$with_rsyncd_conf"
107                                 ;;
108                         *)
109                                 AC_MSG_ERROR(You must specify an absolute path to --with-rsyncd-conf=PATH)
110                                 ;;
111                 esac
112         else
113                 RSYNCD_SYSCONF="/etc/rsyncd.conf"
114         fi ],
115         [ RSYNCD_SYSCONF="/etc/rsyncd.conf" ])
116
117 AC_DEFINE_UNQUOTED(RSYNCD_SYSCONF, "$RSYNCD_SYSCONF", [location of configuration file for rsync server])
118
119 AC_ARG_WITH(rsh,
120         AC_HELP_STRING([--with-rsh=CMD], [set remote shell command to CMD (default: ssh)]))
121
122 AC_CHECK_PROG(HAVE_REMSH, remsh, 1, 0)
123 if test x$HAVE_REMSH = x1; then
124         AC_DEFINE(HAVE_REMSH, 1, [Define to 1 if remote shell is remsh, not rsh])
125 fi
126
127 if test x"$with_rsh" != x
128 then
129         RSYNC_RSH="$with_rsh"
130 else
131         RSYNC_RSH="ssh"
132 fi
133 AC_DEFINE_UNQUOTED(RSYNC_RSH, "$RSYNC_RSH", [default -e command])
134
135 AC_MSG_CHECKING([the group for user "nobody"])
136 if grep '^nobody:' /etc/group >/dev/null 2>&1; then
137     NOBODY_GROUP=nobody
138 elif grep '^nogroup:' /etc/group >/dev/null 2>&1; then
139     NOBODY_GROUP=nogroup
140 else
141     NOBODY_GROUP=nobody # test for others?
142 fi
143 AC_MSG_RESULT($NOBODY_GROUP)
144 AC_DEFINE_UNQUOTED(NOBODY_USER, "nobody", [unprivileged user--e.g. nobody])
145 AC_DEFINE_UNQUOTED(NOBODY_GROUP, "$NOBODY_GROUP", [unprivileged group for unprivileged user])
146
147 # arrgh. libc in the current debian stable screws up the largefile
148 # stuff, getting byte range locking wrong
149 AC_CACHE_CHECK([for broken largefile support],rsync_cv_HAVE_BROKEN_LARGEFILE,[
150 AC_TRY_RUN([
151 #define _FILE_OFFSET_BITS 64
152 #include <stdio.h>
153 #include <fcntl.h>
154 #include <sys/types.h>
155 #include <sys/wait.h>
156
157 int main(void)
158 {
159         struct flock lock;
160         int status;
161         char tpl[32] = "/tmp/locktest.XXXXXX";
162         int fd = mkstemp(tpl);
163         if (fd < 0) {
164                 strcpy(tpl, "conftest.dat");
165                 fd = open(tpl, O_CREAT|O_RDWR, 0600);
166         }
167
168         lock.l_type = F_WRLCK;
169         lock.l_whence = SEEK_SET;
170         lock.l_start = 0;
171         lock.l_len = 1;
172         lock.l_pid = 0;
173         fcntl(fd,F_SETLK,&lock);
174         if (fork() == 0) {
175                 lock.l_start = 1;
176                 _exit(fcntl(fd,F_SETLK,&lock) == 0);
177         }
178         wait(&status);
179         unlink(tpl);
180         exit(WEXITSTATUS(status));
181 }
182 ],
183 rsync_cv_HAVE_BROKEN_LARGEFILE=yes,rsync_cv_HAVE_BROKEN_LARGEFILE=no,rsync_cv_HAVE_BROKEN_LARGEFILE=cross)])
184 if test x"$rsync_cv_HAVE_BROKEN_LARGEFILE" != x"yes"; then
185    AC_SYS_LARGEFILE
186 fi
187
188 ipv6type=unknown
189 ipv6lib=none
190 ipv6trylibc=yes
191
192 AC_ARG_ENABLE(ipv6,
193         AC_HELP_STRING([--disable-ipv6], [don't even try to use IPv6]))
194
195 dnl Do you want to disable use of locale functions
196 AH_TEMPLATE([CONFIG_LOCALE],
197 [Undefine if you don't want locale features.  By default this is defined.])
198 AC_ARG_ENABLE([locale],
199         AC_HELP_STRING([--disable-locale], [turn off locale features]),
200 [if test x$enableval = xyes; then
201   AC_DEFINE(CONFIG_LOCALE)
202 fi],
203 AC_DEFINE(CONFIG_LOCALE)
204 )
205
206 if test "x$enable_ipv6" != xno
207 then
208         AC_MSG_CHECKING([ipv6 stack type])
209         for i in inria kame linux-glibc linux-inet6 toshiba v6d zeta; do
210                 case $i in
211                 inria)
212                         # http://www.kame.net/
213                         AC_EGREP_CPP(yes, [
214 #include <netinet/in.h>
215 #ifdef IPV6_INRIA_VERSION
216 yes
217 #endif],
218                                 [ipv6type=$i;
219                                 AC_DEFINE(INET6, 1, [true if you have IPv6])
220                                 ])
221                         ;;
222                 kame)
223                         # http://www.kame.net/
224                         AC_EGREP_CPP(yes, [
225 #include <netinet/in.h>
226 #ifdef __KAME__
227 yes
228 #endif],
229                                 [ipv6type=$i;
230                                 AC_DEFINE(INET6, 1, [true if you have IPv6])])
231                         ;;
232                 linux-glibc)
233                         # http://www.v6.linux.or.jp/
234                         AC_EGREP_CPP(yes, [
235 #include <features.h>
236 #if defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
237 yes
238 #endif],
239                                 [ipv6type=$i;
240 AC_DEFINE(INET6, 1, [true if you have IPv6])])
241                         ;;
242                 linux-inet6)
243                         # http://www.v6.linux.or.jp/
244                         if test -d /usr/inet6 -o -f /usr/inet6/lib/libinet6.a; then
245                                 ipv6type=$i
246                                 ipv6lib=inet6
247                                 ipv6libdir=/usr/inet6/lib
248                                 ipv6trylibc=yes;
249                                 AC_DEFINE(INET6, 1, [true if you have IPv6])
250                                 CFLAGS="-I/usr/inet6/include $CFLAGS"
251                         fi
252                         ;;
253                 toshiba)
254                         AC_EGREP_CPP(yes, [
255 #include <sys/param.h>
256 #ifdef _TOSHIBA_INET6
257 yes
258 #endif],
259                                 [ipv6type=$i;
260                                 ipv6lib=inet6;
261                                 ipv6libdir=/usr/local/v6/lib;
262                                 AC_DEFINE(INET6, 1, [true if you have IPv6])])
263                         ;;
264                 v6d)
265                         AC_EGREP_CPP(yes, [
266 #include </usr/local/v6/include/sys/v6config.h>
267 #ifdef __V6D__
268 yes
269 #endif],
270                                 [ipv6type=$i;
271                                 ipv6lib=v6;
272                                 ipv6libdir=/usr/local/v6/lib;
273                                 AC_DEFINE(INET6, 1, [true if you have IPv6])])
274                         ;;
275                 zeta)
276                         AC_EGREP_CPP(yes, [
277 #include <sys/param.h>
278 #ifdef _ZETA_MINAMI_INET6
279 yes
280 #endif],
281                                 [ipv6type=$i;
282                                 ipv6lib=inet6;
283                                 ipv6libdir=/usr/local/v6/lib;
284                                 AC_DEFINE(INET6, 1, [true if you have IPv6])])
285                         ;;
286                 esac
287                 if test "$ipv6type" != "unknown"; then
288                         break
289                 fi
290         done
291         AC_MSG_RESULT($ipv6type)
292
293         AC_SEARCH_LIBS(getaddrinfo, inet6)
294 fi
295
296 AC_MSG_CHECKING([whether to call shutdown on all sockets])
297 case $host_os in
298         *cygwin* ) AC_MSG_RESULT(yes)
299                    AC_DEFINE(SHUTDOWN_ALL_SOCKETS, 1,
300                             [Define to 1 if sockets need to be shutdown])
301                    ;;
302                * ) AC_MSG_RESULT(no);;
303 esac
304
305 AC_C_BIGENDIAN
306 AC_HEADER_DIRENT
307 AC_HEADER_TIME
308 AC_HEADER_SYS_WAIT
309 AC_CHECK_HEADERS(sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h \
310     unistd.h utime.h grp.h compat.h sys/param.h ctype.h sys/wait.h \
311     sys/ioctl.h sys/filio.h string.h stdlib.h sys/socket.h sys/mode.h \
312     sys/un.h glob.h mcheck.h arpa/inet.h arpa/nameser.h locale.h \
313     netdb.h malloc.h float.h)
314 AC_HEADER_MAJOR
315
316 AC_CHECK_SIZEOF(int)
317 AC_CHECK_SIZEOF(long)
318 AC_CHECK_SIZEOF(long long)
319 AC_CHECK_SIZEOF(short)
320 AC_CHECK_SIZEOF(off_t)
321 AC_CHECK_SIZEOF(off64_t)
322
323 AC_C_INLINE
324 AC_C_LONG_DOUBLE
325
326 AC_TYPE_SIGNAL
327 AC_TYPE_UID_T
328 AC_TYPE_MODE_T
329 AC_TYPE_OFF_T
330 AC_TYPE_SIZE_T
331 AC_TYPE_PID_T
332 AC_TYPE_GETGROUPS
333 AC_CHECK_MEMBERS([struct stat.st_rdev])
334
335 TYPE_SOCKLEN_T
336
337 AC_CACHE_CHECK([for errno in errno.h],rsync_cv_errno, [
338     AC_TRY_COMPILE([#include <errno.h>],[int i = errno],
339         rsync_cv_errno=yes,rsync_cv_have_errno_decl=no)])
340 if test x"$rsync_cv_errno" = x"yes"; then
341    AC_DEFINE(HAVE_ERRNO_DECL, 1, [Define to 1 if errno is declared in errno.h])
342 fi
343
344 # The following test taken from the cvs sources
345 # If we can't find connect, try looking in -lsocket, -lnsl, and -linet.
346 # These need checks to be before checks for any other functions that
347 #    might be in the same libraries.
348 # The Irix 5 libc.so has connect and gethostbyname, but Irix 5 also has
349 # libsocket.so which has a bad implementation of gethostbyname (it
350 # only looks in /etc/hosts), so we only look for -lsocket if we need
351 # it.
352 AC_CHECK_FUNCS(connect)
353 if test x"$ac_cv_func_connect" = x"no"; then
354     case "$LIBS" in
355     *-lnsl*) ;;
356     *) AC_CHECK_LIB(nsl_s, printf) ;;
357     esac
358     case "$LIBS" in
359     *-lnsl*) ;;
360     *) AC_CHECK_LIB(nsl, printf) ;;
361     esac
362     case "$LIBS" in
363     *-lsocket*) ;;
364     *) AC_CHECK_LIB(socket, connect) ;;
365     esac
366     case "$LIBS" in
367     *-linet*) ;;
368     *) AC_CHECK_LIB(inet, connect) ;;
369     esac
370     dnl We can't just call AC_CHECK_FUNCS(connect) here, because the value
371     dnl has been cached.
372     if test x"$ac_cv_lib_socket_connect" = x"yes" ||
373        test x"$ac_cv_lib_inet_connect" = x"yes"; then
374         # ac_cv_func_connect=yes
375         # don't!  it would cause AC_CHECK_FUNC to succeed next time configure is run
376         AC_DEFINE(HAVE_CONNECT, 1, [Define to 1 if you have the "connect" function])
377     fi
378 fi
379
380 AC_CHECK_LIB(resolv, inet_ntop)
381
382 dnl AC_MSG_NOTICE([Looking in libraries: $LIBS])
383
384 AC_CHECK_FUNCS(inet_ntop, , [AC_LIBOBJ(lib/inet_ntop)])
385 AC_CHECK_FUNCS(inet_pton, , [AC_LIBOBJ(lib/inet_pton)])
386
387 # Irix 6.5 has getaddrinfo but not the corresponding defines, so use
388 #   builtin getaddrinfo if one of the defines don't exist
389 AC_CACHE_CHECK([whether defines needed by getaddrinfo exist],
390                rsync_cv_HAVE_GETADDR_DEFINES,[
391                         AC_EGREP_CPP(yes, [
392                         #include <sys/types.h>
393                         #include <sys/socket.h>
394                         #include <netdb.h>
395                         #ifdef AI_PASSIVE
396                         yes
397                         #endif],
398                         rsync_cv_HAVE_GETADDR_DEFINES=yes,
399                         rsync_cv_HAVE_GETADDR_DEFINES=no)])
400 if test x"$rsync_cv_HAVE_GETADDR_DEFINES" = x"yes"; then
401         # Tru64 UNIX has getaddrinfo() but has it renamed in libc as
402         # something else so we must include <netdb.h> to get the
403         # redefinition.
404         AC_CHECK_FUNCS(getaddrinfo, ,
405                 [AC_MSG_CHECKING([for getaddrinfo by including <netdb.h>])
406                 AC_TRY_LINK([#include <sys/types.h>
407                 #include <sys/socket.h>
408                 #include <netdb.h>],[getaddrinfo(NULL, NULL, NULL, NULL);],
409                         [AC_MSG_RESULT([yes])
410                         AC_DEFINE(HAVE_GETADDRINFO, 1,
411                                 [Define to 1 if you have the "getaddrinfo" function.])],
412                         [AC_MSG_RESULT([no])
413                         AC_LIBOBJ(lib/getaddrinfo)])])
414         AC_CHECK_FUNCS(getnameinfo, , [AC_LIBOBJ(lib/getnameinfo)])
415 else
416         AC_LIBOBJ(lib/getaddrinfo)
417         AC_LIBOBJ(lib/getnameinfo)
418 fi
419
420 AC_CHECK_MEMBER([struct sockaddr.sa_len],
421                 [ AC_DEFINE(HAVE_SOCKADDR_LEN, 1, [Do we have sockaddr.sa_len?]) ],
422                 [],
423                 [
424 #include <sys/types.h>
425 #include <sys/socket.h>
426 ])
427
428 AC_CHECK_MEMBER([struct sockaddr_in.sin_len],
429                 [ AC_DEFINE(HAVE_SOCKADDR_IN_LEN, 1, [Do we have sockaddr_in.sin_len?]) ],
430                 [],
431                 [
432 #include <sys/types.h>
433 #include <sys/socket.h>
434 #include <netinet/in.h>
435 ])
436
437 AC_CHECK_MEMBER([struct sockaddr_un.sun_len],
438                 [ AC_DEFINE(HAVE_SOCKADDR_UN_LEN, 1, [Do we have sockaddr_un.sun_len?]) ],
439                 [],
440                 [
441 #include <sys/types.h>
442 #include <sys/socket.h>
443 #include <netinet/in.h>
444 ])
445
446 AC_MSG_CHECKING(struct sockaddr_storage)
447 AC_TRY_COMPILE([#include <sys/types.h>
448 #include <sys/socket.h>],
449 [struct sockaddr_storage x;],
450         AC_MSG_RESULT(yes)
451         AC_DEFINE(HAVE_SOCKADDR_STORAGE, 1,
452                 [Define to 1 if you have struct sockaddr_storage.] ),
453         AC_MSG_RESULT(no))
454
455 AC_CHECK_MEMBER([struct sockaddr_in6.sin6_scope_id],
456                 [ AC_DEFINE(HAVE_SOCKADDR_IN6_SCOPE_ID, 1, [Do we have sockaddr_in6.sin6_scope_id?]) ],
457                 [],
458                 [
459 #include <sys/types.h>
460 #include <sys/socket.h>
461 #include <netinet/in.h>
462 ])
463
464 AC_MSG_CHECKING(struct stat64)
465 AC_TRY_COMPILE([#include <stdio.h>
466 #if HAVE_SYS_TYPES_H
467 # include <sys/types.h>
468 #endif
469 #if HAVE_SYS_STAT_H
470 # include <sys/stat.h>
471 #endif
472 #if STDC_HEADERS
473 # include <stdlib.h>
474 # include <stddef.h>
475 #else
476 # if HAVE_STDLIB_H
477 #  include <stdlib.h>
478 # endif
479 #endif
480 ],[struct stat64 st;],
481     AC_MSG_RESULT(yes)
482         AC_DEFINE(HAVE_STRUCT_STAT64,1,[Define to 1 if you have struct stat64.]),
483     AC_MSG_RESULT(no))
484
485 # if we can't find strcasecmp, look in -lresolv (for Unixware at least)
486 #
487 AC_CHECK_FUNCS(strcasecmp)
488 if test x"$ac_cv_func_strcasecmp" = x"no"; then
489     AC_CHECK_LIB(resolv, strcasecmp)
490 fi
491
492 dnl At the moment we don't test for a broken memcmp(), because all we
493 dnl need to do is test for equality, not comparison, and it seems that
494 dnl every platform has a memcmp that can do at least that.
495 dnl AC_FUNC_MEMCMP
496
497 AC_FUNC_UTIME_NULL
498 AC_FUNC_ALLOCA
499 AC_CHECK_FUNCS(waitpid wait4 getcwd strdup strerror chown chmod mknod mkfifo \
500     fchmod fstat strchr readlink link utime utimes strftime mtrace ftruncate \
501     memmove lchown vsnprintf snprintf vasprintf asprintf setsid glob strpbrk \
502     strlcat strlcpy strtol mallinfo getgroups setgroups geteuid getegid \
503     setlocale setmode open64 lseek64 mkstemp64 va_copy __va_copy)
504
505 AC_CHECK_FUNCS(getpgrp tcgetpgrp)
506 if test $ac_cv_func_getpgrp = yes; then
507     AC_FUNC_GETPGRP
508 fi
509
510 # Determine whether chown follows symlinks (it should).
511 AC_CACHE_CHECK([whether chown() dereferences symlinks],rsync_cv_chown_follows_symlink,[
512   AC_TRY_RUN([
513 #if HAVE_UNISTD_H
514 # include <unistd.h>
515 #endif
516 #include <stdlib.h>
517 #include <errno.h>
518     main() {
519         char const *dangling_symlink = "conftest.dangle";
520         unlink(dangling_symlink);
521         if (symlink("conftest.no-such", dangling_symlink) < 0) abort();
522         if (chown(dangling_symlink, getuid(), getgid()) < 0 && errno == ENOENT) exit(0);
523         exit(1);
524     }],
525   rsync_cv_chown_follows_symlink=yes,rsync_cv_chown_follows_symlink=no,rsync_cv_chown_follows_symlink=yes)])
526 if test $rsync_cv_chown_follows_symlink = no; then
527   AC_DEFINE(CHOWN_MODIFIES_SYMLINK, 1, [Define to 1 if chown modifies symlinks.])
528 fi
529
530 AC_CACHE_CHECK([for working socketpair],rsync_cv_HAVE_SOCKETPAIR,[
531 AC_TRY_RUN([
532 #include <sys/types.h>
533 #include <sys/socket.h>
534
535 main() {
536        int fd[2];
537        exit((socketpair(AF_UNIX, SOCK_STREAM, 0, fd) != -1) ? 0 : 1);
538 }],
539 rsync_cv_HAVE_SOCKETPAIR=yes,rsync_cv_HAVE_SOCKETPAIR=no,rsync_cv_HAVE_SOCKETPAIR=cross)])
540 if test x"$rsync_cv_HAVE_SOCKETPAIR" = x"yes"; then
541     AC_DEFINE(HAVE_SOCKETPAIR, 1, [Define to 1 if you have the "socketpair" function])
542 fi
543
544 if test x"$with_included_popt" != x"yes"
545 then
546     AC_CHECK_LIB(popt, poptGetContext, , [with_included_popt=yes])
547 fi
548
549 AC_MSG_CHECKING([whether to use included libpopt])
550 if test x"$with_included_popt" = x"yes"
551 then
552     AC_MSG_RESULT($srcdir/popt)
553     BUILD_POPT='$(popt_OBJS)'
554     CFLAGS="$CFLAGS -I$srcdir/popt"
555     if test x"$ALLOCA" != x
556     then
557         # this can be removed when/if we add an included alloca.c;
558         #  see autoconf documentation on AC_FUNC_ALLOCA
559         AC_MSG_WARN([included libpopt will use malloc, not alloca (which wastes a small amount of memory)])
560     fi
561 else
562     AC_MSG_RESULT(no)
563 fi
564
565 AC_CACHE_CHECK([for unsigned char],rsync_cv_SIGNED_CHAR_OK,[
566 AC_TRY_COMPILE([],[signed char *s = ""],
567 rsync_cv_SIGNED_CHAR_OK=yes,rsync_cv_SIGNED_CHAR_OK=no)])
568 if test x"$rsync_cv_SIGNED_CHAR_OK" = x"yes"; then
569     AC_DEFINE(SIGNED_CHAR_OK, 1, [Define to 1 if "signed char" is a valid type])
570 fi
571
572 AC_CACHE_CHECK([for broken readdir],rsync_cv_HAVE_BROKEN_READDIR,[
573 AC_TRY_RUN([#include <sys/types.h>
574 #include <dirent.h>
575 main() { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
576 if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
577 di->d_name[0] == 0) exit(0); exit(1);} ],
578 rsync_cv_HAVE_BROKEN_READDIR=yes,rsync_cv_HAVE_BROKEN_READDIR=no,rsync_cv_HAVE_BROKEN_READDIR=cross)])
579 if test x"$rsync_cv_HAVE_BROKEN_READDIR" = x"yes"; then
580     AC_DEFINE(HAVE_BROKEN_READDIR, 1, [Define to 1 if readdir() is broken])
581 fi
582
583 AC_CACHE_CHECK([for utimbuf],rsync_cv_HAVE_UTIMBUF,[
584 AC_TRY_COMPILE([#include <sys/types.h>
585 #include <utime.h>],
586 [struct utimbuf tbuf;  tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));],
587 rsync_cv_HAVE_UTIMBUF=yes,rsync_cv_HAVE_UTIMBUF=no)])
588 if test x"$rsync_cv_HAVE_UTIMBUF" = x"yes"; then
589     AC_DEFINE(HAVE_UTIMBUF, 1, [Define to 1 if you have the "struct utimbuf" type])
590 fi
591
592 AC_CACHE_CHECK([if gettimeofday takes tz argument],rsync_cv_HAVE_GETTIMEOFDAY_TZ,[
593 AC_TRY_COMPILE([#include <sys/time.h>
594 #include <unistd.h>],
595 [struct timeval tv; exit(gettimeofday(&tv, NULL));],
596 rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes,rsync_cv_HAVE_GETTIMEOFDAY_TZ=no)])
597 if test x"$rsync_cv_HAVE_GETTIMEOFDAY_TZ" != x"no"; then
598     AC_DEFINE(HAVE_GETTIMEOFDAY_TZ, 1, [Define to 1 if gettimeofday() takes a time-zone arg])
599 fi
600
601 AC_CACHE_CHECK([for C99 vsnprintf],rsync_cv_HAVE_C99_VSNPRINTF,[
602 AC_TRY_RUN([
603 #include <sys/types.h>
604 #include <stdarg.h>
605 void foo(const char *format, ...) {
606        va_list ap;
607        int len;
608        char buf[5];
609
610        va_start(ap, format);
611        len = vsnprintf(0, 0, format, ap);
612        va_end(ap);
613        if (len != 5) exit(1);
614
615        if (snprintf(buf, 3, "hello") != 5 || strcmp(buf, "he") != 0) exit(1);
616
617        exit(0);
618 }
619 main() { foo("hello"); }
620 ],
621 rsync_cv_HAVE_C99_VSNPRINTF=yes,rsync_cv_HAVE_C99_VSNPRINTF=no,rsync_cv_HAVE_C99_VSNPRINTF=cross)])
622 if test x"$rsync_cv_HAVE_C99_VSNPRINTF" = x"yes"; then
623     AC_DEFINE(HAVE_C99_VSNPRINTF, 1, [Define to 1 if vsprintf has a C99-compatible return value])
624 fi
625
626
627 AC_CACHE_CHECK([for secure mkstemp],rsync_cv_HAVE_SECURE_MKSTEMP,[
628 AC_TRY_RUN([#include <stdlib.h>
629 #include <sys/types.h>
630 #include <sys/stat.h>
631 #include <unistd.h>
632 main() {
633   struct stat st;
634   char tpl[20]="/tmp/test.XXXXXX";
635   int fd = mkstemp(tpl);
636   if (fd == -1) exit(1);
637   unlink(tpl);
638   if (fstat(fd, &st) != 0) exit(1);
639   if ((st.st_mode & 0777) != 0600) exit(1);
640   exit(0);
641 }],
642 rsync_cv_HAVE_SECURE_MKSTEMP=yes,
643 rsync_cv_HAVE_SECURE_MKSTEMP=no,
644 rsync_cv_HAVE_SECURE_MKSTEMP=cross)])
645 if test x"$rsync_cv_HAVE_SECURE_MKSTEMP" = x"yes"; then
646     case $target_os in
647     hpux*)
648         dnl HP-UX has a broken mkstemp() implementation they refuse to fix,
649         dnl so we noisily skip using it.  See HP change request JAGaf34426
650         dnl for details. (sbonds)
651         AC_MSG_WARN(Skipping broken HP-UX mkstemp() -- using mktemp() instead)
652         ;;
653     *)
654         AC_DEFINE(HAVE_SECURE_MKSTEMP, 1, [Define to 1 if mkstemp() is available and works right])
655         ;;
656     esac
657 fi
658
659
660 AC_CACHE_CHECK([for broken inet_ntoa],rsync_cv_REPLACE_INET_NTOA,[
661 AC_TRY_RUN([
662 #include <stdio.h>
663 #include <sys/types.h>
664 #include <netinet/in.h>
665 #include <arpa/inet.h>
666 main() { struct in_addr ip; ip.s_addr = 0x12345678;
667 if (strcmp(inet_ntoa(ip),"18.52.86.120") &&
668     strcmp(inet_ntoa(ip),"120.86.52.18")) { exit(1); }
669 exit(0);}],
670            rsync_cv_REPLACE_INET_NTOA=no,rsync_cv_REPLACE_INET_NTOA=yes,rsync_cv_REPLACE_INET_NTOA=cross)])
671 if test x"$rsync_cv_REPLACE_INET_NTOA" = x"yes"; then
672     AC_DEFINE(REPLACE_INET_NTOA, 1, [Define to 1 if inet_ntoa() needs to be replaced])
673 fi
674
675
676 AC_CACHE_CHECK([for broken inet_aton],rsync_cv_REPLACE_INET_ATON,[
677 AC_TRY_RUN([
678 #include <stdio.h>
679 #include <sys/types.h>
680 #include <netinet/in.h>
681 #include <arpa/inet.h>
682 main() { struct in_addr ip;
683 if (inet_aton("example", &ip) == 0) exit(0); exit(1);}],
684            rsync_cv_REPLACE_INET_ATON=no,rsync_cv_REPLACE_INET_ATON=yes,rsync_cv_REPLACE_INET_ATON=cross)])
685 if test x"$rsync_cv_REPLACE_INET_ATON" = x"yes"; then
686     AC_DEFINE(REPLACE_INET_ATON, 1, [Define to 1 if inet_aton() needs to be replaced])
687 fi
688
689 AC_CACHE_CHECK([if mknod creates FIFOs],rsync_cv_MKNOD_CREATES_FIFOS,[
690 AC_TRY_RUN([
691 #include <stdio.h>
692 #include <sys/stat.h>
693 #include <errno.h>
694 main() { int rc, ec; char *fn = "fifo-test";
695 unlink(fn); rc = mknod(fn,S_IFIFO,0600); ec = errno; unlink(fn);
696 if (rc) {printf("%d %d\n",rc,ec); return ec;}
697 return 0;}],
698            rsync_cv_MKNOD_CREATES_FIFOS=yes,rsync_cv_MKNOD_CREATES_FIFOS=no,rsync_cv_MKNOD_CREATES_FIFOS=cross)])
699 if test x"$rsync_cv_MKNOD_CREATES_FIFOS" = x"yes"; then
700     AC_DEFINE(MKNOD_CREATES_FIFOS, 1, [Define to 1 if mknod() can create FIFOs.])
701 fi
702
703 AC_CACHE_CHECK([if mknod creates sockets],rsync_cv_MKNOD_CREATES_SOCKETS,[
704 AC_TRY_RUN([
705 #include <stdio.h>
706 #include <sys/stat.h>
707 #include <errno.h>
708 main() { int rc, ec; char *fn = "sock-test";
709 unlink(fn); rc = mknod(fn,S_IFSOCK,0600); ec = errno; unlink(fn);
710 if (rc) {printf("%d %d\n",rc,ec); return ec;}
711 return 0;}],
712            rsync_cv_MKNOD_CREATES_SOCKETS=yes,rsync_cv_MKNOD_CREATES_SOCKETS=no,rsync_cv_MKNOD_CREATES_SOCKETS=cross)])
713 if test x"$rsync_cv_MKNOD_CREATES_SOCKETS" = x"yes"; then
714     AC_DEFINE(MKNOD_CREATES_SOCKETS, 1, [Define to 1 if mknod() can create sockets.])
715 fi
716
717 #
718 # The following test was mostly taken from the tcl/tk plus patches
719 #
720 AC_CACHE_CHECK([whether -c -o works],rsync_cv_DASHC_WORKS_WITH_DASHO,[
721 rm -rf conftest*
722 cat > conftest.$ac_ext <<EOF
723 int main() { return 0; }
724 EOF
725 ${CC-cc} -c -o conftest..o conftest.$ac_ext
726 if test -f conftest..o; then
727     rsync_cv_DASHC_WORKS_WITH_DASHO=yes
728 else
729     rsync_cv_DASHC_WORKS_WITH_DASHO=no
730 fi
731 rm -rf conftest*
732 ])
733 if test x"$rsync_cv_DASHC_WORKS_WITH_DASHO" = x"yes"; then
734     OBJ_SAVE="#"
735     OBJ_RESTORE="#"
736     CC_SHOBJ_FLAG='-o $@'
737 else
738     OBJ_SAVE='  @b=`basename $@ .o`;rm -f $$b.o.sav;if test -f $$b.o; then mv $$b.o $$b.o.sav;fi;'
739     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'
740     CC_SHOBJ_FLAG=""
741 fi
742
743 AC_SUBST(OBJ_SAVE)
744 AC_SUBST(OBJ_RESTORE)
745 AC_SUBST(CC_SHOBJ_FLAG)
746 AC_SUBST(BUILD_POPT)
747
748 AC_CONFIG_FILES([Makefile lib/dummy zlib/dummy popt/dummy shconfig])
749 AC_OUTPUT
750
751 AC_MSG_RESULT()
752 AC_MSG_RESULT([    rsync ${RSYNC_VERSION} configuration successful])
753 AC_MSG_RESULT()