mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +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
20 lines
496 B
Plaintext
20 lines
496 B
Plaintext
AC_ARG_ENABLE(uid-wrapper,
|
|
AS_HELP_STRING([--enable-uid-wrapper], [Turn on uid wrapper library (default=no)]))
|
|
|
|
HAVE_UID_WRAPPER=no
|
|
|
|
if eval "test x$developer = xyes -o x$selftest = xyes"; then
|
|
enable_uid_wrapper=yes
|
|
fi
|
|
|
|
if eval "test x$enable_uid_wrapper = xyes"; then
|
|
AC_DEFINE(UID_WRAPPER,1,[Use uid wrapper library])
|
|
HAVE_UID_WRAPPER=yes
|
|
|
|
# this is only used for samba3
|
|
UID_WRAPPER_OBJS="../lib/uid_wrapper/uid_wrapper.o"
|
|
fi
|
|
|
|
AC_SUBST(HAVE_UID_WRAPPER)
|
|
AC_SUBST(UID_WRAPPER_OBJS)
|