mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
lib/socket: remove unused configure checks for HAVE_SOCK_SIN_LEN and HAVE_UNIXSOCKET and rely on libreplace
metze
(This used to be commit 5de605bb2e
)
This commit is contained in:
parent
a65e5994ad
commit
c7c9aa7e7a
@ -1,34 +1,12 @@
|
||||
AC_CHECK_FUNCS(writev)
|
||||
AC_CHECK_FUNCS(readv)
|
||||
|
||||
AC_CACHE_CHECK([for sin_len in sock],samba_cv_HAVE_SOCK_SIN_LEN,[
|
||||
AC_TRY_COMPILE([#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
#include <netinet/in.h>],
|
||||
[struct sockaddr_in sock; sock.sin_len = sizeof(sock);],
|
||||
samba_cv_HAVE_SOCK_SIN_LEN=yes,samba_cv_HAVE_SOCK_SIN_LEN=no)])
|
||||
if test x"$samba_cv_HAVE_SOCK_SIN_LEN" = x"yes"; then
|
||||
AC_DEFINE(HAVE_SOCK_SIN_LEN,1,[Whether the sockaddr_in struct has a sin_len property])
|
||||
fi
|
||||
|
||||
############################################
|
||||
# check for unix domain sockets
|
||||
AC_CACHE_CHECK([for unix domain sockets],samba_cv_unixsocket, [
|
||||
AC_TRY_COMPILE([
|
||||
#include <sys/types.h>
|
||||
#include <stdlib.h>
|
||||
#include <stddef.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/un.h>],
|
||||
[
|
||||
struct sockaddr_un sunaddr;
|
||||
sunaddr.sun_family = AF_UNIX;
|
||||
],
|
||||
samba_cv_unixsocket=yes,samba_cv_unixsocket=no)])
|
||||
# done by AC_LIBREPLACE_NETWORK_CHECKS
|
||||
SMB_ENABLE(socket_unix, NO)
|
||||
if test x"$samba_cv_unixsocket" = x"yes"; then
|
||||
SMB_ENABLE(socket_unix, YES)
|
||||
AC_DEFINE(HAVE_UNIXSOCKET,1,[If we need to build with unixscoket support])
|
||||
if test x"$libreplace_cv_HAVE_UNIXSOCKET" = x"yes"; then
|
||||
SMB_ENABLE(socket_unix, YES)
|
||||
fi
|
||||
|
||||
dnl test for ipv6 using the gethostbyname2() function. That should be sufficient
|
||||
|
Loading…
Reference in New Issue
Block a user