search for: rsync_cv_have_getaddr_defines

Displaying 4 results from an estimated 4 matches for "rsync_cv_have_getaddr_defines".

2015 Apr 08
10
Build-system cleanups
Hi everyone Following are a number of build-system cleanup patches. Some of them are prep-work for a possible upcoming automake/gnulib introduction. Best regards, Tiziano
2004 Mar 24
2
./configure hang in 2.6.0
Hi, I tried to run configure for rsync 2.6.0 on a Debian stable system. It hangs on configure line 7842 : if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "yes" >/dev/null 2>&1; then rsync_cv_HAVE_GETADDR_DEFINES=yes else rsync_cv_HAVE_GETADDR_DEFINES=no fi EGREP seems to be null and the yes command is executed forever. I replaced $EGREP with egrep and it works as expected. I hope it can help. Nicolas.
2003 Feb 22
1
rsync ported to BeOS-bone
...network libs + # which contains them, but in a mangled form. + # FIXME: do a cleaner check (don't know autoconf enough) + AC_CHECK_LIB(bind, __inet_ntop) + # FIXME: define it as available on success +fi dnl AC_MSG_NOTICE([Looking in libraries: $LIBS]) @@ -349,7 +359,10 @@ #endif], rsync_cv_HAVE_GETADDR_DEFINES=yes, rsync_cv_HAVE_GETADDR_DEFINES=no)]) -if test x"$rsync_cv_HAVE_GETADDR_DEFINES" = x"yes"; then + +AC_CHECK_LIB(bind, getaddrinfo) + +if test x"$rsync_cv_HAVE_GETADDR_DEFINES" = x"yes" -a x"$rsync_cv_HAVE_GETADDRINFO" = x"no"; then...
2015 Apr 08
0
[PATCH 04/10] Use AC_CONFIG_LIBOBJ_DIR and AC_REPLACE_FUNCS to adhere to autoconf standards
..., , [AC_LIBOBJ(lib/inet_ntop)]) -AC_CHECK_FUNCS(inet_pton, , [AC_LIBOBJ(lib/inet_pton)]) +AC_REPLACE_FUNCS([inet_ntop inet_pton]) AC_HAVE_TYPE([struct addrinfo], [#include <netdb.h>]) AC_HAVE_TYPE([struct sockaddr_storage], [#include <sys/types.h> @@ -521,9 +524,9 @@ if test x"$rsync_cv_HAVE_GETADDR_DEFINES" = x"yes" -a x"$ac_cv_type_struct_addri AC_DEFINE(HAVE_GETADDRINFO, 1, [Define to 1 if you have the "getaddrinfo" function and required types.])], [AC_MSG_RESULT([no]) - AC_LIBOBJ(lib/getaddrinfo)])]) + AC_LIBOBJ(getaddrinfo)])]) else - AC_LIBOBJ(lib/...