[PATCH] nsiproxy: Use $(PROCSTAT_LIBS)
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(a)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 \ -- 2.31.1
On Thu, Aug 19, 2021 at 01:59:25AM +0200, Gerald Pfeifer wrote:
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(a)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)
This should be EXTRALIBS. Huw.
participants (2)
-
Gerald Pfeifer -
Huw Davies