summaryrefslogtreecommitdiffstats
path: root/libraries/ptlib
diff options
context:
space:
mode:
author Robby Workman2010-05-20 07:17:01 +0200
committer Robby Workman2010-05-21 08:45:07 +0200
commit9239914738d65e4ccebe56ac66bc158c8f15b55e (patch)
tree2c5234f21279c70fb382affed2a9b1a511075afe /libraries/ptlib
parent1b86d507311cfd5164a1a9a71e98a4d7b9ae109b (diff)
downloadslackbuilds-9239914738d65e4ccebe56ac66bc158c8f15b55e.tar.gz
libraries/ptlib: Miscellaneous cleanups.
Diffstat (limited to 'libraries/ptlib')
-rw-r--r--libraries/ptlib/README2
-rw-r--r--libraries/ptlib/ptlib.SlackBuild11
2 files changed, 10 insertions, 3 deletions
diff --git a/libraries/ptlib/README b/libraries/ptlib/README
index 9b811db068..cdfb6fd88d 100644
--- a/libraries/ptlib/README
+++ b/libraries/ptlib/README
@@ -7,5 +7,3 @@ has also been ported to many other systems.
Since then the system has grown to include many classes that assist
in writing complete multi-platform applications. So it became a
Portable Tools Library and was renamed to PTLib.
-
-libv4l is not strictly a prerequisite, but is strongly recommended.
diff --git a/libraries/ptlib/ptlib.SlackBuild b/libraries/ptlib/ptlib.SlackBuild
index b091c0e3de..e505722fdc 100644
--- a/libraries/ptlib/ptlib.SlackBuild
+++ b/libraries/ptlib/ptlib.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=ptlib
VERSION=${VERSION:-2.6.6}
-ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
+# Automatically determine the architecture we're building on:
+if [ -z "$ARCH" ]; then
+ case "$( uname -m )" in
+ i?86) export ARCH=i486 ;;
+ arm*) export ARCH=arm ;;
+ # Unless $ARCH is already set, use uname -m for all other archs:
+ *) export ARCH=$( uname -m ) ;;
+ esac
+fi
+
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM