aboutsummaryrefslogtreecommitdiff
path: root/devel/bonobo-activation
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2002-10-26 20:55:59 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2002-10-26 20:55:59 +0000
commit0eaa775ee44e36c651cad91e1d302601334afc41 (patch)
treea5c096c316f853a6d394f62571cda5674e13e505 /devel/bonobo-activation
parentfb8f9d8b99ff916450b402c43df52c4845720811 (diff)
downloadports-0eaa775ee44e36c651cad91e1d302601334afc41.tar.gz
ports-0eaa775ee44e36c651cad91e1d302601334afc41.zip
Notes
Diffstat (limited to 'devel/bonobo-activation')
-rw-r--r--devel/bonobo-activation/files/patch-temp15
1 files changed, 15 insertions, 0 deletions
diff --git a/devel/bonobo-activation/files/patch-temp b/devel/bonobo-activation/files/patch-temp
new file mode 100644
index 000000000000..e9ea286d8d78
--- /dev/null
+++ b/devel/bonobo-activation/files/patch-temp
@@ -0,0 +1,15 @@
+This patch corrects an incompatibility problem with bison 1.50 and above.
+It was taken from bonobo-activation CVS, and can be removed in the next release
+of the port.
+
+--- server/activation-context-query-parser.y.orig Sat Oct 26 16:51:45 2002
++++ server/activation-context-query-parser.y Sat Oct 26 16:52:00 2002
+@@ -155,7 +155,7 @@
+ stringlist: P_CONST_STRING { $$ = g_slist_prepend (NULL, $1); }
+ | stringlist COMMA P_CONST_STRING { $$ = g_slist_append ($1, $3); };
+
+-expr_variable: P_DOLLAR P_CONST_ID { $$ = qexp_variable_new ($2); }
++expr_variable: P_DOLLAR P_CONST_ID { $$ = qexp_variable_new ($2); };
+
+ expr_function: P_CONST_ID LPAREN exprlist RPAREN { $$ = qexp_function_new ($1, $3); }
+ | P_CONST_ID LPAREN RPAREN { $$ = qexp_function_new ($1, NULL); }