Skip to content

Commit

Permalink
Fix npapi plugin detection
Browse files Browse the repository at this point in the history
  • Loading branch information
gliaskos committed May 12, 2013
1 parent ef47f98 commit bc63c97
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions www/chromium/files/patch-webkit__plugins__npapi__plugin_utils.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
--- webkit/plugins/npapi/plugin_utils.cc.orig 2013-05-12 20:08:18.000000000 +0300
+++ webkit/plugins/npapi/plugin_utils.cc 2013-05-12 20:10:33.000000000 +0300
@@ -45,7 +45,7 @@
}

bool NPAPIPluginsSupported() {
-#if defined(OS_WIN) || defined(OS_MACOSX) || (defined(OS_LINUX) && !defined(USE_AURA))
+#if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_BSD) || (defined(OS_LINUX) && !defined(USE_AURA))
return true;
#else
return false;

0 comments on commit bc63c97

Please sign in to comment.