From ad57e922f6418a6f7741eceacbb61c3e9da662a8 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 25 Sep 2009 13:33:37 +0200 Subject: [PATCH] disable inline if AC_C_INLINE is not in use --- src/marchash.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/marchash.c b/src/marchash.c index 6256a7b..4e7d0f8 100644 --- a/src/marchash.c +++ b/src/marchash.c @@ -23,6 +23,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #if HAVE_CONFIG_H #include +#else +/* disable inline if AC_C_INLINE is not in use (Windows) */ +#define inline #endif #include -- 1.7.10.4