Changeset 623 in openpam
- Timestamp:
- Feb 25, 2013, 7:24:51 AM (8 years ago)
- Location:
- trunk
- Files:
-
- 9 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/CREDITS
r587 r623 22 22 Emmanuel Dreyfus <manu@netbsd.org> 23 23 Eric Melville <eric@freebsd.org> 24 Espen Grøndahl <espegro@usit.uio.no> 24 25 Gary Winiger <gary.winiger@sun.com> 25 26 Gleb Smirnoff <glebius@freebsd.org> -
trunk/Makefile.am
-
Property
svn:eol-style
set to
native
-
Property
svn:eol-style
set to
-
trunk/autogen.des
r468 r623 14 14 --with-doc \ 15 15 --with-pam-unix \ 16 --with-pam-oath \ 16 17 --with-pamtest \ 17 18 --with-su \ -
trunk/configure.ac
r616 r623 65 65 66 66 AC_ARG_WITH([pam-unix], 67 AC_HELP_STRING([--with-pam-unix], [compile sample pam_unix(8) implementation]),67 AC_HELP_STRING([--with-pam-unix], [compile sample pam_unix(8) module]), 68 68 [], 69 69 [with_pam_unix=no]) 70 70 AM_CONDITIONAL([WITH_PAM_UNIX], [test x"$with_pam_unix" = x"yes"]) 71 72 AC_ARG_WITH([pam-oath], 73 AC_HELP_STRING([--with-pam-oath], [compile pam_oath(8) module]), 74 [], 75 [with_pam_oath=no]) 76 AM_CONDITIONAL([WITH_PAM_OATH], [test x"$with_pam_oath" = x"yes"]) 71 77 72 78 AC_ARG_WITH(pamtest, … … 100 106 AC_SUBST(CRYPT_LIBS) 101 107 108 saved_LIBS="${LIBS}" 109 LIBS="" 110 AC_CHECK_LIB([crypto], [OpenSSL_add_all_algorithms]) 111 CRYPTO_LIBS="${LIBS}" 112 LIBS="${saved_LIBS}" 113 AC_SUBST(CRYPTO_LIBS) 114 102 115 AC_ARG_ENABLE([developer-warnings], 103 116 AS_HELP_STRING([--enable-developer-warnings], [enable strict warnings (default is NO)]), … … 125 138 modules/pam_permit/Makefile 126 139 modules/pam_unix/Makefile 140 modules/pam_oath/Makefile 127 141 t/Makefile 128 142 ]) -
trunk/modules/Makefile.am
r320 r623 1 1 # $Id$ 2 2 3 SUBDIRS = pam_unix pam_deny pam_permit 3 SUBDIRS = pam_deny pam_permit 4 SUBDIRS += pam_unix 5 SUBDIRS += pam_oath
Note: See TracChangeset
for help on using the changeset viewer.