Date: Mon, 25 Feb 2013 18:28:19 +0000 (UTC) From: Jung-uk Kim <jkim@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r312936 - head/www/gecko-mediaplayer/files Message-ID: <201302251828.r1PISJmG073542@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302251828.r1PISJmG073542>