Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/skype4pidgin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEion Robb <eion@robbmob.com>2011-11-29 06:40:56 +0400
committerEion Robb <eion@robbmob.com>2011-11-29 06:40:56 +0400
commit587e52ade7af71cc7e4bbdb303d6d244f5491221 (patch)
tree996c2a6ff4a7130344c3b01566f21e7aa73e4dac /skype_messaging_carbon.c
parentcb6cc0b25566d9604d7987f7a7d6527027ae43f5 (diff)
Added #ifdefs for INSTANTBIRD so the IB people can compile on their butchered version of glib
Diffstat (limited to 'skype_messaging_carbon.c')
-rw-r--r--skype_messaging_carbon.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/skype_messaging_carbon.c b/skype_messaging_carbon.c
index 47863c9..0557bf0 100644
--- a/skype_messaging_carbon.c
+++ b/skype_messaging_carbon.c
@@ -205,10 +205,10 @@ hide_skype()
static gboolean
exec_skype()
{
- gboolean success;
-
+ gboolean success = FALSE;
+#ifndef INSTANTBIRD
success = g_spawn_command_line_async("/Applications/Skype.app/Contents/MacOS/Skype", NULL);
-
+#endif
return success;
}