Re: [Fink-users] [ping] Failed: phase compiling: xscreensaver-4.21 -1011 failed

2008-08-24 Thread Martin Costabel
Jean-François Mertens wrote:
[]
 But sorry, have no 10.5, _ and for the moment not even my G5 _ to  
 look further...

Since the problem appears only for 10.5/ppc, and then apparently only 
with xcode-3.1, I am out of it, too. I only have access to 10.5/intel 
and 10.4/ppc, or with some effort to a 10.5/ppc with xcode-3.0, on which 
I cannot compile random Fink packages.

The file flurry.c is compiled on intel, too, but differently. The code 
in question is in flurry.h:

typedef union {
 float   f[4];
#if __VEC__
 vector floatv;
#endif
} floatToVector;

What I can see is that the macro __VEC__, which triggers the fatal 
line, is defined by the compiler on 10.5/ppc, but not on 10.5/intel. To 
see this, try

cpp -dM /dev/null |grep VEC

One idea of a workaround would be to turn this piece of code off for 
everybody, by introducing a compiler flag -U__VEC__, for example in 
SetCPPFLAGS:

SetCPPFLAGS: -I%p/lib/freetype219/include -U__VEC__

But, as I said, I cannot test this.

-- 
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] [ping] Failed: phase compiling: xscreensaver-4.21 -1011 failed

2008-08-24 Thread Dominique Dhumieres
Martin,

Thanks for the answer.

 The file flurry.c is compiled on intel, too, but differently.

Not on my macbook. I have a closer look and saw:

...
config.status: executing default-2 commands

