diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2021-10-29 17:19:45 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2021-10-30 08:59:57 +0200 |
commit | 7cddde1888f9454d14af212604ebd1fdd36f97c3 (patch) | |
tree | e528b042a8eed74a5da1ef2b5400826a6ddef770 /source/xap | |
parent | 33c39826b0b2574d0d273d582c1c72cd16f5fa64 (diff) | |
download | current-7cddde1888f9454d14af212604ebd1fdd36f97c3.tar.gz |
Fri Oct 29 17:19:45 UTC 202120211029171945
a/gawk-5.1.1-x86_64-1.txz: Upgraded.
l/python-packaging-21.2-x86_64-1.txz: Upgraded.
n/pam-krb5-4.11-x86_64-1.txz: Upgraded.
x/mesa-21.2.5-x86_64-1.txz: Upgraded.
xap/blueman-2.2.3-x86_64-1.txz: Upgraded.
xap/freerdp-2.4.1-x86_64-2.txz: Rebuilt.
Rebuilt without -DWITH_SANITIZE_ADDRESS=ON. Thanks to ctrlaltca.
Diffstat (limited to 'source/xap')
-rwxr-xr-x | source/xap/blueman/blueman.SlackBuild | 10 | ||||
-rwxr-xr-x | source/xap/freerdp/freerdp.SlackBuild | 3 |
2 files changed, 10 insertions, 3 deletions
diff --git a/source/xap/blueman/blueman.SlackBuild b/source/xap/blueman/blueman.SlackBuild index a78fa463..ca8c8c4f 100755 --- a/source/xap/blueman/blueman.SlackBuild +++ b/source/xap/blueman/blueman.SlackBuild @@ -27,7 +27,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=blueman VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z* | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-2} +BUILD=${BUILD:-1} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -93,6 +93,14 @@ zcat $CWD/dont-autostart-applet-in-kde.diff.gz | patch -p1 --verbose || exit 1 # Patch the blueman rules to allow members of the netdev group to make changes: zcat $CWD/blueman.allow.access.to.netdev.group.diff.gz | patch -p1 --verbose || exit 1 +if [ ! -r configure ]; then + if [ -x ./autogen.sh ]; then + NOCONFIGURE=1 ./autogen.sh + else + autoreconf -vif + fi +fi + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ PYTHON=/usr/bin/python3 \ diff --git a/source/xap/freerdp/freerdp.SlackBuild b/source/xap/freerdp/freerdp.SlackBuild index 27825d88..3be6d183 100755 --- a/source/xap/freerdp/freerdp.SlackBuild +++ b/source/xap/freerdp/freerdp.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=freerdp VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -108,7 +108,6 @@ cd cmake-build -DWITH_SERVER=ON \ -DWITH_CAIRO=ON \ -DBUILD_TESTING=OFF \ - -DWITH_SANITIZE_ADDRESS=ON \ .. || exit 1 make $NUMJOBS || make || exit 1 make install DESTDIR=$PKG || exit 1 |