[macruby-changes] [2403] MacRuby/trunk

source_changes at macosforge.org source_changes at macosforge.org
Thu Aug 27 22:27:59 PDT 2009


Revision: 2403
          http://trac.macosforge.org/projects/ruby/changeset/2403
Author:   lsansonetti at apple.com
Date:     2009-08-27 22:27:55 -0700 (Thu, 27 Aug 2009)
Log Message:
-----------
moved the ruby_is_miniruby symbol somewhere else because main.o is not linked into the framework dylib

Modified Paths:
--------------
    MacRuby/trunk/dln.c
    MacRuby/trunk/main.cpp

Modified: MacRuby/trunk/dln.c
===================================================================
--- MacRuby/trunk/dln.c	2009-08-28 05:11:13 UTC (rev 2402)
+++ MacRuby/trunk/dln.c	2009-08-28 05:27:55 UTC (rev 2403)
@@ -65,7 +65,7 @@
     return (char*)dlerror();
 }
 
-extern bool ruby_is_miniruby;
+bool ruby_is_miniruby = false;
 
 void*
 dln_load(const char *file)

Modified: MacRuby/trunk/main.cpp
===================================================================
--- MacRuby/trunk/main.cpp	2009-08-28 05:11:13 UTC (rev 2402)
+++ MacRuby/trunk/main.cpp	2009-08-28 05:27:55 UTC (rev 2403)
@@ -18,7 +18,7 @@
     void rb_vm_init_compiler(void);
 }
 
-bool ruby_is_miniruby = false;
+extern bool ruby_is_miniruby;
 
 int
 main(int argc, char **argv, char **envp)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macruby-changes/attachments/20090827/8d67728e/attachment-0001.html>


More information about the macruby-changes mailing list