#

   Note: The OpenGL 3D library was not found.

 More specifically, we found the headers, but not the
 libraries; so either GL is half-installed on this
 system, or something else went wrong.  The `config.log'
 file might contain some clues.

 Those demos which use 3D will not be built or installed.
 You might want to consider installing OpenGL and
 re-running configure.  If your vendor doesn't ship
 their own implementation of OpenGL, you can get a free
 version at http://www.mesa3d.org/.  For general OpenGL
 info, see http://www.opengl.org/.

#

User programs will be installed in /sw/bin/
...

that does not appear on my G5. On the later I see:

...
checking for glXCreateContext in -lGL... yes
checking MesaGL version number... 6.3
checking for glBindTexture in -lGL... yes
checking for GL/gle.h... no
checking for GL/gutil.h... no
...

instead of

...
checking for glXCreateContext in -lGL... no
...

on the macbook.

 SetCPPFLAGS: -I%p/lib/freetype219/include -U__VEC__

It does not help:

...
gcc -pedantic -Wall -Wstrict-prototypes -Wnested-externs -std=c89 
-U__STRICT_ANSI__ -no-cpp-precomp -c -I. -I. -I./../../utils -I./.. -I../..  
-I/sw/lib/pango-ft219/include/pango-1.0 -I/sw/lib/fontconfig2/include 
-I/sw/lib/freetype219/include/freetype2 -I/sw/lib/freetype219/include 
-I/sw/include/glib-2.0 -I/sw/lib/glib-2.0/include -I/sw/include/gtk-2.0 
-I/sw/include -I/sw/include/pixman-1 -I/sw/include/libpng12 -I/sw/include/cairo 
-I/sw/include/atk-1.0 -I/sw/lib/gtk-2.0/include -I/sw/include/libxml2 
-I/sw/include/libglade-2.0 -I/usr/X11R6/include -I/usr/X11/include 
-I/sw/include/glib-2.0 -I/sw/lib/glib-2.0/include -I/sw/include/gtk-2.0 
-I/sw/include -DSTANDALONE -DUSE_GL -DHAVE_CONFIG_H -g -O2 -I/sw/include  
-I/usr/X11/include flurry.c
In file included from flurry.h:38,
 from flurry.c:96:
/usr/X11R6/include/GL/glu.h:282: warning: function declaration isn't a prototype
In file included from flurry.c:96:
flurry.h:72: error: syntax error before 'vector'
...

Note that -U__VEC__ does not show up. I also tried:

SetCC: gcc -pedantic -Wall -Wstrict-prototypes -Wnested-externs -std=c89 
-U__STRICT_ANSI__ -U__VEC__

but the build fails quickly at:

...
gcc -pedantic -Wall -Wstrict-prototypes -Wnested-externs -std=c89 
-U__STRICT_ANSI__ -U__VEC__ -Wall -c -I. -I. -I./../utils -I..  
-I/sw/lib/pango-ft219/include/pango-1.0 -I/sw/lib/fontconfig2/include 
-I/sw/lib/freetype219/include/freetype2 -I/sw/lib/freetype219/include 
-I/sw/include/glib-2.0 -I/sw/lib/glib-2.0/include -I/sw/include/gtk-2.0 
-I/sw/include -I/sw/include/pixman-1 -I/sw/include/libpng12 -I/sw/include/cairo 
-I/sw/include/atk-1.0 -I/sw/lib/gtk-2.0/include -I/sw/include/libxml2 
-I/sw/include/libglade-2.0 -I/usr/X11R6/include -I/usr/X11/include 
-I/sw/include/glib-2.0 -I/sw/lib/glib-2.0/include -I/sw/include/gtk-2.0 
-I/sw/include -DHAVE_CONFIG_H -g -O2 -I/sw/include  -I/usr/X11/include 
pdf2jpeg.m
pdf2jpeg.m:16:2: warning: #import is a GCC extension
pdf2jpeg.m: In function 'main':
pdf2jpeg.m:78: error: syntax error before '/' token
...

Dominique


-
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] [ping] Failed: phase compiling: xscreensaver-4.21 -1011 failed

2008-08-24 Thread Dominique Dhumieres
Note that if I add manually -U__VEC__, flurry.c compiles:

[karma] hacks/glx% sudo gcc -pedantic -Wall -Wstrict-prototypes 
-Wnested-externs -std=c89 -U__STRICT_ANSI__ -U__VEC__ -no-cpp-precomp -c -I. 
-I. -I./../../utils -I./.. -I../.. -I/sw/lib/pango-ft219/include/pango-1.0 
-I/sw/lib/fontconfig2/include -I/sw/lib/freetype219/include/freetype2 
-I/sw/lib/freetype219/include -I/sw/include/glib-2.0 -I/sw/lib/glib-2.0/include 
-I/sw/include/gtk-2.0 -I/sw/include -I/sw/include/pixman-1 
-I/sw/include/libpng12 -I/sw/include/cairo -I/sw/include/atk-1.0 
-I/sw/lib/gtk-2.0/include -I/sw/include/libxml2 -I/sw/include/libglade-2.0 
-I/usr/X11R6/include -I/usr/X11/include -I/sw/include/glib-2.0 
-I/sw/lib/glib-2.0/include -I/sw/include/gtk-2.0 -I/sw/include -DSTANDALONE 
-DUSE_GL -DHAVE_CONFIG_H -g -O2 -I/sw/include -I/usr/X11/include moebius.c
In file included from moebius.c:105:
/usr/X11R6/include/GL/glu.h:282: warning: function declaration isn't a prototype

Dominique

-
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] [ping] Failed: phase compiling: xscreensaver-4.21 -1011 failed

2008-08-24 Thread Martin Costabel
Dominique Dhumieres wrote:
[]
 gcc -pedantic -Wall -Wstrict-prototypes -Wnested-externs -std=c89 
 -U__STRICT_ANSI__ -U__VEC__ -Wall -c -I. -I. -I./../utils -I..  
 -I/sw/lib/pango-ft219/include/pango-1.0 -I/sw/lib/fontconfig2/include 
 -I/sw/lib/freetype219/include/freetype2 -I/sw/lib/freetype219/include 
 -I/sw/include/glib-2.0 -I/sw/lib/glib-2.0/include -I/sw/include/gtk-2.0 
 -I/sw/include -I/sw/include/pixman-1 -I/sw/include/libpng12 
 -I/sw/include/cairo -I/sw/include/atk-1.0 -I/sw/lib/gtk-2.0/include 
 -I/sw/include/libxml2 -I/sw/include/libglade-2.0 -I/usr/X11R6/include 
 -I/usr/X11/include -I/sw/include/glib-2.0 -I/sw/lib/glib-2.0/include 
 -I/sw/include/gtk-2.0 -I/sw/include -DHAVE_CONFIG_H -g -O2 -I/sw/include  
 -I/usr/X11/include pdf2jpeg.m
 pdf2jpeg.m:16:2: warning: #import is a GCC extension
 pdf2jpeg.m: In function 'main':
 pdf2jpeg.m:78: error: syntax error before '/' token

Try to put OBJCC=gcc into the ConfigureParams, in addition to the 
SetCC line.

-- 
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] [ping] Failed: phase compiling: xscreensaver-4.21 -1011 failed

2008-08-24 Thread Martin Costabel
Martin Costabel wrote:
 Dominique Dhumieres wrote:
 []
 gcc -pedantic -Wall -Wstrict-prototypes -Wnested-externs -std=c89 
 -U__STRICT_ANSI__ -U__VEC__ -Wall -c -I. -I. -I./../utils -I..  
 -I/sw/lib/pango-ft219/include/pango-1.0 -I/sw/lib/fontconfig2/include 
 -I/sw/lib/freetype219/include/freetype2 -I/sw/lib/freetype219/include 
 -I/sw/include/glib-2.0 -I/sw/lib/glib-2.0/include -I/sw/include/gtk-2.0 
 -I/sw/include -I/sw/include/pixman-1 -I/sw/include/libpng12 
 -I/sw/include/cairo -I/sw/include/atk-1.0 -I/sw/lib/gtk-2.0/include 
 -I/sw/include/libxml2 -I/sw/include/libglade-2.0 -I/usr/X11R6/include 
 -I/usr/X11/include -I/sw/include/glib-2.0 -I/sw/lib/glib-2.0/include 
 -I/sw/include/gtk-2.0 -I/sw/include -DHAVE_CONFIG_H -g -O2 -I/sw/include  
 -I/usr/X11/include pdf2jpeg.m
 pdf2jpeg.m:16:2: warning: #import is a GCC extension
 pdf2jpeg.m: In function 'main':
 pdf2jpeg.m:78: error: syntax error before '/' token
 
 Try to put OBJCC=gcc into the ConfigureParams, in addition to the 
 SetCC line.

Doesn't work as intended, apparently; configure ignores this. The 
following 2 lines in xscreensave.info produce correct compiler lines for 
me; please try:

SetCC: gcc -U__VEC__
PatchScript: perl -pi -e 's|(OBJCC=).*|$1\gcc -Wall\|' configure

-- 
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] [ping] Failed: phase compiling: xscreensaver-4.21 -1011 failed

2008-08-24 Thread Dominique Dhumieres
 Try to put OBJCC=gcc into the ConfigureParams, in addition to the
 SetCC line.

I have changed the info file to:

...
Source-MD5: 3ea7d0bc9b7159523855296e175d7ac7
SetCC: gcc -pedantic -Wall -Wstrict-prototypes -Wnested-externs -std=c89 
-U__STRICT_ANSI__ -U__VEC__
SetCPPFLAGS: -I%p/lib/freetype219/include
SetLDFLAGS: -L%p/lib/freetype219/lib
ConfigureParams: --mandir=%p/share/man --libexecdir=%p/lib --without-pam 
--disable-dependency-tracking 
PKG_CONFIG_PATH=%p/lib/pango-ft219/lib/pkgconfig:%p/lib/fontconfig2/lib/pkgconfig:%p/lib/freetype219/lib/pkgconfig:$PKG_CONFIG_PATH
 FREETYPE_CONFIG=%p/lib/freetype219/bin/freetype-config OBJCC=gcc
...

but the build still fails with pdf2jpeg.m.

Dominique

-
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] [ping] Failed: phase compiling: xscreensaver-4.21 -1011 failed

2008-08-24 Thread Dominique Dhumieres
 The following 2 lines in xscreensave.info produce correct compiler lines for
 me; please try:

 SetCC: gcc -U__VEC__
 PatchScript: perl -pi -e 's|(OBJCC=).*|$1\gcc -Wall\|' configure

With

...
SetLDFLAGS: -L%p/lib/freetype219/lib
SetCC: gcc -U__VEC__
PatchScript: perl -pi -e 's|(OBJCC=).*|$1\gcc -Wall\|' configure
ConfigureParams: --mandir=%p/share/man --libexecdir=%p/lib --without-pam 
--disable-dependency-tracking PKG_CONFIG_PATH=%p/lib/pango-ft219/l
...

xscreensaver-4.21-1011 finally built on my G5.

Thanks a lot for the fix.

Dominique

-
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] texmacs-1.0.6.15-3 compile failure

2008-08-24 Thread Kevin Horton
texmacs-1.0.6.15-3 fails to compile for me, failing in the configure  
phase with:

s@abs_top_builddir@$ac_abs_top_builddir;t t
$ac_datarootdir_hack
 $ac_file_inputs
  43293 Done| sed -f $tmp/subs-1.sed
  43294   | sed -f $tmp/subs-2.sed  $tmp/out
config.status: creating src/System/config.h
./config.status: line 663: 43311 Illegal instruction sed -f $tmp/ 
defines.sed $ac_file_inputs  $tmp/out1
  export GUILE_LOAD_PATH=/sw/share/guile/1.8
  make
make: *** No targets.  Stop.
### execution of /var/tmp/tmp.2.RMjPiG failed, exit code 2

===
a few details of my fink installation:
% fink -V | head -n 2:
Package manager version: 0.28.5
Distribution version: selfupdate-rsync Sun Aug 24 09:08:02 2008, 10.5,  
i386
% sw_vers:
ProductName:Mac OS X
ProductVersion: 10.5.4
BuildVersion:   9E17
% gcc --version | head -n 1:
i686-apple-darwin9-gcc-4.0.1 (GCC) 4.0.1 (Apple Inc. build 5465)



--
Kevin Horton
Ottawa, Canada




-
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] emboss compilation failed

2008-08-24 Thread Koen van der Drift
Guy,

I just tried building emboss-5.0.0-8 from the stable tree on OS X 10.5  
(I don't have 10.4), and I had no problems. It looks to me that your  
emboss.patch file is not the right one, did you do a fink update  
recently?

If needed I can mail you the patch file off-list, so you can test that.


- Koen.



On Aug 21, 2008, at 1:31 PM, Guy Lauquin wrote:

 ppc, OS X 10.4.11, Xcode 2.5, X11 1.1.3
 Fink Package manager version: 0.28.5, unstable tree

 Although emboss-6 compilation and installation ran correctly, the  
 update-all command led to the installation of emboss-5 which failed  
 with the following error message:

 EMBOSS-5.0.0/ajax/ajjava.h
 EMBOSS-5.0.0/ONEWS
 patch -p1 /sw/fink/dists/stable/main/finkinfo/sci/emboss.patch
 patching file ajax/ajjava.c
 Hunk #1 FAILED at 89.
 1 out of 1 hunk FAILED -- saving rejects to file ajax/ajjava.c.rej
 patching file emboss/jembossctl.c
 Hunk #1 FAILED at 115.
 1 out of 1 hunk FAILED -- saving rejects to file emboss/ 
 jembossctl.c.rej
 ### execution of patch failed, exit code 1
 Removing runtime build-lock...
 Removing build-lock package...
 /sw/bin/dpkg-lockwait -r fink-buildlock-emboss-5.0.0-8

 Thanks

 Guy


-
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] texmacs-1.0.6.15-3 compile failure

2008-08-24 Thread Alexander Hansen

On Aug 24, 2008, at 10:46 AM, Kevin Horton wrote:

 texmacs-1.0.6.15-3 fails to compile for me, failing in the configure
 phase with:

 s@abs_top_builddir@$ac_abs_top_builddir;t t
 $ac_datarootdir_hack
  $ac_file_inputs
  43293 Done| sed -f $tmp/subs-1.sed
  43294   | sed -f $tmp/subs-2.sed  $tmp/out
 config.status: creating src/System/config.h
 ./config.status: line 663: 43311 Illegal instruction sed -f $tmp/
 defines.sed $ac_file_inputs  $tmp/out1
  export GUILE_LOAD_PATH=/sw/share/guile/1.8
  make
 make: *** No targets.  Stop.
 ### execution of /var/tmp/tmp.2.RMjPiG failed, exit code 2

 ===
 a few details of my fink installation:
 % fink -V | head -n 2:
 Package manager version: 0.28.5
 Distribution version: selfupdate-rsync Sun Aug 24 09:08:02 2008, 10.5,
 i386
 % sw_vers:
 ProductName:  Mac OS X
 ProductVersion:   10.5.4
 BuildVersion: 9E17
 % gcc --version | head -n 1:
 i686-apple-darwin9-gcc-4.0.1 (GCC) 4.0.1 (Apple Inc. build 5465)



 --
 Kevin Horton
 Ottawa, Canada


It worked for me (10.5.4/Intel).  However, I have

$ gcc --version | head -n 1
i686-apple-darwin9-gcc-4.0.1 (GCC) 4.0.1 (Apple Inc. build 5484)

i.e. Xcode 3.1

-
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] texmacs-1.0.6.15-3 compile failure

2008-08-24 Thread Martin Costabel
Kevin Horton wrote:
 
 texmacs-1.0.6.15-3 fails to compile for me, failing in the configure 
 phase with:
 
 s@abs_top_builddir@$ac_abs_top_builddir;t t
 $ac_datarootdir_hack
  $ac_file_inputs
  43293 Done| sed -f $tmp/subs-1.sed
  43294   | sed -f $tmp/subs-2.sed  $tmp/out
 config.status: creating src/System/config.h
 ./config.status: line 663: 43311 Illegal instruction sed -f 
 $tmp/defines.sed $ac_file_inputs  $tmp/out1
  export GUILE_LOAD_PATH=/sw/share/guile/1.8
  make
 make: *** No targets.  Stop.
 ### execution of /var/tmp/tmp.2.RMjPiG failed, exit code 2

Can you try to find out more precisely where this illegal instruction 
is coming from? Is there a crashreport? Is it repeatable? I don't see 
yet what could be causing this; haven't seen anything similar either.

-- 
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] [ping] Failed: phase compiling: xscreensaver-4.21 -1011 failed

2008-08-24 Thread Martin Costabel
Dominique Dhumieres wrote:
 The following 2 lines in xscreensave.info produce correct compiler lines for
 me; please try:

 SetCC: gcc -U__VEC__
 PatchScript: perl -pi -e 's|(OBJCC=).*|$1\gcc -Wall\|' configure
 
 With
 
 ...
 SetLDFLAGS: -L%p/lib/freetype219/lib
 SetCC: gcc -U__VEC__
 PatchScript: perl -pi -e 's|(OBJCC=).*|$1\gcc -Wall\|' configure
 ConfigureParams: --mandir=%p/share/man --libexecdir=%p/lib --without-pam 
 --disable-dependency-tracking PKG_CONFIG_PATH=%p/lib/pango-ft219/l
 ...
 
 xscreensaver-4.21-1011 finally built on my G5.

OK, I checked this into CVS now. No revision update (still 4.21-1011), 
because this doesn't change anything where it built before.

-- 
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] texmacs-1.0.6.15-3 compile failure

2008-08-24 Thread Kevin Horton
On 24-Aug-08, at 11:12 , Martin Costabel wrote:

 Kevin Horton wrote:
 texmacs-1.0.6.15-3 fails to compile for me, failing in the  
 configure phase with:
 s@abs_top_builddir@$ac_abs_top_builddir;t t
 $ac_datarootdir_hack
  $ac_file_inputs
 43293 Done| sed -f $tmp/subs-1.sed
 43294   | sed -f $tmp/subs-2.sed  $tmp/out
 config.status: creating src/System/config.h
 ./config.status: line 663: 43311 Illegal instruction sed -f  
 $tmp/defines.sed $ac_file_inputs  $tmp/out1
 export GUILE_LOAD_PATH=/sw/share/guile/1.8
 make
 make: *** No targets.  Stop.
 ### execution of /var/tmp/tmp.2.RMjPiG failed, exit code 2

 Can you try to find out more precisely where this illegal  
 instruction is coming from? Is there a crashreport? Is it  
 repeatable? I don't see yet what could be causing this; haven't seen  
 anything similar either.


It is repeatable - the first failure was when I was using screen, so I  
tried again without screen just in case it was the cause.

I see several crashreports from /usr/bin/sed that are at the correct  
time.  The three that have a timestamp that matches the log from the  
last compile failure are:

Process: sed [43003]
Path:/usr/bin/sed
Identifier:  sed
Version: ??? (???)
Code Type:   X86 (Native)
Parent Process:  sh [41574]

Date/Time:   2008-08-24 10:41:52.937 -0400
OS Version:  Mac OS X 10.5.4 (9E17)
Report Version:  6

Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
Exception Codes: 0x0001, 0x
Crashed Thread:  0

Thread 0 Crashed:
0   sed 0x3283 0x1000 + 8835
1   sed 0x4246 0x1000 + 12870
2   sed 0x23fe 0x1000 + 5118

Thread 0 crashed with X86 Thread State (32-bit):
   eax: 0x0007  ebx: 0x79e0  ecx: 0x003a  edx: 0x714c
   edi: 0x001004c0  esi: 0x  ebp: 0xb2b8  esp: 0xbfffe0e0
ss: 0x001f  efl: 0x00010297  eip: 0x3283   cs: 0x0017
ds: 0x001f   es: 0x001f   fs: 0x   gs: 0x0037
   cr2: 0x00803600

Binary Images:
 0x1000 - 0x6fff +sed ??? (???)  
0305ddbc27331edd2436c2b72315d6cd /usr/bin/sed
0x8fe0 - 0x8fe2da53  dyld 96.2 (???)  
7af47d3b00b2268947563c7fa8c59a07 /usr/lib/dyld
0x92f38000 - 0x92f3ffe9  libgcc_s.1.dylib ??? (???)  
a9ab135a5f81f6e345527df87f51bfc9 /usr/lib/libgcc_s.1.dylib
0x9518d000 - 0x95191fff  libmathCommon.A.dylib ??? (???) /usr/lib/ 
system/libmathCommon.A.dylib
0x963e3000 - 0x96543ff3  libSystem.B.dylib ??? (???)  
a12f397abf2285077b89bd726bff5b18 /usr/lib/libSystem.B.dylib
0x - 0x1780  libSystem.B.dylib ??? (???) /usr/lib/ 
libSystem.B.dylib

  ===
Process: sed [43022]
Path:/usr/bin/sed
Identifier:  sed
Version: ??? (???)
Code Type:   X86 (Native)
Parent Process:  sh [41574]

Date/Time:   2008-08-24 10:41:53.311 -0400
OS Version:  Mac OS X 10.5.4 (9E17)
Report Version:  6

Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
Exception Codes: 0x0001, 0x
Crashed Thread:  0

Thread 0 Crashed:
0   sed 0x3283 0x1000 + 8835
1   sed 0x4246 0x1000 + 12870
2   sed 0x23fe 0x1000 + 5118

Thread 0 crashed with X86 Thread State (32-bit):
   eax: 0x0007  ebx: 0x79e1  ecx: 0x003a  edx: 0x714c
   edi: 0x001001a0  esi: 0x  ebp: 0xbfffefe8  esp: 0xbfffde10
ss: 0x001f  efl: 0x00010297  eip: 0x3283   cs: 0x0017
ds: 0x001f   es: 0x001f   fs: 0x   gs: 0x0037
   cr2: 0xa084c79c

Binary Images:
 0x1000 - 0x6fff +sed ??? (???)  
0305ddbc27331edd2436c2b72315d6cd /usr/bin/sed
0x8fe0 - 0x8fe2da53  dyld 96.2 (???)  
7af47d3b00b2268947563c7fa8c59a07 /usr/lib/dyld
0x92f38000 - 0x92f3ffe9  libgcc_s.1.dylib ??? (???)  
a9ab135a5f81f6e345527df87f51bfc9 /usr/lib/libgcc_s.1.dylib
0x9518d000 - 0x95191fff  libmathCommon.A.dylib ??? (???) /usr/lib/ 
system/libmathCommon.A.dylib
0x963e3000 - 0x96543ff3  libSystem.B.dylib ??? (???)  
a12f397abf2285077b89bd726bff5b18 /usr/lib/libSystem.B.dylib
0x - 0x1780  libSystem.B.dylib ??? (???) /usr/lib/ 
libSystem.B.dylib

  
Process: sed [43125]
Path:/usr/bin/sed
Identifier:  sed
Version: ??? (???)
Code Type:   X86 (Native)
Parent Process:  sh [43030]

Date/Time:   2008-08-24 10:41:54.337 -0400
OS Version:  Mac OS X 10.5.4 (9E17)
Report Version:  6

Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
Exception Codes: 0x0001, 0x
Crashed Thread:  0

Thread 0 Crashed:
0   sed 0x3283 0x1000 + 8835
1   sed 0x4246 0x1000 + 12870
2   sed 0x23fe 0x1000 + 5118

Thread 0 crashed with X86 Thread State 

Re: [Fink-users] texmacs-1.0.6.15-3 compile failure

2008-08-24 Thread Alexander Hansen

On Aug 24, 2008, at 11:30 AM, Kevin Horton wrote:

 On 24-Aug-08, at 11:12 , Martin Costabel wrote:

 Kevin Horton wrote:
 texmacs-1.0.6.15-3 fails to compile for me, failing in the
 configure phase with:
 s@abs_top_builddir@$ac_abs_top_builddir;t t
 $ac_datarootdir_hack
  $ac_file_inputs
43293 Done| sed -f $tmp/subs-1.sed
43294   | sed -f $tmp/subs-2.sed  $tmp/out
 config.status: creating src/System/config.h
 ./config.status: line 663: 43311 Illegal instruction sed -f
 $tmp/defines.sed $ac_file_inputs  $tmp/out1
 export GUILE_LOAD_PATH=/sw/share/guile/1.8
 make
 make: *** No targets.  Stop.
 ### execution of /var/tmp/tmp.2.RMjPiG failed, exit code 2

 Can you try to find out more precisely where this illegal
 instruction is coming from? Is there a crashreport? Is it
 repeatable? I don't see yet what could be causing this; haven't seen
 anything similar either.


 It is repeatable - the first failure was when I was using screen, so I
 tried again without screen just in case it was the cause.

 I see several crashreports from /usr/bin/sed that are at the correct
 time.  The three that have a timestamp that matches the log from the
 last compile failure are:

 Process: sed [43003]
 Path:/usr/bin/sed
 Identifier:  sed
 Version: ??? (???)
 Code Type:   X86 (Native)
 Parent Process:  sh [41574]

 Date/Time:   2008-08-24 10:41:52.937 -0400
 OS Version:  Mac OS X 10.5.4 (9E17)
 Report Version:  6

 Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
 Exception Codes: 0x0001, 0x
 Crashed Thread:  0

 Thread 0 Crashed:
 0   sed   0x3283 0x1000 + 8835
 1   sed   0x4246 0x1000 + 12870
 2   sed   0x23fe 0x1000 + 5118

 Thread 0 crashed with X86 Thread State (32-bit):
   eax: 0x0007  ebx: 0x79e0  ecx: 0x003a  edx: 0x714c
   edi: 0x001004c0  esi: 0x  ebp: 0xb2b8  esp: 0xbfffe0e0
ss: 0x001f  efl: 0x00010297  eip: 0x3283   cs: 0x0017
ds: 0x001f   es: 0x001f   fs: 0x   gs: 0x0037
   cr2: 0x00803600

 Binary Images:
 0x1000 - 0x6fff +sed ??? (???)
 0305ddbc27331edd2436c2b72315d6cd /usr/bin/sed
 0x8fe0 - 0x8fe2da53  dyld 96.2 (???)
 7af47d3b00b2268947563c7fa8c59a07 /usr/lib/dyld
 0x92f38000 - 0x92f3ffe9  libgcc_s.1.dylib ??? (???)
 a9ab135a5f81f6e345527df87f51bfc9 /usr/lib/libgcc_s.1.dylib
 0x9518d000 - 0x95191fff  libmathCommon.A.dylib ??? (???) /usr/lib/
 system/libmathCommon.A.dylib
 0x963e3000 - 0x96543ff3  libSystem.B.dylib ??? (???)
 a12f397abf2285077b89bd726bff5b18 /usr/lib/libSystem.B.dylib
 0x - 0x1780  libSystem.B.dylib ??? (???) /usr/lib/
 libSystem.B.dylib

  ===
 Process: sed [43022]
 Path:/usr/bin/sed
 Identifier:  sed
 Version: ??? (???)
 Code Type:   X86 (Native)
 Parent Process:  sh [41574]

 Date/Time:   2008-08-24 10:41:53.311 -0400
 OS Version:  Mac OS X 10.5.4 (9E17)
 Report Version:  6

 Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
 Exception Codes: 0x0001, 0x
 Crashed Thread:  0

 Thread 0 Crashed:
 0   sed   0x3283 0x1000 + 8835
 1   sed   0x4246 0x1000 + 12870
 2   sed   0x23fe 0x1000 + 5118

 Thread 0 crashed with X86 Thread State (32-bit):
   eax: 0x0007  ebx: 0x79e1  ecx: 0x003a  edx: 0x714c
   edi: 0x001001a0  esi: 0x  ebp: 0xbfffefe8  esp: 0xbfffde10
ss: 0x001f  efl: 0x00010297  eip: 0x3283   cs: 0x0017
ds: 0x001f   es: 0x001f   fs: 0x   gs: 0x0037
   cr2: 0xa084c79c

 Binary Images:
 0x1000 - 0x6fff +sed ??? (???)
 0305ddbc27331edd2436c2b72315d6cd /usr/bin/sed
 0x8fe0 - 0x8fe2da53  dyld 96.2 (???)
 7af47d3b00b2268947563c7fa8c59a07 /usr/lib/dyld
 0x92f38000 - 0x92f3ffe9  libgcc_s.1.dylib ??? (???)
 a9ab135a5f81f6e345527df87f51bfc9 /usr/lib/libgcc_s.1.dylib
 0x9518d000 - 0x95191fff  libmathCommon.A.dylib ??? (???) /usr/lib/
 system/libmathCommon.A.dylib
 0x963e3000 - 0x96543ff3  libSystem.B.dylib ??? (???)
 a12f397abf2285077b89bd726bff5b18 /usr/lib/libSystem.B.dylib
 0x - 0x1780  libSystem.B.dylib ??? (???) /usr/lib/
 libSystem.B.dylib

  
 Process: sed [43125]
 Path:/usr/bin/sed
 Identifier:  sed
 Version: ??? (???)
 Code Type:   X86 (Native)
 Parent Process:  sh [43030]

 Date/Time:   2008-08-24 10:41:54.337 -0400
 OS Version:  Mac OS X 10.5.4 (9E17)
 Report Version:  6

 Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
 Exception Codes: 0x0001, 0x
 Crashed Thread:  0

 Thread 0 Crashed:
 0   sed   0x3283 0x1000 + 8835
 1   sed   0x4246 0x1000 + 12870
 2   sed

Re: [Fink-users] texmacs-1.0.6.15-3 compile failure

2008-08-24 Thread Martin Costabel
Kevin Horton wrote:
[]
 Maybe I should install fink's sed, on the assumption that this is a  
 bug with Apple's sed that will eventually get fixed.  Or, should I try  
 to reinstall Apple's sed, in case the current one has somehow gotten  
 borked?  How would one reinstall Apple's sed?

/usr/bin/sed comes from BaseSystem.pkg, and it was updated on my machine 
here by the 10.5.3 update. You could reinstall the 10.5.3 combo update 
and then the 10.5.4 combo update.

-- 
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


[Fink-users] Conflict between kdesvn and kdesdk3-svn-ssl

2008-08-24 Thread Dominique Dhumieres
On ppc OSX 10.5.4, after having installed kdesvn, installing
kdesdk3-svn-ssl fails with:

Unpacking kdesdk3-svn-ssl (from .../kdesdk3-svn-ssl_3.5.9-1_darwin-powerpc.deb) 
...
/sw/bin/dpkg: error processing 
/sw/fink/dists/unstable/crypto/binary-darwin-powerpc/kdesdk3-svn-ssl_3.5.9-1_darwin-powerpc.deb
 (--install):
 trying to overwrite `/sw/share/services/svn+file.protocol', which is also in 
