aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authoramdmi3 <amdmi3@FreeBSD.org>2011-09-27 03:53:10 +0800
committeramdmi3 <amdmi3@FreeBSD.org>2011-09-27 03:53:10 +0800
commit663d6665648c639754853a1c0e1f306e8ddef3ef (patch)
tree2cdae7044a6f659277d724c0399e3256f4d1367c /CHANGES
parentc48a70c03e114a482cef909a15fae79596a9be9a (diff)
downloadfreebsd-ports-gnome-663d6665648c639754853a1c0e1f306e8ddef3ef.tar.gz
freebsd-ports-gnome-663d6665648c639754853a1c0e1f306e8ddef3ef.tar.zst
freebsd-ports-gnome-663d6665648c639754853a1c0e1f306e8ddef3ef.zip
- Add CHANGES entry on recent LDFLAGS update
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES19
1 files changed, 19 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 8d781dec491d..60db13a57463 100644
--- a/CHANGES
+++ b/CHANGES
@@ -10,6 +10,25 @@ in the release notes and/or placed into UPDATING.
All ports committers are allowed to commit to this file.
+20110923:
+AUTHOR: amdmi3@FreeBSD.org
+
+ * LDFLAGS is now passed to both the configure and make environments,
+ and should be handled just like CPPFLAGS (see previous entry).
+
+ Summarizing both LDFLAGS and CPPFLAGS changes, where you would
+ have used
+ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+ MAKE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+ now just use
+ CPPFLAGS+= "-I${LOCALBASE}/include"
+ LDFLAGS+= "-L${LOCALBASE}/include"
+
+ Note that it's advised to append these variables (+=) instead
+ of overriding (=) to allow customization by user.
+
20110320:
AUTHOR: gerald@FreeBSD.org