pgsql: Silence Bison deprecation warnings

From: Joe Conway <mail(at)joeconway(dot)com>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Silence Bison deprecation warnings
Date: 2017-01-02 21:52:26
Message-ID: [email protected]
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Silence Bison deprecation warnings

Bison >=3.0 issues warnings about

%name-prefix="base_yy"

instead of the now preferred

%name-prefix "base_yy"

but the latter doesn't work with Bison 2.3 or less. So for now we
silence the deprecation warnings.

Back-patch to 9.2 and 9.3 -- the newer branches already have this fix.

Author: Peter Eisentraut
Discussion: https://postgr.es/m/677.1483384145%40sss.pgh.pa.us

Branch
------
REL9_3_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/3f9479603caca249fb3643871c24c6fa55a339b4

Modified Files
--------------
config/programs.m4 | 8 ++++++++
configure | 8 ++++++++
2 files changed, 16 insertions(+)

Browse pgsql-committers by date

  From Date Subject
Next Message Joe Conway 2017-01-02 21:52:30 pgsql: Silence Bison deprecation warnings
Previous Message Tom Lane 2017-01-02 18:49:09 pgsql: Use clock_gettime(), if available, in instr_time measurements.