freebsd-ports/databases/mdbtools/files/patch-src_sql_parser.y
Joe Marcus Clarke 9544c4689a Attempt to fix build with GNOME 2. This isn't perfect, but it should solve
the build problems people have been seeing.

Reported by:	Fredrick Nilsson <fredrick.nilsson@framfab.se>
2003-04-15 05:34:55 +00:00

10 lines
219 B
Text

--- src/sql/parser.y.orig Tue Apr 15 01:26:03 2003
+++ src/sql/parser.y Tue Apr 15 01:26:08 2003
@@ -109,6 +109,7 @@
database:
PATH
| NAME
+ ;
table:
NAME { mdb_sql_add_table(_mdb_sql(NULL), $1); free($1); }