summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure b/configure
index d230f4c..94545c4 100755
--- a/configure
+++ b/configure
@@ -24,3 +24,11 @@ CFLAGS += $(pkg-config --cflags $libs)
LDFLAGS += $(pkg-config --libs-only-L $libs)
LDLIBS = $(pkg-config --libs-only-l $libs)
EOF
+
+case "$(uname)" in
+ (Linux)
+ if ! grep -q -e '-D_GNU_SOURCE' config.mk; then
+ echo 'CFLAGS += -D_GNU_SOURCE' >> config.mk
+ fi
+ ;;
+esac