"leaobicalho" <[EMAIL PROTECTED]> wrote: > Hum, i undestand the documentation, > but continue without work, i read my > messages about, and many people dont > can make work....i did try many > things...you have any sugestion???
There are only a few things that can be happening: 1) You put shared libraries into a place where your linker cannot find them. Everyone blames FreeRADIUS because it's the one printing the error message. But it just gets the error message from your linker. 2) You don't have static libraries for SQL clients on your system. So doing "./configure --disable-shared;make" doesn't help. The 'make' process WILL print out error messages saying it's creating a static library which links to a dynamic one. If your linker is misconfigured (see #1), then FreeRADIUS still won't work. So you probably ignored the error/warning messages produced during the 'make' stage. That's bad. And libtool still does dynamic linking when told to do static linking, instead of failing to do the build. It should be taken out and shot. There is nothing you can do to FreeRADIUS to fix issues with non-FreeRADIUS shared libraries. Fix your SQL libraries so that: a) your linker can find them or b) There are static versions of those libraries available. You're aslo building on mingw32, which is a hack on top of a nightmare, so I'm surprised that *anything* works. Alan DeKok. - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
