Re: [Fink-users] new install of wine fails

2008-07-19 Thread Ben Abbott

On Jul 19, 2008, at 12:18 AM, Martin Costabel wrote:

 Ben Abbott wrote:
 Wine suffered from the circular dependency earlier. Now I'm at a  
 loss  to determine what to do next.
 fink install wine
 [...]
 configure: error: X development files not found. Wine will be built
 without X support, which probably isn't what you want. You will  
 need  to install

 This is the usual crash you get with the xquartz.macosforge updated  
 X11. I applied the usual fix and committed it to CVS.

 For me, the build still crashes later on, with

 ../../tools/winegcc/winegcc -B../../tools/winebuild -shared ./ 
 crtdll.speccrtdll_main.o   -o crtdll.dll.so  -lmsvcrt - 
 lkernel32   ../../libs/port/libwine_port.a -L/sw/lib/freetype219/ 
 lib -L/sw/lib/fontconfig2/lib
 ./crtdll.spec:44: external symbol 'CRTDLL__basemajor_dll' is not a  
 function

 but I won't investigate this further.

So, for the time being wine will not install on Leopard?

Has anyone tried to install with Apple's X11 in place and then  
upgraded to xquartz? Might that result in an operational install of  
wine?

In any event, I think I'll go with James' suggesting and install Darwine

Ben


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
Fink-users mailing list
Fink-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-users


Re: [Fink-users] new install of wine fails

2008-07-19 Thread Martin Costabel
Ben Abbott wrote:
 
 On Jul 19, 2008, at 12:34 PM, Damian Dimmich wrote:
 
 Hi,

 Wine does work for me on Leopard - that's what I build and test on.   
 Has something changed?  Newer xcode?  The X11 I have is also quite  
 recent (2-3weeks), have not tested with newer ones yet, if there are  
 any.

 If I get more details I can try to reproduce and possibly fix the  
 problem.

 Best Regards,
 Damian
 
 I suspect you can reproduce the problem by updating you  
 xquartz.sourceforge X11 to 2.2.3, and then ...
 
   fink selfupdate
   fink update-all
   fink rebuild wine
 
 I presently have wine installed and working on an intel based MBP  
 (installed in the past, but apparently updated as recently as of  
 2008-07-07 ... so says the date on /sw/bin/wine). However, when  
 installing fink fresh and then installing wine it failed (xquartz  
 2.2.3).

We are talking about two different problems here:

Problem one is that wine does (or did until yesterday) not find X11 when 
/usr/X11/bin/xmkmf is absent (which is the case if you have 
xquartz-2.2.3 installed without prior X11 installation). This is a 
standard problem for all packages that use X11, and there is a standard 
fix which I applied to wine.info in 10.4/unstable. I forgot to apply it 
in 10.4/stable, which I did just now. The version is still 1.1.0-1, 
because these additional configure flags are inoffensive and don't 
change the resulting deb file.

Problem two is the one I mentioned in my previous message. This one does 
not look like it is related to X11. OTOH, it happens repeatably one one 
machine that has xquartz-2.3.0-rc7 (and xcode-3.1) installed, and it 
does not happen on another one (both 10.5.4/intel) that has stock X11 
and xcode-3.0.

Here are some more lines from problem two. I don't know anything about 
that compiler winegcc (nor do I want to learn about it).

../../tools/wrc/wrc --nostdinc -I. -I. -I../../include -I../../include 
-D__WINESRC__   -focredui.res credui.rc
../../tools/winegcc/winegcc -B../../tools/winebuild -shared 
./credui.speccredui_main.o credui.res  -o credui.dll.so 
-lcomctl32 -luser32 -ladvapi32 -lkernel32 
../../libs/port/libwine_port.a -L/sw/lib/freetype219/lib 
-L/sw/lib/fontconfig2/lib
gcc -c -I. -I. -I../../include -I../../include -I../../include/msvcrt 
-D__WINESRC__  -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing 
-Wdeclaration-after-statement -Wwrite-strings -Wpointer-arith 
-I/sw/lib/freetype219/include -I/sw/lib/fontconfig2/include -g -O2 
-fno-builtin -o crtdll_main.o crtdll_main.c
../../tools/winegcc/winegcc -B../../tools/winebuild -shared 
./crtdll.speccrtdll_main.o   -o crtdll.dll.so  -lmsvcrt 
-lkernel32   ../../libs/port/libwine_port.a -L/sw/lib/freetype219/lib 
-L/sw/lib/fontconfig2/lib
./crtdll.spec:44: external symbol 'CRTDLL__basemajor_dll' is not a function
./crtdll.spec:45: external symbol 'CRTDLL__baseminor_dll' is not a function
./crtdll.spec:46: external symbol 'CRTDLL__baseversion_dll' is not a 
function
./crtdll.spec:66: external symbol 'CRTDLL__cpumode_dll' is not a function
./crtdll.spec:243: external symbol 'CRTDLL__osmajor_dll' is not a function
./crtdll.spec:244: external symbol 'CRTDLL__osminor_dll' is not a function
./crtdll.spec:245: external symbol 'CRTDLL__osmode_dll' is not a function
./crtdll.spec:247: external symbol 'CRTDLL__osversion_dll' is not a function
winegcc: ../../tools/winebuild/winebuild failed
make[2]: *** [crtdll.dll.so] Error 2

