libraries/ptlib: Miscellaneous cleanups.

This commit is contained in:
Robby Workman 2010-05-20 00:17:01 -05:00
parent 1b86d50731
commit 9239914738
2 changed files with 10 additions and 3 deletions

View file

@ -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.

View file

@ -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