On Sep 9, 2008, at 9:43 PM, Simon Dodd wrote:
> These are the errors I have found so far as they were quite near the
> end, I will keep searching for more.
>
>
>
> gcc -DHAVE_CONFIG_H -I. -I. -I../../include -I.. -I./.. -
> DXMBINDDIR_FALLBACK=\"/sw/lib/X11/bindings\" -DINCDIR=\"/sw/include/
> X11\" -DLIBDIR=\"/sw/lib/X11\" -I/usr/X11R6/include -I/sw/include -
> DXNO_MTSAFE_STRINGAPI -DXNO_MTSAFE_PWDAPI -DXNO_MTSAFE_TIMEAPI -Wall
> -g -Wno-unused -Wno-comment -MT Xmos.lo -MD -MP -MF .deps/Xmos.Tpo -
> c Xmos.c -fno-common -DPIC -o .libs/Xmos.o
>
> Xmos.c: In function 'GetQualifiedDir':
> Xmos.c:284: error: 'struct passwd' has no member named 'pw_age'
> Xmos.c:284: error: 'struct passwd' has no member named 'pw_age'
> Xmos.c:284: error: 'struct passwd' has no member named 'pw_age'
> Xmos.c:284: error: 'struct passwd' has no member named 'pw_age'
> Xmos.c:284: error: 'struct passwd' has no member named 'pw_comment'
> Xmos.c:284: error: 'struct passwd' has no member named 'pw_age'
> Xmos.c:284: error: 'struct passwd' has no member named 'pw_comment'
> Xmos.c:284: error: 'struct passwd' has no member named 'pw_comment'
> Xmos.c:284: error: 'struct passwd' has no member named 'pw_comment'
> Xmos.c:284: error: 'struct passwd' has no member named 'pw_comment'
> Xmos.c:284: error: 'struct passwd' has no member named 'pw_comment'
> Xmos.c: In function 'XmeGetHomeDirName':
> Xmos.c:1042: error: 'struct passwd' has no member named 'pw_age'
> Xmos.c:1042: error: 'struct passwd' has no member named 'pw_age'
> Xmos.c:1042: error: 'struct passwd' has no member named 'pw_age'
> Xmos.c:1042: error: 'struct passwd' has no member named 'pw_age'
> Xmos.c:1042: error: 'struct passwd' has no member named 'pw_comment'
> Xmos.c:1042: error: 'struct passwd' has no member named 'pw_age'
> Xmos.c:1042: error: 'struct passwd' has no member named 'pw_comment'
> Xmos.c:1042: error: 'struct passwd' has no member named 'pw_comment'
> Xmos.c:1042: error: 'struct passwd' has no member named 'pw_comment'
> Xmos.c:1042: error: 'struct passwd' has no member named 'pw_comment'
> Xmos.c:1042: error: 'struct passwd' has no member named 'pw_comment'
> Xmos.c:1046: error: 'struct passwd' has no member named 'pw_age'
> Xmos.c:1046: error: 'struct passwd' has no member named 'pw_age'
> Xmos.c:1046: error: 'struct passwd' has no member named 'pw_age'
> Xmos.c:1046: error: 'struct passwd' has no member named 'pw_age'
> Xmos.c:1046: error: 'struct passwd' has no member named 'pw_comment'
> Xmos.c:1046: error: 'struct passwd' has no member named 'pw_age'
> Xmos.c:1046: error: 'struct passwd' has no member named 'pw_comment'
> Xmos.c:1046: error: 'struct passwd' has no member named 'pw_comment'
> Xmos.c:1046: error: 'struct passwd' has no member named 'pw_comment'
> Xmos.c:1046: error: 'struct passwd' has no member named 'pw_comment'
> Xmos.c:1046: error: 'struct passwd' has no member named 'pw_comment'
> make[3]: *** [Xmos.lo] Error 1
> make[2]: *** [all] Error 2
> make[1]: *** [all-recursive] Error 1
> make: *** [all-recursive] Error 1
> ### execution of make failed, exit code 2
>
>
>
> Thanks again
>
> Simon
>
That's the right place. We actually had some folks experience the
same error last month. Quoting the diagnostic question from Martin
Costabel:
Could you have a look at the file config.log (in the directory
/sw/src/fink.build/openmotif3-2.2.4-1/openmotif-2.2.4/) and see what it
says about X11/Xos_r.h? In my case (built without errors), there are the
following lines:
configure:21480: checking X11/Xos_r.h usability
configure:21493: gcc -c -DXNO_MTSAFE_STRINGAPI -DXNO_MTSAFE_PWDAPI
-DXNO_MTSAFE_TIMEAPI -I/sw/include conftest.c >&5
configure:21496: $? = 0
configure:21499: test -s conftest.o
configure:21502: $? = 0
configure:21512: result: yes
configure:21516: checking X11/Xos_r.h presenceconfigure:21527: gcc -E
-I/sw/include conftest.cconfigure:21533: $? = 0
configure:21552: result: yes
configure:21588: checking for X11/Xos_r.h
configure:21595: result: yes
If you have something like
configure:21480: checking X11/Xos_r.h usability
configure:21493: gcc -c -DXNO_MTSAFE_STRINGAPI -DXNO_MTSAFE_PWDAPI
-DXNO_MTSAFE_TIMEAPI -I/sw/include conftest.c >&5
In file included from
/usr/lib/gcc/i686-apple-darwin8/4.0.1/include/X11/Xos_r.h:83,
from configure:21556:
/usr/lib/gcc/i686-apple-darwin8/4.0.1/include/X11/Xos.h:298:23: error:
X11/Xarch.h: No such file or directory
In file included from configure:21556:
/usr/lib/gcc/i686-apple-darwin8/4.0.1/include/X11/Xos_r.h:84:25: error:
X11/Xfuncs.h: No such file or directory
configure:21496: $? = 1
instead, then you will need to reinstall the X11SDK from the Xcode
Tools.
Alexander K. Hansen
akh AT finkproject DOT org
Fink User Liaison and Documenter
>
>
> On 10 Sep 2008, at 00:04, Alexander Hansen wrote:
>
>>
>> On Sep 9, 2008, at 6:58 PM, Simon Dodd wrote:
>>
>>> Hi guys,
>>>
>>> Hope you can help me, I am trying to set up fink for a media
>>> server to my PS3. I have installed xcode and fink and run all the
>>> updates twice!
>>>
>>> When I come to install MediaTomb i get an error at the end stating;
>>> Failed: phase compiling: openmotif3-2.2.4-1 failed.
>>>
>>> I then am unable to continue with the configuration as there is no
>>> config.xml
>>>
>>> Please help me, I am running a G5 power PC 1.8GHz on osx 10.4.11
>>>
>>> I will provide any more information you may need by request.
>>>
>>> Thanks in advance for your help
>>>
>>> Simon
>>>
>>> --
>>> Simon Dodd
>>> Director/ Technical Manager
>>> Yes Boss Music
>>> 46a Theydon Road
>>> London
>>> E5 9NA
>>> UK
>>> [EMAIL PROTECTED]
>>> 07828467411
>>> www.yesbossmusic.com
>>>
>>
>>
>> You will need to provide some useful information about the failure
>> with openmotif3, since what you've quoted is the result of
>> absolutely *every* possible compile-phase failure. Try to find
>> where errors start occurring in your output, and then quote
>> starting at the output line just above that.
>>
>>
>>
>
>
>
> -
-------------------------------------------------------------------------
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=100&url=/
_______________________________________________
Fink-beginners mailing list
[email protected]
http://news.gmane.org/gmane.os.apple.fink.beginners