Fix boost locale linkage
This commit is contained in:
parent
a8c9adb052
commit
aeb31f0669
|
@ -2,7 +2,9 @@ language: cpp
|
|||
compiler:
|
||||
- gcc
|
||||
before_script:
|
||||
- sudo apt-get install libboost-all-dev libphysfs-dev libssl-dev liblua5.1-dev libglew1.6-dev libvorbis-dev libopenal-dev libz-dev
|
||||
- sudo apt-add-repository ppa:28msec/boost
|
||||
- sudo apt-get update
|
||||
- sudo apt-get install libboost1.50 libphysfs-dev libssl-dev liblua5.1-dev libglew1.6-dev libvorbis-dev libopenal-dev libz-dev
|
||||
script: |
|
||||
cmake . -DCMAKE_BUILD_TYPE=Release
|
||||
make
|
||||
|
|
|
@ -148,10 +148,7 @@ CIPSOFT_RSA = "1321277432058722840622950990822933849527763264961655079678763618"
|
|||
"88792221429527047321331896351555606801473202394175817"
|
||||
|
||||
-- set to the latest Tibia.pic signature to make otclient compatible with official tibia
|
||||
PIC_SIGNATURE = 1337606793
|
||||
if g_game.getClientVersion() < 970 then
|
||||
PIC_SIGNATURE = 1353074333
|
||||
end
|
||||
PIC_SIGNATURE = 0x50a6469d
|
||||
|
||||
OsTypes = {
|
||||
Linux = 1,
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
* THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef OTCLIENT_CONST_H
|
||||
#define OTCLIENT_CONST_H
|
||||
#ifndef CLIENT_CONST_H
|
||||
#define CLIENT_CONST_H
|
||||
|
||||
namespace Otc
|
||||
{
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
* THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef OTCLIENT_DECLARATIONS_H
|
||||
#define OTCLIENT_DECLARATIONS_H
|
||||
#ifndef CLIENT_DECLARATIONS_H
|
||||
#define CLIENT_DECLARATIONS_H
|
||||
|
||||
#include "global.h"
|
||||
#include <framework/net/declarations.h>
|
||||
|
|
|
@ -38,7 +38,6 @@ Game g_game;
|
|||
|
||||
Game::Game()
|
||||
{
|
||||
resetGameStates();
|
||||
m_protocolVersion = 0;
|
||||
m_clientVersion = 0;
|
||||
m_online = false;
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
* THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef OTCLIENT_GLOBAL_H
|
||||
#define OTCLIENT_GLOBAL_H
|
||||
#ifndef CLIENT_GLOBAL_H
|
||||
#define CLIENT_GLOBAL_H
|
||||
|
||||
#include <framework/global.h>
|
||||
|
||||
|
|
|
@ -169,11 +169,14 @@ message(STATUS "Build revision: ${BUILD_REVISION}")
|
|||
add_definitions(-D"BUILD_REVISION=\\\"${BUILD_REVISION}\\\"")
|
||||
|
||||
# find boost
|
||||
set(REQUIRED_BOOST_COMPONENTS system filesystem regex locale)
|
||||
set(REQUIRED_BOOST_COMPONENTS locale system filesystem regex thread)
|
||||
if(WIN32)
|
||||
set(Boost_THREADAPI win32)
|
||||
set(framework_DEFINITIONS ${framework_DEFINITIONS} -DBOOST_THREAD_USE_LIB) # fix boost thread linkage
|
||||
set(REQUIRED_BOOST_COMPONENTS ${REQUIRED_BOOST_COMPONENTS} thread chrono) # mingw32 does not have std::thread
|
||||
set(REQUIRED_BOOST_COMPONENTS ${REQUIRED_BOOST_COMPONENTS} chrono) # mingw32 does not have std::thread
|
||||
else()
|
||||
find_package(ICU)
|
||||
set(Boost_LIBRARIES ${Boost_LIBRARIES} ${ICU_LIBRARIES})
|
||||
endif()
|
||||
set(Boost_USE_MULTITHREADED ON)
|
||||
set(Boost_USE_STATIC_LIBS ${USE_STATIC_LIBS})
|
||||
|
|
Loading…
Reference in New Issue