Andrew Eikum : kernel32: Link against RT_LIBS.
Module: wine Branch: master Commit: d5d43ac9071cf53ca3f6eaa7179f55c6e28c5825 URL: https://source.winehq.org/git/wine.git/?a=commit;h=d5d43ac9071cf53ca3f6eaa71... Author: Andrew Eikum <aeikum(a)codeweavers.com> Date: Wed Jun 19 13:03:46 2019 -0500 kernel32: Link against RT_LIBS. Fixes linking against glibc < 2.17 where clock_gettime needs -lrt. Signed-off-by: Andrew Eikum <aeikum(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/kernel32/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/kernel32/Makefile.in b/dlls/kernel32/Makefile.in index 2c0bbc9..981b8b2 100644 --- a/dlls/kernel32/Makefile.in +++ b/dlls/kernel32/Makefile.in @@ -2,7 +2,7 @@ EXTRADEFS = -D_KERNEL32_ -D_NORMALIZE_ MODULE = kernel32.dll IMPORTLIB = kernel32 IMPORTS = winecrt0 ntdll -EXTRALIBS = $(COREFOUNDATION_LIBS) $(POLL_LIBS) +EXTRALIBS = $(COREFOUNDATION_LIBS) $(POLL_LIBS) $(RT_LIBS) EXTRADLLFLAGS = -nodefaultlibs -Wb,-F,KERNEL32.dll -Wl,--image-base,0x7b400000 C_SRCS = \
participants (1)
-
Alexandre Julliard