- Timestamp:
- 2016-03-25T18:07:53Z (9 years ago)
- Branches:
- master
- Children:
- 50bb490
- Parents:
- 8e6ecfe
- git-author:
- Dennis Kaarsemaker <dennis@…> (23-02-16 18:52:32)
- git-committer:
- Dennis Kaarsemaker <dennis@…> (25-03-16 18:07:53)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
r8e6ecfe ra6005da 52 52 ssl=auto 53 53 54 pam=0 55 54 56 pie=1 55 57 … … 133 135 --purple=0/1 Disable/enable libpurple support $purple 134 136 (automatically disables other protocol modules) 137 138 --pam=0/1 Disable/enable PAM authentication $pam 135 139 136 140 --doc=0/1 Disable/enable help.txt generation $doc … … 631 635 authobjs= 632 636 authlibs= 637 if [ "$pam" = 0 ]; then 638 echo '#undef WITH_PAM' >> config.h 639 else 640 if ! echo '#include <security/pam_appl.h>' | $CC -E - >/dev/null 2>/dev/null; then 641 echo 'Cannot find libpam development libraries, aborting. (Install libpam0g-dev?)' 642 exit 1 643 fi 644 echo '#define WITH_PAM' >> config.h 645 authobjs=$authobjs'auth_pam.o ' 646 authlibs=$authlibs'-lpam ' 647 fi 633 648 echo AUTH_OBJS=$authobjs >> Makefile.settings 634 649 echo EFLAGS+=$authlibs >> Makefile.settings
Note: See TracChangeset
for help on using the changeset viewer.