From 33f26a68c29fe87ded80a0c9b4a2d797152b5b5d Mon Sep 17 00:00:00 2001 From: Amir Zaim Mohd Zaini Date: Sat, 4 Jan 2014 16:43:37 +0800 Subject: [PATCH] Qt buildfix for Qt 5.2.0 adding the -lz in line "LIBS" in Linux section to fix compilation error when compiling under Qt version 5.2.0. See issue #4885 --- Qt/PPSSPP.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Qt/PPSSPP.pro b/Qt/PPSSPP.pro index 2769e872f8..9e1e7dede8 100755 --- a/Qt/PPSSPP.pro +++ b/Qt/PPSSPP.pro @@ -53,7 +53,7 @@ win32 { else: LIBS += $$files($$P/dx9sdk/Lib/x86/*.lib) } linux { - LIBS += -ldl -lrt + LIBS += -ldl -lrt -lz PRE_TARGETDEPS += $$CONFIG_DIR/libCommon.a $$CONFIG_DIR/libCore.a $$CONFIG_DIR/libNative.a packagesExist(sdl) { DEFINES += QT_HAS_SDL