From 26397dee941c2471cf5614049c4e40c3588feb84 Mon Sep 17 00:00:00 2001 From: floty Date: Sat, 1 Sep 2007 13:38:50 +0000 Subject: [PATCH] patch for qmake (64bit system) --- pokerth_game.pro | 8 ++++++++ pokerth_server.pro | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/pokerth_game.pro b/pokerth_game.pro index cc14738f..1d8e5d6d 100644 --- a/pokerth_game.pro +++ b/pokerth_game.pro @@ -229,10 +229,18 @@ unix: !mac{ message("Found libboost_thread-mt") LIBS += -lboost_thread-mt } + exists( /usr/lib64/libboost_thread-mt.so ){ + message("Found libboost_thread-mt") + LIBS += -lboost_thread-mt + } exists( /usr/lib/libboost_thread.so ){ message("Found libboost_thread") LIBS += -lboost_thread } + exists( /usr/lib64/libboost_thread.so ){ + message("Found libboost_thread") + LIBS += -lboost_thread + } LIBPATH += lib LIBS += -lpokerth_lib LIBS += -lcrypto -lSDL_mixer diff --git a/pokerth_server.pro b/pokerth_server.pro index a38ecc32..1bcee1aa 100644 --- a/pokerth_server.pro +++ b/pokerth_server.pro @@ -115,10 +115,18 @@ unix:!mac{ message("Found libboost_thread-mt") LIBS += -lboost_thread-mt } + exists( /usr/lib64/libboost_thread-mt.so ) { + message("Found libboost_thread-mt") + LIBS += -lboost_thread-mt + } exists( /usr/lib/libboost_thread.so ) { message("Found libboost_thread") LIBS += -lboost_thread } + exists( /usr/lib64/libboost_thread.so ) { + message("Found libboost_thread") + LIBS += -lboost_thread + } LIBPATH += lib LIBS += -lpokerth_lib LIBS += -lcrypto