1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-25 06:04:04 +03:00
Andreas Schneider 219505fed7 packaging: Remove SWAT references from RHEL-CTDB
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: David Disseldorp <ddiss@samba.org>
2017-05-10 03:26:15 +02:00

69 lines
1.3 KiB
Bash
Executable File

#!/bin/sh
case `uname -m` in
x86_64)
_libarch="/lib64"
;;
*)
_libarch="/lib"
;;
esac
_libarchdir=/usr${_libarch}
_prefix=/usr
_sysconfdir=/etc
_mandir=/usr/man
_datadir=/usr/share
# check for ccache
ccache -h 2>&1 > /dev/null
if [ $? -eq 0 ]; then
CC="ccache gcc"
else
CC="gcc"
fi
shared_modules="idmap_rid,idmap_ad,idmap_tdb2,idmap_rfc2307"
if test "x$BUILD_GPFS" != "xno"; then
shared_modules="${shared_modules},vfs_gpfs,vfs_tsmsm"
fi
./autogen.sh
CC="$CC" CFLAGS="-Wall -g -D_GNU_SOURCE -O3" ./configure -C \
--prefix=${_prefix} \
--localstatedir=/var \
--with-configdir=${_sysconfdir}/samba \
--libdir=${_libarchdir} \
--with-modulesdir=${_libarchdir}/samba \
--with-pammodulesdir=${_libarch}/security \
--with-lockdir=/var/lib/samba \
--with-logfilebase=/var/log/samba \
--mandir=${_mandir} \
--with-piddir=/var/run \
--with-privatedir=${_sysconfdir}/samba \
--disable-cups \
--with-acl-support \
--with-ads \
--with-automount \
--enable-fhs \
--with-libsmbclient \
--without-smbwrapper \
--with-pam \
--with-quotas \
--with-shared-modules=${shared_modules} \
--with-syslog \
--with-utmp \
--with-cluster-support \
--with-ctdb=/usr/include \
--without-ldb \
--without-dnsupdate \
--disable-external-libtalloc \
--disable-external-libtdb \
$*
make showlayout