fixed linux build

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40509
This commit is contained in:
David Anderson 2007-02-16 04:43:48 +00:00
parent 165b8ed893
commit eb2afc8c56
2 changed files with 8 additions and 11 deletions

View File

@ -245,22 +245,16 @@ void CConCmdManager::AddToCmdList(ConCmdInfo *info)
List<ConCmdInfo *>::iterator iter = m_CmdList.begin();
ConCmdInfo *pInfo;
bool inserted = false;
const char *orig;
const char *orig = NULL;
if (info->pCmd)
{
orig = info->pCmd->GetName();
}
orig = info->pCmd->GetName();
/* Insert this into the help list, SORTED alphabetically. */
while (iter != m_CmdList.end())
{
const char *cmd = NULL;
pInfo = (*iter);
if (pInfo->pCmd)
{
cmd = pInfo->pCmd->GetName();
}
cmd = pInfo->pCmd->GetName();
if (strcmp(orig, cmd) < 0)
{
m_CmdList.insert(iter, info);
@ -278,7 +272,9 @@ void CConCmdManager::AddToCmdList(ConCmdInfo *info)
void CConCmdManager::RemoveConCmd(ConCmdInfo *info)
{
/* Remove console-specific information */
/* Remove console-specific information
* This should always be true as of right now
*/
if (info->pCmd)
{
/* Remove from the trie */

View File

@ -21,9 +21,10 @@ HL2LIB = $(HL2SDK)/linux_sdk
OBJECTS = sourcemm_api.cpp sourcemod.cpp AdminCache.cpp CConVarManager.cpp CDataPack.cpp \
CDbgReporter.cpp CLogger.cpp CPlayerManager.cpp CTextParsers.cpp CTranslator.cpp \
CConCmdManager.cpp \
sm_autonatives.cpp sm_memtable.cpp sm_srvcmds.cpp sm_trie.cpp \
sm_stringutil.cpp smn_filesystem.cpp smn_float.cpp smn_handles.cpp \
smn_player.cpp smn_string.cpp smn_textparse.cpp smn_convar.cpp smn_admin.cpp \
smn_player.cpp smn_string.cpp smn_textparse.cpp smn_console.cpp smn_admin.cpp \
smn_datapacks.cpp smn_lang.cpp \
systems/ExtensionSys.cpp systems/ForwardSys.cpp systems/HandleSys.cpp \
systems/LibrarySys.cpp systems/PluginInfoDatabase.cpp \