2 # Process this file with autoconf to produce a configure script.
5 AC_INIT(libwebsockets, 0.3, andy@warmcat.com)
6 AC_CONFIG_SRCDIR([test-server/test-server.c])
7 AC_CONFIG_HEADERS([config.h])
9 AM_INIT_AUTOMAKE([-Wall -Werror foreign])
14 # Checks for programs.
18 AC_CONFIG_MACRO_DIR([m4])
24 AC_ARG_ENABLE(openssl,
25 [ --enable-openssl Enables https support and needs openssl libs],
29 if test "x$openssl" = "xyes" ; then
30 AC_CHECK_LIB([ssl], [SSL_library_init])
31 CFLAGS="$CFLAGS -DLWS_OPENSSL_SUPPORT"
38 [ --enable-nofork Disables fork-related options],
42 if test "x$nofork" = "xyes" ; then
43 CFLAGS="$CFLAGS -DLWS_NO_FORK"
51 AC_ARG_ENABLE(libcrypto,
52 [ --enable-libcrypto Use libcrypto MD5 and SHA1 implementations],
56 if test "x$libcrypto" = "xyes" ; then
57 CFLAGS="$CFLAGS -DLWS_LIBCRYPTO"
58 LDFLAGS="$LDFLAGS -lcrypto"
60 AM_CONDITIONAL(LIBCRYPTO, test x$libcrypto = xyes)
66 AC_ARG_WITH([client-cert-dir],
67 [AS_HELP_STRING([--with-client-cert-dir],[directory containing client certs, defaults to /etc/pki/tls/certs/])],
68 [clientcertdir=$withval],
69 [clientcertdir=/etc/pki/tls/certs/]
71 AC_SUBST([clientcertdir])
80 [ --enable-noping Do not build ping test app, which has some unixy stuff in sources],
84 AM_CONDITIONAL(NOPING, test x$noping = xyes)
88 # Checks for header files.
89 AC_CHECK_HEADERS([zlib.h fcntl.h netinet/in.h stdlib.h string.h sys/socket.h unistd.h])
91 # Checks for typedefs, structures, and compiler characteristics.
94 # Checks for library functions.
98 AC_CHECK_FUNCS([bzero memset socket strerror])
100 AC_CONFIG_FILES([Makefile
102 test-server/Makefile])