Skip to content
Snippets Groups Projects
Commit dbdaff96 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Added --with-epoll.

Rev: src/configure.in:1.765
parent 1846728a
No related branches found
No related tags found
No related merge requests found
AC_REVISION("$Id: configure.in,v 1.764 2004/02/04 13:08:15 grubba Exp $") AC_REVISION("$Id: configure.in,v 1.765 2004/02/04 14:16:26 grubba Exp $")
AC_INIT(interpret.c) AC_INIT(interpret.c)
AC_CONFIG_HEADER(machine.h) AC_CONFIG_HEADER(machine.h)
...@@ -1289,6 +1289,8 @@ AC_ARG_WITH(thread_c_stack, ...@@ -1289,6 +1289,8 @@ AC_ARG_WITH(thread_c_stack,
[AC_DEFINE_UNQUOTED(PIKE_THREAD_C_STACK_SIZE,($withval))], [AC_DEFINE_UNQUOTED(PIKE_THREAD_C_STACK_SIZE,($withval))],
[AC_DEFINE(PIKE_THREAD_C_STACK_SIZE,(256 * 1024))]) [AC_DEFINE(PIKE_THREAD_C_STACK_SIZE,(256 * 1024))])
AC_ARG_WITH(epoll, MY_DESCR([--with-epoll],
[enable support for /dev/epoll (EXPERIMENTAL)]))
AC_ARG_WITH(gdbm, MY_DESCR([--without-gdbm],[no GNU database manager support])) AC_ARG_WITH(gdbm, MY_DESCR([--without-gdbm],[no GNU database manager support]))
AC_ARG_WITH(gmp, MY_DESCR([--without-gmp],[no support for Gmp bignums])) AC_ARG_WITH(gmp, MY_DESCR([--without-gmp],[no support for Gmp bignums]))
AC_ARG_WITH(zlib, MY_DESCR([--without-zlib],[disable gz compression support]), AC_ARG_WITH(zlib, MY_DESCR([--without-zlib],[disable gz compression support]),
...@@ -1432,6 +1434,11 @@ if test "x$with_poll" = "xyes"; then ...@@ -1432,6 +1434,11 @@ if test "x$with_poll" = "xyes"; then
AC_DEFINE(HAVE_AND_USE_POLL) AC_DEFINE(HAVE_AND_USE_POLL)
else :; fi else :; fi
if test "x$with_epoll" = "xyes"; then
PIKE_MSG_WARN([Enabling experimental support for /dev/epoll.])
AC_DEFINE(WITH_EPOLL)
else :; fi
if test "x$with_valgrind" = "xno"; then if test "x$with_valgrind" = "xno"; then
VALGRIND="" VALGRIND=""
VALGRINDARGS="" VALGRINDARGS=""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment