diff options
author | grant <grant@pkgsrc.org> | 2002-08-21 02:43:44 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2002-08-21 02:43:44 +0000 |
commit | 618961e5682a168bdf9883c5ef31d20eadc5e39e (patch) | |
tree | ddc8b0a52d3c8d0a0a20293b67556dd0432d6554 /inputmethod | |
parent | 386e46734bbc42d97cf2cb604330fc1e133aa6a1 (diff) | |
download | pkgsrc-618961e5682a168bdf9883c5ef31d20eadc5e39e.tar.gz |
check that USE_INET6 is defined.
remove extraneous parenthesis around .if (${FOO} ..) conditions.
Diffstat (limited to 'inputmethod')
-rw-r--r-- | inputmethod/canna-dict/Makefile | 4 | ||||
-rw-r--r-- | inputmethod/canna-lib/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/inputmethod/canna-dict/Makefile b/inputmethod/canna-dict/Makefile index 6ef2c2a0a24..d0534567c96 100644 --- a/inputmethod/canna-dict/Makefile +++ b/inputmethod/canna-dict/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2002/06/10 09:05:09 sakamoto Exp $ +# $NetBSD: Makefile,v 1.2 2002/08/21 02:43:45 grant Exp $ DISTNAME= Canna35b2 PKGNAME= Canna-dict-3.5.2 @@ -27,7 +27,7 @@ BUILD_DEFS+= USE_INET6 .include "../../mk/bsd.prefs.mk" NO_MTREE= yes LOCALBASE= ${IMDICTDIR} -.if 0 # ${USE_INET6} == "YES" +.if 0 # defined(USE_INET6) && ${USE_INET6} == "YES" INET6= -DINET6 .else INET6= # empty diff --git a/inputmethod/canna-lib/Makefile b/inputmethod/canna-lib/Makefile index 85e00a752d2..6034561fd95 100644 --- a/inputmethod/canna-lib/Makefile +++ b/inputmethod/canna-lib/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2002/06/10 09:47:26 sakamoto Exp $ +# $NetBSD: Makefile,v 1.3 2002/08/21 02:43:45 grant Exp $ # DISTNAME= Canna35b2 @@ -21,7 +21,7 @@ INSTALL_TARGET= install install.man BUILD_DEFS+= USE_INET6 .include "../../mk/bsd.prefs.mk" -.if 0 # ${USE_INET6} == "YES" +.if 0 # defined(USE_INET6) && ${USE_INET6} == "YES" INET6= -DINET6 .else INET6= # empty |