mirror of
https://github.com/samba-team/samba.git
synced 2025-01-14 19:24:43 +03:00
848329b9a0
can be enabled on the buildfarm without requiring --enable-developer - Support tcp and udp being used on the same port - FIx some portability issues (should fix the build on some hosts on the buildfarm) - Ignore setting TCP_NODELAY on (semi-)TCP sockets rather then complain about it not being supported (saves us from a couple of error messages for each connection that is opened) (This used to be commit 443fb7853b8d3cb516c442fdc595038544b75738)
6 lines
243 B
Plaintext
6 lines
243 B
Plaintext
AC_ARG_ENABLE(socket-wrapper,
|
|
[ --enable-socket-wrapper Turn on socket wrapper library (default=no)],
|
|
[if eval "test x$enable_socket_wrapper = xyes"; then
|
|
AC_DEFINE(SOCKET_WRAPPER,1,[Use socket wrapper library])
|
|
fi])
|