From db3aebb341e190492c91e4481b0c5dfa398e7988 Mon Sep 17 00:00:00 2001 From: Spoike Date: Thu, 30 Sep 2004 22:51:15 +0000 Subject: [PATCH] bit more... 'optional'... git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@275 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/common/plugin.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/engine/common/plugin.c b/engine/common/plugin.c index 926bb0044..978b8a2c6 100644 --- a/engine/common/plugin.c +++ b/engine/common/plugin.c @@ -4,7 +4,7 @@ #include "quakedef.h" - +#ifdef PLUGINS typedef struct plugin_s { char *name; @@ -342,4 +342,6 @@ void Plug_Close(plugin_t *plug) void Plug_Shutdown(void) { -} \ No newline at end of file +} + +#endif