~ubuntu-branches/ubuntu/wily/julia/wily

« back to all changes in this revision

Viewing changes to src/init.c

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot
  • Date: 2013-02-11 03:51:26 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20130211035126-hap464pbhd97wjbl
Tags: 0.1~20130211.git86fbe98d-1
* New upstream snapshot.
* debian/control:
   + add git to Recommends (for Julia package manager)
   + remove dependencies on libglpk-dev (it moved to its own package)
   + add explicit dependency on libgmp10 (there is no more a wrapper)
* fix-clean-rules.patch: remove patch, applied upstream
* gsvddense_blasint.patch: new patch
* Refresh other patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
439
439
    // the Main module is the one which is always open, and set as the
440
440
    // current module for bare (non-module-wrapped) toplevel expressions.
441
441
    // it does "using Base" if Base is available.
442
 
    if (jl_base_module != NULL)
443
 
        jl_module_using(jl_main_module, jl_base_module);
 
442
    if (jl_base_module != NULL) {
 
443
        jl_add_standard_imports(jl_main_module);
 
444
    }
444
445
    // eval() uses Main by default, so Main.eval === Core.eval
445
446
    jl_module_import(jl_main_module, jl_core_module, jl_symbol("eval"));
446
447
    jl_current_module = jl_main_module;