diff options
author | grant <grant@pkgsrc.org> | 2004-12-18 16:17:12 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-12-18 16:17:12 +0000 |
commit | 52da5bcd246376c6dbf3e731aeebec8e0b80e266 (patch) | |
tree | 0428202328278d6ec1c04a6bde8381d2ba17e7ed /mail/imap-uw | |
parent | 2f3542f78c614372e8272172ad42627abd39317b (diff) | |
download | pkgsrc-52da5bcd246376c6dbf3e731aeebec8e0b80e266.tar.gz |
add build target support for IRIX.
fixes PR pkg/28610 from Georg Schwarz.
Diffstat (limited to 'mail/imap-uw')
-rw-r--r-- | mail/imap-uw/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mail/imap-uw/Makefile b/mail/imap-uw/Makefile index fd8c26d8eb1..d81af2c4d0f 100644 --- a/mail/imap-uw/Makefile +++ b/mail/imap-uw/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.86 2004/12/03 15:15:02 wiz Exp $ +# $NetBSD: Makefile,v 1.87 2004/12/18 16:17:12 grant Exp $ # ATTENTION: # The Kerberos support in this software is known to be problematic. If you # upgrade this package you *must* test it on a system *without* Kerberos @@ -32,6 +32,12 @@ BUILD_TARGET= gso BUILD_TARGET= slx .elif ${OPSYS} == "Darwin" BUILD_TARGET= osx +.elif ${OPSYS} == "IRIX" +. if ${OS_VERSION} >= 6.5 +BUILD_TARGET= sg6 +. else +BUILD_TARGET= sgi +. endif .else BUILD_TARGET= neb . if defined(USE_KERBEROS) && ${USE_KERBEROS} != "no" |