From ffc198b5f0b13a426772cc9c209c09c4fe54cc85 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 30 Apr 2003 17:17:48 +0000 Subject: [PATCH] We still need to link against ntdll until the pthread stuff is fixed properly. --- miscemu/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miscemu/Makefile.in b/miscemu/Makefile.in index b8ac569089f..6f3da550db5 100644 --- a/miscemu/Makefile.in +++ b/miscemu/Makefile.in @@ -14,7 +14,7 @@ all: $(MODULE) LDEXECFLAGS = @LDEXECFLAGS@ $(MODULE): $(OBJS) - $(CC) -o $@ $(LDEXECFLAGS) $(OBJS) $(LIBWINE) $(LIBPORT) $(LDFLAGS) + $(CC) -o $@ $(LDEXECFLAGS) $(OBJS) -L$(DLLDIR) -lntdll.dll $(LIBWINE) $(LIBUNICODE) $(LIBPORT) $(LDFLAGS) install:: $(MODULE) $(MKINSTALLDIRS) $(bindir) -- 2.11.4.GIT