From: Simon Ruderich Date: Sun, 6 Mar 2011 15:21:22 +0000 (+0100) Subject: configure.ac: Simpler check for libraries. X-Git-Tag: 0.1~34 X-Git-Url: https://ruderich.org/simon/gitweb/?p=tlsproxy%2Ftlsproxy.git;a=commitdiff_plain;h=e0764efac7e88922073ffd4b148cc1f0646e7bcb configure.ac: Simpler check for libraries. --- diff --git a/configure.ac b/configure.ac index e52a12e..82957a7 100644 --- a/configure.ac +++ b/configure.ac @@ -12,15 +12,10 @@ if test "x$GCC" = xyes; then CFLAGS="-std=c89 -pedantic -Wall -Wextra -Werror -D_XOPEN_SOURCE=500 $CFLAGS" fi -AC_CHECK_LIB([pthread], [pthread_create]) -if test "x$ac_cv_lib_pthread_pthread_create" != xyes; then - AC_MSG_ERROR([pthread is required]) -fi - -AC_CHECK_LIB([gnutls], [gnutls_certificate_verify_peers2]) -if test "x$ac_cv_lib_gnutls_gnutls_certificate_verify_peers2" != xyes; then - AC_MSG_ERROR([GnuTLS is required]) -fi +AC_CHECK_LIB([pthread], [pthread_create], + [], [AC_MSG_ERROR([pthread is required])]) +AC_CHECK_LIB([gnutls], [gnutls_certificate_verify_peers2], + [], [AC_MSG_ERROR([GnuTLS is required])]) AC_ARG_ENABLE([debug], [AC_HELP_STRING([--enable-debug], [enable debug output])],