===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
pokerth-1.1.2/pokerth_common.pro-3-!c++11 {
pokerth-1.1.2/pokerth_common.pro:4:	system( $$QMAKE_CXX -dumpversion | grep -e "^6.[0-9]" > /dev/null ) {
pokerth-1.1.2/pokerth_common.pro-5-		greaterThan(QT_MAJOR_VERSION, 5) | equals(QT_MAJOR_VERSION, 5) {
##############################################
pokerth-1.1.2/pokerth_common.pro-20-c++11 {
pokerth-1.1.2/pokerth_common.pro:21:	!system( $$QMAKE_CXX -dumpversion | grep -e "^6.[0-9]" > /dev/null ) {
pokerth-1.1.2/pokerth_common.pro-22-		equals(QT_MAJOR_VERSION, 4) : greaterThan(QT_MINOR_VERSION, 7) {
##############################################
pokerth-1.1.2/src/net/clientcontext.h-67-	}
pokerth-1.1.2/src/net/clientcontext.h:68:	const std::string &GetServerAddr() const
pokerth-1.1.2/src/net/clientcontext.h-69-	{
##############################################
pokerth-1.1.2/src/net/clientcontext.h-71-	}
pokerth-1.1.2/src/net/clientcontext.h:72:	void SetServerAddr(const std::string &serverAddr)
pokerth-1.1.2/src/net/clientcontext.h-73-	{
##############################################
pokerth-1.1.2/src/net/clientcontext.h-107-	}
pokerth-1.1.2/src/net/clientcontext.h:108:	const std::string &GetAvatarServerAddr() const
pokerth-1.1.2/src/net/clientcontext.h-109-	{
##############################################
pokerth-1.1.2/src/net/clientcontext.h-111-	}
pokerth-1.1.2/src/net/clientcontext.h:112:	void SetAvatarServerAddr(const std::string &avatarServerAddr)
pokerth-1.1.2/src/net/clientcontext.h-113-	{
##############################################
pokerth-1.1.2/src/net/common/clientstate.cpp-98-
pokerth-1.1.2/src/net/common/clientstate.cpp:99:	if (context.GetServerAddr().empty())
pokerth-1.1.2/src/net/common/clientstate.cpp-100-		throw ClientException(__FILE__, __LINE__, ERR_SOCK_SERVERADDR_NOT_SET, 0);
##############################################
pokerth-1.1.2/src/net/common/clientstate.cpp-142-	portStr << context.GetServerPort();
pokerth-1.1.2/src/net/common/clientstate.cpp:143:	boost::asio::ip::tcp::resolver::query q(context.GetServerAddr(), portStr.str());
pokerth-1.1.2/src/net/common/clientstate.cpp-144-
##############################################
pokerth-1.1.2/src/net/common/serverlobbythread.cpp-317-		if (!ipAddress.empty()) {
pokerth-1.1.2/src/net/common/serverlobbythread.cpp:318:			sessionData->SetClientAddr(ipAddress);
pokerth-1.1.2/src/net/common/serverlobbythread.cpp-319-
##############################################
pokerth-1.1.2/src/net/common/serverlobbythread.cpp-640-	if (session)
pokerth-1.1.2/src/net/common/serverlobbythread.cpp:641:		ipAddress = session->GetClientAddr();
pokerth-1.1.2/src/net/common/serverlobbythread.cpp-642-
##############################################
pokerth-1.1.2/src/net/common/serverlobbythread.cpp-1047-			boost::mutex::scoped_lock lock(m_timerClientAddressMapMutex);
pokerth-1.1.2/src/net/common/serverlobbythread.cpp:1048:			if (m_timerClientAddressMap.find(session->GetClientAddr()) != m_timerClientAddressMap.end())
pokerth-1.1.2/src/net/common/serverlobbythread.cpp-1049-				recentlySentInit = true;
pokerth-1.1.2/src/net/common/serverlobbythread.cpp-1050-			else
pokerth-1.1.2/src/net/common/serverlobbythread.cpp:1051:				m_timerClientAddressMap[session->GetClientAddr()] = boost::timers::portable::microsec_timer();
pokerth-1.1.2/src/net/common/serverlobbythread.cpp-1052-		}
##############################################
pokerth-1.1.2/src/net/common/serverlobbythread.cpp-1095-			if(m_serverConfig.readConfigInt("ServerRestrictGuestLogin") != 0
pokerth-1.1.2/src/net/common/serverlobbythread.cpp:1096:					&& !m_sessionManager.IsGuestAllowedToConnect(session->GetClientAddr())) {
pokerth-1.1.2/src/net/common/serverlobbythread.cpp-1097-				SessionError(session, ERR_NET_SERVER_FULL);
##############################################
pokerth-1.1.2/src/net/common/serverlobbythread.cpp-1147-	// Check whether the peer IP address is banned.
pokerth-1.1.2/src/net/common/serverlobbythread.cpp:1148:	if (GetBanManager().IsIPAddressBanned(session->GetClientAddr())) {
pokerth-1.1.2/src/net/common/serverlobbythread.cpp-1149-		SessionError(session, ERR_NET_PLAYER_BANNED);
##############################################
pokerth-1.1.2/src/net/common/serverlobbythread.cpp-1262-				EstablishSession(session);
pokerth-1.1.2/src/net/common/serverlobbythread.cpp:1263:				LOG_MSG("Client \"" << session->GetClientAddr() << "\" uploaded avatar \""
pokerth-1.1.2/src/net/common/serverlobbythread.cpp-1264-						<< boost::filesystem::path(avatarFileName).file_string() << "\".");
##############################################
pokerth-1.1.2/src/net/common/serverlobbythread.cpp-1431-					   && !joinGame.spectateonly()
pokerth-1.1.2/src/net/common/serverlobbythread.cpp:1432:					   && session->GetClientAddr() != SERVER_ADDRESS_LOCALHOST_STR
pokerth-1.1.2/src/net/common/serverlobbythread.cpp:1433:					   && session->GetClientAddr() != SERVER_ADDRESS_LOCALHOST_STR_V4V6
pokerth-1.1.2/src/net/common/serverlobbythread.cpp:1434:					   && session->GetClientAddr() != SERVER_ADDRESS_LOCALHOST_STR_V4
pokerth-1.1.2/src/net/common/serverlobbythread.cpp:1435:					   && game->IsClientAddressConnected(session->GetClientAddr())) {
pokerth-1.1.2/src/net/common/serverlobbythread.cpp-1436-				SendJoinGameFailed(session, joinGame.gameid(), NTF_NET_JOIN_IP_BLOCKED);
##############################################
pokerth-1.1.2/src/net/common/serverlobbythread.cpp-1630-			// Ban the player's IP address for 24 hours.
pokerth-1.1.2/src/net/common/serverlobbythread.cpp:1631:			GetBanManager().BanIPAddress(tmpSession->GetClientAddr(), 24);
pokerth-1.1.2/src/net/common/serverlobbythread.cpp-1632-			// Kick the player.
##############################################
pokerth-1.1.2/src/net/common/serverlobbythread.cpp-1637-						  << ") bans player " << tmpPlayer->GetName() << "(" << tmpPlayer->GetDBId()
pokerth-1.1.2/src/net/common/serverlobbythread.cpp:1638:						  << ") who has IP " << tmpSession->GetClientAddr());
pokerth-1.1.2/src/net/common/serverlobbythread.cpp-1639-				GetDatabase()->AsyncBlockPlayer(session->GetPlayerData()->GetUniqueId(), tmpPlayer->GetUniqueId(), tmpPlayer->GetDBId(), 0, 4);
##############################################
pokerth-1.1.2/src/net/common/sessiondata.cpp-294-const std::string &
pokerth-1.1.2/src/net/common/sessiondata.cpp:295:SessionData::GetClientAddr() const
pokerth-1.1.2/src/net/common/sessiondata.cpp-296-{
##############################################
pokerth-1.1.2/src/net/common/sessiondata.cpp-301-void
pokerth-1.1.2/src/net/common/sessiondata.cpp:302:SessionData::SetClientAddr(const std::string &addr)
pokerth-1.1.2/src/net/common/sessiondata.cpp-303-{
##############################################
pokerth-1.1.2/src/net/common/sessionmanager.cpp-241-	while (i != end) {
pokerth-1.1.2/src/net/common/sessionmanager.cpp:242:		if ((*i).second->GetClientAddr() == clientAddress) {
pokerth-1.1.2/src/net/common/sessionmanager.cpp-243-			retVal = true;
##############################################
pokerth-1.1.2/src/net/common/sessionmanager.cpp-264-			num++;
pokerth-1.1.2/src/net/common/sessionmanager.cpp:265:			if (i->second->GetClientAddr() == clientAddress) {
pokerth-1.1.2/src/net/common/sessionmanager.cpp-266-				// guest has same ip as another guest in lobby or
##############################################
pokerth-1.1.2/src/net/common/clientthread.cpp-106-	context.SetAddrFamily(ipv6 ? AF_INET6 : AF_INET);
pokerth-1.1.2/src/net/common/clientthread.cpp:107:	context.SetServerAddr(serverAddress);
pokerth-1.1.2/src/net/common/clientthread.cpp-108-	context.SetServerListUrl(serverListUrl);
##############################################
pokerth-1.1.2/src/net/common/clientthread.cpp-111-	context.SetServerPort(serverPort);
pokerth-1.1.2/src/net/common/clientthread.cpp:112:	context.SetAvatarServerAddr(avatarServerAddress);
pokerth-1.1.2/src/net/common/clientthread.cpp-113-	context.SetPlayerName(playerName);
##############################################
pokerth-1.1.2/src/net/common/clientthread.cpp-807-			// Download from avatar server if applicable.
pokerth-1.1.2/src/net/common/clientthread.cpp:808:			string avatarServerAddress(GetContext().GetAvatarServerAddr());
pokerth-1.1.2/src/net/common/clientthread.cpp-809-			if (!avatarServerAddress.empty() && m_avatarDownloader) {
##############################################
pokerth-1.1.2/src/net/common/clientthread.cpp-1328-	if (context.GetAddrFamily() == AF_INET6)
pokerth-1.1.2/src/net/common/clientthread.cpp:1329:		context.SetServerAddr(useInfo.ipv6addr);
pokerth-1.1.2/src/net/common/clientthread.cpp-1330-	else
pokerth-1.1.2/src/net/common/clientthread.cpp:1331:		context.SetServerAddr(useInfo.ipv4addr);
pokerth-1.1.2/src/net/common/clientthread.cpp-1332-
pokerth-1.1.2/src/net/common/clientthread.cpp-1333-	context.SetServerPort((unsigned)useInfo.port);
pokerth-1.1.2/src/net/common/clientthread.cpp:1334:	context.SetAvatarServerAddr(useInfo.avatarServerAddr);
pokerth-1.1.2/src/net/common/clientthread.cpp-1335-}
##############################################
pokerth-1.1.2/src/net/sessiondata.h-95-
pokerth-1.1.2/src/net/sessiondata.h:96:	const std::string &GetClientAddr() const;
pokerth-1.1.2/src/net/sessiondata.h:97:	void SetClientAddr(const std::string &addr);
pokerth-1.1.2/src/net/sessiondata.h-98-
##############################################
pokerth-1.1.2/src/third_party/sqlite3/shell.c-175-    FILETIME ftCreation, ftExit;
pokerth-1.1.2/src/third_party/sqlite3/shell.c:176:    getProcessTimesAddr(hProcess, &ftCreation, &ftExit, &ftKernelBegin, &ftUserBegin);
pokerth-1.1.2/src/third_party/sqlite3/shell.c-177-  }
##############################################
pokerth-1.1.2/src/third_party/sqlite3/shell.c-192-    FILETIME ftCreation, ftExit, ftKernelEnd, ftUserEnd;
pokerth-1.1.2/src/third_party/sqlite3/shell.c:193:    getProcessTimesAddr(hProcess, &ftCreation, &ftExit, &ftKernelEnd, &ftUserEnd);
pokerth-1.1.2/src/third_party/sqlite3/shell.c-194-    printf("CPU Time: user %f sys %f\n",
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-8576-*/
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:8577:#define ADDR(X)  (-1-(X))
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-8578-
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-8802-SQLITE_PRIVATE void sqlite3VdbeResolveLabel(Vdbe*, int);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:8803:SQLITE_PRIVATE int sqlite3VdbeCurrentAddr(Vdbe*);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-8804-#ifdef SQLITE_DEBUG
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-22795-**
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:22796:** This file contains inline asm code for retrieving "high-performance"
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-22797-** counters for x86 class CPUs.
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-22821-  __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:22822:     __asm {
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-22823-        rdtsc
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-24579-  APIRET rc;
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:24580:  rc = DosQueryProcAddr((HMODULE)pHandle, 0L, (PSZ)zSymbol, &pfn);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-24581-  if( rc != NO_ERROR ){
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-24586-    strncat(_zSymbol, zSymbol, 254);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:24587:    rc = DosQueryProcAddr((HMODULE)pHandle, 0L, (PSZ)_zSymbol, &pfn);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-24588-  }
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-25143-**
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:25144:** This file contains inline asm code for retrieving "high-performance"
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-25145-** counters for x86 class CPUs.
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-25169-  __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:25170:     __asm {
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-25171-        rdtsc
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-31996-**
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:31997:** This file contains inline asm code for retrieving "high-performance"
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-31998-** counters for x86 class CPUs.
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-32022-  __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:32023:     __asm {
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-32024-        rdtsc
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-59965-*/
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:59966:SQLITE_PRIVATE int sqlite3VdbeCurrentAddr(Vdbe *p){
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-59967-  assert( p->magic==VDBE_MAGIC_INIT );
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-60014-      if( p2<0 && (sqlite3OpcodeProperty[pOut->opcode] & OPFLG_JUMP)!=0 ){
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:60015:        pOut->p2 = addr + ADDR(p2);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-60016-      }else{
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-64811-**
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:64812:** This file contains inline asm code for retrieving "high-performance"
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-64813-** counters for x86 class CPUs.
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-64837-  __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:64838:     __asm {
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-64839-        rdtsc
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-76116-              sqlite3VdbeAddOp2(v, OP_MustBeInt, r3,
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:76117:                                sqlite3VdbeCurrentAddr(v)+2);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-76118-              sqlite3VdbeAddOp3(v, OP_Insert, pExpr->iTable, r2, r3);
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-79823-    sqlite3VdbeAddOp2(v, OP_Rewind, iIdxCur, endOfLoop);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:79824:    topOfLoop = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-79825-    sqlite3VdbeAddOp2(v, OP_AddImm, iMem, 1);  /* Increment row counter */
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-83595-  if( pIndex->onError!=OE_None ){
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:83596:    int j2 = sqlite3VdbeCurrentAddr(v) + 3;
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-83597-    sqlite3VdbeAddOp2(v, OP_Goto, 0, j2);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:83598:    addr2 = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-83599-    sqlite3VdbeAddOp3(v, OP_SorterCompare, iSorter, j2, regRecord);
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-83603-  }else{
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:83604:    addr2 = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-83605-  }
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-83613-    const int regRowid = regIdxKey + pIndex->nColumn;
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:83614:    const int j2 = sqlite3VdbeCurrentAddr(v) + 2;
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-83615-    void * const pRegKey = SQLITE_INT_TO_PTR(regIdxKey);
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-88111-      sqlite3VdbeAddOp2(v, OP_Goto, 0, iOk);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:88112:      sqlite3VdbeJumpHere(v, sqlite3VdbeCurrentAddr(v)-2);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-88113-      sqlite3VdbeJumpHere(v, iMustBeInt);
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-88137-      if( pTab==pFKey->pFrom && nIncr==1 ){
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:88138:        int iJump = sqlite3VdbeCurrentAddr(v) + nCol + 1;
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-88139-        for(i=0; i<nCol; i++){
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-88404-    ** transactions are not able to rollback schema changes.  */
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:88405:    sqlite3VdbeAddOp2(v, OP_FkIfZero, 0, sqlite3VdbeCurrentAddr(v)+2);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-88406-    sqlite3HaltConstraint(
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-88488-        Vdbe *v = sqlite3GetVdbe(pParse);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:88489:        int iJump = sqlite3VdbeCurrentAddr(v) + pFKey->nCol + 1;
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-88490-        for(i=0; i<pFKey->nCol; i++){
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-89100-  int i;
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:89101:  int iEnd = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-89102-#ifndef SQLITE_OMIT_VIRTUALTABLE
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-89204-    sqlite3VdbeAddOp3(v, OP_Null, 0, memId, memId+1);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:89205:    addr = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-89206-    sqlite3VdbeAddOp4(v, OP_String8, 0, memId-1, 0, p->pTab->zName, 0);
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-89560-    sqlite3SelectDestInit(&dest, SRT_Coroutine, ++pParse->nMem);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:89561:    addrSelect = sqlite3VdbeCurrentAddr(v)+2;
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-89562-    sqlite3VdbeAddOp2(v, OP_Integer, addrSelect-1, dest.iParm);
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-89742-    addrInsTop = sqlite3VdbeAddOp1(v, OP_Rewind, srcTab);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:89743:    addrCont = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-89744-  }else if( pSelect ){
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-89875-        }else{
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:89876:          j1 = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-89877-          sqlite3VdbeAddOp2(v, OP_IsNull, regRowid, j1+2);
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-96261-        sqlite3VdbeAddOp2(v, OP_Rewind, unionTab, iBreak);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:96262:        iStart = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-96263-        selectInnerLoop(pParse, p, p->pEList, unionTab, p->pEList->nExpr,
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-96448-
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:96449:  addr = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-96450-  iContinue = sqlite3VdbeMakeLabel(v);
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-96845-  j1 = sqlite3VdbeAddOp0(v, OP_Goto);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:96846:  addrSelectA = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-96847-
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-96862-  */
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:96863:  addrSelectB = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-96864-  VdbeNoopComment((v, "Begin coroutine for right SELECT"));
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-96948-  VdbeNoopComment((v, "A-gt-B subroutine"));
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:96949:  addrAgtB = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-96950-  if( op==TK_ALL || op==TK_UNION ){
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-98554-        sqlite3ExprCodeExprList(pParse, pEList, iBase, 1);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:98555:        iJump = sqlite3VdbeCurrentAddr(v) + 1 + pEList->nExpr + 1 + 1;
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-98556-        sqlite3VdbeAddOp2(v, OP_If, iFlag, iJump-1);
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-98565-        sqlite3VdbeAddOp2(v, OP_Integer, 0, iFlag);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:98566:        assert( sqlite3VdbeCurrentAddr(v)==iJump );
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-98567-        sqlite3VdbeAddOp3(v, OP_Move, iBase, iBase2, pEList->nExpr);
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-98758-      */
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:98759:      addrTopOfLoop = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-98760-      sqlite3ExprCacheClear(pParse);
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-98774-                          (char*)pKeyInfo, P4_KEYINFO);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:98775:      j1 = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-98776-      sqlite3VdbeAddOp3(v, OP_Jump, j1+1, 0, j1+1);
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-98827-      */
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:98828:      addrSetAbort = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-98829-      sqlite3VdbeAddOp2(v, OP_Integer, 1, iAbortFlag);
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-98832-      sqlite3VdbeResolveLabel(v, addrOutputRow);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:98833:      addrOutputRow = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-98834-      sqlite3VdbeAddOp2(v, OP_IfPos, iUseFlag, addrOutputRow+2);
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-99885-    static const VdbeOpList dropTrigger[] = {
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:99886:      { OP_Rewind,     0, ADDR(9),  0},
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-99887-      { OP_String8,    0, 1,        0}, /* 1 */
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-99888-      { OP_Column,     0, 1,        2},
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:99889:      { OP_Ne,         2, ADDR(8),  1},
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-99890-      { OP_String8,    0, 1,        0}, /* 4: "trigger" */
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-99891-      { OP_Column,     0, 0,        2},
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:99892:      { OP_Ne,         2, ADDR(8),  1},
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-99893-      { OP_Delete,     0, 0,        0},
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:99894:      { OP_Next,       0, ADDR(1),  0}, /* 8 */
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-99895-    };
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-103267-          sqlite3ExprCodeTarget(pParse, pRight, r1);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:103268:          sqlite3VdbeChangeP3(v, sqlite3VdbeCurrentAddr(v)-1, 0);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-103269-          sqlite3ReleaseTempReg(pParse, r1);
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-106425-    pLevel->p1 = iCur;
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:106426:    pLevel->p2 = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-106427-    sqlite3ReleaseTempRange(pParse, iReg, nConstraint+2);
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-106512-    }
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:106513:    start = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-106514-    pLevel->op = bRev ? OP_Prev : OP_Next;
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-106722-    /* Top of the loop body */
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:106723:    pLevel->p2 = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-106724-
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-106919-            sqlite3VdbeAddOp4Int(v, OP_RowSetTest, regRowset,
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:106920:                                 sqlite3VdbeCurrentAddr(v)+2, r, iSet);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-106921-          }
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-106939-    }
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:106940:    sqlite3VdbeChangeP1(v, iRetInit, sqlite3VdbeCurrentAddr(v));
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-106941-    sqlite3VdbeAddOp2(v, OP_Goto, 0, pLevel->addrBrk);
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-106994-  if( pLevel->iLeftJoin ){
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:106995:    pLevel->addrFirst = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-106996-    sqlite3VdbeAddOp2(v, OP_Integer, 1, pLevel->iLeftJoin);
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-107558-        for(; b; b=b>>1, n++){}
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:107559:        sqlite3VdbeChangeP4(v, sqlite3VdbeCurrentAddr(v)-1, 
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-107560-                            SQLITE_INT_TO_PTR(n), P4_INT32);
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-107583-  }
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:107584:  pWInfo->iTop = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-107585-  if( db->mallocFailed ) goto whereBeginError;
##############################################
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-107760-      pOp = sqlite3VdbeGetOp(v, pWInfo->iTop);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c:107761:      last = sqlite3VdbeCurrentAddr(v);
pokerth-1.1.2/src/third_party/sqlite3/sqlite3.c-107762-      for(k=pWInfo->iTop; k<last; k++, pOp++){
##############################################
pokerth-1.1.2/src/third_party/websocketpp/websocketpp/transport/asio/endpoint.hpp-94-      , m_listen_backlog(0)
pokerth-1.1.2/src/third_party/websocketpp/websocketpp/transport/asio/endpoint.hpp:95:      , m_reuse_addr(false)
pokerth-1.1.2/src/third_party/websocketpp/websocketpp/transport/asio/endpoint.hpp-96-      , m_state(UNINITIALIZED)
##############################################
pokerth-1.1.2/src/third_party/websocketpp/websocketpp/transport/asio/endpoint.hpp-134-      , m_listen_backlog(lib::asio::socket_base::max_connections)
pokerth-1.1.2/src/third_party/websocketpp/websocketpp/transport/asio/endpoint.hpp:135:      , m_reuse_addr(src.m_reuse_addr)
pokerth-1.1.2/src/third_party/websocketpp/websocketpp/transport/asio/endpoint.hpp-136-      , m_elog(src.m_elog)
##############################################
pokerth-1.1.2/src/third_party/websocketpp/websocketpp/transport/asio/endpoint.hpp-341-     */
pokerth-1.1.2/src/third_party/websocketpp/websocketpp/transport/asio/endpoint.hpp:342:    void set_reuse_addr(bool value) {
pokerth-1.1.2/src/third_party/websocketpp/websocketpp/transport/asio/endpoint.hpp-343-        m_reuse_addr = value;
##############################################
pokerth-1.1.2/debian/patches/cross.patch-11--	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64 $$system(qmake -query QT_INSTALL_LIBS)
pokerth-1.1.2/debian/patches/cross.patch:12:+	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64 $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/debian/patches/cross.patch-13- 	BOOST_PROGRAM_OPTIONS = boost_program_options boost_program_options-mt
##############################################
pokerth-1.1.2/debian/patches/cross.patch-18--	# searching in $PREFIX/lib, $PREFIX/lib64 and $$system(qmake -query QT_INSTALL_LIBS)
pokerth-1.1.2/debian/patches/cross.patch:19:+	# searching in $PREFIX/lib, $PREFIX/lib64 and $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/debian/patches/cross.patch-20- 	# to override the default '/usr' pass PREFIX
##############################################
pokerth-1.1.2/debian/patches/cross.patch-29--	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64 $$system(qmake -query QT_INSTALL_LIBS)
pokerth-1.1.2/debian/patches/cross.patch:30:+	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64 $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/debian/patches/cross.patch-31- 	BOOST_THREAD = boost_thread boost_thread-mt
##############################################
pokerth-1.1.2/debian/patches/cross.patch-37--	# searching in $PREFIX/lib, $PREFIX/lib64 and $$system(qmake -query QT_INSTALL_LIBS)
pokerth-1.1.2/debian/patches/cross.patch:38:+	# searching in $PREFIX/lib, $PREFIX/lib64 and $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/debian/patches/cross.patch-39- 	# to override the default '/usr' pass PREFIX
##############################################
pokerth-1.1.2/debian/patches/cross.patch-48--			$$system(qmake -query QT_INSTALL_LIBS)
pokerth-1.1.2/debian/patches/cross.patch:49:+			$$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/debian/patches/cross.patch-50- 	}
##############################################
pokerth-1.1.2/debian/patches/cross.patch-57--	# searching in $PREFIX/lib, $PREFIX/lib64 and $$system(qmake -query QT_INSTALL_LIBS)
pokerth-1.1.2/debian/patches/cross.patch:58:+	# searching in $PREFIX/lib, $PREFIX/lib64 and $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/debian/patches/cross.patch-59- 	# to override the default '/usr' pass PREFIX
##############################################
pokerth-1.1.2/debian/patches/cross.patch-68--	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64 $$system(qmake -query QT_INSTALL_LIBS)
pokerth-1.1.2/debian/patches/cross.patch:69:+	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64 $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/debian/patches/cross.patch-70- 	BOOST_FS = boost_filesystem boost_filesystem-mt
##############################################
pokerth-1.1.2/debian/patches/cross.patch-77--	# searching in $PREFIX/lib, $PREFIX/lib64 and $$system(qmake -query QT_INSTALL_LIBS)
pokerth-1.1.2/debian/patches/cross.patch:78:+	# searching in $PREFIX/lib, $PREFIX/lib64 and $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/debian/patches/cross.patch-79- 	# to override the default '/usr' pass PREFIX
##############################################
pokerth-1.1.2/debian/patches/cross.patch-88--	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64 $$system(qmake -query QT_INSTALL_LIBS)
pokerth-1.1.2/debian/patches/cross.patch:89:+	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64 $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/debian/patches/cross.patch-90- 	BOOST_FS = boost_filesystem boost_filesystem-mt
##############################################
pokerth-1.1.2/debian/patches/fix-includes.patch-73--	INCLUDEPATH += $${PREFIX}/include
pokerth-1.1.2/debian/patches/fix-includes.patch:74: 	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64 $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/debian/patches/fix-includes.patch-75- 	BOOST_PROGRAM_OPTIONS = boost_program_options boost_program_options-mt
##############################################
pokerth-1.1.2/debian/patches/fix-includes.patch-85--	INCLUDEPATH += $${PREFIX}/include
pokerth-1.1.2/debian/patches/fix-includes.patch:86: 	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64 $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/debian/patches/fix-includes.patch-87- 	BOOST_THREAD = boost_thread boost_thread-mt
##############################################
pokerth-1.1.2/debian/patches/fix-includes.patch-123- 	INCLUDEPATH += $${PREFIX}/include/libircclient
pokerth-1.1.2/debian/patches/fix-includes.patch:124: 	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64 $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
##############################################
pokerth-1.1.2/.pc/boost-1.66.patch/src/net/common/clientthread.cpp-106-	context.SetAddrFamily(ipv6 ? AF_INET6 : AF_INET);
pokerth-1.1.2/.pc/boost-1.66.patch/src/net/common/clientthread.cpp:107:	context.SetServerAddr(serverAddress);
pokerth-1.1.2/.pc/boost-1.66.patch/src/net/common/clientthread.cpp-108-	context.SetServerListUrl(serverListUrl);
##############################################
pokerth-1.1.2/.pc/boost-1.66.patch/src/net/common/clientthread.cpp-111-	context.SetServerPort(serverPort);
pokerth-1.1.2/.pc/boost-1.66.patch/src/net/common/clientthread.cpp:112:	context.SetAvatarServerAddr(avatarServerAddress);
pokerth-1.1.2/.pc/boost-1.66.patch/src/net/common/clientthread.cpp-113-	context.SetPlayerName(playerName);
##############################################
pokerth-1.1.2/.pc/boost-1.66.patch/src/net/common/clientthread.cpp-807-			// Download from avatar server if applicable.
pokerth-1.1.2/.pc/boost-1.66.patch/src/net/common/clientthread.cpp:808:			string avatarServerAddress(GetContext().GetAvatarServerAddr());
pokerth-1.1.2/.pc/boost-1.66.patch/src/net/common/clientthread.cpp-809-			if (!avatarServerAddress.empty() && m_avatarDownloader) {
##############################################
pokerth-1.1.2/.pc/boost-1.66.patch/src/net/common/clientthread.cpp-1324-	if (context.GetAddrFamily() == AF_INET6)
pokerth-1.1.2/.pc/boost-1.66.patch/src/net/common/clientthread.cpp:1325:		context.SetServerAddr(useInfo.ipv6addr);
pokerth-1.1.2/.pc/boost-1.66.patch/src/net/common/clientthread.cpp-1326-	else
pokerth-1.1.2/.pc/boost-1.66.patch/src/net/common/clientthread.cpp:1327:		context.SetServerAddr(useInfo.ipv4addr);
pokerth-1.1.2/.pc/boost-1.66.patch/src/net/common/clientthread.cpp-1328-
pokerth-1.1.2/.pc/boost-1.66.patch/src/net/common/clientthread.cpp-1329-	context.SetServerPort((unsigned)useInfo.port);
pokerth-1.1.2/.pc/boost-1.66.patch/src/net/common/clientthread.cpp:1330:	context.SetAvatarServerAddr(useInfo.avatarServerAddr);
pokerth-1.1.2/.pc/boost-1.66.patch/src/net/common/clientthread.cpp-1331-}
##############################################
pokerth-1.1.2/.pc/fix-includes.patch/connectivity.pro-43-	INCLUDEPATH += $${PREFIX}/include
pokerth-1.1.2/.pc/fix-includes.patch/connectivity.pro:44:	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64 $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/.pc/fix-includes.patch/connectivity.pro-45-	BOOST_PROGRAM_OPTIONS = boost_program_options boost_program_options-mt
##############################################
pokerth-1.1.2/.pc/fix-includes.patch/connectivity.pro-49-	#
pokerth-1.1.2/.pc/fix-includes.patch/connectivity.pro:50:	# searching in $PREFIX/lib, $PREFIX/lib64 and $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/.pc/fix-includes.patch/connectivity.pro-51-	# to override the default '/usr' pass PREFIX
##############################################
pokerth-1.1.2/.pc/fix-includes.patch/load.pro-44-	INCLUDEPATH += $${PREFIX}/include
pokerth-1.1.2/.pc/fix-includes.patch/load.pro:45:	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64 $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/.pc/fix-includes.patch/load.pro-46-	BOOST_THREAD = boost_thread boost_thread-mt
##############################################
pokerth-1.1.2/.pc/fix-includes.patch/load.pro-51-	#
pokerth-1.1.2/.pc/fix-includes.patch/load.pro:52:	# searching in $PREFIX/lib, $PREFIX/lib64 and $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/.pc/fix-includes.patch/load.pro-53-	# to override the default '/usr' pass PREFIX
##############################################
pokerth-1.1.2/.pc/fix-includes.patch/pokerth_game.pro-416-                        $${PREFIX}/lib/x86_64-linux-gnu \
pokerth-1.1.2/.pc/fix-includes.patch/pokerth_game.pro:417:			$$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/.pc/fix-includes.patch/pokerth_game.pro-418-	}
##############################################
pokerth-1.1.2/.pc/fix-includes.patch/pokerth_game.pro-437-
pokerth-1.1.2/.pc/fix-includes.patch/pokerth_game.pro:438:	# searching in $PREFIX/lib, $PREFIX/lib64 and $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/.pc/fix-includes.patch/pokerth_game.pro-439-	# to override the default '/usr' pass PREFIX
##############################################
pokerth-1.1.2/.pc/fix-includes.patch/pokerth_server.pro-182-	INCLUDEPATH += $${PREFIX}/include/libircclient
pokerth-1.1.2/.pc/fix-includes.patch/pokerth_server.pro:183:	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64 $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/.pc/fix-includes.patch/pokerth_server.pro-184-	BOOST_FS = boost_filesystem boost_filesystem-mt
##############################################
pokerth-1.1.2/.pc/fix-includes.patch/pokerth_server.pro-193-	#
pokerth-1.1.2/.pc/fix-includes.patch/pokerth_server.pro:194:	# searching in $PREFIX/lib, $PREFIX/lib64 and $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/.pc/fix-includes.patch/pokerth_server.pro-195-	# to override the default '/usr' pass PREFIX
##############################################
pokerth-1.1.2/zlib_compress.pro-50-
pokerth-1.1.2/zlib_compress.pro:51:	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64 $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/zlib_compress.pro-52-	BOOST_FS = boost_filesystem boost_filesystem-mt
##############################################
pokerth-1.1.2/connectivity.pro-42-	QMAKE_LIBDIR += lib $${PREFIX}/lib /opt/gsasl/lib
pokerth-1.1.2/connectivity.pro:43:	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64 $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/connectivity.pro-44-	BOOST_PROGRAM_OPTIONS = boost_program_options boost_program_options-mt
##############################################
pokerth-1.1.2/connectivity.pro-48-	#
pokerth-1.1.2/connectivity.pro:49:	# searching in $PREFIX/lib, $PREFIX/lib64 and $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/connectivity.pro-50-	# to override the default '/usr' pass PREFIX
##############################################
pokerth-1.1.2/load.pro-43-	QMAKE_LIBDIR += lib $${PREFIX}/lib /opt/gsasl/lib
pokerth-1.1.2/load.pro:44:	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64 $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/load.pro-45-	BOOST_THREAD = boost_thread boost_thread-mt
##############################################
pokerth-1.1.2/load.pro-50-	#
pokerth-1.1.2/load.pro:51:	# searching in $PREFIX/lib, $PREFIX/lib64 and $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/load.pro-52-	# to override the default '/usr' pass PREFIX
##############################################
pokerth-1.1.2/pokerth_game.pro-415-                        $${PREFIX}/lib/x86_64-linux-gnu \
pokerth-1.1.2/pokerth_game.pro:416:			$$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/pokerth_game.pro-417-	}
##############################################
pokerth-1.1.2/pokerth_game.pro-436-
pokerth-1.1.2/pokerth_game.pro:437:	# searching in $PREFIX/lib, $PREFIX/lib64 and $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/pokerth_game.pro-438-	# to override the default '/usr' pass PREFIX
##############################################
pokerth-1.1.2/pokerth_server.pro-181-	INCLUDEPATH += $${PREFIX}/include/libircclient
pokerth-1.1.2/pokerth_server.pro:182:	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64 $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/pokerth_server.pro-183-	BOOST_FS = boost_filesystem boost_filesystem-mt
##############################################
pokerth-1.1.2/pokerth_server.pro-192-	#
pokerth-1.1.2/pokerth_server.pro:193:	# searching in $PREFIX/lib, $PREFIX/lib64 and $$system($$QMAKE_QMAKE -query QT_INSTALL_LIBS)
pokerth-1.1.2/pokerth_server.pro-194-	# to override the default '/usr' pass PREFIX