Ignore:
Timestamp:
Jan 15, 2006, 5:40:42 AM (20 years ago)
Author:
bird
Message:

Use DLL name from the .DEF file when present. Fixes #28.

Location:
branches/libc-0.6/src/emx
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/libc-0.6/src/emx/ChangeLog.LIBC

    r2509 r2510  
    44
    552005-12-14: knut st. osmundsen <bird-gccos2-spam@anduin.net>
     6    - emxbind:
     7        o #28: Use DLL name from the .def file when present.
    68    - ld:
    79        o #27: Applied fix from Yuri.
  • branches/libc-0.6/src/emx/src/emxbind/emxbind.c

    r1282 r2510  
    160160    case _MD_LIBRARY:
    161161
    162       /* Create a DLL.  Save the initialization and termination
    163          policies after choosing default values for unspecified
    164          values. */
     162      /* Create a DLL. Override the module name if specified. Save the
     163         initialization and termination policies after choosing default
     164         values for unspecified values. */
    165165
    166166      dll_flag = TRUE;
     167
     168      if (stmt->library.name[0] != 0)
     169        module_name = xstrdup (stmt->library.name);
     170
    167171      switch (stmt->library.init)
    168172        {
Note: See TracChangeset for help on using the changeset viewer.