mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 13:57:17 +08:00
29 lines
939 B
Diff
29 lines
939 B
Diff
From 2a460afdbd0cb39d8dcecaf6cea5ce9ce7d3216b Mon Sep 17 00:00:00 2001
|
|
From: Niels Ole Salscheider <niels_ole@salscheider-online.de>
|
|
Date: Fri, 5 Jun 2015 12:47:13 +0200
|
|
Subject: [PATCH 01/32] CMake: Fixed deprecated _BSD_SOURCE.
|
|
|
|
Since glibc-2.20 _DEFAULT_SOURCE definition is also required.
|
|
|
|
Reviewed-by: Alexandr Akulich
|
|
---
|
|
cmake/modules/TelepathyDefaults.cmake | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/cmake/modules/TelepathyDefaults.cmake b/cmake/modules/TelepathyDefaults.cmake
|
|
index d34b24d..dc98697 100644
|
|
--- a/cmake/modules/TelepathyDefaults.cmake
|
|
+++ b/cmake/modules/TelepathyDefaults.cmake
|
|
@@ -108,7 +108,7 @@ if(CMAKE_COMPILER_IS_GNUCXX)
|
|
endif(${NOT_RELEASE} EQUAL 1)
|
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES Linux)
|
|
- add_definitions(-D_BSD_SOURCE)
|
|
+ add_definitions(-D_BSD_SOURCE -D_DEFAULT_SOURCE)
|
|
endif(CMAKE_SYSTEM_NAME MATCHES Linux)
|
|
|
|
# Compiler coverage
|
|
--
|
|
2.5.0
|
|
|