X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/42d0b4c280dfbc2a557e84528ac176d652d3b5e6..23bf32f767246a88d0689c05c9a45d92f3931634:/configure.in diff --git a/configure.in b/configure.in index dfd0244c..33ef7a3b 100644 --- a/configure.in +++ b/configure.in @@ -5,7 +5,7 @@ AC_CONFIG_SRCDIR([byteorder.h]) AC_CONFIG_HEADER(config.h) AC_PREREQ(2.52) -RSYNC_VERSION=2.5.1pre1 +RSYNC_VERSION=2.5.1pre3 AC_SUBST(RSYNC_VERSION) AC_MSG_NOTICE([Configuring rsync $RSYNC_VERSION]) @@ -43,7 +43,7 @@ then else AC_MSG_RESULT([yes]) # leave CFLAGS alone; AC_PROG_CC will try to include -g if it can - AC_DEFINE(DEBUG, 1, [Define to turn on debugging code that may slow normal operation]) + dnl AC_DEFINE(DEBUG, 1, [Define to turn on debugging code that may slow normal operation]) dnl CFLAGS=${CFLAGS-"-g"} fi @@ -284,6 +284,14 @@ AC_CHECK_MEMBER([struct sockaddr.sa_len], #include ]) +AC_MSG_CHECKING(struct sockaddr_storage) +AC_TRY_COMPILE([#include +#include ], +[struct sockaddr_storage x;], + AC_MSG_RESULT(yes) + AC_DEFINE(HAVE_SOCKADDR_STORAGE), + AC_MSG_RESULT(no)) + # if we can't find strcasecmp, look in -lresolv (for Unixware at least) # AC_CHECK_FUNCS(strcasecmp)