Update of /cvsroot/fxruby/FXRuby/doc
In directory usw-pr-cvs1:/tmp/cvs-serv4481
Modified Files:
Tag: release10
build.xml
Log Message:
Modified instructions about the fix for rb_gc_mark()'s declaration in
intern.h; should read rb_gc_mark(void *) and not rb_gc_mark(VALUE).
Index: build.xml
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/doc/build.xml,v
retrieving revision 1.5
retrieving revision 1.5.2.1
diff -C2 -d -r1.5 -r1.5.2.1
*** build.xml 21 Mar 2002 19:09:11 -0000 1.5
--- build.xml 25 Apr 2002 02:34:32 -0000 1.5.2.1
***************
*** 72,76 ****
<programlisting format="linespecific">void rb_thread_wait_for(struct timeval);</programlisting>
<para>and change the declaration for <function>rb_gc_mark()</function> in <filename>intern.h</filename> to read:</para>
! <programlisting format="linespecific">void rb_gc_mark(VALUE);</programlisting>
</listitem>
</itemizedlist>
--- 72,76 ----
<programlisting format="linespecific">void rb_thread_wait_for(struct timeval);</programlisting>
<para>and change the declaration for <function>rb_gc_mark()</function> in <filename>intern.h</filename> to read:</para>
! <programlisting format="linespecific">void rb_gc_mark(void *);</programlisting>
</listitem>
</itemizedlist>
|