aboutsummaryrefslogtreecommitdiffstats
path: root/databases
diff options
context:
space:
mode:
authorarved <arved@FreeBSD.org>2002-12-11 01:34:48 +0800
committerarved <arved@FreeBSD.org>2002-12-11 01:34:48 +0800
commitae54aeee9e53774d1d41b5601c0d7fde6dc623ae (patch)
treeb81d104e55744fb9f8ed2e48f942578744189cad /databases
parentcc55c508a6754e91dc9dd6756de90e6211105ea3 (diff)
downloadfreebsd-ports-gnome-ae54aeee9e53774d1d41b5601c0d7fde6dc623ae.tar.gz
freebsd-ports-gnome-ae54aeee9e53774d1d41b5601c0d7fde6dc623ae.tar.zst
freebsd-ports-gnome-ae54aeee9e53774d1d41b5601c0d7fde6dc623ae.zip
Fix Build with recent bison
PR: 46057 Submitted by: Aries <aries@mindworks.hu>
Diffstat (limited to 'databases')
-rw-r--r--databases/unixODBC/files/patch-yac.y11
1 files changed, 11 insertions, 0 deletions
diff --git a/databases/unixODBC/files/patch-yac.y b/databases/unixODBC/files/patch-yac.y
new file mode 100644
index 000000000000..6cae9498b410
--- /dev/null
+++ b/databases/unixODBC/files/patch-yac.y
@@ -0,0 +1,11 @@
+--- sqp/yac.y.orig Tue Dec 10 18:24:32 2002
++++ sqp/yac.y Tue Dec 10 18:24:55 2002
+@@ -214,7 +214,7 @@
+ y_escape:
+ /* optional */ { $$ = NULL; }
+ | ESCAPE STRING { $$ = $2; }
+-
++ ;
+ y_comparisons:
+ y_comparisons OR y_comparisons { $$ = sqpStoreCond( sqpor, $1, $3, NULL ); }
+ | y_comparisons AND y_comparisons { $$ = sqpStoreCond( sqpand, $1, $3, NULL ); }