summaryrefslogtreecommitdiffstats
path: root/network/proxytunnel
diff options
context:
space:
mode:
Diffstat (limited to 'network/proxytunnel')
-rw-r--r--network/proxytunnel/README8
-rw-r--r--network/proxytunnel/proxytunnel.SlackBuild10
2 files changed, 9 insertions, 9 deletions
diff --git a/network/proxytunnel/README b/network/proxytunnel/README
index 0e13b1644c..5077135b3c 100644
--- a/network/proxytunnel/README
+++ b/network/proxytunnel/README
@@ -1,4 +1,4 @@
-ProxyTunnel is a program that connects stdin and stdout to a server somewhere
-on the network, through a standard HTTPS proxy. We mostly use it to tunnel
-SSH sessions through HTTP(S) proxies, allowing us to do many things that
-wouldn't be possible without ProxyTunnel.
+ProxyTunnel is a program that connects stdin and stdout to a server
+somewhere on the network, through a standard HTTPS proxy. We mostly
+use it to tunnel SSH sessions through HTTP(S) proxies, allowing us to
+do many things that wouldn't be possible without ProxyTunnel.
diff --git a/network/proxytunnel/proxytunnel.SlackBuild b/network/proxytunnel/proxytunnel.SlackBuild
index d8afa8ef80..1a1a50f8a0 100644
--- a/network/proxytunnel/proxytunnel.SlackBuild
+++ b/network/proxytunnel/proxytunnel.SlackBuild
@@ -8,13 +8,13 @@ cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=proxytunnel
VERSION=${VERSION:-1.9.0}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
- i?86) ARCH=i486 ;;
+ i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@@ -32,8 +32,8 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
+if [ "$ARCH" = "i586" ]; then
+ SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
@@ -61,7 +61,7 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
-make CFLAGS+="$SLKCFLAGS" LDFLAGS+="-lcrypto -lssl"
+make CFLAGS+="$SLKCFLAGS -fcommon" LDFLAGS+="-lcrypto -lssl"
make install PREFIX=/usr MANDIR=/usr/man DESTDIR=$PKG
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \