summaryrefslogtreecommitdiff
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
parent05dd7950f9b05db92e138d3ddb0bdec7636000e2 (diff)
- (djm) Add host system and CC to end-of-configure report. Suggested by
Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
-rw-r--r--ChangeLog5
-rw-r--r--configure.in11
2 files changed, 12 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index e9969c2e2..6260a4c63 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
120001002
2 - (djm) Fix USER_PATH, report from Kevin Steves <stevesk@sweden.hp.com>
3 - (djm) Add host system and CC to end-of-configure report. Suggested by
4 Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
5
120000931 620000931
2 - (djm) Cygwin fixes from Corinna Vinschen <vinschen@cygnus.com> 7 - (djm) Cygwin fixes from Corinna Vinschen <vinschen@cygnus.com>
3 8
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