I got a simple problem, that got really hard to fix.
I am trying to cross-compile stuff over a Makefile with ms compiler.
Problem is that when make are executing wine as a command, wine
segfaults.
An example:
# wine --version
Works!
But:
Makefile
---------
test:
wine --version
---------
Then run:
#make test
Wine will segfault!
I have tried making a wrapper that will reset env and argv fith static
values, and then exec wine with totally new variables, and still fails.
Specifications:
ubuntu edgy, wine 0.9.22
running as local user.
Thankfull for all help.
Jimmy Wennlund