summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-10-02 21:42:15 +1100
committerDamien Miller <djm@mindrot.org>2000-10-02 21:42:15 +1100
commite68f92bbf3241b00b4e16bda5f077843078587f6 (patch)
tree05f0a2e20aa90ab17a8d2aa2a39fc89669da5183 /configure.in
parent05dd7950f9b05db92e138d3ddb0bdec7636000e2 (diff)
- (djm) Add host system and CC to end-of-configure report. Suggested by
Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in11
1 files changed, 7 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index 871968ad..38afa3b4 100644
--- a/configure.in
+++ b/configure.in
@@ -1186,7 +1186,7 @@ AC_ARG_WITH(default-path,
[ --with-default-path=PATH Specify default \$PATH environment for server],
[
if test "x$withval" != "xno" ; then
- user_path="$withval"
+ AC_DEFINE_UNQUOTED(USER_PATH, "$withval")
SERVER_PATH_MSG="$withval"
fi
]
@@ -1530,6 +1530,7 @@ G=`eval echo ${piddir}` ; G=`eval echo ${G}`
echo ""
echo "OpenSSH configured has been configured with the following options."
echo " User binaries: $B"
+echo " User binaries: $B"
echo " System binaries: $C"
echo " Configuration files: $D"
echo " Askpass program: $E"
@@ -1549,9 +1550,11 @@ echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
echo ""
-echo "Compiler flags: ${CFLAGS}"
-echo "Linker flags: ${LDFLAGS}"
-echo "Libraries: ${LIBS}"
+echo " Host: ${host}"
+echo " Compiler: ${CC}"
+echo " Compiler flags: ${CFLAGS}"
+echo " Linker flags: ${LDFLAGS}"
+echo " Libraries: ${LIBS}"
echo ""