From ac4d23a8d08e55ed7415439e58d77a3a01573e55 Mon Sep 17 00:00:00 2001 From: Benjamin Smedberg Date: Thu, 16 Jul 2009 11:41:19 -0400 Subject: [PATCH] Link against dbghelp.lib on Windows to satisfy requirements of chromium/src/base/debug_util_win.cc (SymInitialize etc). This means the build requires Windows XP at runtime (or the user has to install the debugging tools for Windows, but I'm pretty sure we're ok with dropping Windows 2000 support). --- toolkit/library/libxul-config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolkit/library/libxul-config.mk b/toolkit/library/libxul-config.mk index 0e49593bbb97..5c09df60bca6 100644 --- a/toolkit/library/libxul-config.mk +++ b/toolkit/library/libxul-config.mk @@ -105,7 +105,7 @@ ifeq (Linux,$(OS_ARCH)) OS_LIBS += -lrt endif ifeq (WINNT,$(OS_ARCH)) -OS_LIBS += psapi.lib +OS_LIBS += psapi.lib dbghelp.lib endif endif