Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
dhcp
Commits
50f967d5
Commit
50f967d5
authored
Sep 21, 2016
by
Francis Dupont
Browse files
Fixed configure
parent
f285576d
Changes
2
Hide whitespace changes
Inline
Side-by-side
configure
View file @
50f967d5
...
...
@@ -6742,7 +6742,7 @@ else
want_kqueue
=
"no"
fi
if
test
"
$
enableval
"
=
"yes"
;
then
if
test
"
$
want_kqueue
"
=
"yes"
;
then
BINDIOMUX
=
"--enable-kqueue"
fi
# Check whether --enable-epoll was given.
...
...
@@ -6752,7 +6752,7 @@ else
want_epoll
=
"no"
fi
if
test
"
$
enableva
l
"
=
"yes"
;
then
if
test
"
$
want_epol
l
"
=
"yes"
;
then
BINDIOMUX
=
"--enable-epoll"
fi
# Check whether --enable-devpoll was given.
...
...
@@ -6762,7 +6762,7 @@ else
want_devpoll
=
"no"
fi
if
test
"
$
enableva
l
"
=
"yes"
;
then
if
test
"
$
want_devpol
l
"
=
"yes"
;
then
BINDIOMUX
=
"--enable-devpoll"
fi
...
...
configure.ac
View file @
50f967d5
...
...
@@ -636,19 +636,19 @@ BINDIOMUX="--disable-kqueue --disable-epoll --disable-devpoll"
AC_ARG_ENABLE(kqueue,
AS_HELP_STRING([--enable-kqueue],[use BSD kqueue (default is no)]),
want_kqueue="$enableval", want_kqueue="no")
if test "$
enableval
" = "yes"; then
if test "$
want_kqueue
" = "yes"; then
BINDIOMUX="--enable-kqueue"
fi
AC_ARG_ENABLE(epoll,
AS_HELP_STRING([--enable-epoll],[use Linux epoll (default is no)]),
want_epoll="$enableval", want_epoll="no")
if test "$
enableva
l" = "yes"; then
if test "$
want_epol
l" = "yes"; then
BINDIOMUX="--enable-epoll"
fi
AC_ARG_ENABLE(devpoll,
AS_HELP_STRING([--enable-devpoll],[use /dev/poll (default is no)]),
want_devpoll="$enableval", want_devpoll="no")
if test "$
enableva
l" = "yes"; then
if test "$
want_devpol
l" = "yes"; then
BINDIOMUX="--enable-devpoll"
fi
AC_SUBST(BINDIOMUX)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment