r3961 - branches/2.0/varnish-cache

tfheen at projects.linpro.no tfheen at projects.linpro.no
Thu Mar 19 14:02:36 CET 2009


Author: tfheen
Date: 2009-03-19 14:02:36 +0100 (Thu, 19 Mar 2009)
New Revision: 3961

Modified:
   branches/2.0/varnish-cache/configure.ac
Log:
Merge r3785: Make sure we have a C99 compiler



Modified: branches/2.0/varnish-cache/configure.ac
===================================================================
--- branches/2.0/varnish-cache/configure.ac	2009-03-19 12:58:39 UTC (rev 3960)
+++ branches/2.0/varnish-cache/configure.ac	2009-03-19 13:02:36 UTC (rev 3961)
@@ -15,6 +15,10 @@
 # Checks for programs.
 AC_GNU_SOURCE
 AC_PROG_CC
+AC_PROG_CC_STDC
+if test "x$ac_cv_prog_cc_c99" = xno; then
+  AC_MSG_ERROR([Could not find a C99 compatible compiler])
+fi
 AC_PROG_CPP
 AC_PROG_INSTALL
 AC_PROG_LIBTOOL



More information about the varnish-commit mailing list