diff options
| author | Norikatsu Shigemura <nork@FreeBSD.org> | 2004-04-05 02:48:01 +0000 | 
|---|---|---|
| committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2004-04-05 02:48:01 +0000 | 
| commit | 7c5ce7b05521468b1f3de7e60fa28625bfb76af4 (patch) | |
| tree | 578d87e945be9418f7f3310277d28fcb85db1b90 | |
| parent | Fix incorrect message about WITHOUT_IPV6. (diff) | |
o Fix recursive definition of PKGNAMESUFFIX.
o Add missing tailing \.
This is 'Fix build error'. So I don't bump PORTREVISION.
Approved by:	Yarema <yds@CoolRat.org> (maintainer)
Notes
Notes:
    svn path=/head/; revision=106167
| -rw-r--r-- | mail/courier/Makefile | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/mail/courier/Makefile b/mail/courier/Makefile index e8a81c1d76d4..2e6f12500b2c 100644 --- a/mail/courier/Makefile +++ b/mail/courier/Makefile @@ -223,7 +223,7 @@ CONFIGURE_ARGS+=--without-ispell  .endif  .if defined(WITH_OPENLDAP) && !defined(WITHOUT_OPENLDAP) -PKGNAMESUFFIX:=	${PKGNAMESUFFIX}-ldap +PKGNAMESUFFIX!=	${ECHO} ${PKGNAMESUFFIX}-ldap  USE_OPENLDAP=	yes  CONFIGURE_ARGS+=--with-authldap  PLIST_SUB+=	SUB_LDAP="" @@ -237,7 +237,7 @@ PLIST_SUB+=	SUB_LDAP="@comment "  BROKEN+=	VPopMail and MySQL are mutually exclusive.\  		Uninstall VPopMail if you want MySQL authentication.  .endif -PKGNAMESUFFIX:=	${PKGNAMESUFFIX}-mysql +PKGNAMESUFFIX!=	${ECHO} ${PKGNAMESUFFIX}-mysql  USE_MYSQL=	yes  CONFIGURE_ARGS+=--with-authmysql \  		--with-mysql-libs=${LOCALBASE}/lib/mysql \ @@ -249,10 +249,10 @@ PLIST_SUB+=	SUB_MYSQL="@comment "  .endif  .if defined(WITH_PGSQL) && !defined(WITHOUT_PGSQL) -PKGNAMESUFFIX:=	${PKGNAMESUFFIX}-pgsql +PKGNAMESUFFIX!=	${ECHO} ${PKGNAMESUFFIX}-pgsql  LIB_DEPENDS+=	pq.3:${PORTSDIR}/databases/postgresql7 -CONFIGURE_ARGS+=--with-authpgsql -		--with-pgsql-libs=${PGSQLBASE}/lib +CONFIGURE_ARGS+=--with-authpgsql \ +		--with-pgsql-libs=${PGSQLBASE}/lib \  		--with-pgsql-includes=${PGSQLINCLUDES}  PLIST_SUB+=	SUB_PGSQL=""  .else @@ -261,7 +261,7 @@ PLIST_SUB+=	SUB_PGSQL="@comment "  .endif  .if defined(WITH_VCHKPW) && !defined(WITHOUT_VCHKPW) && !defined(WITH_MYSQL) -PKGNAMESUFFIX:=	${PKGNAMESUFFIX}-vpopmail +PKGNAMESUFFIX!=	${ECHO} ${PKGNAMESUFFIX}-vpopmail  BUILD_DEPENDS+=	${LOCALBASE}/vpopmail/lib/libvpopmail.a:${PORTSDIR}/mail/vpopmail  CONFIGURE_ARGS+=--with-authvchkpw  .else  | 
