From 4baeafb95f6fe4523d5854778bce639dae5a3a9f Mon Sep 17 00:00:00 2001 From: Philip Chimento Date: Fri, 27 Nov 2009 22:57:35 +0000 Subject: [PATCH] Inserted extra definition of LT_OBJDIR for pre-2.2 libtool git-svn-id: http://lassie.dyndns-server.com/svn/gargoyle-gtk@187 ddfedd41-794f-dd11-ae45-00112f111e67 --- libchimara/chimara-if.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libchimara/chimara-if.c b/libchimara/chimara-if.c index 26e5b3a..939d734 100644 --- a/libchimara/chimara-if.c +++ b/libchimara/chimara-if.c @@ -535,12 +535,15 @@ chimara_if_run_game(ChimaraIF *self, gchar *gamefile, GError **error) gchar *pluginpath; #ifdef DEBUG +#ifndef LT_OBJDIR +#define LT_OBJDIR ".libs" /* Pre-2.2 libtool, so take a wild guess */ +#endif /* LT_OBJDIR */ /* If there is a plugin in the source tree, use that */ pluginpath = g_build_filename(PLUGINSOURCEDIR, plugin_names[interpreter], LT_OBJDIR, pluginfile, NULL); if( !g_file_test(pluginpath, G_FILE_TEST_EXISTS) ) { g_free(pluginpath); -#endif +#endif /* DEBUG */ pluginpath = g_build_filename(PLUGINDIR, pluginfile, NULL); if( !g_file_test(pluginpath, G_FILE_TEST_EXISTS) ) { -- 2.30.2