winecrt0: Disable the delay import destructor on Mac OS, it cannot be made to work.

This commit is contained in:
Alexandre Julliard 2009-04-01 18:13:42 +02:00
parent 276c7a3bc6
commit b2d35c3620
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ FARPROC WINAPI DECLSPEC_HIDDEN __wine_spec_delay_load( unsigned int id )
return proc;
}
#ifdef __GNUC__
#if defined(__GNUC__) && !defined(__APPLE__) /* we can't support destructors properly on Mac OS */
static void free_delay_imports(void) __attribute__((destructor));
static void free_delay_imports(void)
{