Ticket #10796: Portfile.patch
File Portfile.patch, 1.5 KB (added by canela@…, 18 years ago) |
---|
-
Portfile
old new 2 2 3 3 PortSystem 1.0 4 4 name postfix 5 version 2.3. 25 version 2.3.3 6 6 categories mail 7 7 maintainers yeled@macports.org 8 8 description Fast and robust mail transfer agent … … 13 13 Postfix act as delivery daemon for ezmlm-idx. 14 14 homepage http://www.postfix.org/ 15 15 platforms darwin 16 checksums md5 b1e482eea6a340041b8a637e62b15e3c16 checksums md5 f957e9319428be81c724b606fe060cc7 17 17 master_sites ftp://ftp.tau.ac.il/pub/unix/mail/postfix/official/ \ 18 18 http://postfix.problemlos.ch/release/official/ \ 19 19 ftp://ftp.matrix.com.br/pub/postfix/official/ \ … … 129 129 } 130 130 131 131 variant tls { 132 depends_lib-append port:openssl133 set CCARGS [concat ${CCARGS} -DUSE_TLS ]134 set AUXLIBS [concat ${AUXLIBS} - lssl -lcrypto]132 # depends_lib-append port:openssl 133 set CCARGS [concat ${CCARGS} -DUSE_TLS -I/usr/include/openssl] 134 set AUXLIBS [concat ${AUXLIBS} -L/usr/lib/openssl -lssl -lcrypto] 135 135 } 136 136 137 137 variant sasl { 138 138 depends_lib-append port:cyrus-sasl2 139 set CCARGS [concat ${CCARGS} -DUSE_SASL_AUTH - I${prefix}/include/sasl]140 set AUXLIBS [concat ${AUXLIBS} - lsasl2]139 set CCARGS [concat ${CCARGS} -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I${prefix}/include/sasl] 140 set AUXLIBS [concat ${AUXLIBS} -L${prefix}/lib/sasl2 -lsasl2] 141 141 } 142 142 143 143 variant ldap {