libieee1284: conditionalize outb_p on glibc.

This commit is contained in:
Juan RP 2015-05-08 19:44:38 +02:00
parent 9d108ea1f5
commit 2339b36a5e
1 changed files with 5 additions and 1 deletions

View File

@ -11,7 +11,11 @@ license="GPL-2"
distfiles="$SOURCEFORGE_SITE/$pkgname/$pkgname-$version.tar.bz2"
checksum=7730de107782e5d2b071bdcb5b06a44da74856f00ef4a9be85d1ba4806a38f1a
CFLAGS="-Doutb_p=outb"
post_extract() {
case "$XBPS_TARGET_MACHINE" in
*-musl) export CFLAGS+=" -Doutb_p=outb";;
esac
}
libieee1284-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"