|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: R T
Length: 757 (0x2f5) Types: TextFile Names: »README.orig«
└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987 └─⟦this⟧ »EUUGD18/X/Dragon/README.orig«
04/19/89 Dragon is a game. It implements a version of the ancient game of Mah-Jongg. Dragon is known to work on a Sun 3/60 running SunOS 3.5 with X11R3 from MIT. It compiles with the Sun compiler and with gcc version 1.31. As of this writing, the Athena Dialog widget has a bug that can cause Dragon to get a segmentation/memory error. There is code in X11R3/lib/Xaw/Dialog.c in the SetValues function that looks like this: ******** { Arg args[1]; ! XtSetArg( args[1], XtNlabel, w->dialog.label ); XtSetValues( w->dialog.labelW, args, XtNumber(args) ); } ******** it needs to be changed to: ******** { Arg args[1]; ! XtSetArg( args[0], XtNlabel, w->dialog.label ); XtSetValues( w->dialog.labelW, args, XtNumber(args) ); } ********