diff options
author | grant <grant@pkgsrc.org> | 2003-06-08 20:14:28 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-06-08 20:14:28 +0000 |
commit | c3dbb3884835e93197dec5d8069027aa9ccf0a5b (patch) | |
tree | 04472fba44ea1a5780e77fbc7ddb42897897d4b5 /mail | |
parent | 464d849ef70a3ba1940acb712453b153702b9dea (diff) | |
download | pkgsrc-c3dbb3884835e93197dec5d8069027aa9ccf0a5b.tar.gz |
drop some unneeded parens, whitespace
Diffstat (limited to 'mail')
-rw-r--r-- | mail/imap-uw/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/imap-uw/Makefile b/mail/imap-uw/Makefile index f89fcc3671e..81cbb051b0c 100644 --- a/mail/imap-uw/Makefile +++ b/mail/imap-uw/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.58 2003/06/02 01:18:46 jschauma Exp $ +# $NetBSD: Makefile,v 1.59 2003/06/08 20:14:28 grant Exp $ DISTNAME= imap-2002b PKGNAME= imap-uw-2002.2 @@ -29,8 +29,8 @@ ALL_TARGET= lrh ALL_TARGET= osx .else ALL_TARGET= neb -. if defined(USE_KERBEROS) && (${USE_KERBEROS} != "no") -PKG_USE_KERBEROS= #defined +. if defined(USE_KERBEROS) && ${USE_KERBEROS} != "no" +PKG_USE_KERBEROS= # defined ALL_TARGET+= EXTRAAUTHENTICATORS="gss" . if !empty(MACHINE_PLATFORM:MNetBSD-1.5*) # NetBSD-1.5 didn't have "des_new_random_key" in libcrypto @@ -76,7 +76,7 @@ ALL_TARGET+= SSLTYPE="unix" # reduce optimization level on alpha to avoid compiler bugs .if ${OPSYS} == "NetBSD" -. if (${MACHINE_ARCH} == "alpha") +. if ${MACHINE_ARCH} == "alpha" CPPFLAGS:= ${CPPFLAGS:C/-O[0-9]*/-O/g} CFLAGS:= ${CFLAGS:C/-O[0-9]*/-O/g} CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" |