mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
4d5471f1c6
Except in the formatting of the selftest output, this removes the special case of the build farm, so that an autobuild, a manual make test and the build farm are more similar. Andrew Bartlett Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Tue Aug 21 06:39:04 CEST 2012 on sn-devel-104
23 lines
635 B
Plaintext
23 lines
635 B
Plaintext
AC_ARG_ENABLE(socket-wrapper,
|
|
AS_HELP_STRING([--enable-socket-wrapper], [Turn on socket wrapper library (default=no)]))
|
|
|
|
DEFAULT_TEST_OPTIONS=
|
|
HAVE_SOCKET_WRAPPER=no
|
|
|
|
if eval "test x$developer = xyes -o x$selftest = xyes"; then
|
|
enable_socket_wrapper=yes
|
|
fi
|
|
|
|
if eval "test x$enable_socket_wrapper = xyes"; then
|
|
AC_DEFINE(SOCKET_WRAPPER,1,[Use socket wrapper library])
|
|
DEFAULT_TEST_OPTIONS=--socket-wrapper
|
|
HAVE_SOCKET_WRAPPER=yes
|
|
|
|
# this is only used for samba3
|
|
SOCKET_WRAPPER_OBJS="../lib/socket_wrapper/socket_wrapper.o"
|
|
fi
|
|
|
|
AC_SUBST(DEFAULT_TEST_OPTIONS)
|
|
AC_SUBST(HAVE_SOCKET_WRAPPER)
|
|
AC_SUBST(SOCKET_WRAPPER_OBJS)
|