aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorGerald Pfeifer <gerald@FreeBSD.org>2011-06-06 23:43:58 +0000
committerGerald Pfeifer <gerald@FreeBSD.org>2011-06-06 23:43:58 +0000
commitb6c40bb455ef738755f381e99b3afb76ed024c06 (patch)
tree556d888c530eb3225aa992683adf3ba9b57e97c8 /CHANGES
parent634d1326d2d888fbdfe04ac29b109bb5320cd419 (diff)
downloadports-b6c40bb455ef738755f381e99b3afb76ed024c06.tar.gz
ports-b6c40bb455ef738755f381e99b3afb76ed024c06.zip
Describe how CPPFLAGS is now passed to both the configure and make
environments, so we do not need to manually touch CONFIGURE_ENV and MAKE_ENV any more in many cases. Discussed with: portmgr PR: 153625
Notes
Notes: svn path=/head/; revision=275164
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES15
1 files changed, 15 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 520be9f88840..8d781dec491d 100644
--- a/CHANGES
+++ b/CHANGES
@@ -10,6 +10,21 @@ in the release notes and/or placed into UPDATING.
All ports committers are allowed to commit to this file.
+20110320:
+AUTHOR: gerald@FreeBSD.org
+
+ * CPPFLAGS is now passed to both the configure and make environments,
+ so this no longer needs to happen in individual ports by adding this
+ to CONFIGURE_ENV or MAKE_ENV. Rather, just set CPPFLAGS in the port
+ Makefile (if necessary).
+
+ For example, where you would have used
+ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include"
+ MAKE_ENV= SOMETHING=foo CPPFLAGS="-I${LOCALBASE}/include"
+ now just use
+ CPPFLAGS= "-I${LOCALBASE}/include"
+ MAKE_ENV SOMETHING=foo
+
20100831:
AUTHOR: autotools@FreeBSD.org