Commit b2d35c36 authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent 276c7a3b
......@@ -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)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment