From a8cd23de732cff51f4c23f36c6692fcfe0b801a2 Mon Sep 17 00:00:00 2001 From: Owen Taylor Date: Fri, 5 Dec 1997 04:29:22 +0000 Subject: Don't redefine _GNU_SOURCE if already defined. -owt --- gtk/fnmatch.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gtk') diff --git a/gtk/fnmatch.c b/gtk/fnmatch.c index 04eced312f..f92beb6f1b 100644 --- a/gtk/fnmatch.c +++ b/gtk/fnmatch.c @@ -20,10 +20,14 @@ Cambridge, MA 02139, USA. */ #endif #include + /* Added for GTK. We need to make sure that all constants are defined * to properly compile this file */ +#ifndef _GNU_SOURCE #define _GNU_SOURCE +#endif #include "fnmatch.h" + #include -- cgit v1.2.1