Luis Azevedo <[EMAIL PROTECTED]> wrote: > I just tried to change "Make.inc" in the parameters: > USE_SHARED_LIBS = yes > USE_STATIC_LIBS = no > > But it doesn't work and after #make I get: > > *** Warning: inter-library dependencies are not known to be supported. > *** All declared inter-library dependencies are being dropped.
So your system cannot do inter-library dependencies. What the heck kind of Unix is it? Note that the output of the 'configure' script says whether or not it can build shared libraries. Reading it's output may help ytou understand why shared libraries won't work. The build system for the server still has to be updated for certain weird configurations. I guess yours doesn't work yet, sorry. What you may be able to do is to go to src/main/Makefile, and edit it. Look for: ifneq ($(USE_SHARED_LIBS),yes) MODULE_LIBS += $(shell for x in ../modules/rlm_*/rlm_*.la;do echo -dlpreopen $$x;done) endif Replace the 'endif' with: else MODULE_LIBS += $(shell for x in ../modules/rlm_*/rlm_*.la;do echo -dlopen $$x;done) endif that may help. Alan DeKok. - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
