ok got configure working but some of the porting definitions are hosed. When I try to build anything I get this:
../include/wine/port.h:49: Error: conflicting types for `mode_t' /usr/include/sys/types.h:45: Error: previous declaration of `mode_t' ../include/wine/port.h:52: Warning: redefinition of `off_t' /usr/include/sys/types.h:69: Warning: `off_t' previously declared here ../include/wine/port.h:55: Error: conflicting types for `pid_t' /usr/include/sys/types.h:55: Error: previous declaration of `pid_t' ../include/wine/port.h:58: Warning: redefinition of `size_t' /usr/include/sys/types.h:89: Warning: `size_t' previously declared here ../include/wine/port.h:61: Warning: redefinition of `ssize_t' /usr/include/sys/types.h:94: Warning: `ssize_t' previously declared here
Any suggestions? Thanks Steven
Steven Edwards wrote:
ok got configure working but some of the porting definitions are hosed. When I try to build anything I get this:
../include/wine/port.h:49: Error: conflicting types for `mode_t' /usr/include/sys/types.h:45: Error: previous declaration of `mode_t' ../include/wine/port.h:52: Warning: redefinition of `off_t' /usr/include/sys/types.h:69: Warning: `off_t' previously declared here ../include/wine/port.h:55: Error: conflicting types for `pid_t' /usr/include/sys/types.h:55: Error: previous declaration of `pid_t' ../include/wine/port.h:58: Warning: redefinition of `size_t' /usr/include/sys/types.h:89: Warning: `size_t' previously declared here ../include/wine/port.h:61: Warning: redefinition of `ssize_t' /usr/include/sys/types.h:94: Warning: `ssize_t' previously declared here
Any suggestions? Thanks Steven
Hi, Those look like unix posix stuff, what are you trying to do? James
James Tabor wrote:
Steven Edwards wrote:
ok got configure working but some of the porting definitions are hosed. When I try to build anything I get this:
../include/wine/port.h:49: Error: conflicting types for `mode_t' /usr/include/sys/types.h:45: Error: previous declaration of `mode_t' ../include/wine/port.h:52: Warning: redefinition of `off_t' /usr/include/sys/types.h:69: Warning: `off_t' previously declared here ../include/wine/port.h:55: Error: conflicting types for `pid_t' /usr/include/sys/types.h:55: Error: previous declaration of `pid_t' ../include/wine/port.h:58: Warning: redefinition of `size_t' /usr/include/sys/types.h:89: Warning: `size_t' previously declared here ../include/wine/port.h:61: Warning: redefinition of `ssize_t' /usr/include/sys/types.h:94: Warning: `ssize_t' previously declared here
Any suggestions? Thanks Steven
Hi, Those look like unix posix stuff, what are you trying to do? James
Hola James, I am attempting to build Wineserver and the WINE shared librarys/apps under Microsoft Serivces for UNIX 3.0. The idea is to provide a emulated Win32 enviroment for testing/debuging Windows Apps on Windows in a independant subsystem. This is kind of the purpose of a Cygwin port of WINE.
The long term goal is just to see how many unix-like platforms can run a port of WINE.
Thanks Steven