sasl updates

Submitted by:	MAINTAINER

also, change ${SH} to /bin/sh, the former probably doesn't work because
of some bsd.{pre,post}.port.mk thing, but I don't have time to diagnose it.
This commit is contained in:
Bill Fumerola 2000-09-14 23:26:02 +00:00
parent afebe5fa8c
commit e401371e9b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=32622
3 changed files with 44 additions and 2 deletions

View File

@ -53,7 +53,7 @@ POSTFIX_AUXLIBS+= ${LOCALBASE}/lib/libpcre.a
.if defined(WITH_SASL)
BUILD_DEPENDS+= ${LOCALBASE}/lib/libsasl.a:${PORTSDIR}/security/cyrus-sasl
POSTFIX_CCARGS+= -DUSE_SASL_AUTH -I${LOCALBASE}/include
POSTFIX_AUXLIBS+= ${LOCALBASE}/lib/libsasl.a
POSTFIX_AUXLIBS+= ${LOCALBASE}/lib/libsasl.a -lpam -lcrypt
.endif
MAN1= mailq.1 newaliases.1 postalias.1 postcat.1 postconf.1 postdrop.1 \
@ -76,7 +76,7 @@ post-patch:
${ECHO} "all: default" >> Makefile)
pre-install:
@${SH} @${PKGDIR}/INSTALL Postfix PRE-INSTALL
@/bin/sh @${PKGDIR}/INSTALL Postfix PRE-INSTALL
do-install:
@${MKDIR} -m 755 ${PREFIX}/etc/postfix

View File

@ -0,0 +1,21 @@
*** ./smtpd/smtpd.h.orig Thu Sep 14 10:17:23 2000
--- ./smtpd/smtpd.h Thu Sep 14 10:17:38 2000
***************
*** 12,19 ****
* SASL library.
*/
#ifdef USE_SASL_AUTH
! #include <sasl.h>
! #include <saslutil.h>
#endif
/*
--- 12,19 ----
* SASL library.
*/
#ifdef USE_SASL_AUTH
! #include <sasl/sasl.h>
! #include <sasl/saslutil.h>
#endif
/*

View File

@ -0,0 +1,21 @@
*** ./smtp/smtp.h.orig Thu Sep 14 13:04:43 2000
--- ./smtp/smtp.h Thu Sep 14 13:04:53 2000
***************
*** 12,19 ****
* SASL library.
*/
#ifdef USE_SASL_AUTH
! #include <sasl.h>
! #include <saslutil.h>
#endif
/*
--- 12,19 ----
* SASL library.
*/
#ifdef USE_SASL_AUTH
! #include <sasl/sasl.h>
! #include <sasl/saslutil.h>
#endif
/*