diff options
author | tnn <tnn@pkgsrc.org> | 2007-10-16 23:48:58 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2007-10-16 23:48:58 +0000 |
commit | 24d5b5440929de9526a6f56e677b8849f624fc21 (patch) | |
tree | b29811eb6b46cc5f60ca30ac6cd4ef5482fa68eb /mail | |
parent | 0d22d43b0025cb69d33a7dfeec038c71e05ef3e9 (diff) | |
download | pkgsrc-24d5b5440929de9526a6f56e677b8849f624fc21.tar.gz |
Fix abusers of LOWER_OPSYS to check OPSYS or MACHINE_PLATFORM instead.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/deliver/Makefile | 4 | ||||
-rw-r--r-- | mail/libesmtp/Makefile | 4 | ||||
-rw-r--r-- | mail/mutt/Makefile | 4 | ||||
-rw-r--r-- | mail/nmh/Makefile | 4 | ||||
-rw-r--r-- | mail/sma/Makefile | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/mail/deliver/Makefile b/mail/deliver/Makefile index e35dd6bec57..1b9672296da 100644 --- a/mail/deliver/Makefile +++ b/mail/deliver/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2007/01/07 09:13:57 rillig Exp $ +# $NetBSD: Makefile,v 1.12 2007/10/16 23:49:01 tnn Exp $ DISTNAME= deliver-2.1.14 PKGREVISION= 1 @@ -18,7 +18,7 @@ PKG_SUPPORTED_OPTIONS= deliver-suid .include "../../mk/bsd.prefs.mk" -.if !empty(LOWER_OPSYS:Mirix5*) +.if ${OPSYS} == "IRIX" CPPFLAGS+= -DNO_SYS_TIMEB_H .endif diff --git a/mail/libesmtp/Makefile b/mail/libesmtp/Makefile index 6b14aa9f1d7..d65c044f9fa 100644 --- a/mail/libesmtp/Makefile +++ b/mail/libesmtp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2006/02/08 18:29:17 drochner Exp $ +# $NetBSD: Makefile,v 1.24 2007/10/16 23:49:01 tnn Exp $ DISTNAME= libesmtp-1.0.4 CATEGORIES= mail devel @@ -21,7 +21,7 @@ CONFIGURE_ARGS+= --disable-isoc .include "../../mk/bsd.prefs.mk" -.if !empty(LOWER_OPSYS:Mirix5*) +.if ${OPSYS} == "IRIX" CONFIGURE_ARGS+= --enable-emulate-getaddrinfo .endif diff --git a/mail/mutt/Makefile b/mail/mutt/Makefile index 41ae74c5a8f..63fb6b33657 100644 --- a/mail/mutt/Makefile +++ b/mail/mutt/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.149 2007/05/27 13:34:16 tron Exp $ +# $NetBSD: Makefile,v 1.150 2007/10/16 23:48:59 tnn Exp $ DISTNAME= mutt-1.4.2.3 CATEGORIES= mail @@ -31,7 +31,7 @@ MAKE_ENV+= CHGRP=${CHGRP:Q} CONFIGURE_ARGS+= --without-wc-funcs .endif -.if ${LOWER_OPSYS} == "irix5.3" +.if !empty(MACHINE_PLATFORM:MIRIX-5.3-*) CONFIGURE_ENV+= ac_cv_header_inttypes_h=no .endif diff --git a/mail/nmh/Makefile b/mail/nmh/Makefile index ade072febcd..476031a5662 100644 --- a/mail/nmh/Makefile +++ b/mail/nmh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.64 2007/02/22 19:26:42 wiz Exp $ +# $NetBSD: Makefile,v 1.65 2007/10/16 23:49:01 tnn Exp $ DISTNAME= nmh-1.0.4 PKGREVISION= 7 @@ -25,7 +25,7 @@ CONFLICTS+= ja-mh6-[0-9]* CFLAGS+= -O1 .endif -.if !empty(LOWER_OPSYS:Mirix5*) +.if ${OPSYS} == "IRIX" CPPFLAGS+= -DIRIX5 # for a patch with extra typedefs .endif diff --git a/mail/sma/Makefile b/mail/sma/Makefile index 293c62ccb53..dc6f1b9d5d6 100644 --- a/mail/sma/Makefile +++ b/mail/sma/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2007/02/22 19:26:44 wiz Exp $ +# $NetBSD: Makefile,v 1.13 2007/10/16 23:49:01 tnn Exp $ DISTNAME= sma-1.4 CATEGORIES= mail @@ -16,7 +16,7 @@ BUILD_TARGET= sma .include "../../mk/bsd.prefs.mk" -.if empty(LOWER_OPSYS:Mirix5*) +.if ${OPSYS} == "IRIX" CFLAGS+= -DUSE_REGEXP .endif INSTALLATION_DIRS= bin ${PKGMANDIR}/man8 |