summaryrefslogtreecommitdiff
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 871968ad6..38afa3b4d 100644
--- a/configure.in
+++ b/configure.in
@@ -1186,7 +1186,7 @@ AC_ARG_WITH(default-path,
1186 [ --with-default-path=PATH Specify default \$PATH environment for server], 1186 [ --with-default-path=PATH Specify default \$PATH environment for server],
1187 [ 1187 [
1188 if test "x$withval" != "xno" ; then 1188 if test "x$withval" != "xno" ; then
1189 user_path="$withval" 1189 AC_DEFINE_UNQUOTED(USER_PATH, "$withval")
1190 SERVER_PATH_MSG="$withval" 1190 SERVER_PATH_MSG="$withval"
1191 fi 1191 fi
1192 ] 1192 ]
@@ -1530,6 +1530,7 @@ G=`eval echo ${piddir}` ; G=`eval echo ${G}`
1530echo "" 1530echo ""
1531echo "OpenSSH configured has been configured with the following options." 1531echo "OpenSSH configured has been configured with the following options."
1532echo " User binaries: $B" 1532echo " User binaries: $B"
1533echo " User binaries: $B"
1533echo " System binaries: $C" 1534echo " System binaries: $C"
1534echo " Configuration files: $D" 1535echo " Configuration files: $D"
1535echo " Askpass program: $E" 1536echo " Askpass program: $E"
@@ -1549,9 +1550,11 @@ echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
1549 1550
1550echo "" 1551echo ""
1551 1552
1552echo "Compiler flags: ${CFLAGS}" 1553echo " Host: ${host}"
1553echo "Linker flags: ${LDFLAGS}" 1554echo " Compiler: ${CC}"
1554echo "Libraries: ${LIBS}" 1555echo " Compiler flags: ${CFLAGS}"
1556echo " Linker flags: ${LDFLAGS}"
1557echo " Libraries: ${LIBS}"
1555 1558
1556echo "" 1559echo ""
1557 1560