diff options
author | Oliver Lehmann <oliver@FreeBSD.org> | 2012-12-21 06:39:49 +0000 |
---|---|---|
committer | Oliver Lehmann <oliver@FreeBSD.org> | 2012-12-21 06:39:49 +0000 |
commit | aee18f100594429aac99c5e135259bfcfc12cb51 (patch) | |
tree | 73d8626a9a8f64c83918c7238d1e64c6d8edb928 /security/oidentd | |
parent | 12ffc54bb2d806048f5bf579ba07786ccc4d3a58 (diff) |
use USE_CSTD instead of manually setting CFLAGS
Notes
Notes:
svn path=/head/; revision=309342
Diffstat (limited to 'security/oidentd')
-rw-r--r-- | security/oidentd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/oidentd/Makefile b/security/oidentd/Makefile index 920987f00690..1cbdbb3ec81c 100644 --- a/security/oidentd/Makefile +++ b/security/oidentd/Makefile @@ -21,7 +21,7 @@ MAN5= oidentd.conf.5 oidentd_masq.conf.5 MAN8= oidentd.8 PLIST_FILES= sbin/oidentd etc/oidentd.conf.sample \ etc/oidentd_masq.conf.sample -CONFIGURE_ENV+= CFLAGS="${CFLAGS} -std=gnu89" +USE_CSTD= gnu89 OPTIONS= IPV6 "Enable IPv6 support" on \ MASQ "Enable NAT/IP masq support" on @@ -31,7 +31,7 @@ OPTIONS= IPV6 "Enable IPv6 support" on \ .if defined(WITHOUT_IPV6) CONFIGURE_ARGS+=--disable-ipv6 .else -CATEGORIES+= ipv6 +CATEGORIES+= ipv6 .endif .if defined(WITHOUT_MASQ) || ${OSVERSION} >= 800000 |