-- 
Martin





-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
Fink-users mailing list
Fink-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-users


Re: [Fink-users] new install of wine fails

2008-07-19 Thread Damian Dimmich
Hi,

Wine does work for me on Leopard - that's what I build and test on.  Has 
something changed?  Newer xcode?  The X11 I have is also quite recent 
(2-3weeks), have not tested with newer ones yet, if there are any.

If I get more details I can try to reproduce and possibly fix the problem.

Best Regards,
Damian

Ben Abbott wrote:

 On Jul 19, 2008, at 12:18 AM, Martin Costabel wrote:

 Ben Abbott wrote:
 Wine suffered from the circular dependency earlier. Now I'm at a 
 loss  to determine what to do next.
 fink install wine
 [...]
 configure: error: X development files not found. Wine will be built
 without X support, which probably isn't what you want. You will 
 need  to install

 This is the usual crash you get with the xquartz.macosforge updated 
 X11. I applied the usual fix and committed it to CVS.

 For me, the build still crashes later on, with

 ../../tools/winegcc/winegcc -B../../tools/winebuild -shared 
 ./crtdll.speccrtdll_main.o   -o crtdll.dll.so  -lmsvcrt 
 -lkernel32   ../../libs/port/libwine_port.a 
 -L/sw/lib/freetype219/lib -L/sw/lib/fontconfig2/lib
 ./crtdll.spec:44: external symbol 'CRTDLL__basemajor_dll' is not a 
 function

 but I won't investigate this further.

 So, for the time being wine will not install on Leopard?

 Has anyone tried to install with Apple's X11 in place and then 
 upgraded to xquartz? Might that result in an operational install of wine?

 In any event, I think I'll go with James' suggesting and install Darwine

 Ben



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
Fink-users mailing list
Fink-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-users


Re: [Fink-users] new install of wine fails

2008-07-19 Thread Damian Dimmich
Hi Martin,

This looks vaguely familiar - do you have the iphone sdk installed?  I 
know it causes linking problems with wine, although this may not be the 
exact same problem (will need to google around a bit).  Could also try 
to make a 1.1.1 package, and see if that helps...

Damian