package kdesvn
Errors were encountered while processing:
 
/sw/fink/dists/unstable/crypto/binary-darwin-powerpc/kdesdk3-svn-ssl_3.5.9-1_darwin-powerpc.deb
### execution of /sw/bin/dpkg-lockwait failed, exit code 1
Failed: can't install package kdesdk3-svn-ssl-3.5.9-1

TIA

Dominique

-
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] rsync failure? su failure?

2008-08-24 Thread Neil Tiffin
My fink installation has been messed up for some time.  Something like  
the following happens no matter what mirrors I select.  I could not  
find anything on this in the first few pages of google or any  
explanation of the correct permissions in the docs.  Any help would be  
appreciated.

Thank you.
Neil
Chicago


===
rsync -az -v  rsync://ams.nl.eu.finkmirrors.net/finkinfo//TIMESTAMP / 
sw/fink/TIMESTAMP.tmp
receiving file list ... done
TIMESTAMP

sent 117 bytes  received 130 bytes  98.80 bytes/sec
total size is 11  speedup is 0.04
I will now run the rsync command to retrieve the latest package  
descriptions.
/usr/bin/su neiltiffin -c rsync -rtz --delete-after --delete -v   -- 
include='10.4/' --include='10.4/stable/' --include='10.4/stable/main/'  
--include='10.4/stable/main/finkinfo/' --include='10.4/stable/main/ 
finkinfo/*/' --include='10.4/stable/main/finkinfo/*' --include='10.4/ 
stable/main/finkinfo/**/*' --include='10.4/' --include='10.4/stable/'  
--include='10.4/stable/crypto/' --include='10.4/stable/crypto/ 
finkinfo/' --include='10.4/stable/crypto/finkinfo/*/' --include='10.4/ 
stable/crypto/finkinfo/*' --include='10.4/stable/crypto/finkinfo/**/*'  
--include='10.4/' --include='10.4/unstable/' --include='10.4/unstable/ 
main/' --include='10.4/unstable/main/finkinfo/' --include='10.4/ 
unstable/main/finkinfo/*/' --include='10.4/unstable/main/finkinfo/*' -- 
include='10.4/unstable/main/finkinfo/**/*' --include='10.4/' -- 
include='10.4/unstable/' --include='10.4/unstable/crypto/' -- 
include='10.4/unstable/crypto/finkinfo/' --include='10.4/unstable/ 
crypto/finkinfo/*/' --include='10.4/unstable/crypto/finkinfo/*' -- 
include='10.4/unstable/crypto/finkinfo/**/*' --include='VERSION' -- 
include='DISTRIBUTION' --include='README' --exclude='**' 'rsync:// 
ams.nl.eu.finkmirrors.net/finkinfo' '/sw/fink/'
receiving file list ... done
rsync: failed to set times on /sw/fink/.: Operation not permitted (1)
./
10.4/stable/main/finkinfo/games/
10.4/stable/main/finkinfo/games/xgalaga.info
10.4/unstable/main/finkinfo/games/
10.4/unstable/main/finkinfo/games/xgalaga.info
rsync: failed to set times on /sw/fink/.: Operation not permitted (1)

