You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
908 B
29 lines
908 B
7 years ago
|
diff --git a/configure b/configure
|
||
|
index 78e120d..7de513b 100755
|
||
|
--- a/configure
|
||
|
+++ b/configure
|
||
|
@@ -53,11 +53,11 @@ datadir='${prefix}/share'
|
||
|
sysconfdir='${prefix}/etc'
|
||
|
sharedstatedir='${prefix}/com'
|
||
|
localstatedir='${prefix}/var'
|
||
|
-libdir='${exec_prefix}/lib'
|
||
|
+libdir='${prefix}/lib'
|
||
|
includedir='${prefix}/include'
|
||
|
oldincludedir='/usr/include'
|
||
|
infodir='${prefix}/info'
|
||
|
-mandir='${prefix}/man'
|
||
|
+mandir='${prefix}/share/man'
|
||
|
|
||
|
# Initialize some other variables.
|
||
|
subdirs=
|
||
|
@@ -2228,7 +2228,8 @@ EOF
|
||
|
echo $ac_n "checking for correct poll prototype""... $ac_c" 1>&6
|
||
|
echo "configure:2230: checking for correct poll prototype" >&5
|
||
|
PROTO=
|
||
|
-for testproto in 'struct pollfd *ufds, unsigned long nfds, int timeout'
|
||
|
+# https://sourceforge.net/p/tsocks/support-requests/6/
|
||
|
+for testproto in 'struct pollfd *ufds, nfds_t nfds, int timeout'
|
||
|
do
|
||
|
if test "${PROTO}" = ""; then
|
||
|
cat > conftest.$ac_ext <<EOF
|