Ticket #10796: Portfile.patch

File Portfile.patch, 1.5 KB (added by canela@…, 18 years ago)
  • Portfile

    old new  
    22
    33PortSystem  1.0
    44name            postfix
    5 version         2.3.2
     5version         2.3.3
    66categories      mail
    77maintainers     yeled@macports.org
    88description     Fast and robust mail transfer agent
     
    1313            Postfix act as delivery daemon for ezmlm-idx.
    1414homepage        http://www.postfix.org/
    1515platforms       darwin
    16 checksums       md5 b1e482eea6a340041b8a637e62b15e3c
     16checksums       md5 f957e9319428be81c724b606fe060cc7
    1717master_sites    ftp://ftp.tau.ac.il/pub/unix/mail/postfix/official/ \
    1818    http://postfix.problemlos.ch/release/official/ \
    1919    ftp://ftp.matrix.com.br/pub/postfix/official/ \
     
    129129}
    130130
    131131variant tls {
    132     depends_lib-append  port:openssl
    133     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]
    135135}
    136136
    137137variant sasl {
    138138    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]
    141141}
    142142
    143143variant ldap {