diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2021-01-17 23:48:59 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2021-01-18 08:59:51 +0100 |
commit | 16c4108efdee84a002fc181f54191cc5a98e82fc (patch) | |
tree | f0eb8d3e0657384d5f9c17c66f98d551607e85c4 /source/xap | |
parent | cdbbea4bb74a0bfd04f1484609c725d222b40abd (diff) | |
download | current-16c4108efdee84a002fc181f54191cc5a98e82fc.tar.gz |
Sun Jan 17 23:48:59 UTC 202120210117234859
a/kernel-generic-5.10.8-x86_64-1.txz: Upgraded.
a/kernel-huge-5.10.8-x86_64-1.txz: Upgraded.
a/kernel-modules-5.10.8-x86_64-1.txz: Upgraded.
a/mkinitrd-1.4.11-x86_64-17.txz: Rebuilt.
Upgraded to busybox-1.32.1.
ap/sc-im-20200904_bdd936a-x86_64-1.txz: Upgraded.
d/kernel-headers-5.10.8-x86-1.txz: Upgraded.
d/python-setuptools-51.3.1-x86_64-1.txz: Upgraded.
k/kernel-source-5.10.8-noarch-1.txz: Upgraded.
l/libical-3.0.9-x86_64-1.txz: Upgraded.
l/pulseaudio-14.2-x86_64-1.txz: Upgraded.
n/ModemManager-1.14.10-x86_64-1.txz: Upgraded.
n/iptables-1.8.7-x86_64-1.txz: Upgraded.
n/libnftnl-1.1.9-x86_64-1.txz: Upgraded.
xfce/garcon-4.16.1-x86_64-1.txz: Upgraded.
xfce/xfce4-whiskermenu-plugin-2.5.2-x86_64-1.txz: Upgraded.
isolinux/initrd.img: Rebuilt.
kernels/*: Upgraded.
usb-and-pxe-installers/usbboot.img: Rebuilt.
Diffstat (limited to 'source/xap')
-rw-r--r-- | source/xap/FTBFSlog | 4 | ||||
-rwxr-xr-x | source/xap/gnuchess/gnuchess.SlackBuild | 10 | ||||
-rwxr-xr-x | source/xap/seyon/seyon.SlackBuild | 4 |
3 files changed, 12 insertions, 6 deletions
diff --git a/source/xap/FTBFSlog b/source/xap/FTBFSlog index 299f0871..f0a9f1eb 100644 --- a/source/xap/FTBFSlog +++ b/source/xap/FTBFSlog @@ -1,3 +1,7 @@ +Sat Jan 16 18:45:27 UTC 2021 + gnuchess: add -fcommon to CFLAGS. Thanks to nobodino. + seyon: add -fcommon to CFLAGS. Thanks to nobodino. ++--------------------------+ Fri Jul 24 18:28:43 UTC 2020 mozilla-firefox: Patch for rust-1.45.0 related build failure. mozilla-thunderbird: Patch for rust-1.45.0 related build failure. diff --git a/source/xap/gnuchess/gnuchess.SlackBuild b/source/xap/gnuchess/gnuchess.SlackBuild index 3c0b65aa..0937194d 100755 --- a/source/xap/gnuchess/gnuchess.SlackBuild +++ b/source/xap/gnuchess/gnuchess.SlackBuild @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2008, 2009, 2010, 2011, 2013, 2015, 2017, 2018, 2020 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2008, 2009, 2010, 2011, 2013, 2015, 2017, 2018, 2020, 2021 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -50,13 +50,13 @@ fi NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "} if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" + SLKCFLAGS="-O2 -march=i586 -mtune=i686 -fcommon" elif [ "$ARCH" = "s390" ]; then - SLKCFLAGS="-O2" + SLKCFLAGS="-O2 -fcommon" elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" + SLKCFLAGS="-O2 -fPIC -fcommon" else - SLKCFLAGS="-O2" + SLKCFLAGS="-O2 -fcommon" fi TMP=${TMP:-/tmp} diff --git a/source/xap/seyon/seyon.SlackBuild b/source/xap/seyon/seyon.SlackBuild index 518dd992..e74da637 100755 --- a/source/xap/seyon/seyon.SlackBuild +++ b/source/xap/seyon/seyon.SlackBuild @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2002-2018 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2002-2021 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -92,6 +92,8 @@ sed -i "s/getline/seyon_getline/g" * chmod 755 makever.sh xmkmf +# Add -fcommon to CFLAGS: +sed -i -e 's/-fno-strict-aliasing/-fno-strict-aliasing -fcommon/' Makefile make || exit 1 mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}/X11 |