Ticket #14856: Portfile.diff

File Portfile.diff, 1.3 KB (added by MarcusCalhoun-Lopez (Marcus Calhoun-Lopez), 16 years ago)
  • Portfile

    old new  
    7272    --without-pdo-sqlite \
    7373    --with-libxml-dir=${prefix} \
    7474    --with-gettext=${prefix} \
    75     --with-xml \
    76     --with-expat-dir=${prefix} \
    7775    --with-xmlrpc \
    7876    --enable-soap \
    79     --enable-filepro \
    8077    --enable-bcmath \
    81     --enable-trans-sid \
    8278    --enable-mbstring \
    83     --enable-dbx \
    8479    --enable-dba \
    8580    --enable-zip \
    8681    --with-openssl=${prefix} \
     
    254249        --with-oci8=instantclient,${prefix}/lib/oracle
    255250}
    256251
    257 variant postgresql description {provide postgresql support} {
     252variant postgresql description {provide postgresql support} conflicts postgresql83 {
    258253    depends_lib-append \
    259254        port:postgresql82
    260255    configure.args-append \
     
    262257        --with-pdo-pgsql=${prefix}/lib/postgresql82/bin
    263258}
    264259
     260variant postgresql83 description {provide postgresql 8.3 support} conflicts postgresql {
     261    depends_lib-append \
     262        port:postgresql83
     263    configure.args-append \
     264        --with-pgsql=${prefix}/lib/postgresql83/bin \
     265        --with-pdo-pgsql=${prefix}/lib/postgresql83/bin
     266}
     267
    265268# add sqlite support
    266269# note that standard sqlite support uses the built-in sqlite2 libraries
    267270# while pdo sqlite support uses the sqlite3 libraries from the sqlite3 port