From a70b4d2613ff253f24f79765a934393d4af53840 Mon Sep 17 00:00:00 2001 From: kervala Date: Sat, 15 Oct 2016 10:22:50 +0200 Subject: [PATCH 1/3] Fixed: Also copy DLLs compatible with Ryzom Installer --HG-- branch : develop --- code/ryzom/client/windows/upgd_nl.bat | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/ryzom/client/windows/upgd_nl.bat b/code/ryzom/client/windows/upgd_nl.bat index e0b64a5cf..ad19c2497 100644 --- a/code/ryzom/client/windows/upgd_nl.bat +++ b/code/ryzom/client/windows/upgd_nl.bat @@ -30,6 +30,10 @@ if exist %ROOTPATH%\msvcr100_win64.dll ( if exist %ROOTPATH%\..\ryzom_installer_qt_r.exe ( if exist %ROOTPATH%\..\ryzom_installer_qt_r.exe del %ROOTPATH%\..\ryzom_installer_qt_r.exe copy /Y %ROOTPATH%\ryzom_installer_qt_r.exe %ROOTPATH%\.. + if exist %ROOTPATH%\..\msvcp100.dll del %ROOTPATH%\..\msvcp100.dll + copy /Y %ROOTPATH%\msvcp100.dll %ROOTPATH%\.. + if exist %ROOTPATH%\..\msvcr100.dll del %ROOTPATH%\..\msvcr100.dll + copy /Y %ROOTPATH%\msvcr100.dll %ROOTPATH%\.. ) :end From 7a0a35586a6f8f29e047411412d79ad8a52f4193 Mon Sep 17 00:00:00 2001 From: kervala Date: Sat, 15 Oct 2016 10:27:34 +0200 Subject: [PATCH 2/3] Changed: Copy Ryzom Installer in parent directory if present --HG-- branch : develop --- code/ryzom/client/unix/upgd_nl.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/ryzom/client/unix/upgd_nl.sh b/code/ryzom/client/unix/upgd_nl.sh index 0e28a1555..1b4ba0176 100644 --- a/code/ryzom/client/unix/upgd_nl.sh +++ b/code/ryzom/client/unix/upgd_nl.sh @@ -13,4 +13,11 @@ chmod +x "$ROOTPATH/ryzom_client_patcher" chmod +x "$ROOTPATH/ryzom_configuration_qt" chmod +x "$ROOTPATH/ryzom_installer_qt" +# copy Ryzom Installer if present in parent directory +if [ -e "$ROOTPATH/../ryzom_installer_qt" ] +then + rm -f "$ROOTPATH/../ryzom_installer_qt" + cp -a "$ROOTPATH/ryzom_installer_qt" "$ROOTPATH/.." +fi + exit 0 From 0f8a397408d1ed1d360b533fda691afab018fbc3 Mon Sep 17 00:00:00 2001 From: kervala Date: Sat, 15 Oct 2016 10:37:29 +0200 Subject: [PATCH 3/3] Changed: Qt depends too on xcb-glx --HG-- branch : develop --- code/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/CMakeLists.txt b/code/CMakeLists.txt index 67076ffa8..af5193148 100644 --- a/code/CMakeLists.txt +++ b/code/CMakeLists.txt @@ -300,7 +300,7 @@ IF(WITH_QT5) ADD_QT_LIBRARY(XcbQpa) ADD_QT_LIBRARY(PlatformSupport) - SET(QT_LIBRARIES ${QT_LIBRARIES} -lX11-xcb -lXi -lSM -lICE -lxcb -lGL) + SET(QT_LIBRARIES ${QT_LIBRARIES} -lX11-xcb -lXi -lSM -lICE -lxcb -lGL -lxcb-glx) IF(EXISTS "${QT_LIBRARY_DIR}/libxcb-static.a") SET(QT_LIBRARIES ${QT_LIBRARIES} "${QT_LIBRARY_DIR}/libxcb-static.a") ENDIF()