Changeset 43

Show
Ignore:
Timestamp:
02/27/2005 10:10:01 PM (4 years ago)
Author:
jan
Message:

added check for libfcgi to build special test-cases

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/configure.in

    r30 r43  
    354354AM_CONDITIONAL(CROSS_COMPILING, test "x$cross_compiling" = xyes) 
    355355 
     356dnl check for fastcgi lib, for the tests only 
     357fastcgi_found=no 
     358AC_CHECK_LIB(fcgi, FCGI_Accept, [ 
     359 AC_CHECK_HEADERS([fastcgi.h],[ 
     360   fastcgi_found=yes 
     361 ]) 
     362]) 
     363 
     364AM_CONDITIONAL(CHECK_WITH_FASTCGI, test "x$fastcgi_found" = xyes) 
     365 
    356366if test "${GCC}" = "yes"; then 
    357367       CFLAGS="${CFLAGS} -Wall -W -Wshadow -pedantic"