Move AC_PROG_CC_C99 to immediately afer AC_PROG_CC.
This puts the related C version selection output in the same place.
This commit is contained in:
parent
e5591161f2
commit
771b7795c0
|
@ -20,15 +20,15 @@ AC_LANG([C])
|
||||||
|
|
||||||
AC_CONFIG_HEADERS([config.h])
|
AC_CONFIG_HEADERS([config.h])
|
||||||
AC_PROG_CC([cc gcc])
|
AC_PROG_CC([cc gcc])
|
||||||
AC_CANONICAL_HOST
|
|
||||||
AC_C_BIGENDIAN
|
|
||||||
AC_PROG_CC_C99
|
AC_PROG_CC_C99
|
||||||
|
|
||||||
# XXX relax this after reimplementing logit() etc.
|
# XXX relax this after reimplementing logit() etc.
|
||||||
if test "x$ac_cv_prog_cc_c99" = "xno" ; then
|
if test "x$ac_cv_prog_cc_c99" = "xno" ; then
|
||||||
AC_MSG_ERROR([*** OpenSSH requires a C99 capable compiler ***])
|
AC_MSG_ERROR([*** OpenSSH requires a C99 capable compiler ***])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
AC_CANONICAL_HOST
|
||||||
|
AC_C_BIGENDIAN
|
||||||
|
|
||||||
# Checks for programs.
|
# Checks for programs.
|
||||||
AC_PROG_AWK
|
AC_PROG_AWK
|
||||||
AC_PROG_CPP
|
AC_PROG_CPP
|
||||||
|
|
Loading…
Reference in New Issue