]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/blobdiff - configure.ac
src/connection.c: Move path related defines to tlsproxy.h.
[tlsproxy/tlsproxy.git] / configure.ac
index e52a12e702b4fe241384d36c4cb1a7b5fdd00270..9ca7e3950256102807c43a98b206cadc17c0872a 100644 (file)
@@ -9,18 +9,14 @@ AM_INIT_AUTOMAKE([foreign -Wall -Werror])
 AC_PROG_CC
 
 if test "x$GCC" = xyes; then
-    CFLAGS="-std=c89 -pedantic -Wall -Wextra -Werror -D_XOPEN_SOURCE=500 $CFLAGS"
+    CFLAGS="-std=c89 -pedantic -Wall -Wextra -Werror $CFLAGS"
+    CFLAGS="-D_XOPEN_SOURCE=500 -Wno-error=int-to-pointer-cast $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])],