mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
b93326b968
As far as I am aware, we do not actually build on any platforms that require this. The last Stratos VOS release on ftp://ftp.stratus.com/vos/samba/samba.html was 3.0.5 Andrew Bartlett
28 lines
510 B
Plaintext
28 lines
510 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'
|
|
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)
|
|
|