From owner-svn-ports-all@FreeBSD.ORG Fri Dec 12 11:33:44 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 08931181; Fri, 12 Dec 2014 11:33:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CE386AD9; Fri, 12 Dec 2014 11:33:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBCBXh5F000634; Fri, 12 Dec 2014 11:33:43 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBCBXhE8000633; Fri, 12 Dec 2014 11:33:43 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201412121133.sBCBXhE8000633@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 12 Dec 2014 11:33:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r374588 - branches/2014Q4/graphics/exact-image/files X-SVN-Group: ports-branches 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.18-1 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, 12 Dec 2014 11:33:44 -0000 Author: amdmi3 Date: Fri Dec 12 11:33:42 2014 New Revision: 374588 URL: https://svnweb.freebsd.org/changeset/ports/374588 QAT: https://qat.redports.org/buildarchive/r374588/ Log: MFH: r374558 - Unbreak on amd64 by respecting C*FLAGS Approved by: portmgr blanket Approved by: ports-secteam (rea) Added: branches/2014Q4/graphics/exact-image/files/patch-build__bottom.make - copied unchanged from r374558, head/graphics/exact-image/files/patch-build__bottom.make Modified: Directory Properties: branches/2014Q4/ (props changed) Copied: branches/2014Q4/graphics/exact-image/files/patch-build__bottom.make (from r374558, head/graphics/exact-image/files/patch-build__bottom.make) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2014Q4/graphics/exact-image/files/patch-build__bottom.make Fri Dec 12 11:33:42 2014 (r374588, copy of r374558, head/graphics/exact-image/files/patch-build__bottom.make) @@ -0,0 +1,31 @@ +--- build/bottom.make.orig 2010-07-22 18:35:17.000000000 +0400 ++++ build/bottom.make 2014-12-12 00:07:13.000000000 +0300 +@@ -43,23 +43,23 @@ + + $($(X_MODULE)_OUTPUT)/%.o: $(X_MODULE)/%.c + @echo ' C $@' +- $(Q)$(COMPILE.c) $($(dir $@)CFLAGS) -MMD -MP -MF '$(patsubst %.o,%.d,$@)' -o '$@' '$<' ++ $(Q)$(COMPILE.c) ${CFLAGS} ${CPPFLAGS} $($(dir $@)CFLAGS) -MMD -MP -MF '$(patsubst %.o,%.d,$@)' -o '$@' '$<' + + $($(X_MODULE)_OUTPUT)/%.o: $(X_MODULE)/%.m + @echo ' ObjC $@' +- $(Q)$(COMPILE.c) $($(dir $@)CFLAGS) -MMD -MP -MF '$(patsubst %.o,%.d,$@)' -o '$@' '$<' ++ $(Q)$(COMPILE.c) ${CFLAGS} ${CPPFLAGS} $($(dir $@)CFLAGS) -MMD -MP -MF '$(patsubst %.o,%.d,$@)' -o '$@' '$<' + + $($(X_MODULE)_OUTPUT)/%.o: $($(X_MODULE)_OUTPUT)/%.cc + @echo ' C++ $@' +- $(Q)$(COMPILE.cc) $($(dir $@)CXXFLAGS) -MMD -MP -MF '$(patsubst %.o,%.d,$@)' -o '$@' '$<' ++ $(Q)$(COMPILE.cc) ${CXXFLAGS} ${CPPFLAGS} $($(dir $@)CXXFLAGS) -MMD -MP -MF '$(patsubst %.o,%.d,$@)' -o '$@' '$<' + + $($(X_MODULE)_OUTPUT)/%.o: $(X_MODULE)/%.cc + @echo ' C++ $@' +- $(Q)$(COMPILE.cc) $($(dir $@)CXXFLAGS) -MMD -MP -MF '$(patsubst %.o,%.d,$@)' -o '$@' '$<' ++ $(Q)$(COMPILE.cc) ${CXXFLAGS} ${CPPFLAGS} $($(dir $@)CXXFLAGS) -MMD -MP -MF '$(patsubst %.o,%.d,$@)' -o '$@' '$<' + + $($(X_MODULE)_OUTPUT)/%.o: $(X_MODULE)/%.mm + @echo ' ObjC++ $@' +- $(Q)$(COMPILE.cc) $($(dir $@)CXXFLAGS) -MMD -MP -MF '$(patsubst %.o,%.d,$@)' -o '$@' '$<' ++ $(Q)$(COMPILE.cc) ${CXXFLAGS} ${CPPFLAGS} $($(dir $@)CXXFLAGS) -MMD -MP -MF '$(patsubst %.o,%.d,$@)' -o '$@' '$<' + + # only implicit rules if one binary per module ... + ifeq ($(words $(BINARY)), 1)