diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2005-06-14 20:30:13 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2005-06-14 20:30:13 +0000 |
commit | e2cce2e62c890fbb09c73c1fb12d86da219dfa75 (patch) | |
tree | 2c84c68dfc94b9d3a3fee9d9f075d8f77f97139c /net-mgmt/pmacct | |
parent | 91cdac02fb80b2d17c596d88307d3cc4f4dea625 (diff) | |
download | ports-e2cce2e62c890fbb09c73c1fb12d86da219dfa75.tar.gz ports-e2cce2e62c890fbb09c73c1fb12d86da219dfa75.zip |
Notes
Diffstat (limited to 'net-mgmt/pmacct')
-rw-r--r-- | net-mgmt/pmacct/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net-mgmt/pmacct/Makefile b/net-mgmt/pmacct/Makefile index 7bef041f12a2..7c675b5dbaf7 100644 --- a/net-mgmt/pmacct/Makefile +++ b/net-mgmt/pmacct/Makefile @@ -22,8 +22,8 @@ USE_REINPLACE= yes OPTIONS= MYSQL "Enable MySQL support." Off \ PGSQL "Enable PostgreSQL support." Off \ - MMAP "Disable mmap(2) support." Off \ - LAYER2 "Disable Layer-2 support: MAC Adresses and VLANs" Off + MMAP "Enable mmap(2) support." On \ + LAYER2 "Enable Layer-2 support: MAC Adresses and VLANs" On .include <bsd.port.pre.mk> @@ -46,15 +46,15 @@ PLIST_SUB+= WITH_PGSQL="@comment " .endif .if defined(WITHOUT_MMAP) -CONFIGURE_ARGS+=--enable-mmap -.else CONFIGURE_ARGS+=--disable-mmap +.else +CONFIGURE_ARGS+=--enable-mmap .endif .if defined(WITHOUT_LAYER2) -CONFIGURE_ARGS+=--enable-l2 -.else CONFIGURE_ARGS+=--disable-l2 +.else +CONFIGURE_ARGS+=--enable-l2 .endif post-patch: |