diff options
author | arved <arved@FreeBSD.org> | 2002-12-11 01:44:23 +0800 |
---|---|---|
committer | arved <arved@FreeBSD.org> | 2002-12-11 01:44:23 +0800 |
commit | 8758c8f65d2db7ad91220b405022b79845a53c94 (patch) | |
tree | 79a4b95abe60c49a8a81f65d147f293f3354a854 /palm | |
parent | ae54aeee9e53774d1d41b5601c0d7fde6dc623ae (diff) | |
download | freebsd-ports-gnome-8758c8f65d2db7ad91220b405022b79845a53c94.tar.gz freebsd-ports-gnome-8758c8f65d2db7ad91220b405022b79845a53c94.tar.zst freebsd-ports-gnome-8758c8f65d2db7ad91220b405022b79845a53c94.zip |
Fix Build with recent bison ,
PR: 45951
Submitted by: Pat Lashley <patl+freebsd@volant.org>
Diffstat (limited to 'palm')
-rw-r--r-- | palm/coldsync/files/patch-parser.y | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/palm/coldsync/files/patch-parser.y b/palm/coldsync/files/patch-parser.y new file mode 100644 index 000000000000..1ebfd0fe8670 --- /dev/null +++ b/palm/coldsync/files/patch-parser.y @@ -0,0 +1,34 @@ +--- src/parser.y~ Tue Feb 20 06:04:15 2001 ++++ src/parser.y Mon Dec 2 18:32:28 2002 +@@ -1003,6 +1003,7 @@ + { + $$ = NULL; + } ++ ; + + /* XXX - Added in 1.1.10, Sat May 20 14:21:43 2000. Make the colon + * mandatory at some point. +@@ -1028,6 +1029,7 @@ + ANOTHER_ERROR; + Error(_("\tMissing ':'.")); + } ++ ; + + + open_brace: '{' +@@ -1036,6 +1038,7 @@ + ANOTHER_ERROR; + Error(_("\tMissing '{'.")); + } ++ ; + + semicolon: ';' + | error +@@ -1043,6 +1046,7 @@ + ANOTHER_ERROR; + Error(_("\tMissing ';'.")); + } ++ ; + + %% + |