forked from premiere/premiere-libtorrent
merged typos in configure script from RC_0_16
This commit is contained in:
parent
ac5a9e9882
commit
1b268e7cd1
|
@ -8,6 +8,7 @@
|
||||||
* fix uTP edge case where udp socket buffer fills up
|
* fix uTP edge case where udp socket buffer fills up
|
||||||
* fix nagle implementation in uTP
|
* fix nagle implementation in uTP
|
||||||
|
|
||||||
|
* fixed typos in configure script, inversing some feature-enable/disable flags
|
||||||
* added missing flag_update_subscribe to python bindings
|
* added missing flag_update_subscribe to python bindings
|
||||||
* active_dht_limit, active_tracker_limit and active_lsd_limit now interpret -1 as infinite
|
* active_dht_limit, active_tracker_limit and active_lsd_limit now interpret -1 as infinite
|
||||||
|
|
||||||
|
|
20
configure.ac
20
configure.ac
|
@ -207,8 +207,8 @@ AC_ARG_ENABLE(
|
||||||
AC_ARG_ENABLE(
|
AC_ARG_ENABLE(
|
||||||
[dht],
|
[dht],
|
||||||
[AS_HELP_STRING(
|
[AS_HELP_STRING(
|
||||||
[--disable-dht],
|
[--enable-dht],
|
||||||
[disable dht support (use value "logging" to add extra logging) [default=yes]])],
|
[enable dht support (use value "logging" to add extra logging) [default=yes]])],
|
||||||
[[ARG_ENABLE_DHT=$enableval]],
|
[[ARG_ENABLE_DHT=$enableval]],
|
||||||
[[ARG_ENABLE_DHT=yes]]
|
[[ARG_ENABLE_DHT=yes]]
|
||||||
)
|
)
|
||||||
|
@ -216,8 +216,8 @@ AC_ARG_ENABLE(
|
||||||
AC_ARG_ENABLE(
|
AC_ARG_ENABLE(
|
||||||
[encryption],
|
[encryption],
|
||||||
[AS_HELP_STRING(
|
[AS_HELP_STRING(
|
||||||
[--disable-encryption],
|
[--enable-encryption],
|
||||||
[disable encryption support (requires OpenSSL to be installed on your system, you can use --with-openssl to set the path) [default=yes]])],
|
[enable encryption support (requires OpenSSL to be installed on your system, you can use --with-openssl to set the path) [default=yes]])],
|
||||||
[[ARG_ENABLE_ENCRYPTION=$enableval]],
|
[[ARG_ENABLE_ENCRYPTION=$enableval]],
|
||||||
[[ARG_ENABLE_ENCRYPTION=yes]]
|
[[ARG_ENABLE_ENCRYPTION=yes]]
|
||||||
)
|
)
|
||||||
|
@ -225,8 +225,8 @@ AC_ARG_ENABLE(
|
||||||
AC_ARG_ENABLE(
|
AC_ARG_ENABLE(
|
||||||
[pool-allocators],
|
[pool-allocators],
|
||||||
[AS_HELP_STRING(
|
[AS_HELP_STRING(
|
||||||
[--disable-pool-allocators],
|
[--enable-pool-allocators],
|
||||||
[disable pool allocators for send buffers [default=yes]])],
|
[enable pool allocators for send buffers [default=yes]])],
|
||||||
[[ARG_ENABLE_POOL_ALLOC=$enableval]],
|
[[ARG_ENABLE_POOL_ALLOC=$enableval]],
|
||||||
[[ARG_ENABLE_POOL_ALLOC=yes]]
|
[[ARG_ENABLE_POOL_ALLOC=yes]]
|
||||||
)
|
)
|
||||||
|
@ -247,8 +247,8 @@ AC_ARG_ENABLE(
|
||||||
AC_ARG_ENABLE(
|
AC_ARG_ENABLE(
|
||||||
[deprecated-functions],
|
[deprecated-functions],
|
||||||
[AS_HELP_STRING(
|
[AS_HELP_STRING(
|
||||||
[--disable-deprecated-functions],
|
[--enable-deprecated-functions],
|
||||||
[disable deprecated functions from the API [default=yes]])],
|
[enable deprecated functions in the API [default=yes]])],
|
||||||
[[ARG_ENABLE_DEPRECATED=$enableval]],
|
[[ARG_ENABLE_DEPRECATED=$enableval]],
|
||||||
[[ARG_ENABLE_DEPRECATED=yes]]
|
[[ARG_ENABLE_DEPRECATED=yes]]
|
||||||
)
|
)
|
||||||
|
@ -274,8 +274,8 @@ AC_ARG_ENABLE(
|
||||||
AC_ARG_ENABLE(
|
AC_ARG_ENABLE(
|
||||||
[geoip],
|
[geoip],
|
||||||
[AS_HELP_STRING(
|
[AS_HELP_STRING(
|
||||||
[--disable-geoip],
|
[--enable-geoip],
|
||||||
[disable geoip support (if enabled, you can use --with-libgeoip to choose whether to link against shipped or system library) [default=yes]])],
|
[enable geoip support (if enabled, you can use --with-libgeoip to choose whether to link against shipped or system library) [default=yes]])],
|
||||||
[
|
[
|
||||||
ARG_ENABLE_GEOIP=$enableval
|
ARG_ENABLE_GEOIP=$enableval
|
||||||
ac_arg_enable_geoip=$enableval
|
ac_arg_enable_geoip=$enableval
|
||||||
|
|
Loading…
Reference in New Issue