Browse Source

configure.ac: Add configuration to use libevent

ahc_fix_select
tbbulloc 17 years ago
parent
commit
deda4ab702
2 changed files with 11 additions and 6 deletions
  1. +5
    -1
      httperf/ChangeLog
  2. +6
    -5
      httperf/configure.ac

+ 5
- 1
httperf/ChangeLog View File

@@ -1,6 +1,10 @@
2007-06-03 Ted Bullock <tbullock@canada.com>

* configure.ac: Remove uneccessary configuration cruft and configure httperf
* configure.ac: Add configuration to use libevent

2007-06-03 Ted Bullock <tbullock@canada.com>

* configure.ac: Remove unnecessary configuration cruft and configure httperf
to be built in c99 mode

2007-05-27 Ted Bullock <tbullock@canada.com>


+ 6
- 5
httperf/configure.ac View File

@@ -27,14 +27,15 @@ AC_PROG_INSTALL
AC_PROG_LIBTOOL

# Checks for libraries.
AC_CHECK_LIB(event, event_init)
AC_CHECK_LIB(event, event_init, , AC_MSG_ERROR([libevent is required to build httperf]) )
AC_CHECK_LIB(m, sqrt)
AC_CHECK_LIB(crypto, main)
AC_CHECK_LIB(ssl, SSL_version)
AC_CHECK_LIB(ssl, SSL_version, , AC_MSG_WARN([SSL Disabled]), [-lcrypto -ldl -lz] )
# The following checks are for solaris and its ilk
AC_CHECK_LIB(socket, getsockopt)
AC_CHECK_LIB(nsl, socket)
AC_CHECK_LIB(resolv, inet_aton)
AC_SEARCH_LIBS([getsockopt], [socket])
AC_SEARCH_LIBS([socket], [socket nsl])
AC_SEARCH_LIBS([gethostbyname], [socket nsl])
AC_SEARCH_LIBS([inet_aton], [resolv])

# Checks for header files.
AC_FUNC_ALLOCA


Loading…
Cancel
Save