Chris Shenton <[EMAIL PROTECTED]> wrote:
> I'm a sometimes coder but don't grok libtool very well, and it seems
> to be having problems finding libraries.

  You've installed multiple versions of the server, and are telling it
to use an older version of "libradius", which doesn't have the
"rbtree" code.

> Most recently I've been trying to put the "configure" command into a
> script file so I could tweak options, currently trying:
> 
> 
>   CPPFLAGS="-I/usr/local/include"
>   LDFLAGS="-L/usr/local/lib"
>   CFLAGS="$CPPFLAGS $LDFLAGS"

  None of that should be necessary.

> gcc .libs/radiusdS.o -I/usr/local/include -D_REENTRANT
...
> /usr/local/lib/libradius.so

  That's the problem.  For some reason, it's picking
/usr/local/lib/libradius.so, rather than the local libradius.so (or.a)

  My suggestion is to NOT do "-L/usr/local/lib", and/or to temporarily
"chmod -x /usr/local/lib/libradius.so", while building the server.

  Alan DeKok.

- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

Reply via email to