Commit ad5c6b6f authored by Jean-Paul Saman's avatar Jean-Paul Saman

mozilla: do not ship gui/macosx plugin in Safari webplugin

It is the main cause for memory leaks of VLC browser plugin for MacOS X. Every time the browser plugin is reloaded, vlc core reloads the plugins which causes all global defined objects to initialize. Since there are objects in libmacosx_plugin.dylib that are supposed to live as long as the application these are never freed. Testing is done with --enable-debug.
parent cc15cdc7
...@@ -1116,6 +1116,7 @@ if BUILD_MOZILLA ...@@ -1116,6 +1116,7 @@ if BUILD_MOZILLA
# Create Installer # Create Installer
rm -rf "$(top_builddir)/macosx-plugin-instdata/"; true rm -rf "$(top_builddir)/macosx-plugin-instdata/"; true
mkdir -p "$(top_builddir)/macosx-plugin-instdata" mkdir -p "$(top_builddir)/macosx-plugin-instdata"
rm -f "$(top_builddir)/projects/mozilla/VLC Plugin.plugin/Contents/MacOS/modules/libmacosx_plugin.dylib"
cp -R "$(top_builddir)/projects/mozilla/VLC Plugin.plugin" "$(top_builddir)/macosx-plugin-instdata" cp -R "$(top_builddir)/projects/mozilla/VLC Plugin.plugin" "$(top_builddir)/macosx-plugin-instdata"
rm -rf "$(top_builddir)/VLC Internet Plug-In.pkg" rm -rf "$(top_builddir)/VLC Internet Plug-In.pkg"
export PACKAGEMAKER= export PACKAGEMAKER=
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment