libraries/nspluginwrapper: Switch to i586.

Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
David Woodfall 2018-03-27 12:15:34 +00:00 committed by Willy Sudiarto Raharjo
parent 3de4003fed
commit 19773a0c1b
2 changed files with 8 additions and 8 deletions

View File

@ -1,7 +1,7 @@
nspluginwrapper is a proxy plug-in and viewer for NPAPI browser
plug-ins. It allows browsers to run foreign plug-ins built for a
different architecture, most commonly to run a 32-bit plug-in in a
64-bit browser.
nspluginwrapper is a proxy plug-in and viewer for NPAPI browser
plug-ins. It allows browsers to run foreign plug-ins built for a
different architecture, most commonly to run a 32-bit plug-in in a
64-bit browser.
This is needed by 64bit midori compiled against GTK3 to use the flash
plugin:

View File

@ -24,12 +24,12 @@
PRGNAM=nspluginwrapper
VERSION=${VERSION:-git20130818}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@ -40,8 +40,8 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"