From e6d68320c8019025d83ce25d50ed933ae4628c06 Mon Sep 17 00:00:00 2001 From: Daniel Molkentin Date: Thu, 6 Sep 2012 14:59:47 +0200 Subject: [PATCH] Libs to link must be lowercase to work with mingw xcompile. Change-Id: I066ea0e0ecb6c0dddc86230b74b1c492bb63e002 Reviewed-by: Friedemann Kleint --- src/libs/utils/utils.pro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libs/utils/utils.pro b/src/libs/utils/utils.pro index 7829c45097d..873eb0c437c 100644 --- a/src/libs/utils/utils.pro +++ b/src/libs/utils/utils.pro @@ -18,6 +18,6 @@ HEADERS += \ SOURCES += \ proxyaction.cpp -win32: LIBS += -lUser32 +win32: LIBS += -luser32 # PortsGatherer -win32: LIBS += -liphlpapi -lWs2_32 +win32: LIBS += -liphlpapi -lws2_32