- Timestamp:
- 2016-03-25T18:07:53Z (9 years ago)
- Branches:
- master
- Children:
- 64b4263
- Parents:
- a6005da
- git-author:
- Dennis Kaarsemaker <dennis@…> (23-02-16 19:14:57)
- git-committer:
- Dennis Kaarsemaker <dennis@…> (25-03-16 18:07:53)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
ra6005da r50bb490 53 53 54 54 pam=0 55 ldap=0 55 56 56 57 pie=1 … … 137 138 138 139 --pam=0/1 Disable/enable PAM authentication $pam 140 --ldap=0/1 Disable/enable LDAP authentication $ldap 139 141 140 142 --doc=0/1 Disable/enable help.txt generation $doc … … 645 647 authobjs=$authobjs'auth_pam.o ' 646 648 authlibs=$authlibs'-lpam ' 649 fi 650 if [ "$ldap" = 0 ]; then 651 echo '#undef WITH_LDAP' >> config.h 652 else 653 if ! echo '#include <ldap.h>' | $CC -E - >/dev/null 2>/dev/null; then 654 echo 'Cannot find libldap development libraries, aborting. (Install libldap2-dev?)' 655 exit 1 656 fi 657 echo '#define WITH_LDAP' >> config.h 658 authobjs=$authobjs'auth_ldap.o ' 659 authlibs=$authlibs'-lldap ' 647 660 fi 648 661 echo AUTH_OBJS=$authobjs >> Makefile.settings
Note: See TracChangeset
for help on using the changeset viewer.