Changeset 237216 in git


Ignore:
Timestamp:
Jun 9, 2015, 1:35:17 PM (9 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
f6f286f116cd53a3993443b6eba1ff15979d4d87
Parents:
6105f4f4166e278c2c1a880b1d135f4057777e11
Message:
load("...","try")
Location:
Singular
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/standard.lib

    r6105f4f r237216  
    25322532static proc mod_init()
    25332533{
     2534  if(!defined(Singmathic))
     2535  {
     2536    load("singmathic.so","try");
     2537  }
    25342538  //int pagelength=24;
    25352539  //exportto(Top,pagelength);
  • Singular/iparith.cc

    r6105f4f r237216  
    53415341  WerrorS_dummy_cnt=0;
    53425342  BOOLEAN bo=jjLOAD(s,TRUE);
    5343   if (bo || (WerrorS_dummy_cnt>0)) Print("loading of >%s< failed\n",s);
     5343  if (TEST_OPT_PROT && (bo || (WerrorS_dummy_cnt>0)))
     5344    Print("loading of >%s< failed\n",s);
    53445345  WerrorS_callback=WerrorS_save;
    53455346  errorreported=0;
  • Singular/iplib.cc

    r6105f4f r237216  
    10921092    Werror("dynl_open failed:%s", dynl_error());
    10931093    Werror("%s not found", newlib);
     1094    killhdl2(pl,&(basePack->idroot),NULL); // remove package
    10941095    goto load_modules_end;
    10951096  }
     
    11191120      RET=FALSE;
    11201121    }
    1121     else Werror("mod_init not found:: %s\nThis is probably not a dynamic module for Singular!\n", dynl_error());
     1122    else
     1123    {
     1124      Werror("mod_init not found:: %s\nThis is probably not a dynamic module for Singular!\n", dynl_error());
     1125      killhdl2(pl,&(basePack->idroot),NULL); // remove package
     1126    }
    11221127  }
    11231128
Note: See TracChangeset for help on using the changeset viewer.