Martin Costabel wrote:
 Ben Abbott wrote:

 On Jul 19, 2008, at 12:34 PM, Damian Dimmich wrote:

 Hi,

 Wine does work for me on Leopard - that's what I build and test 
 on.   Has something changed?  Newer xcode?  The X11 I have is also 
 quite  recent (2-3weeks), have not tested with newer ones yet, if 
 there are  any.

 If I get more details I can try to reproduce and possibly fix the  
 problem.

 Best Regards,
 Damian

 I suspect you can reproduce the problem by updating you  
 xquartz.sourceforge X11 to 2.2.3, and then ...

 fink selfupdate
 fink update-all
 fink rebuild wine

 I presently have wine installed and working on an intel based MBP  
 (installed in the past, but apparently updated as recently as of  
 2008-07-07 ... so says the date on /sw/bin/wine). However, when  
 installing fink fresh and then installing wine it failed (xquartz  
 2.2.3).

 We are talking about two different problems here:

 Problem one is that wine does (or did until yesterday) not find X11 
 when /usr/X11/bin/xmkmf is absent (which is the case if you have 
 xquartz-2.2.3 installed without prior X11 installation). This is a 
 standard problem for all packages that use X11, and there is a 
 standard fix which I applied to wine.info in 10.4/unstable. I forgot 
 to apply it in 10.4/stable, which I did just now. The version is still 
 1.1.0-1, because these additional configure flags are inoffensive and 
 don't change the resulting deb file.

 Problem two is the one I mentioned in my previous message. This one 
 does not look like it is related to X11. OTOH, it happens repeatably 
 one one machine that has xquartz-2.3.0-rc7 (and xcode-3.1) installed, 
 and it does not happen on another one (both 10.5.4/intel) that has 
 stock X11 and xcode-3.0.

 Here are some more lines from problem two. I don't know anything about 
 that compiler winegcc (nor do I want to learn about it).

 ../../tools/wrc/wrc --nostdinc -I. -I. -I../../include -I../../include 
 -D__WINESRC__   -focredui.res credui.rc
 ../../tools/winegcc/winegcc -B../../tools/winebuild -shared 
 ./credui.speccredui_main.o credui.res  -o credui.dll.so 
 -lcomctl32 -luser32 -ladvapi32 -lkernel32 
 ../../libs/port/libwine_port.a -L/sw/lib/freetype219/lib 
 -L/sw/lib/fontconfig2/lib
 gcc -c -I. -I. -I../../include -I../../include -I../../include/msvcrt 
 -D__WINESRC__  -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing 
 -Wdeclaration-after-statement -Wwrite-strings -Wpointer-arith 
 -I/sw/lib/freetype219/include -I/sw/lib/fontconfig2/include -g -O2 
 -fno-builtin -o crtdll_main.o crtdll_main.c
 ../../tools/winegcc/winegcc -B../../tools/winebuild -shared 
 ./crtdll.speccrtdll_main.o   -o crtdll.dll.so  -lmsvcrt 
 -lkernel32   ../../libs/port/libwine_port.a -L/sw/lib/freetype219/lib 
 -L/sw/lib/fontconfig2/lib
 ./crtdll.spec:44: external symbol 'CRTDLL__basemajor_dll' is not a 
 function
 ./crtdll.spec:45: external symbol 'CRTDLL__baseminor_dll' is not a 
 function
 ./crtdll.spec:46: external symbol 'CRTDLL__baseversion_dll' is not a 
 function
 ./crtdll.spec:66: external symbol 'CRTDLL__cpumode_dll' is not a function
 ./crtdll.spec:243: external symbol 'CRTDLL__osmajor_dll' is not a 
 function
 ./crtdll.spec:244: external symbol 'CRTDLL__osminor_dll' is not a 
 function
 ./crtdll.spec:245: external symbol 'CRTDLL__osmode_dll' is not a function
 ./crtdll.spec:247: external symbol 'CRTDLL__osversion_dll' is not a 
 function
 winegcc: ../../tools/winebuild/winebuild failed
 make[2]: *** [crtdll.dll.so] Error 2



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
Fink-users mailing list
Fink-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-users


Re: [Fink-users] new install of wine fails

2008-07-19 Thread Martin Costabel
Martin Costabel wrote:
[]
 Problem two is the one I mentioned in my previous message. This one does 
 not look like it is related to X11. OTOH, it happens repeatably one one 
 machine that has xquartz-2.3.0-rc7 (and xcode-3.1) installed, and it 
 does not happen on another one (both 10.5.4/intel) that has stock X11 
 and xcode-3.0.

I compared the build logs between the two machines (the second one has 
now successfully finished building wine), and there is absolutely no 
difference before the error message.

After some more tests, I am now convinced that the problem lies with 
xcode-3.1, more specifically with the new /usr/bin/ld. But what kind of 
problem this really is, I don't know.

-- 
Martin



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
Fink-users mailing list
Fink-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-users


Re: [Fink-users] new install of wine fails

2008-07-19 Thread Ben Abbott

On Jul 19, 2008, at 2:15 PM, Martin Costabel wrote:

 Martin Costabel wrote:
 []
 Problem two is the one I mentioned in my previous message. This one  
 does not look like it is related to X11. OTOH, it happens  
 repeatably one one machine that has xquartz-2.3.0-rc7 (and  
 xcode-3.1) installed, and it does not happen on another one (both  
 10.5.4/intel) that has stock X11 and xcode-3.0.

 I compared the build logs between the two machines (the second one  
 has now successfully finished building wine), and there is  
 absolutely no difference before the error message.

 After some more tests, I am now convinced that the problem lies with  
 xcode-3.1, more specifically with the new /usr/bin/ld. But what kind  
 of problem this really is, I don't know.

fwiw, I can confirm that my successful build was with 3.0 and the  
failed one with 3.1.

Ben

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
Fink-users mailing list
Fink-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-users


Re: [Fink-users] new install of wine fails

2008-07-19 Thread Alexander Hansen

