We try to use libprocstat on non-Linux platforms and detect its presence in the configure phase. Make sure we actually link this library in that case, so add $(PROCSTAT_LIBS) to EXTRADLLFLAGS.
Signed-off-by: Gerald Pfeifer gerald@pfeifer.com --- dlls/nsiproxy.sys/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/nsiproxy.sys/Makefile.in b/dlls/nsiproxy.sys/Makefile.in index cee4b72c33f..0e9e6de9355 100644 --- a/dlls/nsiproxy.sys/Makefile.in +++ b/dlls/nsiproxy.sys/Makefile.in @@ -1,6 +1,6 @@ MODULE = nsiproxy.sys IMPORTS = ntoskrnl uuid -EXTRADLLFLAGS = -Wl,--subsystem,native +EXTRADLLFLAGS = -Wl,--subsystem,native $(PROCSTAT_LIBS)
C_SRCS = \ device.c \