On Fri, Jul 02, 2004 at 04:45:53PM +0800, apellido jr., wilfredo p. wrote: > Freebsd 4.10 > Freeradius latest development CVS July 07, 2004
> gmake[1]: Entering directory `/usr/local/radiusd/libltdl' > /bin/sh ./libtool --mode=compile > gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -pthread -D_THREAD_SAFE -DOPENSSL > _NO_KRB5 -Wall -D_GNU_SOURCE -g -Wshadow -Wpointer-arith -Wcast-qual -Wcas > t-align -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wmissing-d > eclarations -Wnested-externs -W -Wredundant-decls -Wundef -c ltdl.c > ./libtool: s,^.*/,,g: not found Try changing line 27 of ltmain.sh: basename="s,^.*/,,g" to basename="'s,^.*/,,g'" and line 37: progname=`echo "$progpath" | $SED $basename` to progname=`echo "$progpath" | $SED -e $basename` and reconfigure/rebuild... This looks like a different in 'sed' usage between platforms... and possibly a quoting issue? Otherwise, try running the supplied command without /bin/sh in front... -- Paul "TBBle" Hampson, on an alternate email client. - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

