diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2012-11-09 06:06:36 +0200 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2012-11-09 06:06:36 +0200 |
commit | dd635f832ebb5850090f19a5bda15f1603b1a444 (patch) | |
tree | 22b56167266fdc42a141a45402d5a285ec22bc55 /www-plugins/gnash/files/gnash-0.8.10-npapi-sdk.patch | |
parent | 559ac7559939b9cc91e9aae30b9c980c5d1462b6 (diff) |
new file: gnash/files/gnash-0.8.10-amf-include.patch
new file: gnash/files/gnash-0.8.10-boost-1.50.patch
new file: gnash/files/gnash-0.8.10-cve-2012-1175.patch
new file: gnash/files/gnash-0.8.10-gettext-macro.patch
new file: gnash/files/gnash-0.8.10-jemalloc-aslr-fix.patch
new file: gnash/files/gnash-0.8.10-npapi-sdk.patch
new file: gnash/files/gnash-0.8.9-external-dejagnu.patch
new file: gnash/files/gnash-0.8.9-kde4-libdir.patch
new file: gnash/files/gnash-0.8.9-klash.patch
new file: gnash/gnash-9999.ebuild
Diffstat (limited to 'www-plugins/gnash/files/gnash-0.8.10-npapi-sdk.patch')
-rw-r--r-- | www-plugins/gnash/files/gnash-0.8.10-npapi-sdk.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/www-plugins/gnash/files/gnash-0.8.10-npapi-sdk.patch b/www-plugins/gnash/files/gnash-0.8.10-npapi-sdk.patch new file mode 100644 index 0000000..eb54295 --- /dev/null +++ b/www-plugins/gnash/files/gnash-0.8.10-npapi-sdk.patch @@ -0,0 +1,29 @@ +From 983a675c94ecec54ae14593744aa9a2198466499 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org> +Date: Thu, 15 Sep 2011 12:59:55 +0200 +Subject: [PATCH] Support building against NPAPI-SDK as well. + +--- + macros/npapi.m4 | 6 +++++- + 1 files changed, 5 insertions(+), 1 deletions(-) + +diff --git a/macros/npapi.m4 b/macros/npapi.m4 +index e3bde2f..522bbb1 100644 +--- a/macros/npapi.m4 ++++ b/macros/npapi.m4 +@@ -34,7 +34,11 @@ AC_DEFUN([GNASH_PATH_NPAPI], + + if test x$cross_compiling = xno; then + if test x"$PKG_CONFIG" != x -a x"${ac_cv_path_npapi_incl}" = x; then +- $PKG_CONFIG --exists mozilla-plugin && NPAPI_CFLAGS="`$PKG_CONFIG --cflags mozilla-plugin`" ++ if $PKG_CONFIG --exists npapi-sdk; then ++ NPAPI_CFLAGS="`$PKG_CONFIG --cflags npapi-sdk`" ++ elif $PKG_CONFIG --exists mozilla-plugin; then ++ NPAPI_CFLAGS="`$PKG_CONFIG --cflags mozilla-plugin`" ++ fi + fi + fi + +-- +1.7.3.4 + |