From owner-svn-ports-head@FreeBSD.ORG Tue Feb 19 20:39:02 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E140E49D; Tue, 19 Feb 2013 20:39:02 +0000 (UTC) (envelope-from sunpoet@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 CEBE26F7; Tue, 19 Feb 2013 20:39:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1JKd2MD079239; Tue, 19 Feb 2013 20:39:02 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1JKd2ss079235; Tue, 19 Feb 2013 20:39:02 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201302192039.r1JKd2ss079235@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 19 Feb 2013 20:39:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r312602 - in head/sysutils/freeipmi: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2013 20:39:03 -0000 Author: sunpoet Date: Tue Feb 19 20:39:02 2013 New Revision: 312602 URL: http://svnweb.freebsd.org/changeset/ports/312602 Log: - Fix build with clang - Remove unrecognized CONFIGURE_ARGS - Remove PTHREAD_LIBS [1] Submitted by: gahr [1] Added: head/sysutils/freeipmi/files/patch-man-Makefile.in (contents, props changed) Modified: head/sysutils/freeipmi/Makefile Modified: head/sysutils/freeipmi/Makefile ============================================================================== --- head/sysutils/freeipmi/Makefile Tue Feb 19 20:35:39 2013 (r312601) +++ head/sysutils/freeipmi/Makefile Tue Feb 19 20:39:02 2013 (r312602) @@ -19,13 +19,11 @@ OPTIONS_DEFINE= DEBUG DOCS IOPERM IOPERM_DESC= Use i386_set_ioperm (i386/amd64 only) CONFIGURE_ARGS= --disable-init-scripts \ - --disable-logdir \ - --disable-logrotate-config \ --localstatedir=/var \ --sysconfdir=${CONF_DIR} \ --with-ipmi-monitoring-sdr-cache-dir=${CACHE_DIR}/ipmimonitoringsdrcache \ --with-pkgconfig-dir=${PREFIX}/libdata/pkgconfig -CONFIGURE_ENV= PTHREAD_LIBS=${PTHREAD_LIBS} +CONFIGURE_ENV= PTHREAD_LIBS=-pthread ac_cv_path_CPP=${CPP} CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes LDFLAGS+= -L${LOCALBASE}/lib Added: head/sysutils/freeipmi/files/patch-man-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/freeipmi/files/patch-man-Makefile.in Tue Feb 19 20:39:02 2013 (r312602) @@ -0,0 +1,11 @@ +--- man/Makefile.in.orig 2013-01-11 03:00:35.000000000 +0800 ++++ man/Makefile.in 2013-02-02 03:18:42.250624916 +0800 +@@ -896,7 +896,7 @@ + + + $(MANS_CPP): $(MANS_CPP:%=%.pre) +- $(CPP) -w -C -P -I$(top_srcdir)/man $@.pre $@ ++ $(CPP) -w -C -I$(top_srcdir)/man $@.pre | grep -v '^#' > $@ + + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded.