From 1b6914143017780c2912f861201a3cf005d5f08e Mon Sep 17 00:00:00 2001 From: Michał Masłowski Date: Sat, 30 Jun 2012 20:51:05 +0200 Subject: Disable mutter compilation warnings. --- extra/mutter/PKGBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'extra') diff --git a/extra/mutter/PKGBUILD b/extra/mutter/PKGBUILD index cccd57e60..69971cca1 100644 --- a/extra/mutter/PKGBUILD +++ b/extra/mutter/PKGBUILD @@ -23,7 +23,8 @@ build() { ./configure --prefix=/usr --sysconfdir=/etc \ --libexecdir=/usr/lib/mutter \ --localstatedir=/var --disable-static \ - --disable-schemas-compile + --disable-schemas-compile \ + --enable-compile-warnings=no make } -- cgit v1.2.3-54-g00ecf From e308bd57b6581c2a63fda9e7eccdb4ca0d1dc776 Mon Sep 17 00:00:00 2001 From: Michał Masłowski Date: Sat, 30 Jun 2012 22:41:19 +0200 Subject: Disable SSE for audacity on mips64el. --- extra/audacity/PKGBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'extra') diff --git a/extra/audacity/PKGBUILD b/extra/audacity/PKGBUILD index 9601a26ac..8bb25db14 100644 --- a/extra/audacity/PKGBUILD +++ b/extra/audacity/PKGBUILD @@ -5,7 +5,7 @@ pkgname=audacity pkgver=2.0.1 pkgrel=1 pkgdesc="A program that lets you manipulate digital audio waveforms" -arch=(mips64el) +arch=('i686' 'x86_64' 'mips64el') url="http://audacity.sourceforge.net/" license=('GPL') depends=('libmad' 'libid3tag' 'wxgtk' 'lame' 'hicolor-icon-theme' @@ -17,13 +17,14 @@ sha1sums=('366a10f3bd71c4d84c29437fff1e27a8560f691b') build() { cd "${srcdir}/${pkgname}-src-${pkgver}" + [ "$CARCH" = "mips64el" ] && extra="--disable-sse" WX_CONFIG=/usr/bin/wx-config ./configure --prefix=/usr \ --with-portaudio --with-libsamplerate \ --without-libresample --with-libmad \ --with-ffmpeg --with-id3tag --with-libflac \ --with-vorbis --with-libexpat \ --with-libsndfile --with-soundtouch \ - --enable-unicode --without-taglib + --enable-unicode --without-taglib $extra make } -- cgit v1.2.3-54-g00ecf