diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2008-02-12 18:43:17 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2008-02-12 18:43:17 +0000 |
commit | a03ae92cae206b8048318dae09e9e088a46977c1 (patch) | |
tree | 0671fb3c0b3db58ea642e50ab9c0ed1dea62eddf /net-mgmt/tork/files/patch-configure.in.in | |
parent | update xfce4 to 4.4.2 (diff) |
TorK is a powerful anonymity manager for the KDE Desktop on Linux and Unix
systems. It first helps you to install, configure and use Tor. It then
reduces the task of anonymizing most applications to a single-click, including
Firefox, Opera, Konqueror, Pidgin, Kopete, SSH, and IRC.For advanced users
TorK provides detailed network information, and more, in an accessible manner.
WWW: http://www.anonymityanywhere.com/tork/
Submitted by: Beat Gätzi <beat at chruetertee.ch>
Diffstat (limited to 'net-mgmt/tork/files/patch-configure.in.in')
-rw-r--r-- | net-mgmt/tork/files/patch-configure.in.in | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/net-mgmt/tork/files/patch-configure.in.in b/net-mgmt/tork/files/patch-configure.in.in new file mode 100644 index 000000000000..52a5bcd7c136 --- /dev/null +++ b/net-mgmt/tork/files/patch-configure.in.in @@ -0,0 +1,23 @@ +--- configure.in.in.orig 2007-12-29 22:18:50.000000000 +0100 ++++ configure.in.in 2008-02-10 04:03:12.000000000 +0100 +@@ -400,7 +400,7 @@ + + dnl Checks for libraries. + dnl Replace `main' with a function in -ldl: +-AC_CHECK_LIB(dl, dlsym,,AC_MSG_ERROR("libdl is required")) ++AC_CHECK_LIB(c, dlsym,,AC_MSG_ERROR("liblc is required")) + + dnl If we're using gcc here define _GNU_SOURCE + AC_MSG_CHECKING(for RTLD_NEXT from dlfcn.h) +@@ -606,8 +606,9 @@ + + dnl Find the correct poll prototype on this machine + AC_MSG_CHECKING(for correct poll prototype) +-PROTO= +-for testproto in 'struct pollfd *ufds, unsigned long nfds, int timeout' ++PROTO1="struct pollfd fds[], nfds_t nfds, int timeout" ++PROTO2="struct pollfd *fds, unsigned int nfds, int timeout" ++for PROTO in "$PROTO1" "$PROTO2" + do + if test "${PROTO}" = ""; then + AC_TRY_COMPILE([ |