diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2011-09-26 19:53:10 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2011-09-26 19:53:10 +0000 |
commit | c96f0f46151df4536a1cc2243d160ea894504bb7 (patch) | |
tree | 736fbced10fa0f0eb601c5416450dd4e623d4911 /CHANGES | |
parent | 20db9d701f9c382efdef2e95b0b37cb1f6f98055 (diff) | |
download | ports-c96f0f46151df4536a1cc2243d160ea894504bb7.tar.gz ports-c96f0f46151df4536a1cc2243d160ea894504bb7.zip |
Notes
Diffstat (limited to 'CHANGES')
-rw-r--r-- | CHANGES | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -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 |