sent 1014 bytes  received 187679 bytes  53912.29 bytes/sec
total size is 31713689  speedup is 168.07
rsync error: some files could not be transferred (code 23) at / 
SourceCache/rsync/rsync-35.2/rsync/main.c(1400) [generator=2.6.9]
### execution of /usr/bin/su failed, exit code 23
Updating using rsync failed. Check the error messages above.

(1) Give up
(2) Retry the same mirror
(3) Retry another mirror from your country
(4) Retry another mirror

Default answer will be chosen in 120 seconds...


If you have concerns or questions you can direct them to
[EMAIL PROTECTED] Please do not use that address
for any communication beyond the operation of this archive.

receiving file list ... done
rsync: failed to set times on /sw/fink/.: Operation not permitted (1)
./
rsync: failed to set times on /sw/fink/.: Operation not permitted (1)

sent 922 bytes  received 176372 bytes  118196.00 bytes/sec
total size is 31713689  speedup is 178.88
rsync error: some files could not be transferred (code 23) at / 
SourceCache/rsync/rsync-35.2/rsync/main.c(1400) [generator=2.6.9]
### execution of /usr/bin/su failed, exit code 23
Updating using rsync failed. Check the error messages above.



-
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] rsync failure? su failure?

2008-08-24 Thread Alexander Hansen

