From 2a1d4289d82053c5e49a4f88dbf478f606874259 Mon Sep 17 00:00:00 2001 From: Christophe Mutricy Date: Sun, 19 Aug 2007 13:25:30 +0000 Subject: [PATCH] Fix compile warning --- modules/meta_engine/luameta.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/meta_engine/luameta.c b/modules/meta_engine/luameta.c index 109a42e08c..22f5078543 100644 --- a/modules/meta_engine/luameta.c +++ b/modules/meta_engine/luameta.c @@ -25,7 +25,11 @@ /***************************************************************************** * Preamble *****************************************************************************/ +#ifndef _GNU_SOURCE +# define _GNU_SOURCE +#endif #include /* malloc(), free() */ +#include /*asprintf()*/ #include #include -- 2.11.4.GIT