diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-02-25 16:54:35 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-02-25 16:54:35 +0100 |
commit | d7c7b31bbaf110446ea835b66845ab6f0ee09231 (patch) | |
tree | 4ccc9d0be75b50e3212135729f282fb754b827c8 /pidl/lib | |
parent | fd3f3e68f2e6be0196473f641f8edb41e40ca761 (diff) | |
download | samba-d7c7b31bbaf110446ea835b66845ab6f0ee09231.tar.gz samba-d7c7b31bbaf110446ea835b66845ab6f0ee09231.tar.bz2 samba-d7c7b31bbaf110446ea835b66845ab6f0ee09231.zip |
Only define _GNU_SOURCE if it's not defined yet.
Diffstat (limited to 'pidl/lib')
-rw-r--r-- | pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm b/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm index f8209be654..f2a96a3037 100644 --- a/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm +++ b/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm @@ -131,7 +131,9 @@ sub Parse($$$$) if (is_intree()) { $res .= "#include \"includes.h\"\n"; } else { + $res .= "#ifndef _GNU_SOURCE\n"; $res .= "#define _GNU_SOURCE\n"; + $res .= "#endif\n"; $res .= "#include <stdio.h>\n"; $res .= "#include <stdbool.h>\n"; $res .= "#include <stdlib.h>\n"; |