blob: 75960402053b6865dfc545f07527aa42b6c334eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
case `uname -m` in
x86_64)
libdir=/usr/lib64/samba
;;
*)
libdir=/usr/lib/samba
;;
esac
CFLAGS="-Wall -g -D_GNU_SOURCE" ./configure \
--prefix=/usr \
--localstatedir=/var \
--with-configdir=/etc/samba \
--with-libdir=$libdir \
--with-lockdir=/var/lib/samba \
--with-logfilebase=/var/log/samba \
--with-mandir=/usr/man \
--with-piddir=/var/run \
--with-privatedir=/etc/samba \
--with-sambabook=/usr/share/swat/using_samba \
--with-swatdir=/usr/share/swat \
--disable-cups \
--with-acl-support \
--with-ads \
--with-automount \
--with-fhs \
--with-pam_smbpass \
--with-libsmbclient \
--with-libsmbsharemodes \
--without-smbwrapper \
--with-pam \
--with-quotas \
--with-shared-modules=idmap_rid,idmap_ad,idmap_tdb2 \
--with-syslog \
--with-utmp \
--with-cluster-support \
--with-ctdb=/usr/include \
--without-ldb \
--without-dnsupdate \
--with-aio-support \
$*
|