clfs-1.2
clfs-2.1
clfs-3.0.0-systemd
clfs-3.0.0-sysvinit
systemd
sysvinit
Last change
on this file since 60454e2 was 617118d, checked in by Jim Gifford <clfs@…>, 19 years ago |
r561@server (orig r559): root | 2005-06-05 02:38:49 -0700
Fixed Directory Structure
|
-
Property mode
set to
100755
|
File size:
835 bytes
|
Line | |
---|
1 | #!/bin/sh
|
---|
2 | #
|
---|
3 | # NSS LDAP
|
---|
4 | #
|
---|
5 | cd ${SRC}
|
---|
6 | LOG=nssldap-blfs.log
|
---|
7 | SELF=`basename ${0}`
|
---|
8 | set_buildenv
|
---|
9 | set_libdirname
|
---|
10 | setup_multiarch
|
---|
11 | if [ ! "${libdirname}" = "lib" ]; then
|
---|
12 | extra_conf="--libdir=/${libdirname}"
|
---|
13 | fi
|
---|
14 |
|
---|
15 | # hmmm, tarball has no version...
|
---|
16 | unpack_tarball nss_ldap &&
|
---|
17 | cd ${PKGDIR}
|
---|
18 |
|
---|
19 | max_log_init nss_ldap ${NSSLDAP_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
|
---|
20 | CC="${CC-gcc} ${ARCH_CFLAGS}" \
|
---|
21 | CFLAGS="${TGT_CFLAGS}" \
|
---|
22 | ./configure --enable-threads ${extra_conf} \
|
---|
23 | --enable-rfc2307bis \
|
---|
24 | --enable-schema-mapping \
|
---|
25 | --enable-paged-results \
|
---|
26 | --enable-configurable-krb5ccname-gssapi \
|
---|
27 | >> ${LOGFILE} 2>&1 &&
|
---|
28 | echo " o Configure OK" &&
|
---|
29 |
|
---|
30 | min_log_init ${BUILDLOGS} &&
|
---|
31 | make ${PMFLAGS} LDFLAGS="-s" \
|
---|
32 | >> ${LOGFILE} 2>&1 &&
|
---|
33 | echo " o Build OK" &&
|
---|
34 |
|
---|
35 | min_log_init ${INSTLOGS} &&
|
---|
36 | make install \
|
---|
37 | >> ${LOGFILE} 2>&1 &&
|
---|
38 | echo " o ALL OK" || barf
|
---|
39 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.