How does --with-wine64 work?

2009-12-07 Thread Austin English
Vincent asked me to get add a --with-wine64 option to my build script.
I was testing around, and can't seem to get it to work:
$ mkdir - p $HOME/wine{32,64}
$ cd $HOME/wine64
$ ~/wine-git/configure --enable-win64
$ make -j4
$ cd $HOME/wine32
$ ~/wine-git/configure --with-wine64=~/wine64
...
 checking for the directory containing the Wine tools... configure: error: 
 could not find Wine tools in ~/wine64/
 ~/wine-git/configure --with-wine64=~/wine64/tools/
...
checking for the directory containing the Wine tools... configure:
error: could not find Wine tools in ~/wine64/tools/

What am I missing? Perhaps it needs to be installed somewhere first?

-- 
-Austin




Re: How does --with-wine64 work?

2009-12-07 Thread Steven Edwards
On Mon, Dec 7, 2009 at 7:44 PM, Austin English austinengl...@gmail.com wrote:
 checking for the directory containing the Wine tools... configure: error: 
 could not find Wine tools in ~/wine64/
  ~/wine-git/configure --with-wine64=~/wine64/tools/
 ...
 checking for the directory containing the Wine tools... configure:
 error: could not find Wine tools in ~/wine64/tools/

 What am I missing? Perhaps it needs to be installed somewhere first?

This looks similar to the cross-compile build for mingw where you need
a checkout with the normal tools built for your host and then another
checkout for your target. You then run and point the target configure
at the host wine path to get the host tools.

-- 
Steven Edwards

There is one thing stronger than all the armies in the world, and
that is an idea whose time has come. - Victor Hugo




Re: How does --with-wine64 work?

2009-12-07 Thread Steven Edwards
On Mon, Dec 7, 2009 at 9:30 PM, Steven Edwards winehac...@gmail.com wrote:
 This looks similar to the cross-compile build for mingw where you need
 a checkout with the normal tools built for your host and then another
 checkout for your target. You then run and point the target configure
 at the host wine path to get the host tools.

Doh I read that wrong. You had it right if it follows the same
structure as the mingw port. No idea, I'll try a build here in a bit

-- 
Steven Edwards

There is one thing stronger than all the armies in the world, and
that is an idea whose time has come. - Victor Hugo




Re: How does --with-wine64 work?

2009-12-07 Thread Maarten Lankhorst

Austin English schreef:

Vincent asked me to get add a --with-wine64 option to my build script.
I was testing around, and can't seem to get it to work:
$ mkdir - p $HOME/wine{32,64}
$ cd $HOME/wine64
$ ~/wine-git/configure --enable-win64
$ make -j4
$ cd $HOME/wine32
$ ~/wine-git/configure --with-wine64=~/wine64
...
  

checking for the directory containing the Wine tools... configure: error: could 
not find Wine tools in ~/wine64/


 ~/wine-git/configure --with-wine64=~/wine64/tools/
...
checking for the directory containing the Wine tools... configure:
error: could not find Wine tools in ~/wine64/tools/

What am I missing? Perhaps it needs to be installed somewhere first?
  

Try --with-wine64=$HOME/wine64
The ~ doesn't get expanded





Re: How does --with-wine64 work?

2009-12-07 Thread Austin English
On Tue, Dec 8, 2009 at 1:01 AM, Maarten Lankhorst
m.b.lankho...@gmail.com wrote:
 Austin English schreef:

 Vincent asked me to get add a --with-wine64 option to my build script.
 I was testing around, and can't seem to get it to work:
 $ mkdir - p $HOME/wine{32,64}
 $ cd $HOME/wine64
 $ ~/wine-git/configure --enable-win64
 $ make -j4
 $ cd $HOME/wine32
 $ ~/wine-git/configure --with-wine64=~/wine64
 ...


 checking for the directory containing the Wine tools... configure: error:
 could not find Wine tools in ~/wine64/


  ~/wine-git/configure --with-wine64=~/wine64/tools/
 ...
 checking for the directory containing the Wine tools... configure:
 error: could not find Wine tools in ~/wine64/tools/

 What am I missing? Perhaps it needs to be installed somewhere first?


 Try --with-wine64=$HOME/wine64
 The ~ doesn't get expanded

I feel silly...I could have sworn I tried that. Thanks Maarten!

-- 
-Austin