]> git.sesse.net Git - vlc/commitdiff
Add --no-plugins-cache when compiling the mozilla plugin with debugging enabled,...
authorJP Dinger <jpd@m2x.nl>
Thu, 26 Feb 2009 13:21:07 +0000 (14:21 +0100)
committerJean-Paul Saman <jean-paul.saman@m2x.nl>
Sat, 7 Mar 2009 15:59:58 +0000 (16:59 +0100)
Signed-off-by: Jean-Paul Saman <jean-paul.saman@m2x.nl>
projects/mozilla/vlcplugin.cpp

index 84e9a6e21a8e1e7e26efe21963a6523f91ed8a24..31a1d6cb5103d010edaaaded935b05bb07cd59f7 100644 (file)
@@ -85,6 +85,10 @@ NPError VlcPlugin::init(int argc, char* const argn[], char* const argv[])
     const char *ppsz_argv[32];
     int ppsz_argc = 0;
 
+#ifndef NDEBUG
+    ppsz_argv[ppsz_argc++] = "--no-plugins-cache";
+#endif
+
     /* locate VLC module path */
 #ifdef XP_MACOSX
     ppsz_argv[ppsz_argc++] = "--plugin-path=/Library/Internet\\ Plug-Ins/VLC\\ Plugin.plugin/Contents/MacOS/modules";
@@ -152,8 +156,7 @@ NPError VlcPlugin::init(int argc, char* const argn[], char* const argv[])
         {
             if( boolValue(argv[i]) )
             {
-                ppsz_argv[ppsz_argc++] = "--volume";
-                ppsz_argv[ppsz_argc++] = "0";
+                ppsz_argv[ppsz_argc++] = "--volume=0";
             }
         }
         else if( !strcmp( argn[i], "loop")