summaryrefslogtreecommitdiffstats
path: root/source/d
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2024-06-05 19:06:36 +0000
committer Eric Hameleers <alien@slackware.com>2024-06-05 23:01:12 +0200
commit40d048333795af08bf733e7035b5f908b4d7c98f (patch)
tree0657adf38f36cac51f8e5674b526ed56b6615bc6 /source/d
parentd3e8c5b981f4a83e1205baf8497d5d10849be5ca (diff)
downloadcurrent-40d048333795af08bf733e7035b5f908b4d7c98f.tar.gz
current-40d048333795af08bf733e7035b5f908b4d7c98f.tar.xz
Wed Jun 5 19:06:36 UTC 202420240605190636
a/kernel-firmware-20240604_22643bb-noarch-1.txz: Upgraded. a/less-657-x86_64-1.txz: Upgraded. a/openssl-solibs-3.3.1-x86_64-1.txz: Upgraded. d/cmake-3.29.4-x86_64-1.txz: Upgraded. l/poppler-24.06.0-x86_64-1.txz: Upgraded. l/protobuf-27.0-x86_64-1.txz: Upgraded. Shared library .so-version bump. l/python-zipp-3.19.2-x86_64-1.txz: Upgraded. l/qt6-6.7.1_20240516_6977d02f-x86_64-2.txz: Rebuilt. Recompiled against protobuf-27.0. n/ca-certificates-20240604-noarch-1.txz: Upgraded. This update provides the latest CA certificates to check for the authenticity of SSL connections. n/mosh-1.4.0-x86_64-2.txz: Rebuilt. Recompiled against protobuf-27.0. n/openssl-3.3.1-x86_64-1.txz: Upgraded. This update fixes bugs and one low severity security issue: Calling the OpenSSL API function SSL_free_buffers may cause memory to be accessed that was previously freed in some situations. Our investigations indicate that this function is rarely used by applications. For more information, see: https://www.openssl.org/news/secadv/20240528.txt https://www.cve.org/CVERecord?id=CVE-2024-4741 (* Security fix *)
Diffstat (limited to 'source/d')
-rwxr-xr-xsource/d/cmake/cmake.SlackBuild5
-rw-r--r--source/d/cmake/cmake.url2
2 files changed, 5 insertions, 2 deletions
diff --git a/source/d/cmake/cmake.SlackBuild b/source/d/cmake/cmake.SlackBuild
index 6392d312c..4ac050abb 100755
--- a/source/d/cmake/cmake.SlackBuild
+++ b/source/d/cmake/cmake.SlackBuild
@@ -29,7 +29,7 @@ BUILD=${BUILD:-1}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
- i?86) export ARCH=i586 ;;
+ i?86) export ARCH=i686 ;;
arm*) export ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) export ARCH=$( uname -m ) ;;
@@ -48,6 +48,9 @@ NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -m32 -march=i586 -mtune=i686"
+elif [ "$ARCH" = "i686" ]; then
+ # Looks like this is baseline now... maybe time to bump everything to at least i686
+ SLKCFLAGS="-O2 -march=i686 -mtune=i686 -mfpmath=sse -msse -msse2 -fcf-protection=none"
elif [ "$ARCH" = "s390" ]; then
SLKCFLAGS="-O2"
elif [ "$ARCH" = "x86_64" ]; then
diff --git a/source/d/cmake/cmake.url b/source/d/cmake/cmake.url
index 27841f4dd..4a0dacd7a 100644
--- a/source/d/cmake/cmake.url
+++ b/source/d/cmake/cmake.url
@@ -1,2 +1,2 @@
https://github.com/Kitware/CMake/releases
-https://github.com/Kitware/CMake/releases/download/v3.29.3/cmake-3.29.3.tar.gz
+https://github.com/Kitware/CMake/releases/download/v3.29.4/cmake-3.29.4.tar.gz