diff options
Diffstat (limited to 'extra/imap/PKGBUILD')
-rw-r--r-- | extra/imap/PKGBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extra/imap/PKGBUILD b/extra/imap/PKGBUILD index 8be9b7e81..2ad5306e4 100644 --- a/extra/imap/PKGBUILD +++ b/extra/imap/PKGBUILD @@ -4,7 +4,7 @@ pkgname=imap pkgver=2007f pkgrel=4 pkgdesc="An IMAP/POP server" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('APACHE') url="http://www.washington.edu/imap" depends=('openssl' 'pam') @@ -31,7 +31,7 @@ build() { cd $srcdir/$pkgname-$pkgver # NOTE: if you wish to enforce SSL, use SSLTYPE=unix.nopwd - if [ "$CARCH" == "x86_64" ]; then + if [ "$CARCH" != "i686" ]; then yes "y" | make lnp SPECIALAUTHENTICATORS=ssl SSLTYPE=unix EXTRACFLAGS="${CFLAGS} -fPIC" else yes "y" | make lnp SPECIALAUTHENTICATORS=ssl SSLTYPE=unix fi |