mirror of
https://github.com/samba-team/samba.git
synced 2025-01-17 02:05:21 +03:00
370779a1bb
(This used to be ctdb commit 298118c41bd33acd1a34a35a71a28451a45390c5)
102 lines
3.2 KiB
Plaintext
102 lines
3.2 KiB
Plaintext
AC_CHECK_HEADERS([ifaddrs.h])
|
|
|
|
dnl Used when getifaddrs is not available
|
|
AC_CHECK_MEMBERS([struct sockaddr.sa_len],
|
|
[AC_DEFINE(HAVE_SOCKADDR_SA_LEN, 1, [Whether struct sockaddr has a sa_len member])],
|
|
[],
|
|
[#include <sys/socket.h>])
|
|
|
|
dnl test for getifaddrs and freeifaddrs
|
|
AC_CACHE_CHECK([for getifaddrs and freeifaddrs],samba_cv_HAVE_GETIFADDRS,[
|
|
AC_TRY_COMPILE([
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
#include <arpa/inet.h>
|
|
#include <ifaddrs.h>
|
|
#include <netdb.h>],
|
|
[
|
|
struct ifaddrs *ifp = NULL;
|
|
int ret = getifaddrs (&ifp);
|
|
freeifaddrs(ifp);
|
|
],
|
|
samba_cv_HAVE_GETIFADDRS=yes,samba_cv_HAVE_GETIFADDRS=no)])
|
|
if test x"$samba_cv_HAVE_GETIFADDRS" = x"yes"; then
|
|
AC_DEFINE(HAVE_GETIFADDRS,1,[Whether the system has getifaddrs])
|
|
AC_DEFINE(HAVE_FREEIFADDRS,1,[Whether the system has freeifaddrs])
|
|
AC_DEFINE(HAVE_STRUCT_IFADDRS,1,[Whether struct ifaddrs is available])
|
|
fi
|
|
|
|
##################
|
|
# look for a method of finding the list of network interfaces
|
|
#
|
|
# This tests need LIBS="$NSL_LIBS $SOCKET_LIBS"
|
|
#
|
|
old_LIBS=$LIBS
|
|
LIBS="$NSL_LIBS $SOCKET_LIBS"
|
|
iface=no;
|
|
##################
|
|
# look for a method of finding the list of network interfaces
|
|
iface=no;
|
|
AC_CACHE_CHECK([for iface getifaddrs],samba_cv_HAVE_IFACE_GETIFADDRS,[
|
|
SAVE_CPPFLAGS="$CPPFLAGS"
|
|
CPPFLAGS="$CPPFLAGS ${SAMBA_CONFIGURE_CPPFLAGS}"
|
|
AC_TRY_RUN([
|
|
#define NO_CONFIG_H 1
|
|
#define HAVE_IFACE_GETIFADDRS 1
|
|
#define AUTOCONF_TEST 1
|
|
#include "$libreplacedir/replace.c"
|
|
#include "$libreplacedir/getifaddrs.c"],
|
|
samba_cv_HAVE_IFACE_GETIFADDRS=yes,samba_cv_HAVE_IFACE_GETIFADDRS=no,samba_cv_HAVE_IFACE_GETIFADDRS=cross)])
|
|
CPPFLAGS="$SAVE_CPPFLAGS"
|
|
if test x"$samba_cv_HAVE_IFACE_GETIFADDRS" = x"yes"; then
|
|
iface=yes;AC_DEFINE(HAVE_IFACE_GETIFADDRS,1,[Whether iface getifaddrs is available])
|
|
else
|
|
LIBREPLACEOBJ="${LIBREPLACEOBJ} getifaddrs.o"
|
|
fi
|
|
|
|
|
|
if test $iface = no; then
|
|
AC_CACHE_CHECK([for iface AIX],samba_cv_HAVE_IFACE_AIX,[
|
|
AC_TRY_RUN([
|
|
#define HAVE_IFACE_AIX 1
|
|
#define AUTOCONF_TEST 1
|
|
#undef _XOPEN_SOURCE_EXTENDED
|
|
#include "$libreplacedir/getifaddrs.c"],
|
|
samba_cv_HAVE_IFACE_AIX=yes,samba_cv_HAVE_IFACE_AIX=no,samba_cv_HAVE_IFACE_AIX=cross)])
|
|
if test x"$samba_cv_HAVE_IFACE_AIX" = x"yes"; then
|
|
iface=yes;AC_DEFINE(HAVE_IFACE_AIX,1,[Whether iface AIX is available])
|
|
fi
|
|
fi
|
|
|
|
|
|
if test $iface = no; then
|
|
AC_CACHE_CHECK([for iface ifconf],samba_cv_HAVE_IFACE_IFCONF,[
|
|
AC_TRY_RUN([
|
|
#define HAVE_IFACE_IFCONF 1
|
|
#define AUTOCONF_TEST 1
|
|
#include "$libreplacedir/getifaddrs.c"],
|
|
samba_cv_HAVE_IFACE_IFCONF=yes,samba_cv_HAVE_IFACE_IFCONF=no,samba_cv_HAVE_IFACE_IFCONF=cross)])
|
|
if test x"$samba_cv_HAVE_IFACE_IFCONF" = x"yes"; then
|
|
iface=yes;AC_DEFINE(HAVE_IFACE_IFCONF,1,[Whether iface ifconf is available])
|
|
fi
|
|
fi
|
|
|
|
if test $iface = no; then
|
|
AC_CACHE_CHECK([for iface ifreq],samba_cv_HAVE_IFACE_IFREQ,[
|
|
AC_TRY_RUN([
|
|
#define HAVE_IFACE_IFREQ 1
|
|
#define AUTOCONF_TEST 1
|
|
#include "$libreplacedir/getifaddrs.c"],
|
|
samba_cv_HAVE_IFACE_IFREQ=yes,samba_cv_HAVE_IFACE_IFREQ=no,samba_cv_HAVE_IFACE_IFREQ=cross)])
|
|
if test x"$samba_cv_HAVE_IFACE_IFREQ" = x"yes"; then
|
|
iface=yes;AC_DEFINE(HAVE_IFACE_IFREQ,1,[Whether iface ifreq is available])
|
|
fi
|
|
fi
|
|
|
|
LIBS=$old_LIBS
|