summaryrefslogtreecommitdiffstats
path: root/source/l/jemalloc/jemalloc.SlackBuild
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2022-09-14 18:40:44 +0000
committer Eric Hameleers <alien@slackware.com>2022-09-15 07:00:12 +0200
commitaf3823880e7ef52647f4c88f75def46489cd46aa (patch)
tree1ba4eb6260d0b79f289dc24c06d062d30ec261a7 /source/l/jemalloc/jemalloc.SlackBuild
parent59871e54c88572772e40d35e8033c3aeaf128acd (diff)
downloadcurrent-af3823880e7ef52647f4c88f75def46489cd46aa.tar.gz
current-af3823880e7ef52647f4c88f75def46489cd46aa.tar.xz
Wed Sep 14 18:40:44 UTC 202220220914184044
ap/vim-9.0.0465-x86_64-1.txz: Upgraded. kde/plasma-integration-5.25.5-x86_64-2.txz: Rebuilt. [PATCH] Bring back workaround for threaded render loop not working on NVIDIA Wayland. Thanks to marav. l/jemalloc-5.3.0-x86_64-1.txz: Upgraded. Thanks to villeph. xap/vim-gvim-9.0.0465-x86_64-1.txz: Upgraded.
Diffstat (limited to '')
-rwxr-xr-xsource/l/jemalloc/jemalloc.SlackBuild11
1 files changed, 9 insertions, 2 deletions
diff --git a/source/l/jemalloc/jemalloc.SlackBuild b/source/l/jemalloc/jemalloc.SlackBuild
index 6eb9a4f04..dd8e52311 100755
--- a/source/l/jemalloc/jemalloc.SlackBuild
+++ b/source/l/jemalloc/jemalloc.SlackBuild
@@ -3,7 +3,7 @@
# Slackware build script for jemalloc
# Copyright 2012-2014 Heinz Wiesinger, Amsterdam, The Netherlands
-# Copyright 2014, 2015, 2017, 2018 Patrick J. Volkerding, Sebeka, MN, USA
+# Copyright 2014, 2015, 2017, 2018, 2022 Patrick J. Volkerding, Sebeka, MN, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -27,7 +27,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=jemalloc
VERSION=${VERSION:-$(echo jemalloc-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-3}
+BUILD=${BUILD:-1}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@@ -78,6 +78,13 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+
+if [ ! -r configure ]; then
+ if [ -x ./autogen.sh ]; then
+ NOCONFIGURE=1 ./autogen.sh
+ else
+ autoreconf -vif
+ fi
+fi
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \