diff options
author | Damien Miller <djm@mindrot.org> | 2000-10-02 21:42:15 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-10-02 21:42:15 +1100 |
commit | e68f92bbf3241b00b4e16bda5f077843078587f6 (patch) | |
tree | 05f0a2e20aa90ab17a8d2aa2a39fc89669da5183 /configure.in | |
parent | 05dd7950f9b05db92e138d3ddb0bdec7636000e2 (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.in | 11 |
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}` | |||
1530 | echo "" | 1530 | echo "" |
1531 | echo "OpenSSH configured has been configured with the following options." | 1531 | echo "OpenSSH configured has been configured with the following options." |
1532 | echo " User binaries: $B" | 1532 | echo " User binaries: $B" |
1533 | echo " User binaries: $B" | ||
1533 | echo " System binaries: $C" | 1534 | echo " System binaries: $C" |
1534 | echo " Configuration files: $D" | 1535 | echo " Configuration files: $D" |
1535 | echo " Askpass program: $E" | 1536 | echo " Askpass program: $E" |
@@ -1549,9 +1550,11 @@ echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG" | |||
1549 | 1550 | ||
1550 | echo "" | 1551 | echo "" |
1551 | 1552 | ||
1552 | echo "Compiler flags: ${CFLAGS}" | 1553 | echo " Host: ${host}" |
1553 | echo "Linker flags: ${LDFLAGS}" | 1554 | echo " Compiler: ${CC}" |
1554 | echo "Libraries: ${LIBS}" | 1555 | echo " Compiler flags: ${CFLAGS}" |
1556 | echo " Linker flags: ${LDFLAGS}" | ||
1557 | echo " Libraries: ${LIBS}" | ||
1555 | 1558 | ||
1556 | echo "" | 1559 | echo "" |
1557 | 1560 | ||