Avoid common symbols on Darwin/Mac OS X.

This commit is contained in:
Alexandre Julliard 2003-12-13 01:37:38 +00:00
parent 8543a5db9a
commit 9f50af251d
1 changed files with 4 additions and 0 deletions

View File

@ -120,7 +120,11 @@ extern int i386_set_ldt(int, union descriptor *, int);
#endif /* __i386__ */
/* local copy of the LDT */
#ifdef __APPLE__
struct __wine_ldt_copy wine_ldt_copy = { { 0, 0, 0 } };
#else
struct __wine_ldt_copy wine_ldt_copy;
#endif
static const LDT_ENTRY null_entry; /* all-zeros, used to clear LDT entries */