remove useless calls
[catagits/fcgi2.git] / configure.in
1 dnl     $Id: configure.in,v 1.10 2001/09/21 22:54:28 skimo Exp $
2 dnl
3 dnl     This file is an input file used by the GNU "autoconf" program to
4 dnl     generate the file "configure", which is run during the build
5 dnl     to configure the system for the local environment.
6
7 AC_INIT
8 AM_INIT_AUTOMAKE(fcgi, 2.2.1)
9
10 AM_CONFIG_HEADER([include/fcgi_config.h])
11
12 AC_PROG_CC
13 AC_PROG_CPP 
14 AC_PROG_INSTALL 
15 AC_PROG_LIBTOOL
16
17 AC_CHECK_LIB([nsl],       [main]) ac_cv_lib_nsl=ac_cv_lib_nsl_main
18 AC_CHECK_LIB([resolv],    [main]) ac_cv_lib_resolv=ac_cv_lib_resolv_main
19 AC_CHECK_LIB([socket],    [main]) ac_cv_lib_socket=ac_cv_lib_socket_main
20 AC_CHECK_LIB([dnet_stub], [main]) ac_cv_lib_dnet_stub=ac_cv_lib_dnet_stub_main
21 AC_CHECK_LIB([ieee],      [main]) ac_cv_lib_ieee=ac_cv_lib_ieee_main
22
23 AC_SUBST(threaded)
24 AC_CHECK_LIB([pthread],   [main], 
25         [AC_DEFINE([HAVE_LIBPTHREAD], [1],
26                            [Define if you have the pthread library])
27          AC_SUBST([HAVE_LIBPTHREAD])
28          threaded=threaded]) 
29 ac_cv_lib_pthread=ac_cv_lib_pthread_main
30
31 FCGI_COMMON_CHECKS
32
33 AC_REPLACE_FUNCS([strerror])
34
35 AC_C_INLINE
36
37 #--------------------------------------------------------------------
38 #  This is a little hokie in that it avoids including config.guess
39 #  and config.sub in the distribution, but its been working so far.
40 #  Windows builds don't run configure so we should be safe fixing
41 #  this to 'unix' (at least for now).
42 #--------------------------------------------------------------------
43 SYSTEM=unix
44 AC_SUBST([SYSTEM])
45
46 if test "$GCC"; then
47         CCDEFS="$CCDEFS -Wall -Wmissing-prototypes"
48 fi
49
50 AC_SUBST([CCDEFS])
51
52 AC_CONFIG_FILES([Makefile 
53                  libfcgi/Makefile 
54                  cgi-fcgi/Makefile 
55                  examples/Makefile])
56
57 AC_OUTPUT