From 52b83345ef60b3c7d4fd91fb671cbe3c69346c4b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20=C5=A4ul=C3=A1k?= Date: Mon, 11 May 2015 10:09:16 +1000 Subject: [PATCH] xfsprogs: Removing deprecated _BSD_SOURCE definition. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit In glibc 2.20, _BSD_SOURCE was deprecated in favor of _DEFAULT_SOURCE. _DEFAULT_SOURCE is included with _GNU_SOURCE, as well as _XOPEN_SOURCE >= 500, so the obsolete and unnecessary definitions are removed. For more details, see man 7 feature_test_macros for glibc >= 2.20. Signed-off-by: Jan Ťulák Reviewed-by: Dave Chinner Signed-off-by: Dave Chinner --- include/builddefs.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/builddefs.in b/include/builddefs.in index 944bcf6c3..7e9f53df0 100644 --- a/include/builddefs.in +++ b/include/builddefs.in @@ -109,7 +109,7 @@ GCCFLAGS = -funsigned-char -fno-strict-aliasing -Wall # -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-decl ifeq ($(PKG_PLATFORM),linux) -PCFLAGS = -D_GNU_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=500 -D_FILE_OFFSET_BITS=64 $(GCCFLAGS) +PCFLAGS = -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 $(GCCFLAGS) ifeq ($(HAVE_UMODE_T),yes) PCFLAGS += -DHAVE_UMODE_T endif -- 2.47.2