mirror of
https://github.com/transmission/transmission
synced 2024-12-25 01:03:01 +00:00
(trunk daemon) #2816 "configure script ignores paramter" -- fixed in trunk for 1.83
This commit is contained in:
parent
73deb80e77
commit
6cb88d23df
1 changed files with 2 additions and 2 deletions
|
@ -133,7 +133,7 @@ AC_CHECK_HEADER([sys/inotify.h],
|
|||
[have_inotify="no"])
|
||||
AC_ARG_WITH([inotify],
|
||||
[AS_HELP_STRING([--with-inotify],[Enable inotify support (default=auto)])],
|
||||
[want_inotify=${enableval}],
|
||||
[want_inotify=${withval}],
|
||||
[want_inotify=${have_inotify}])
|
||||
if test "x$want_inotify" = "xyes" ; then
|
||||
if test "x$have_inotify" = "xyes"; then
|
||||
|
@ -148,7 +148,7 @@ AC_CHECK_HEADER([sys/event.h],
|
|||
[have_kqueue="no"])
|
||||
AC_ARG_WITH([kqueue],
|
||||
[AS_HELP_STRING([--with-kqueue],[Enable kqueue support (default=auto)])],
|
||||
[want_kqueue=${enableval}],
|
||||
[want_kqueue=${withval}],
|
||||
[want_kqueue=${have_kqueue}])
|
||||
if test "x$want_kqueue" = "xyes" ; then
|
||||
if test "x$have_kqueue" = "xyes"; then
|
||||
|
|
Loading…
Reference in a new issue