[ros-bugs] [Bug 1073] New: I don't compile reactos explorer with wine

ReactOS.Bugzilla at reactos.org ReactOS.Bugzilla at reactos.org
Mon Dec 5 14:36:30 CET 2005


http://www.reactos.org/bugzilla/show_bug.cgi?id=1073

           Summary: I don't compile reactos explorer with wine
           Product: ReactOS Apps (rosapps)
           Version: unspecified
          Platform: x86 Hardware
        OS/Version: ReactOS
            Status: NEW
          Severity: normal
          Priority: P3
         Component: Utilities
        AssignedTo: ros-bugs at reactos.org
        ReportedBy: hys545 at naver.com
         QAContact: ros-bugs at reactos.org


1. I fix "utility/shellclasses.h"
-------------------
#ifdef __WINE__   // Wine doesn't know of unnamed union members and uses some 
macros instead.
#define   UNION_MEMBER(x) DUMMYUNIONNAME.##x
#else
#define   UNION_MEMBER(x) x
#endif
-----------

#ifdef __WINE__   // Wine doesn't know of unnamed union members and uses some 
macros instead.
#ifdef NONAMELESSUNION
#define   UNION_MEMBER(x) DUMMYUNIONNAME.##x
#else
#define   UNION_MEMBER(x) x
#endif
#endif
---

2. Makefile.Wine is appended
EXTRADEFS = -D__WINE__ -D_WIN32_IE=0x0600 -D_WIN32_WINNT=0x0501 -
DWINVER=0x0500 -D__MINGW32__ \
----------------------------------------            
EXTRADEFS = -D__WINE__ -D_WIN32_IE=0x0600 -D_WIN32_WINNT=0x0501 -
DWINVER=0x0500 -D__MINGW32__ \
            -DCINTERFACE

-- 
Configure bugmail: http://www.reactos.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
You are the QA contact for the bug, or are watching the QA contact.


More information about the Ros-bugs mailing list