Commit e69a997d authored by Bruce Momjian's avatar Bruce Momjian

Allow BSD yacc and bison to compile pl code.

parent e6381966
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* procedural language * procedural language
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/pl/plpgsql/src/gram.y,v 1.6 1999/08/09 00:08:52 momjian Exp $ * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/gram.y,v 1.7 1999/08/16 19:57:21 momjian Exp $
* *
* This software is copyrighted by Jan Wieck - Hamburg. * This software is copyrighted by Jan Wieck - Hamburg.
* *
...@@ -39,8 +39,9 @@ ...@@ -39,8 +39,9 @@
#include "stdio.h" #include "stdio.h"
#include "string.h" #include "string.h"
#include "plpgsql.h" #include "plpgsql.h"
#include "pl_scan.c" /* BSD Yacc doesn't like it here. #ifdef YYBISON
It wants it after the %% */ #include "pl_scan.c" /* GNU bison wants it here */
#endif
...@@ -1082,6 +1083,11 @@ lno : ...@@ -1082,6 +1083,11 @@ lno :
%% %%
#ifndef YYBISON
#include "pl_scan.c" /* BSD yacc wants it here */
#endif
PLpgSQL_expr * PLpgSQL_expr *
plpgsql_read_expression (int until, char *s) plpgsql_read_expression (int until, char *s)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment