diff options
author | arved <arved@FreeBSD.org> | 2002-12-11 01:34:48 +0800 |
---|---|---|
committer | arved <arved@FreeBSD.org> | 2002-12-11 01:34:48 +0800 |
commit | ae54aeee9e53774d1d41b5601c0d7fde6dc623ae (patch) | |
tree | b81d104e55744fb9f8ed2e48f942578744189cad /databases | |
parent | cc55c508a6754e91dc9dd6756de90e6211105ea3 (diff) | |
download | freebsd-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.y | 11 |
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 ); } |