aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWolfram Sang <wsa@the-dreams.de>2016-08-03 10:41:41 +0200
committerWolfram Sang <wsa@the-dreams.de>2016-08-12 20:30:23 +0200
commita3541796ffca0ed4aa59e92be9a622ed140afdb8 (patch)
tree44624a35627fdd02d86ec2a104176d7a646d023e
parentd48d249df596f001883142dce242dceeea6f4526 (diff)
downloadi2c-tools-a3541796ffca0ed4aa59e92be9a622ed140afdb8.tar.gz
i2c-tools: fix feature test macros for glibc >= 2.20
Since glibc 2.20, the usage of _BSD_SOURCE is deprecated. Fix it like described here: https://sourceware.org/glibc/wiki/Release/2.20#Deprecation_of__BSD_SOURCE_and__SVID_SOURCE_feature_macros Reviewed-by: Jean Delvare <jdelvare@suse.de> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
-rw-r--r--tools/i2cbusses.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/i2cbusses.c b/tools/i2cbusses.c
index b3093aa..dad22ea 100644
--- a/tools/i2cbusses.c
+++ b/tools/i2cbusses.c
@@ -23,7 +23,8 @@
*/
/* For strdup and snprintf */
-#define _BSD_SOURCE 1
+#define _BSD_SOURCE 1 /* for glibc <= 2.19 */
+#define _DEFAULT_SOURCE 1 /* for glibc >= 2.19 */
#include <sys/types.h>
#include <sys/stat.h>