[openssh-commits] [openssh] 02/03: Move AC_PROG_CC_C99 to immediately afer AC_PROG_CC.
git+noreply at mindrot.org
git+noreply at mindrot.org
Fri Nov 6 14:05:08 AEDT 2020
This is an automated email from the git hooks/post-receive script.
dtucker pushed a commit to branch master
in repository openssh.
commit 771b7795c0ef6a2fb43b4c6c66b615c2085cb9cd
Author: Darren Tucker <dtucker at dtucker.net>
Date: Fri Nov 6 13:55:33 2020 +1100
Move AC_PROG_CC_C99 to immediately afer AC_PROG_CC.
This puts the related C version selection output in the same place.
---
configure.ac | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/configure.ac b/configure.ac
index 40977a1d..d1dc651e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,15 +20,15 @@ AC_LANG([C])
AC_CONFIG_HEADERS([config.h])
AC_PROG_CC([cc gcc])
-AC_CANONICAL_HOST
-AC_C_BIGENDIAN
AC_PROG_CC_C99
-
# XXX relax this after reimplementing logit() etc.
if test "x$ac_cv_prog_cc_c99" = "xno" ; then
AC_MSG_ERROR([*** OpenSSH requires a C99 capable compiler ***])
fi
+AC_CANONICAL_HOST
+AC_C_BIGENDIAN
+
# Checks for programs.
AC_PROG_AWK
AC_PROG_CPP
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list