svn commit: r309342 - head/security/oidentd

Oliver Lehmann oliver at FreeBSD.org
Fri Dec 21 06:39:50 UTC 2012


Author: oliver
Date: Fri Dec 21 06:39:49 2012
New Revision: 309342
URL: http://svnweb.freebsd.org/changeset/ports/309342

Log:
  use USE_CSTD instead of manually setting CFLAGS

Modified:
  head/security/oidentd/Makefile

Modified: head/security/oidentd/Makefile
==============================================================================
--- head/security/oidentd/Makefile	Fri Dec 21 06:36:47 2012	(r309341)
+++ head/security/oidentd/Makefile	Fri Dec 21 06:39:49 2012	(r309342)
@@ -21,7 +21,7 @@ MAN5=		oidentd.conf.5 oidentd_masq.conf.
 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


More information about the svn-ports-all mailing list