mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
r6617: Let --enable-developer imply --enable-socket-wrapper
Add socket-wrapper-enabled test target and use that by
default when the socket wrapper was included
(This used to be commit d3b0ad8b4b
)
This commit is contained in:
parent
7285111162
commit
aed008c989
@ -150,9 +150,15 @@ pch_clean:
|
||||
|
||||
basics: idl proto_exists
|
||||
|
||||
test: all
|
||||
test: @DEFAULT_TEST_TARGET@
|
||||
|
||||
test-swrap: all
|
||||
export SOCKET_WRAPPER_DIR=.
|
||||
./script/tests/selftest.sh `pwd`/prefix-test
|
||||
|
||||
test-noswrap: all
|
||||
./script/tests/selftest.sh `pwd`/prefix-test
|
||||
|
||||
__EOD__
|
||||
|
||||
return $output;
|
||||
|
@ -1,5 +1,15 @@
|
||||
AC_ARG_ENABLE(socket-wrapper,
|
||||
[ --enable-socket-wrapper Turn on socket wrapper library (default=no)],
|
||||
[if eval "test x$enable_socket_wrapper = xyes"; then
|
||||
[ --enable-socket-wrapper Turn on socket wrapper library (default=no)])
|
||||
|
||||
DEFAULT_TEST_TARGET=test-noswrap
|
||||
|
||||
if eval "test x$developer = 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])
|
||||
fi])
|
||||
DEFAULT_TEST_TARGET=test-swrap
|
||||
fi
|
||||
|
||||
AC_SUBST(DEFAULT_TEST_TARGET)
|
||||
|
Loading…
Reference in New Issue
Block a user