pgsql: Allow CFLAGS from configure's environment to override automatic

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Allow CFLAGS from configure's environment to override automatic
Дата
Msg-id E1YBQUa-0000L0-KK@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Allow CFLAGS from configure's environment to override automatic CFLAGS.

Previously, configure would add any switches that it chose of its own
accord to the end of the user-specified CFLAGS string.  Since most
compilers process these left-to-right, this meant that configure's choices
would override the user-specified flags in case of conflicts.  We'd rather
that worked the other way around, so adjust the logic to put the user's
string at the end not the beginning.

There does not seem to be a need for a similar behavior change for CPPFLAGS
or LDFLAGS: in those, the earlier switches tend to win (think -I or -L
behavior) so putting the user's string at the front is fine.

Backpatch to 9.4 but not earlier.  I'm not planning to run buildfarm member
guar on older branches, and it seems a bit risky to change this behavior
in long-stable branches.

Branch
------
REL9_4_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/adb355106891ff318ca284f0cae3a993eef96185

Modified Files
--------------
configure    |   13 +++++++++++--
configure.in |   13 +++++++++++--
2 files changed, 22 insertions(+), 4 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Remove duplicate specification of -Ae for HP-UX C compiler.
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Allow CFLAGS from configure's environment to override automatic