diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2013-08-05 11:50:41 +0200 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2013-08-05 11:50:41 +0200 |
commit | 9c15182004cd75a74530c58aa29575d1a8125837 (patch) | |
tree | dde5b10fb14c308a30a805d806c8c564d57fcfcb | |
parent | f8fb06773f815f5df8988d0395565f5da4fe20f8 (diff) |
Build fixes.
-rw-r--r-- | extra/boost/PKGBUILD | 2 | ||||
-rw-r--r-- | extra/libtheora/PKGBUILD | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/extra/boost/PKGBUILD b/extra/boost/PKGBUILD index 3ec7e8cfa..1fd5c6f5a 100644 --- a/extra/boost/PKGBUILD +++ b/extra/boost/PKGBUILD @@ -64,7 +64,7 @@ build() { cp -a tools/boostbook/{xsl,dtd} "${_stagedir}"/share/boostbook/ # Disable context on mips64el, it needs N32-specific assembly. - [ "$CARCH" = "mips64el" ] && extra=--without-context + [ "$CARCH" = "mips64el" ] && extra="--without-context --without-coroutine" # default "minimal" install: "release link=shared,static # runtime-link=shared threading=single,multi" diff --git a/extra/libtheora/PKGBUILD b/extra/libtheora/PKGBUILD index 8280477cf..9b2a3b59a 100644 --- a/extra/libtheora/PKGBUILD +++ b/extra/libtheora/PKGBUILD @@ -26,7 +26,7 @@ prepare() { build() { cd ${pkgname}-${pkgver} - ./configure --prefix=/usr --enable-shared --disable-static + ./configure --prefix=/usr --enable-shared --disable-static --build=$CHOST --host=$CHOST make } |