svn commit: r312936 - head/www/gecko-mediaplayer/files

Jung-uk Kim jkim at FreeBSD.org
Mon Feb 25 18:28:19 UTC 2013


Author: jkim
Date: Mon Feb 25 18:28:18 2013
New Revision: 312936
URL: http://svnweb.freebsd.org/changeset/ports/312936

Log:
  Add an upstream patch to fix build with libxul19.
  
  http://code.google.com/p/gecko-mediaplayer/source/detail?r=517

Added:
  head/www/gecko-mediaplayer/files/patch-src__plugin.cpp   (contents, props changed)

Added: head/www/gecko-mediaplayer/files/patch-src__plugin.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/gecko-mediaplayer/files/patch-src__plugin.cpp	Mon Feb 25 18:28:18 2013	(r312936)
@@ -0,0 +1,21 @@
+Index: src/plugin.cpp
+===================================================================
+--- src/plugin.cpp	(revision 516)
++++ src/plugin.cpp	(revision 517)
+@@ -250,12 +250,16 @@
+     case NPERR_STREAM_NOT_SEEKABLE:
+         return "Stream Not Seekable";
+         break;
++#ifdef NPERR_TIME_RANGE_NOT_SUPPORTED    
+     case NPERR_TIME_RANGE_NOT_SUPPORTED:
+         return "Time Range Not Supported";
+         break;
++#endif
++#ifdef NPERR_MALFORMED_SITE       
+     case NPERR_MALFORMED_SITE:
+         return "Malformed Site";
+         break;
++#endif            
+     default:
+         return "Unknown NPError Code";
+         break;


More information about the svn-ports-head mailing list