diff src/plugin.c @ 6639:1b91cb6be4c3

[gaim-migrate @ 7164] Ambrose C. LI (acli) updated the zh_TW.po and writes of the fi.po that: " Changes from previous submission: Safe changes: - Corrected some mistakes that I made in the last submission - Sync'd to anon cvs as of around 22:00 EDT - More strings pulled out from the old po file - More strings pulled out from non-gaim po files - Other strings obtained by relatively trivial editing Unsafe changes: - Some strings previously marked fuzzy has the fuzzy removed - Some new strings obtained by relatively non-trivial editing I think I have made enough of the unsafe changes that I should change Last-Translator to myself. Even if I don't make any more changes, I think it's not right if I don't say in the file that I'm the person who has made all the mistakes in the file" also Matias Vidal (matiasv) fixed plugin loading for hpux (see bug 720868) committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Wed, 27 Aug 2003 23:03:03 +0000
parents 96c5630f8d1d
children 7dba3e17cb21
line wrap: on
line diff
--- a/src/plugin.c	Wed Aug 27 20:34:12 2003 +0000
+++ b/src/plugin.c	Wed Aug 27 23:03:03 2003 +0000
@@ -47,8 +47,12 @@
 #ifdef _WIN32
 # define PLUGIN_EXT ".dll"
 #else
+#ifdef __hpux
+# define PLUGIN_EXT ".sl"
+#else
 # define PLUGIN_EXT ".so"
 #endif
+#endif
 
 static GList *loaded_plugins = NULL;
 static GList *plugins = NULL;