x11/dzen2 hardcodes CC=gcc in its makefile. Fix: Attached patch changes the default to use cc, and makes it possible to override CC in the environment. This makes the port build with clang, or when gcc does not exists.
Maintainer of x11/dzen2, Please note that PR ports/180384 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/180384 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org
State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Responsible Changed From-To: freebsd-ports-bugs->zeising Grab, since I sent it.
Author: zeising Date: Wed Aug 7 23:36:35 2013 New Revision: 324372 URL: http://svnweb.freebsd.org/changeset/ports/324372 Log: Don't hardcode the use of gcc. PR: ports/180384 Submitted by: zeising Approved by: Maintainer timeout (one month) Added: head/x11/dzen2/files/ head/x11/dzen2/files/patch-config.mk (contents, props changed) Added: head/x11/dzen2/files/patch-config.mk ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/dzen2/files/patch-config.mk Wed Aug 7 23:36:35 2013 (r324372) @@ -0,0 +1,9 @@ +--- config.mk.orig 2013-07-03 22:32:45.866885213 +0200 ++++ config.mk 2013-07-03 22:32:51.306100406 +0200 +@@ -49,5 +49,5 @@ + #LDFLAGS = -g ${LIBS} + + # compiler and linker +-CC = gcc ++CC ?= cc + LD = ${CC} _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: feedback->closed Committed. Thanks!