diff options
author | jlam <jlam> | 2004-03-27 04:21:55 +0000 |
---|---|---|
committer | jlam <jlam> | 2004-03-27 04:21:55 +0000 |
commit | 286b58182dca1c619304d291744fcc5547bef262 (patch) | |
tree | 06f69eca4aca27becd1b1878fd7cbfcfeb2aa1b8 /devel/cvs | |
parent | f4d822225273f8c56baceab81948d7467f885130 (diff) | |
download | pkgsrc-286b58182dca1c619304d291744fcc5547bef262.tar.gz |
Check for USE_INET being "YES" or "yes".
Diffstat (limited to 'devel/cvs')
-rw-r--r-- | devel/cvs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/cvs/Makefile b/devel/cvs/Makefile index f368b29223f..16562c7f150 100644 --- a/devel/cvs/Makefile +++ b/devel/cvs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.74 2004/03/04 20:54:40 wiz Exp $ +# $NetBSD: Makefile,v 1.75 2004/03/27 04:21:55 jlam Exp $ # DISTNAME= cvs-1.11.13 @@ -21,7 +21,7 @@ GNU_CONFIGURE= yes BUILD_DEFS+= USE_INET6 -.if defined(USE_INET6) && ${USE_INET6} == "YES" && \ +.if defined(USE_INET6) && !empty(USE_INET6:M[yY][eE][sS]) && \ empty(MACHINE_PLATFORM:MSunOS-5.[89]-*) && \ empty(MACHINE_PLATFORM:MLinux-*) CONFIGURE_ARGS+= --enable-ipv6 |