r3785 - trunk/varnish-cache
    tfheen at projects.linpro.no 
    tfheen at projects.linpro.no
       
    Wed Feb 18 09:15:44 CET 2009
    
    
  
Author: tfheen
Date: 2009-02-18 09:15:44 +0100 (Wed, 18 Feb 2009)
New Revision: 3785
Modified:
   trunk/varnish-cache/configure.ac
Log:
Make sure we have a C99 compiler
Modified: trunk/varnish-cache/configure.ac
===================================================================
--- trunk/varnish-cache/configure.ac	2009-02-17 17:10:29 UTC (rev 3784)
+++ trunk/varnish-cache/configure.ac	2009-02-18 08:15:44 UTC (rev 3785)
@@ -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