* The curl bind address was being set by set_local_address(...), urgh.

* Made IPv6 stuff configurable.

* Improved the view stuff.


git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@672 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2006-04-23 23:17:05 +00:00
parent 11c842308a
commit 598455a5df
8 changed files with 141 additions and 56 deletions
+12
View File
@@ -168,6 +168,7 @@ AC_DEFUN([TORRENT_CHECK_ALIGNED], [
])
])
AC_DEFUN([TORRENT_ENABLE_ALIGNED], [
AC_ARG_ENABLE(aligned,
[ --enable-aligned enable alignment safe code [[default=check]]],
@@ -179,3 +180,14 @@ AC_DEFUN([TORRENT_ENABLE_ALIGNED], [
TORRENT_CHECK_ALIGNED
])
])
AC_DEFUN([TORRENT_DISABLE_IPV6], [
AC_ARG_ENABLE(ipv6,
[ --enable-ipv6 disable ipv6 [[default=no]]],
[
if test "$enableval" = "yes"; then
AC_DEFINE(RAK_USE_INET6, 1, enable ipv6 stuff)
fi
])
])