mirror of
git://slackware.nl/current.git
synced 2025-02-05 20:46:11 +01:00
d31c50870d
Thu Jun 30 20:26:57 UTC 2016 Slackware 14.2 x86_64 stable is released! The long development cycle (the Linux community has lately been living in "interesting times", as they say) is finally behind us, and we're proud to announce the release of Slackware 14.2. The new release brings many updates and modern tools, has switched from udev to eudev (no systemd), and adds well over a hundred new packages to the system. Thanks to the team, the upstream developers, the dedicated Slackware community, and everyone else who pitched in to help make this release a reality. The ISOs are off to be replicated, a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. Please consider supporting the Slackware project by picking up a copy from store.slackware.com. We're taking pre-orders now, and offer a discount if you sign up for a subscription. Have fun! :-)
27 lines
888 B
Diff
27 lines
888 B
Diff
From 1ff36f4030287f1c263eb344d84cd4a43b1546d2 Mon Sep 17 00:00:00 2001
|
|
From: Rex Dieter <rdieter@math.unl.edu>
|
|
Date: Thu, 19 Nov 2015 13:23:16 -0600
|
|
Subject: [PATCH 11/11] use _DEFAULT_SOURCE instead of _BSD_SOURCE
|
|
|
|
the former is used in other kde software in general, and
|
|
the latter is generally deprecated on modern glibc's
|
|
---
|
|
CMakeLists.txt | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index dbce082..051ae6d 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -115,7 +115,7 @@ endif (WIN32)
|
|
|
|
if (CMAKE_COMPILER_IS_GNUCXX)
|
|
if (CMAKE_SYSTEM_NAME MATCHES Linux)
|
|
- add_definitions (-D_BSD_SOURCE)
|
|
+ add_definitions (-D_DEFAULT_SOURCE)
|
|
# on arm -Wcast-align throws many internal qt warning
|
|
if(NOT CMAKE_SYSTEM_PROCESSOR MATCHES "^arm")
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wcast-align")
|
|
--
|
|
2.5.0
|
|
|