1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-14 19:24:43 +03:00
Michael Adam df3939da94 configure: put swat-part of config into m4-include file of its own.
Michael
(This used to be commit 622667c0790c0092bfceced8dc6fb05e781ac5e7)
2008-02-26 13:56:12 +01:00

28 lines
519 B
Plaintext

dnl
dnl Samba3 build environment SWAT configuration
dnl
dnl Copyright (C) Michael Adam 2008
dnl
dnl Released under the GNU General Public License
dnl http://www.gnu.org/licenses/
dnl
SWAT_SBIN_TARGETS='bin/swat$(EXEEXT)'
SWAT_INSTALL_TARGETS=installswat
AC_ARG_ENABLE(swat,
[AS_HELP_STRING([--enable-swat], [Build the SWAT tool (default=yes)])],
[
case "$enable_swat" in
no)
SWAT_SBIN_TARGETS=''
SWAT_INSTALL_TARGETS=''
;;
esac
])
AC_SUBST(SWAT_SBIN_TARGETS)
AC_SUBST(SWAT_INSTALL_TARGETS)