Ticket #36242: Portfile-postfix.diff

File Portfile-postfix.diff, 2.4 KB (added by nonstop.server@…, 12 years ago)
  • Portfile

    old new  
    204204    lappend AUXLIBS "-L${prefix}/lib/percona/mysql" -lmysqlclient -lz -lm
    205205}
    206206
    207 variant postgresql83 conflicts postgresql84 postgresql90 postgresql91 description "add postgresql support via postgresql83" {
     207variant postgresql83 conflicts postgresql84 postgresql90 postgresql91 postgresql92 description "add postgresql support via postgresql83" {
    208208    depends_lib-append port:postgresql83
    209209    lappend CCARGS  -DHAS_PGSQL "-I${prefix}/include/postgresql83"
    210210    lappend AUXLIBS "-L${prefix}/lib/postgresql83" -lpq
    211211}
    212212
    213 variant postgresql84 conflicts postgresql83 postgresql90 postgresql91 description "add postgresql support via postgresql84" {
     213variant postgresql84 conflicts postgresql83 postgresql90 postgresql91 postgresql92 description "add postgresql support via postgresql84" {
    214214    depends_lib-append port:postgresql84
    215215    lappend CCARGS  -DHAS_PGSQL "-I${prefix}/include/postgresql84"
    216216    lappend AUXLIBS "-L${prefix}/lib/postgresql84" -lpq
    217217}
    218218
    219 variant postgresql90 conflicts postgresql83 postgresql84 postgresql91 description "add postgresql support via postgresql90" {
     219variant postgresql90 conflicts postgresql83 postgresql84 postgresql91 postgresql92 description "add postgresql support via postgresql90" {
    220220    depends_lib-append port:postgresql90
    221221    lappend CCARGS  -DHAS_PGSQL "-I${prefix}/include/postgresql90"
    222222    lappend AUXLIBS "-L${prefix}/lib/postgresql90" -lpq
    223223}
    224224
    225 variant postgresql91 conflicts postgresql83 postgresql84 postgresql90 description "add postgresql support via postgresql91" {
     225variant postgresql91 conflicts postgresql83 postgresql84 postgresql90 postgresql92 description "add postgresql support via postgresql91" {
    226226    depends_lib-append port:postgresql91
    227227    lappend CCARGS  -DHAS_PGSQL "-I${prefix}/include/postgresql91"
    228228    lappend AUXLIBS "-L${prefix}/lib/postgresql91" -lpq
    229229}
    230230
     231variant postgresql92 conflicts postgresql83 postgresql84 postgresql90 postgresql91 description "add postgresql support via postgresql92" {
     232    depends_lib-append port:postgresql92
     233    lappend CCARGS  -DHAS_PGSQL "-I${prefix}/include/postgresql92"
     234    lappend AUXLIBS "-L${prefix}/lib/postgresql92" -lpq
     235}
     236
    231237variant dovecot_sasl description "add Dovecot SASL support" {
    232238    lappend CCARGS  -DUSE_SASL_AUTH -DDEF_SERVER_SASL_TYPE="dovecot"
    233239}