libraries/libAfterImage: Switch to i586.

Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
David Woodfall 2018-03-27 11:59:31 +00:00 committed by Willy Sudiarto Raharjo
parent 6ec7a3e052
commit c710fa26db
2 changed files with 10 additions and 10 deletions

View file

@ -1,8 +1,8 @@
libAfterImage is a generic image manipulation library. Most of the
popular image formats are supported using standard libraries, with
libAfterImage is a generic image manipulation library. Most of the
popular image formats are supported using standard libraries, with
XCF, XPM, PPM/PNM, BMP, ICO, TGA, and GIF being supported internally.
PNG, JPEG, and TIFF formats are supported via standard libraries.
For convenience, source for libJPEG and libPNG is supplied with
libAfterImage. Powerful text rendering capabilities are included,
providing support for TrueType fonts using the FreeType library
PNG, JPEG, and TIFF formats are supported via standard libraries.
For convenience, source for libJPEG and libPNG is supplied with
libAfterImage. Powerful text rendering capabilities are included,
providing support for TrueType fonts using the FreeType library
and antialiasing of standard fonts from the X window system.

View file

@ -7,12 +7,12 @@
PRGNAM=libAfterImage
VERSION=${VERSION:-1.20}
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
@ -23,8 +23,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"