Ticket #36242: Portfile-postfix.diff
File Portfile-postfix.diff, 2.4 KB (added by nonstop.server@…, 12 years ago) |
---|
-
Portfile
old new 204 204 lappend AUXLIBS "-L${prefix}/lib/percona/mysql" -lmysqlclient -lz -lm 205 205 } 206 206 207 variant postgresql83 conflicts postgresql84 postgresql90 postgresql91 description "add postgresql support via postgresql83" {207 variant postgresql83 conflicts postgresql84 postgresql90 postgresql91 postgresql92 description "add postgresql support via postgresql83" { 208 208 depends_lib-append port:postgresql83 209 209 lappend CCARGS -DHAS_PGSQL "-I${prefix}/include/postgresql83" 210 210 lappend AUXLIBS "-L${prefix}/lib/postgresql83" -lpq 211 211 } 212 212 213 variant postgresql84 conflicts postgresql83 postgresql90 postgresql91 description "add postgresql support via postgresql84" {213 variant postgresql84 conflicts postgresql83 postgresql90 postgresql91 postgresql92 description "add postgresql support via postgresql84" { 214 214 depends_lib-append port:postgresql84 215 215 lappend CCARGS -DHAS_PGSQL "-I${prefix}/include/postgresql84" 216 216 lappend AUXLIBS "-L${prefix}/lib/postgresql84" -lpq 217 217 } 218 218 219 variant postgresql90 conflicts postgresql83 postgresql84 postgresql91 description "add postgresql support via postgresql90" {219 variant postgresql90 conflicts postgresql83 postgresql84 postgresql91 postgresql92 description "add postgresql support via postgresql90" { 220 220 depends_lib-append port:postgresql90 221 221 lappend CCARGS -DHAS_PGSQL "-I${prefix}/include/postgresql90" 222 222 lappend AUXLIBS "-L${prefix}/lib/postgresql90" -lpq 223 223 } 224 224 225 variant postgresql91 conflicts postgresql83 postgresql84 postgresql90 description "add postgresql support via postgresql91" {225 variant postgresql91 conflicts postgresql83 postgresql84 postgresql90 postgresql92 description "add postgresql support via postgresql91" { 226 226 depends_lib-append port:postgresql91 227 227 lappend CCARGS -DHAS_PGSQL "-I${prefix}/include/postgresql91" 228 228 lappend AUXLIBS "-L${prefix}/lib/postgresql91" -lpq 229 229 } 230 230 231 variant 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 231 237 variant dovecot_sasl description "add Dovecot SASL support" { 232 238 lappend CCARGS -DUSE_SASL_AUTH -DDEF_SERVER_SASL_TYPE="dovecot" 233 239 }