diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-02-09 09:21:56 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-02-09 09:21:56 +0000 |
commit | 645ddd35114c4c1affed339d929c6ae0d5100a23 (patch) | |
tree | 966eda022d3851c295aabcf85713bbdbd229769a /testing | |
parent | 6b22bf8cd0d9cdf92f63b7a1b3863c81e218ef79 (diff) | |
download | aports-645ddd35114c4c1affed339d929c6ae0d5100a23.tar.bz2 aports-645ddd35114c4c1affed339d929c6ae0d5100a23.tar.xz |
testing/mysql: link to uclibc++ properly
add 'export CXX=g++-uc' in order to link to uclibc++
Diffstat (limited to 'testing')
-rw-r--r-- | testing/mysql/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/mysql/APKBUILD b/testing/mysql/APKBUILD index 27849bef8f..bef9f32d24 100644 --- a/testing/mysql/APKBUILD +++ b/testing/mysql/APKBUILD @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="A fast SQL database server" url="http://www.mysql.com/" license='GPL' -depends="readline openssl" +depends="readline openssl uclibc++" makedepends="libtool uclibc++-dev readline-dev openssl-dev" source="http://sunsite.informatik.rwth-aachen.de/mysql/Downloads/MySQL-5.0/${pkgname}-${pkgver}.tar.gz $pkgname.initd @@ -14,6 +14,7 @@ subpackages="$pkgname-doc $pkgname-dev $pkgname-test" build() { cd "$srcdir/$pkgname-$pkgver" + export CXX=g++-uc ./configure --prefix=/usr --libexecdir=/usr/sbin \ --localstatedir=/var/lib/mysql \ --disable-assembler --with-pthread \ |