File realcrypt-7.0a-add-ldl.patch of Package realcrypt
"-ldl" must appear pretty much at the end of the cmdline, so just setting "LFLAGS=-ldl" does not work... -- seife Index: b/Main/Main.make =================================================================== --- a/Main/Main.make +++ b/Main/Main.make @@ -103,11 +103,11 @@ FUSE_LIBS = $(shell pkg-config fuse --li TC_VERSION = $(shell grep VERSION_STRING ../Common/Tcdefs.h | head -n 1 | cut -d'"' -f 2) $(APPNAME): $(LIBS) $(OBJS) @echo Linking $@ - $(CXX) -o $(APPNAME) $(LFLAGS) $(OBJS) $(LIBS) $(FUSE_LIBS) $(WX_LIBS) + $(CXX) -o $(APPNAME) $(LFLAGS) $(OBJS) $(LIBS) $(FUSE_LIBS) $(WX_LIBS) -ldl ifeq "$(TC_BUILD_CONFIG)" "Release" ifndef NOSTRIP strip $(APPNAME) endif