diff options
Diffstat (limited to 'source/tcl/tk/tk.SlackBuild')
-rwxr-xr-x | source/tcl/tk/tk.SlackBuild | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/source/tcl/tk/tk.SlackBuild b/source/tcl/tk/tk.SlackBuild index 90f191ce..32a183d3 100755 --- a/source/tcl/tk/tk.SlackBuild +++ b/source/tcl/tk/tk.SlackBuild @@ -21,11 +21,20 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -VERSION=${VERSION:-8.5.7} +VERSION=${VERSION:-8.5.8} # See also version number 8.5 in the symlinks below...) -ARCH=${ARCH:-x86_64} BUILD=${BUILD:-1} +# 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 + NUMJOBS=${NUMJOBS:-" -j7 "} if [ "$ARCH" = "i486" ]; then @@ -75,6 +84,7 @@ CFLAGS="$SLKCFLAGS" \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --enable-shared \ + --enable-threads \ --enable-64bit \ --enable-man-symlinks \ --enable-man-compression=gzip \ |