On Aug 24, 2008, at 12:55 PM, Neil Tiffin wrote:

 My fink installation has been messed up for some time.  Something like
 the following happens no matter what mirrors I select.  I could not
 find anything on this in the first few pages of google or any
 explanation of the correct permissions in the docs.  Any help would be
 appreciated.

 Thank you.
 Neil
 Chicago


 ===
 rsync -az -v  rsync://ams.nl.eu.finkmirrors.net/finkinfo//TIMESTAMP /
 sw/fink/TIMESTAMP.tmp
 receiving file list ... done
 TIMESTAMP

 sent 117 bytes  received 130 bytes  98.80 bytes/sec
 total size is 11  speedup is 0.04
 I will now run the rsync command to retrieve the latest package
 descriptions.
 /usr/bin/su neiltiffin -c rsync -rtz --delete-after --delete -v   --
 include='10.4/' --include='10.4/stable/' --include='10.4/stable/main/'
 --include='10.4/stable/main/finkinfo/' --include='10.4/stable/main/
 finkinfo/*/' --include='10.4/stable/main/finkinfo/*' --include='10.4/
 stable/main/finkinfo/**/*' --include='10.4/' --include='10.4/stable/'
 --include='10.4/stable/crypto/' --include='10.4/stable/crypto/
 finkinfo/' --include='10.4/stable/crypto/finkinfo/*/' --include='10.4/
 stable/crypto/finkinfo/*' --include='10.4/stable/crypto/finkinfo/**/*'
 --include='10.4/' --include='10.4/unstable/' --include='10.4/unstable/
 main/' --include='10.4/unstable/main/finkinfo/' --include='10.4/
 unstable/main/finkinfo/*/' --include='10.4/unstable/main/finkinfo/*'  
 --
 include='10.4/unstable/main/finkinfo/**/*' --include='10.4/' --
 include='10.4/unstable/' --include='10.4/unstable/crypto/' --
 include='10.4/unstable/crypto/finkinfo/' --include='10.4/unstable/
 crypto/finkinfo/*/' --include='10.4/unstable/crypto/finkinfo/*' --
 include='10.4/unstable/crypto/finkinfo/**/*' --include='VERSION' --
 include='DISTRIBUTION' --include='README' --exclude='**' 'rsync://
 ams.nl.eu.finkmirrors.net/finkinfo' '/sw/fink/'
 receiving file list ... done
 rsync: failed to set times on /sw/fink/.: Operation not permitted  
 (1)
 ./
 10.4/stable/main/finkinfo/games/
 10.4/stable/main/finkinfo/games/xgalaga.info
 10.4/unstable/main/finkinfo/games/
 10.4/unstable/main/finkinfo/games/xgalaga.info
 rsync: failed to set times on /sw/fink/.: Operation not permitted  
 (1)

 sent 1014 bytes  received 187679 bytes  53912.29 bytes/sec
 total size is 31713689  speedup is 168.07
 rsync error: some files could not be transferred (code 23) at /
 SourceCache/rsync/rsync-35.2/rsync/main.c(1400) [generator=2.6.9]
 ### execution of /usr/bin/su failed, exit code 23
 Updating using rsync failed. Check the error messages above.

 (1)   Give up
 (2)   Retry the same mirror
 (3)   Retry another mirror from your country
 (4)   Retry another mirror

 Default answer will be chosen in 120 seconds...

 
 If you have concerns or questions you can direct them to
 [EMAIL PROTECTED] Please do not use that address
 for any communication beyond the operation of this archive.

 receiving file list ... done
 rsync: failed to set times on /sw/fink/.: Operation not permitted  
 (1)
 ./
 rsync: failed to set times on /sw/fink/.: Operation not permitted  
 (1)

 sent 922 bytes  received 176372 bytes  118196.00 bytes/sec
 total size is 31713689  speedup is 178.88
 rsync error: some files could not be transferred (code 23) at /
 SourceCache/rsync/rsync-35.2/rsync/main.c(1400) [generator=2.6.9]
 ### execution of /usr/bin/su failed, exit code 23
 Updating using rsync failed. Check the error messages above.




