Solved DragonflyBSD - Wine?

I see that DragonflyBSD has ports for wine-gecko, wine-mono and winetricks but not actually wine.
How do you get it ?

Also, I see no better place to post about this than the off topic section of this forum.
 
DragonFly doesn't have /usr/lib32, so only 64bit apps would run. According to STATUS file under emulators/wine it fails to build.
Code:
cc -m64 -c -o ipstats.o ipstats.c -I. -I../../include -D__WINESRC__ -D_REENTRANT -fPIC -Wall -pipe \
  -fno-strict-aliasing -Wdeclaration-after-statement -Wempty-body -Wignored-qualifiers \
  -Wstrict-prototypes -Wtype-limits -Wunused-but-set-parameter -Wvla -Wwrite-strings -Wpointer-arith \
  -Wlogical-op -I/usr/local/include -pipe -O2 -fno-strict-aliasing
In file included from /usr/include/sys/proc.h:56:0,
                 from /usr/include/sys/user.h:68,
                 from ipstats.c:134:
/usr/include/sys/eventvar.h:63:17: error: field 'kq_kqinfo' has incomplete type
  struct  kqinfo kq_kqinfo;
                 ^
In file included from /usr/include/sys/proc.h:59:0,
                 from /usr/include/sys/user.h:68,
                 from ipstats.c:134:
/usr/include/sys/varsym.h:37:17: error: field 'vx_lock' has incomplete type
     struct lock vx_lock;
                 ^
In file included from /usr/include/sys/user.h:68:0,
                 from ipstats.c:134:
/usr/include/sys/proc.h:111:14: error: field 'pg_lock' has incomplete type
  struct lock pg_lock;
              ^
/usr/include/sys/proc.h:288:15: error: field 'p_klist' has incomplete type
  struct klist p_klist; /* knotes attached to this process */
               ^
gmake[2]: Leaving directory '/construction/emulators/wine/wine-1.8.5/dlls/itircl'
In file included from /usr/include/sys/user.h:83:0,
                 from ipstats.c:134:
/usr/include/vm/vm_map.h:225:14: error: field 'lock' has incomplete type
  struct lock lock;  /* Lock for map data */
              ^
gmake[2]: *** [Makefile:236: ipstats.o] Error 1
gmake[2]: Leaving directory '/construction/emulators/wine/wine-1.8.5/dlls/iphlpapi'
gmake[1]: *** [Makefile:8246: dlls/iphlpapi] Error 2
http://muscles.dragonflybsd.org/synth/logs/emulators___wine.log
 
Back
Top