From: aland Date: Tue, 24 Jan 2006 22:46:41 +0000 (+0000) Subject: Don't make radiusd depend on $(MODULE_LIBS), that is a macro X-Git-Tag: release_2_0_0_pre1~731 X-Git-Url: http://www.project-moonshot.org/gitweb/?a=commitdiff_plain;h=eecca046395df1a2b4b1829a2242e702243198c0;p=freeradius.git Don't make radiusd depend on $(MODULE_LIBS), that is a macro which is passed to libtool, and may include things like "-dlpreopen" --- diff --git a/src/main/Makefile.in b/src/main/Makefile.in index 711bc40..e8f3b1f 100644 --- a/src/main/Makefile.in +++ b/src/main/Makefile.in @@ -61,7 +61,7 @@ all: $(BINARIES) $(SERVER_OBJS): $(INCLUDES) -radiusd: $(SERVER_OBJS) $(MODULE_LIBS) ../lib/libradius.la +radiusd: $(SERVER_OBJS) ../lib/libradius.la $(LIBTOOL) --mode=link $(CC) -export-dynamic -dlopen self \ $(LDFLAGS) $(LINK_MODE) -o $@ $(SERVER_OBJS) \ $(MODULE_LIBS) $(LIBS) $(SNMP_LIBS) $(LCRYPT) \