Last change
on this file since 1036 was 988, checked in by Silvan Scherrer, 9 years ago |
Samba Server: update vendor to version 4.4.3
|
File size:
431 bytes
|
Line | |
---|
1 | #!/bin/sh
|
---|
2 |
|
---|
3 | if gcc -dM -E - </dev/null | grep -Eq '__(x86_64|powerpc64)__' ; then
|
---|
4 | _libdir=/usr/lib64
|
---|
5 | else
|
---|
6 | _libdir=/usr/lib
|
---|
7 | fi
|
---|
8 |
|
---|
9 | CFLAGS="-Wall -g -D_GNU_SOURCE" ./configure \
|
---|
10 | --builtin-libraries=replace,popt \
|
---|
11 | --bundled-libraries=!talloc,!tevent,!tdb \
|
---|
12 | --minimum-library-version=talloc:2.0.8,tdb:1.2.11,tevent:0.9.16 \
|
---|
13 | --prefix=/usr \
|
---|
14 | --libdir=${_libdir} \
|
---|
15 | --sysconfdir=/etc \
|
---|
16 | --mandir=/usr/man \
|
---|
17 | --localstatedir=/var \
|
---|
18 | $*
|
---|
Note:
See
TracBrowser
for help on using the repository browser.