diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 76ac0e06c..9f5d11935 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.218 2004/05/23 04:09:40 djm Exp $ | 1 | # $Id: configure.ac,v 1.219 2004/05/31 04:38:51 tim Exp $ |
2 | # | 2 | # |
3 | # Copyright (c) 1999-2004 Damien Miller | 3 | # Copyright (c) 1999-2004 Damien Miller |
4 | # | 4 | # |
@@ -38,6 +38,13 @@ AC_PATH_PROG(TEST_MINUS_S_SH, ksh) | |||
38 | AC_PATH_PROG(TEST_MINUS_S_SH, sh) | 38 | AC_PATH_PROG(TEST_MINUS_S_SH, sh) |
39 | AC_PATH_PROG(SH, sh) | 39 | AC_PATH_PROG(SH, sh) |
40 | 40 | ||
41 | dnl for buildpkg.sh | ||
42 | AC_PATH_PROG(PATH_GROUPADD_PROG, groupadd, groupadd, | ||
43 | [/usr/sbin${PATH_SEPARATOR}/etc]) | ||
44 | AC_PATH_PROG(PATH_USERADD_PROG, useradd, useradd, | ||
45 | [/usr/sbin${PATH_SEPARATOR}/etc]) | ||
46 | AC_CHECK_PROG(MAKE_PACKAGE_SUPPORTED, pkgmk, yes, no) | ||
47 | |||
41 | # System features | 48 | # System features |
42 | AC_SYS_LARGEFILE | 49 | AC_SYS_LARGEFILE |
43 | 50 | ||
@@ -2908,7 +2915,7 @@ if test "$ac_cv_lib_pam_pam_set_item" = yes ; then | |||
2908 | fi | 2915 | fi |
2909 | 2916 | ||
2910 | AC_EXEEXT | 2917 | AC_EXEEXT |
2911 | AC_CONFIG_FILES([Makefile openbsd-compat/Makefile scard/Makefile ssh_prng_cmds]) | 2918 | AC_CONFIG_FILES([Makefile buildpkg.sh openbsd-compat/Makefile scard/Makefile ssh_prng_cmds]) |
2912 | AC_OUTPUT | 2919 | AC_OUTPUT |
2913 | 2920 | ||
2914 | # Print summary of options | 2921 | # Print summary of options |
@@ -2973,6 +2980,10 @@ echo " Libraries: ${LIBWRAP} ${LIBPAM} ${LIBS}" | |||
2973 | 2980 | ||
2974 | echo "" | 2981 | echo "" |
2975 | 2982 | ||
2983 | if test "x$MAKE_PACKAGE_SUPPORTED" = "xyes" ; then | ||
2984 | echo "SVR4 style packages are supported with \"make package\"\n" | ||
2985 | fi | ||
2986 | |||
2976 | if test "x$PAM_MSG" = "xyes" ; then | 2987 | if test "x$PAM_MSG" = "xyes" ; then |
2977 | echo "PAM is enabled. You may need to install a PAM control file " | 2988 | echo "PAM is enabled. You may need to install a PAM control file " |
2978 | echo "for sshd, otherwise password authentication may fail. " | 2989 | echo "for sshd, otherwise password authentication may fail. " |