Ticket #20663: mutt-devel-1.5.20-Portfile.with-fix.patch

File mutt-devel-1.5.20-Portfile.with-fix.patch, 878 bytes (added by netj@…, 15 years ago)

Patch for Portfile to use --with- instead of --enable- for gdbm and qdbm

  • Portfile

     
    8888
    8989variant qdbm conflicts db4 gdbm tokyocabinet description {Use QDBM database} {
    9090    depends_lib-append      port:qdbm
    91     configure.args-append   --enable-qdbm --without-bdb --without-gdbm --without-tokyocabinet
     91    configure.args-append   --with-qdbm --without-bdb --without-gdbm --without-tokyocabinet
    9292}
    9393
    9494variant gdbm conflicts db4 qdbm tokyocabinet description {Use GNU dbm database} {
    9595    depends_lib-append      port:gdbm
    96     configure.args-append   --enable-gdbm --without-bdb --without-qdbm --without-tokyocabinet
     96    configure.args-append   --with-gdbm --without-bdb --without-qdbm --without-tokyocabinet
    9797}
    9898
    9999variant db4 conflicts qdbm gdbm tokyocabinet description {Use Berkeley DB database} {