From: Vladimír Čunát Date: Wed, 14 Nov 2018 13:40:39 +0000 (+0100) Subject: modules/nsid: fix linkage on some systems X-Git-Tag: v3.2.0~33^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fd85375c498c0c61b68878188baea9059cf23f3;p=thirdparty%2Fknot-resolver.git modules/nsid: fix linkage on some systems This is my mistake. I was convinced this line wasn't needed and I deleted it before merging the module. Apparently we still have some deficiencies in the build system, but let's defer that to migration (to meson probably). --- diff --git a/modules/nsid/nsid.mk b/modules/nsid/nsid.mk index aa7d16cd0..c7d2f51e3 100644 --- a/modules/nsid/nsid.mk +++ b/modules/nsid/nsid.mk @@ -1,4 +1,5 @@ nsid_CFLAGS := -fPIC +nsid_LDFLAGS := -Wl,-undefined -Wl,dynamic_lookup nsid_SOURCES := modules/nsid/nsid.c nsid_DEPEND := $(libkres) nsid_LIBS := $(contrib_TARGET) $(libkres_TARGET) $(libkres_LIBS)