| Revision 7f65c0e,
835 bytes
checked in by Jim Gifford <clfs@…>, 7 years ago
(diff) |
r625@server (orig r623): jim | 2005-10-31 12:43:24 -0800
Final Move
|
-
Property mode set to
100755
|
| 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.