root/sources/mango.diff

Revision 384, 0.9 kB (checked in by Gregor, 2 years ago)

mango.diff: Mango now has a dsss.conf :)

  • mango/icu/ICU.d

    old new  
    353353else version (linux) 
    354354{ 
    355355        //Tell build to link with dl library 
    356         version(build) { pragma(link, dl); } 
     356        version(build) { pragma(link, "dl"); } 
    357357 
    358358        // from include/bits/dlfcn.h on Linux 
    359359        const int RTLD_LAZY     = 0x00001;      // Lazy function call binding 
     
    399399                        { 
    400400                                char[] name = b.name ~ ICUSig; 
    401401                                 
    402                                 *b.fnc = dlsym (lib, name); 
     402                                *b.fnc = dlsym (lib, (name~'\0').ptr); 
    403403                                if (*b.fnc) 
    404404                                   {}// printf ("bound '%.*s'\n", name); 
    405405                                else { 
Note: See TracBrowser for help on using the browser.