On Jul 19, 2008, at 2:44 PM, Ben Abbott wrote:


 On Jul 19, 2008, at 2:15 PM, Martin Costabel wrote:

 Martin Costabel wrote:
 []
 Problem two is the one I mentioned in my previous message. This one
 does not look like it is related to X11. OTOH, it happens
 repeatably one one machine that has xquartz-2.3.0-rc7 (and
 xcode-3.1) installed, and it does not happen on another one (both
 10.5.4/intel) that has stock X11 and xcode-3.0.

 I compared the build logs between the two machines (the second one
 has now successfully finished building wine), and there is
 absolutely no difference before the error message.

 After some more tests, I am now convinced that the problem lies with
 xcode-3.1, more specifically with the new /usr/bin/ld. But what kind
 of problem this really is, I don't know.

 fwiw, I can confirm that my successful build was with 3.0 and the
 failed one with 3.1.

 Ben


I also see the same thing with Xcode 3.1 .  We do have the option to  
flag the package with

BuildDepends:  xcode ( = 3.0-1 )

until a solution presents itself.

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
Fink-users mailing list
Fink-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-users


[Fink-users] new install of wine fails

2008-07-18 Thread Ben Abbott
Wine suffered from the circular dependency earlier. Now I'm at a loss  
to determine what to do next.

fink install wine

[...]

configure: error: X development files not found. Wine will be built
without X support, which probably isn't what you want. You will need  
to install
development packages of Xlib/Xfree86 at the very least.
Use the --without-x option if you really want this.
### execution of /var/tmp/tmp.1.f7tHqF failed, exit code 1
Removing runtime build-lock...
Removing build-lock package...
/sw/bin/dpkg-lockwait -r fink-buildlock-wine-1.1.0-1
(Reading database ... 79978 files and directories currently installed.)
Removing fink-buildlock-wine-1.1.0-1 ...
Failed: phase compiling: wine-1.1.0-1 failed

Before reporting any errors, please run fink selfupdate and
try again.  If you continue to have issues, please check to see if the
FAQ on fink's website solves the problem.  If not, ask on the fink-users
or fink-beginners mailing lists, with a carbon copy to the maintainer:

Damian Dimmich [EMAIL PROTECTED]

Note that this is preferable to emailing the maintainer directly, since
most fink package maintainers do not have access to all possible
hardware and software configurations.


$ fink list xfree86
Information about 6990 packages read in 1 seconds.
i   system-xfree86   2:7.2-2 [placeholder for user  
installed x11]
i   system-xfree86-dev   2:7.2-2 [placeholder for user  
installed x11 development tools]
i   system-xfree86-manu  2:7.2-2 Manually installed X11  
components
i   system-xfree86-shli  2:7.2-2 [placeholder for user  
installed x11 shared libraries]
p   xfree86-base-thread  [virtual package]
p   xfree86-base-thread  [virtual package]
p   xfree86-base-thread  [virtual package]

Ben

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
Fink-users mailing list
Fink-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-users


Re: [Fink-users] new install of wine fails

2008-07-18 Thread James McKenzie
Ben Abbott wrote:
 Wine suffered from the circular dependency earlier. Now I'm at a loss  
 to determine what to do next.

 fink install wine
   
I cannot help but say this:  Get Darwine.  Either that or read the 
Building Wine for MacOSX web page at Wine HQ. 
Fink is NOT mentioned as a method to build a functional Wine release.

James McKenzie


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
Fink-users mailing list
Fink-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-users


Re: [Fink-users] new install of wine fails

2008-07-18 Thread Martin Costabel
Ben Abbott wrote:
 Wine suffered from the circular dependency earlier. Now I'm at a loss  
 to determine what to do next.
 
 fink install wine
 
 [...]
 
 configure: error: X development files not found. Wine will be built
 without X support, which probably isn't what you want. You will need  
 to install

This is the usual crash you get with the xquartz.macosforge updated X11. 
I applied the usual fix and committed it to CVS.

For me, the build still crashes later on, with

 ../../tools/winegcc/winegcc -B../../tools/winebuild -shared ./crtdll.spec
 crtdll_main.o   -o crtdll.dll.so  -lmsvcrt -lkernel32   
 ../../libs/port/libwine_port.a -L/sw/lib/freetype219/lib 
 -L/sw/lib/fontconfig2/lib
 ./crtdll.spec:44: external symbol 'CRTDLL__basemajor_dll' is not a function

but I won't investigate this further.

-- 
Martin





-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
Fink-users mailing list
Fink-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-users