mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-29 16:01:38 +00:00
Minor fixups for release ... mostly avoid failed testcases.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32837 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e085dd6bb9
commit
bf055f4e56
7 changed files with 142 additions and 87 deletions
|
@ -143,8 +143,13 @@ GSSelectorFromNameAndTypes(const char *name, const char *types)
|
|||
{
|
||||
#if NeXT_RUNTIME
|
||||
return sel_getUid(name);
|
||||
/* Don't use sel_registerTypedName() ... it's broken when first introduced
|
||||
* into gcc (fails to correctly check for multple registrations with same
|
||||
* types but different layout info).
|
||||
*
|
||||
#elif defined (__GNU_LIBOBJC__)
|
||||
return sel_registerTypedName(name, types);
|
||||
*/
|
||||
#elif defined (__GNUSTEP_RUNTIME__)
|
||||
return sel_registerTypedName_np(name, types);
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue