Ticket #39369: Portfile-wireshark.diff
File Portfile-wireshark.diff, 1.2 KB (added by irony42@…, 11 years ago) |
---|
-
Portfile
old new 32 32 depends_build \ 33 33 port:pkgconfig 34 34 depends_lib \ 35 port: adns \35 port:c-ares \ 36 36 port:libgcrypt \ 37 37 port:libgeoip \ 38 38 path:lib/pkgconfig/glib-2.0.pc:glib2 \ … … 49 49 configure.args \ 50 50 --with-libsmi=${prefix} \ 51 51 --disable-usr-local \ 52 --with- adns=${prefix} \53 --without- c-ares \52 --with-c-ares=${prefix} \ 53 --without-adns \ 54 54 --with-geoip=${prefix} \ 55 55 --with-gnutls=yes \ 56 56 --with-libgcrypt-prefix=${prefix} \ … … 97 97 configure.cflags -fno-var-tracking 98 98 } 99 99 100 variant no_adns description {don'tuse adns library for async. dns resolution instead of the default c-ares library} {101 configure.args- append --without-adns\102 --with -c-ares=${prefix}103 configure.args- delete--with-adns=${prefix} \100 variant adns description {use adns library for async. dns resolution instead of the default c-ares library} { 101 configure.args-delete --with-c-ares=${prefix}\ 102 --without-adns 103 configure.args-append --with-adns=${prefix} \ 104 104 --without-c-ares 105 depends_lib-delete port:adns 105 depends_lib-delete port:c-ares 106 depends_lib-append port:adns 106 107 } 107 108 108 109 variant no_gnutls {