diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2022-08-07 18:45:57 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2022-08-08 07:00:12 +0200 |
commit | 581afe42faa86fbb4014e48913cc5183aee69203 (patch) | |
tree | bff472ebc65bfc4d572b25a4af059d9f62666ca2 /source | |
parent | d65ac8e6618ab627b2b6c1fb3b4448fb30fa3f18 (diff) | |
download | current-581afe42faa86fbb4014e48913cc5183aee69203.tar.gz |
Sun Aug 7 18:45:57 UTC 202220220807184557
a/aaa_libraries-15.1-x86_64-8.txz: Rebuilt.
Upgraded: libffi.so.8.1.0.
a/mcelog-185-x86_64-1.txz: Upgraded.
l/libffi-3.4.2-x86_64-2.txz: Rebuilt.
Recompiled with --disable-exec-static-tramp to work around issues with
gobject-introspection. Thanks to chrisVV.
x/ibus-table-1.16.11-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source')
-rwxr-xr-x | source/a/aaa_libraries/aaa_libraries.SlackBuild | 2 | ||||
-rwxr-xr-x | source/l/libffi/libffi.SlackBuild | 8 |
2 files changed, 7 insertions, 3 deletions
diff --git a/source/a/aaa_libraries/aaa_libraries.SlackBuild b/source/a/aaa_libraries/aaa_libraries.SlackBuild index 52584462..8a496505 100755 --- a/source/a/aaa_libraries/aaa_libraries.SlackBuild +++ b/source/a/aaa_libraries/aaa_libraries.SlackBuild @@ -23,7 +23,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=aaa_libraries VERSION=${VERSION:-15.1} -BUILD=${BUILD:-7} +BUILD=${BUILD:-8} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then diff --git a/source/l/libffi/libffi.SlackBuild b/source/l/libffi/libffi.SlackBuild index d2f6fee2..b393774d 100755 --- a/source/l/libffi/libffi.SlackBuild +++ b/source/l/libffi/libffi.SlackBuild @@ -3,7 +3,7 @@ # Slackware build script for libffi # Copyright 2011,2012 Robby Workman, Northport, Alabama, USA -# Copyright 2012, 2013, 2018, 2019 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2012, 2013, 2018, 2019, 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=libffi 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 @@ -79,6 +79,9 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \+ +# We will add --disable-exec-static-tramp until this issue is handled upstream: +# https://gitlab.gnome.org/GNOME/gobject-introspection/-/merge_requests/283 + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ @@ -90,6 +93,7 @@ CXXFLAGS="$SLKCFLAGS" \ --infodir=/usr/info \ --docdir=/usr/doc/$PKGNAM-$VERSION \ --disable-static \ + --disable-exec-static-tramp \ --build=$ARCH-slackware-linux || exit 1 make || exit 1 |