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

This commit is contained in:
tbbulloc 2007-06-03 22:22:23 +00:00
부모 05f225d006
커밋 88e1668735
2개의 변경된 파일9개의 추가작업 그리고 3개의 파일을 삭제

파일 보기

@ -1,3 +1,8 @@
2007-06-03 Ted Bullock <tbullock@canada.com>
* configure.ac: Remove uneccessary configuration cruft and configure httperf
to be built in c99 mode
2007-05-27 Ted Bullock <tbullock@canada.com>
* man/httperf.1: Fixed man page typo for --wset option (needed --uri, not --wset)

파일 보기

@ -21,11 +21,13 @@ fi
# Checks for programs.
AC_GNU_SOURCE
AC_PROG_CC([cc gcc])
AC_PROG_CC_C99
AC_PROG_INSTALL
AC_PROG_LIBTOOL
AC_PROG_GCC_TRADITIONAL
# Checks for libraries.
AC_CHECK_LIB(event, event_init)
AC_CHECK_LIB(m, sqrt)
AC_CHECK_LIB(crypto, main)
AC_CHECK_LIB(ssl, SSL_version)
@ -36,7 +38,7 @@ AC_CHECK_LIB(resolv, inet_aton)
# Checks for header files.
AC_FUNC_ALLOCA
AC_HEADER_STDC
AC_HEADER_TIME
AC_CHECK_HEADERS([arpa/inet.h fcntl.h float.h libintl.h netdb.h netinet/in.h stdlib.h string.h sys/ioctl.h sys/socket.h sys/time.h unistd.h openssl/ssl.h getopt.h])
if test "$ac_cv_header_openssl_ssl_h" = "yes" \
@ -50,7 +52,6 @@ fi
AC_C_CONST
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_HEADER_TIME
AC_CHECK_TYPE(u_char, unsigned char)
AC_CHECK_TYPE(u_short, unsigned short)
AC_CHECK_TYPE(u_int, unsigned int)