Changeset 386 in openpam
- Timestamp:
- 04/12/06 10:26:27 (7 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
-
INSTALL (modified) (2 diffs)
-
Makefile.am (modified) (1 diff)
-
bin/Makefile.am (modified) (1 diff)
-
bin/su/Makefile.am (modified) (1 diff)
-
configure.ac (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/INSTALL
r385 r386 25 25 modules in the system library directory. 26 26 27 --with-pam-su28 Builds the sample PAM application.29 30 27 --with-pam-unix 31 28 Builds the sample PAM module. 29 30 --with-su 31 Builds the sample su(1) implementation. 32 32 33 33 For more information about configuration options, use the --help … … 36 36 A typical invocation might look like this: 37 37 38 # ./configure --with-pam- su --with-pam-unix38 # ./configure --with-pam-unix --with-su 39 39 40 40 3. COMPILATION -
trunk/Makefile.am
r320 r386 1 1 # $Id$ 2 2 3 SUBDIRS = lib bin modules doc include 3 SUBDIRS = lib bin modules include 4 5 if WITH_DOC 6 SUBDIRS += doc 7 endif 4 8 5 9 EXTRA_DIST = CREDITS HISTORY INSTALL LICENSE MANIFEST README RELNOTES -
trunk/bin/Makefile.am
r320 r386 1 1 # $Id$ 2 2 3 SUBDIRS = su 3 SUBDIRS = 4 5 if WITH_SU 6 SUBDIRS += su 7 endif -
trunk/bin/su/Makefile.am
r320 r386 3 3 INCLUDES = -I$(top_srcdir)/include 4 4 5 if WITH_PAM_SU6 5 bin_PROGRAMS = su 7 6 su_SOURCES = su.c 8 7 su_LDADD = $(top_builddir)/lib/libpam.la 9 endif -
trunk/configure.ac
r385 r386 51 51 AC_SUBST(OPENPAM_MODULES_DIR) 52 52 53 AC_MSG_CHECKING([whether to build example version of /bin/su])54 AC_ARG_WITH( pam-su,55 AC_HELP_STRING([--with- pam-su],56 [ compile example version of /bin/su]),53 AC_MSG_CHECKING([whether to build the documentation]) 54 AC_ARG_WITH(doc, 55 AC_HELP_STRING([--with-doc], 56 [build documentation]), 57 57 , 58 [with_ pam_su=no])59 AC_MSG_RESULT($with_pam_ su)58 [with_doc=yes]) 59 AC_MSG_RESULT($with_pam_unix) 60 60 61 61 AC_MSG_CHECKING([whether to build example version of pam_unix.so]) … … 67 67 AC_MSG_RESULT($with_pam_unix) 68 68 69 AM_CONDITIONAL(WITH_PAM_SU, test "x$with_pam_su" = "xyes") 69 AC_MSG_CHECKING([whether to build example version of su(1)]) 70 AC_ARG_WITH(su, 71 AC_HELP_STRING([--with-su], 72 [compile example version of su(1)]), 73 , 74 [with_su=no]) 75 AC_MSG_RESULT($with_su) 76 77 AM_CONDITIONAL(WITH_DOC, test "x$with_doc" = "xyes") 70 78 AM_CONDITIONAL(WITH_PAM_UNIX, test "x$with_pam_unix" = "xyes") 79 AM_CONDITIONAL(WITH_SU, test "x$with_su" = "xyes") 71 80 72 81 AC_PROG_INSTALL … … 90 99 AC_SUBST(CFLAGS) 91 100 92 AC_CONFIG_FILES([bin/Makefile 93 bin/su/Makefile 94 include/Makefile 95 include/security/Makefile 96 lib/Makefile 97 modules/Makefile 98 modules/pam_unix/Makefile 99 modules/pam_deny/Makefile 100 modules/pam_permit/Makefile 101 doc/Makefile 102 doc/man/Makefile 103 Makefile]) 101 AC_CONFIG_FILES([ 102 bin/Makefile 103 bin/su/Makefile 104 include/Makefile 105 include/security/Makefile 106 lib/Makefile 107 modules/Makefile 108 modules/pam_unix/Makefile 109 modules/pam_deny/Makefile 110 modules/pam_permit/Makefile 111 doc/Makefile 112 doc/man/Makefile 113 Makefile 114 ]) 104 115 AC_OUTPUT
Note: See TracChangeset
for help on using the changeset viewer.