Quick changes...

This commit is contained in:
David Anderson 2004-03-05 20:18:28 +00:00
parent 7710ead988
commit f95f15a995
3 changed files with 8 additions and 3 deletions

View File

@ -15,7 +15,7 @@ EXTRA_INCLUDEDIRS = -Iextra/include
EXTRA_FLAGS = -Dstrcmpi=strcasecmp
SDKTOP=../hlsdk
METADIR=../metamod/metamod
METADIR=../metamod
SDKSRC=$(SDKTOP)/SourceCode
@ -29,7 +29,7 @@ else
OS=LINUX
endif
CC_LINUX=gcc
CC_LINUX=gcc-2.95
ifeq "$(OS)" "WIN32"
CC_WIN32=gcc
LD_WINDLL=dllwrap

View File

@ -12,6 +12,7 @@
*
* PM: Whole file changed
*/
#define LINUX
#if defined LINUX
#include <sclinux.h>
#endif

View File

@ -283,7 +283,11 @@ void UTIL_MakeNewLogFile()
tm *curTime = localtime(&td);
// create dir if not existing
#ifdef __linux
mkdir(build_pathname("%s", g_log_dir.str()), 0700);
#else
mkdir(build_pathname("%s", g_log_dir.str()));
#endif
int i = 0;
while (true)
@ -325,4 +329,4 @@ void UTIL_Log(const char *fmt, ...)
fprintf(pF, "L %s: %s\n", date, msg);
fclose(pF);
print_srvconsole("L %s: %s\n", date, msg);
}
}