Additional portability fix for MacOS X

This commit is contained in:
Pierre Pronchery 2012-07-30 23:14:59 +00:00
parent 248fa3eceb
commit 70925c4962

View File

@ -2259,7 +2259,11 @@ static void _preferences_set_plugins(Browser * browser)
DIR * dir;
struct dirent * de;
GtkIconTheme * theme;
#ifdef __APPLE__
char const ext[] = ".dylib";
#else
char const ext[] = ".so";
#endif
size_t len;
Plugin * p;
BrowserPluginDefinition * bpd;