Changeset 1992


Ignore:
Timestamp:
Jun 5, 2005, 8:52:28 AM (20 years ago)
Author:
bird
Message:

Allow multiple modules by the same basename. This is not in tradition with other librarians, but it solves incompatible behaviour between emxomfar and ar.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/emx/src/libomflib/omflibcr.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r1991 r1992  
    116116          if (*ptr == len && compare (ptr+1, buf+1, len) == 0)
    117117            {
    118               strcpy (error, "Symbol multiply defined: ");
    119               strcat (error, name);
    120               return -1;
     118              if (buf[len] != '!')
     119                {
     120                  strcpy (error, "Symbol multiply defined: ");
     121                  strcat (error, name);
     122                  return -1;
     123                }
     124              else
     125                {
     126                  /* Ignore multiply defined modules. This isn't correct behaviour,
     127                     but it helps emxomfar being more compatible with ar. */
     128                  return 0;
     129                }
    121130            }
    122131        }
Note: See TracChangeset for help on using the changeset viewer.