From owner-svn-ports-all@FreeBSD.ORG Fri Dec 21 06:39:50 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3B000563; Fri, 21 Dec 2012 06:39:50 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 1E8758FC0A; Fri, 21 Dec 2012 06:39:50 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBL6dnO2007708; Fri, 21 Dec 2012 06:39:49 GMT (envelope-from oliver@svn.freebsd.org) Received: (from oliver@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBL6dnN1007707; Fri, 21 Dec 2012 06:39:49 GMT (envelope-from oliver@svn.freebsd.org) Message-Id: <201212210639.qBL6dnN1007707@svn.freebsd.org> From: Oliver Lehmann Date: Fri, 21 Dec 2012 06:39:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309342 - head/security/oidentd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Dec 2012 06:39:50 -0000 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