mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-16 00:00:07 +01:00

This is initial x-google-mux support. It's disabled by default since it's very pre-alpha. 1) To enable it, reconfigure with --enable-x-google-mux 2) It conflicts with deflate-stream, use the -u switch on the test client to disable deflate-stream 3) It deviates from the google standard by sending full headers in the addchannel subcommand rather than just changed ones from original connect 4) Quota is not implemented yet 5) Close of subchannel is not really implemented yet 6) Google opcode 0xf is changed to 0x7 to account for v7 protocol changes to opcode layout However despite those caveats, in fact it can run the test client reliably over one socket (both dumb-increment and lws-mirror-protocol), you can open a browser on the same test server too and see the circles, etc. Signed-off-by: Andy Green <andy@warmcat.com>
117 lines
2.2 KiB
Text
117 lines
2.2 KiB
Text
# -*- Autoconf -*-
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
AC_PREREQ([2.66])
|
|
AC_INIT(libwebsockets, 0.3, andy@warmcat.com)
|
|
AC_CONFIG_SRCDIR([test-server/test-server.c])
|
|
AC_CONFIG_HEADERS([config.h])
|
|
|
|
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
|
|
LT_INIT(shared)
|
|
|
|
#AX_PTHREAD
|
|
|
|
# Checks for programs.
|
|
AC_PROG_CC
|
|
AC_PROG_INSTALL
|
|
AC_PROG_MAKE_SET
|
|
AC_CONFIG_MACRO_DIR([m4])
|
|
|
|
|
|
#
|
|
#
|
|
#
|
|
AC_ARG_ENABLE(openssl,
|
|
[ --enable-openssl Enables https support and needs openssl libs],
|
|
[ openssl=yes
|
|
])
|
|
|
|
if test "x$openssl" = "xyes" ; then
|
|
AC_CHECK_LIB([ssl], [SSL_library_init])
|
|
CFLAGS="$CFLAGS -DLWS_OPENSSL_SUPPORT"
|
|
fi
|
|
|
|
#
|
|
#
|
|
#
|
|
AC_ARG_ENABLE(nofork,
|
|
[ --enable-nofork Disables fork-related options],
|
|
[ nofork=yes
|
|
])
|
|
|
|
if test "x$nofork" = "xyes" ; then
|
|
CFLAGS="$CFLAGS -DLWS_NO_FORK"
|
|
else
|
|
AC_FUNC_FORK
|
|
fi
|
|
|
|
#
|
|
#
|
|
#
|
|
AC_ARG_ENABLE(libcrypto,
|
|
[ --enable-libcrypto Use libcrypto MD5 and SHA1 implementations],
|
|
[ libcrypto=yes
|
|
])
|
|
|
|
if test "x$libcrypto" = "xyes" ; then
|
|
CFLAGS="$CFLAGS -DLWS_LIBCRYPTO"
|
|
LDFLAGS="$LDFLAGS -lcrypto"
|
|
fi
|
|
AM_CONDITIONAL(LIBCRYPTO, test x$libcrypto = xyes)
|
|
|
|
|
|
#
|
|
#
|
|
#
|
|
AC_ARG_ENABLE(x-google-mux,
|
|
[ --enable-x-google-mux Build experimental x-google-mux],
|
|
[ x_google_mux=yes
|
|
])
|
|
if test "x$x_google_mux" = "xyes" ; then
|
|
CFLAGS="$CFLAGS -DLWS_EXT_GOOGLE_MUX"
|
|
fi
|
|
AM_CONDITIONAL(EXT_GOOGLE_MUX, test x$x_google_mux = xyes)
|
|
|
|
|
|
#
|
|
#
|
|
#
|
|
AC_ARG_WITH([client-cert-dir],
|
|
[AS_HELP_STRING([--with-client-cert-dir],[directory containing client certs, defaults to /etc/pki/tls/certs/])],
|
|
[clientcertdir=$withval],
|
|
[clientcertdir=/etc/pki/tls/certs/]
|
|
)
|
|
AC_SUBST([clientcertdir])
|
|
|
|
AC_SUBST([CFLAGS])
|
|
|
|
|
|
#
|
|
#
|
|
#
|
|
AC_ARG_ENABLE(noping,
|
|
[ --enable-noping Do not build ping test app, which has some unixy stuff in sources],
|
|
[ noping=yes
|
|
])
|
|
|
|
AM_CONDITIONAL(NOPING, test x$noping = xyes)
|
|
|
|
|
|
|
|
# Checks for header files.
|
|
AC_CHECK_HEADERS([zlib.h fcntl.h netinet/in.h stdlib.h string.h sys/socket.h unistd.h])
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
AC_TYPE_SIZE_T
|
|
|
|
# Checks for library functions.
|
|
|
|
AC_FUNC_MALLOC
|
|
AC_FUNC_REALLOC
|
|
AC_CHECK_FUNCS([bzero memset socket strerror])
|
|
|
|
AC_CONFIG_FILES([Makefile
|
|
lib/Makefile
|
|
test-server/Makefile])
|
|
|
|
AC_OUTPUT
|