summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--GNUmakefile7
-rw-r--r--src/client/cl_parse.c2
2 files changed, 0 insertions, 9 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 88ac6d0b..0b3b5886 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -17,9 +17,6 @@ ifeq ($(COMPILE_PLATFORM),darwin)
COMPILE_ARCH=$(shell uname -p | sed -e s/i.86/x86/)
endif
-ifndef BUILD_STANDALONE
- BUILD_STANDALONE =
-endif
ifndef BUILD_CLIENT
BUILD_CLIENT =
endif
@@ -1062,10 +1059,6 @@ ifdef DEFAULT_BASEDIR
BASE_CFLAGS += -DDEFAULT_BASEDIR=\\\"$(DEFAULT_BASEDIR)\\\"
endif
-ifeq ($(BUILD_STANDALONE),1)
- BASE_CFLAGS += -DSTANDALONE
-endif
-
ifeq ($(GENERATE_DEPENDENCIES),1)
DEPEND_CFLAGS = -MMD
else
diff --git a/src/client/cl_parse.c b/src/client/cl_parse.c
index 1b96c3ad..8c7c0ec6 100644
--- a/src/client/cl_parse.c
+++ b/src/client/cl_parse.c
@@ -409,10 +409,8 @@ void CL_SystemInfoChanged( void ) {
// If this cvar may not be modified by a server discard the value.
if(!(cvar_flags & (CVAR_SYSTEMINFO | CVAR_SERVER_CREATED | CVAR_USER_CREATED)))
{
-#ifndef STANDALONE
if(Q_stricmp(key, "g_synchronousClients") && Q_stricmp(key, "pmove_fixed") &&
Q_stricmp(key, "pmove_msec"))
-#endif
{
Com_Printf(S_COLOR_YELLOW "WARNING: server is not allowed to set %s=%s\n", key, value);
continue;