I have the following permissions for /sw/fink:

drwxr-xr-x   5 hansen admin   476 2008-08-17 22:01 fink



-
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] texmacs-1.0.6.15-3 compile failure

2008-08-24 Thread Kevin Horton
On 24-Aug-08, at 12:38 , Martin Costabel wrote:

 Kevin Horton wrote:
 []
 Maybe I should install fink's sed, on the assumption that this is  
 a  bug with Apple's sed that will eventually get fixed.  Or, should  
 I try  to reinstall Apple's sed, in case the current one has  
 somehow gotten  borked?  How would one reinstall Apple's sed?

 /usr/bin/sed comes from BaseSystem.pkg, and it was updated on my  
 machine here by the 10.5.3 update. You could reinstall the 10.5.3  
 combo update and then the 10.5.4 combo update.

Thanks Martin.  I downloaded the 10.5.3 Combo updater, but it refused  
to install, perhaps because it is older than the current OS.  So, I  
extracted sed from it.  Diff reported that the file differed from my / 
usr/bin/sed, so I replaced mine with the one from 10.5.3.  Now texmacs  
builds with Apple's sed.

--
Kevin Horton
Ottawa, Canada




-
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] rsync failure? su failure?

2008-08-24 Thread Neil Tiffin

On Aug 24, 2008, at 2:29 PM, Alexander Hansen wrote:


 On Aug 24, 2008, at 12:55 PM, Neil Tiffin wrote:

 My fink installation has been messed up for some time.  Something  
 like
 the following happens no matter what mirrors I select.  I could not
 find anything on this in the first few pages of google or any
 explanation of the correct permissions in the docs.  Any help would  
 be
 appreciated.

 Thank you.
 Neil
 Chicago


 ===
 rsync -az -v  rsync://ams.nl.eu.finkmirrors.net/finkinfo//TIMESTAMP /
 sw/fink/TIMESTAMP.tmp
 receiving file list ... done
 TIMESTAMP

 sent 117 bytes  received 130 bytes  98.80 bytes/sec
 total size is 11  speedup is 0.04
 I will now run the rsync command to retrieve the latest package
 descriptions.
 /usr/bin/su neiltiffin -c rsync -rtz --delete-after --delete -v   --
 include='10.4/' --include='10.4/stable/' --include='10.4/stable/ 
 main/'
 --include='10.4/stable/main/finkinfo/' --include='10.4/stable/main/
 finkinfo/*/' --include='10.4/stable/main/finkinfo/*' --include='10.4/
 stable/main/finkinfo/**/*' --include='10.4/' --include='10.4/stable/'
 --include='10.4/stable/crypto/' --include='10.4/stable/crypto/
 finkinfo/' --include='10.4/stable/crypto/finkinfo/*/' -- 
 include='10.4/
 stable/crypto/finkinfo/*' --include='10.4/stable/crypto/finkinfo/**/ 
 *'
 --include='10.4/' --include='10.4/unstable/' --include='10.4/ 
 unstable/
 main/' --include='10.4/unstable/main/finkinfo/' --include='10.4/
 unstable/main/finkinfo/*/' --include='10.4/unstable/main/finkinfo/ 
 *' --
 include='10.4/unstable/main/finkinfo/**/*' --include='10.4/' --
 include='10.4/unstable/' --include='10.4/unstable/crypto/' --
 include='10.4/unstable/crypto/finkinfo/' --include='10.4/unstable/
 crypto/finkinfo/*/' --include='10.4/unstable/crypto/finkinfo/*' --
 include='10.4/unstable/crypto/finkinfo/**/*' --include='VERSION' --
 include='DISTRIBUTION' --include='README' --exclude='**' 'rsync://
 ams.nl.eu.finkmirrors.net/finkinfo' '/sw/fink/'
 receiving file list ... done
 rsync: failed to set times on /sw/fink/.: Operation not permitted  
 (1)
 ./
 10.4/stable/main/finkinfo/games/
 10.4/stable/main/finkinfo/games/xgalaga.info
 10.4/unstable/main/finkinfo/games/
 10.4/unstable/main/finkinfo/games/xgalaga.info
 rsync: failed to set times on /sw/fink/.: Operation not permitted  
 (1)

 sent 1014 bytes  received 187679 bytes  53912.29 bytes/sec
 total size is 31713689  speedup is 168.07
 rsync error: some files could not be transferred (code 23) at /
 SourceCache/rsync/rsync-35.2/rsync/main.c(1400) [generator=2.6.9]
 ### execution of /usr/bin/su failed, exit code 23
 Updating using rsync failed. Check the error messages above.

 (1)  Give up
 (2)  Retry the same mirror
 (3)  Retry another mirror from your country
 (4)  Retry another mirror




 I have the following permissions for /sw/fink:

 drwxr-xr-x   5 hansen admin   476 2008-08-17 22:01 fink



Thanks, I changed my permissions recursively to root:admin and  
everything started working again (Mac OS X 10.5.4)

Neil


-
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] rsync failure? su failure?

2008-08-24 Thread James McKenzie
Neil Tiffin wrote:

 I have the following permissions for /sw/fink:

 drwxr-xr-x   5 hansen admin   476 2008-08-17 22:01 fink


 

 Thanks, I changed my permissions recursively to root:admin and  
 everything started working again (Mac OS X 10.5.4)

 Neil


   
This is BAD security practice for Fink.  The Fink directory should be
OWNED by YOU, not ROOT.  This maybe why you originally had this
problem.  This would require sudo just to run Fink to do anything.  Let
Fink decide what needs to be installed/updated with root privileges. 
Please change your permissions away from root.

Thank you.

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