pgsql: Silence Bison deprecation warnings

From: Peter Eisentraut <peter_e(at)gmx(dot)net>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Silence Bison deprecation warnings
Date: 2014-06-04 03:09:40
Message-ID: E1Ws1a8-0007yo-P2@gemulon.postgresql.org
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.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/55fb759ab3e7543a6be72a35e6b6961455c5b393

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

Browse pgsql-committers by date

  From Date Subject
Next Message Fujii Masao 2014-06-04 03:26:53 pgsql: Save pg_stat_statements statistics file into $PGDATA/pg_stat dir
Previous Message Andrew Dunstan 2014-06-03 22:35:54 pgsql: Use EncodeDateTime instead of to_char to render JSON timestamps.