diff options
author | Lyubomir Marinov <lyubomir.marinov@jitsi.org> | 2011-03-06 00:16:14 +0000 |
---|---|---|
committer | Lyubomir Marinov <lyubomir.marinov@jitsi.org> | 2011-03-06 00:16:14 +0000 |
commit | 2335a598e8e6ae8b245c7b818a8a37f7c7ffc9eb (patch) | |
tree | ff020906a95992d7cdd79c7df7965fdd56c76d69 /src/native/windows/run | |
parent | a304daffbabc92d88f37b1167d11493b159c5ab9 (diff) | |
download | jitsi-2335a598e8e6ae8b245c7b818a8a37f7c7ffc9eb.zip jitsi-2335a598e8e6ae8b245c7b818a8a37f7c7ffc9eb.tar.gz jitsi-2335a598e8e6ae8b245c7b818a8a37f7c7ffc9eb.tar.bz2 |
Fixes 'run.exe - Entry Point Not Found The procedure entry point RegCloseKey could not be located in the dynamic link library KERNEL32.dll' reported by Liviu Andronic on the dev mailing list in the thread 'SC fails to start on Win Vista' against Windows Vista x64.
Diffstat (limited to 'src/native/windows/run')
-rw-r--r-- | src/native/windows/run/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/native/windows/run/Makefile b/src/native/windows/run/Makefile index 2765ec0..7acc0e0 100644 --- a/src/native/windows/run/Makefile +++ b/src/native/windows/run/Makefile @@ -25,7 +25,7 @@ CPPFLAGS := $(CPPFLAGS) \ -DPSAPI_VERSION=1 \
-DWINVER=0x0502 -D_WIN32_WINNT=0x0502
LDFLAGS = -mwindows
-LIBS = -lpsapi
+LIBS = -ladvapi32 -lpsapi
MACHINE = $(shell $(CC) -dumpmachine)
WINDRES = $(MINGW_HOME)/bin/windres
|