A program I'm running requires a patch to be installed, I successfully downloaded the source and applied the patch to the source. How do I compile this into a wine build I can use now? The documentation on the wiki doesn't help that much, I'm quite new to all this.
Skcorps wrote:> A program I'm running requires a patch to be installed, I successfully downloaded the source and applied the patch to the source. How do I compile this into a wine build I can use now? The documentation on the wiki doesn't help that much, I'm quite new to all this.Code: ./configure make sudo make install The third step is optional; Wine can be run from the build directory.
On 11/16/10 9:36 AM, Skcorps wrote:> A program I'm running requires a patch to be installed, I successfully downloaded the source and applied the patch to the source. How do I compile this into a wine build I can use now? The documentation on the wiki doesn't help that much, I'm quite new to all this. >./configure make (if you want to replace your existing Wine installation do the following and you must be a member of sudoers list. This CAN be done as ROOT also. Do not run Wine as root however.) sudo make install If you want to run wine from the installation directories you need to change to the bin directory and then issue ./wine <rest of command here> James McKenzie
Skcorps <wineforum-user at winehq.org> wrote:> >@dimensio Alright, I'll keep that in mind. > >I did get Xcode now, I was missing it for the make command and such, but after 'sudo make install' in this step: > >Code: > $ ./configure > $ make dependYou don't need this anymore and it should not do anything.> $ make > # make install >You should NEVER see this on a Mac. What EXACTLY did you do? > >gcc -m32 -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wstrict-prototypes -Wwrite-strings -Wpointer-arith -g -O2 -o device.o device.c >device.c:25:25: error: fpu_control.h: No such file or directory >device.c: In function ?IDirect3DDevice9Impl_DrawPrimitiveUP?: >device.c:1855: error: ?fpu_control_t? undeclared (first use in this function) >device.c:1855: error: (Each undeclared identifier is reported only once >device.c:1855: error: for each function it appears in.) >device.c:1855: error: expected ?;? before ?cw? >device.c:1856: warning: implicit declaration of function ?_FPU_GETCW? >device.c:1856: error: ?cw? undeclared (first use in this function) >device.c:1857: error: expected ?;? before ?new? >device.c:1858: warning: implicit declaration of function ?_FPU_SETCW? >device.c:1858: error: ?new? undeclared (first use in this function) >device.c:1859: warning: ISO C90 forbids mixed declarations and code >make[1]: *** [device.o] Error 1 >make: *** [install] Error 2 >Did you run make and not make install? This file should have been complied with make. Did you get and compile ALL of the required dependencies for Wine? James McKenzie