GNOME Bugzilla – Bug 65059
bonobo-activation has bogus interaction with bison
Last modified: 2004-12-22 21:47:04 UTC
Package: bonobo Severity: blocker Version: 0.9.3 Synopsis: bonobo-activation has bogus interaction with bison Bugzilla-Product: bonobo Bugzilla-Component: general Description: Some versions of oaf had this problem as well, and it has been fixed there. The file activation-context-query-parser.y has the line: #define YYSTACK_USE_ALLOCA The define YYSTACK_USE_ALLOCA was _undocumented_ in a couple of versions of bison. When it did become documented, they changed the semantics for it. The bison documentatione explicitly states: `YYSTACK_USE_ALLOCA' Macro used to control the use of `alloca'. If defined to `0', the parser will not use `alloca' but `malloc' when trying to grow its internal stacks. Do _not_ define `YYSTACK_USE_ALLOCA' to anything else. So, the best thing to do is simply remove the define. ------- Bug moved to this database by unknown@bugzilla.gnome.org 2001-11-21 15:00 ------- The original reporter (dalgoda@ix.netcom.com) of this bug does not have an account here. Reassigning to the exporter, unknown@bugzilla.gnome.org. Reassigning to the default owner of the component, michael@ximian.com.
Fixed in CVS HEAD bonobo-activation; Many thanks.