Roxen.git
/
server
/
tools
/
ntroxen
/
startdll
/
cmdline.cpp
version
»
Context lines:
10
20
40
80
file
none
3
Roxen.git/server/tools/ntroxen/startdll/cmdline.cpp:1:
// cmdline.cpp: implementation of the CCmdLine class. //
-
// $Id: cmdline.cpp,v 1.
23
2010
/
11
/
03
12
:
59
:
05
stewa
Exp $
+
// $Id: cmdline.cpp,v 1.
24
2011
/
01
/
20
17
:
23
:
46
mast
Exp $
// ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "startdll.h" #include "cmdline.h" #include "roxen.h" #include "enumproc.h" #ifdef _DEBUG
Roxen.git/server/tools/ntroxen/startdll/cmdline.cpp:18:
static char *defPikeArgs[] = { // List terminator NULL }; static char *defPikeDefines[] = { "-DRAM_CACHE", "-DENABLE_THREADS",
-
"-DNEW_RAM_CACHE",
+
"-DHTTP_COMPRESSION", // List terminator NULL }; static char *defRoxenArgs[] = { // List terminator NULL
Roxen.git/server/tools/ntroxen/startdll/cmdline.cpp:982:
//'--without-ram-cache'|'--disable-ram-cache') // DEFINES="`echo $DEFINES | sed -e 's/-DRAM_CACHE//g'`" if (Match(*argv, "--without-ram-cache", NULL, NULL) || Match(*argv, "--disable-ram-cache", NULL, NULL) ) { m_saPikeDefines.Remove("-DRAM_CACHE"); type = eArgPike; return 1; }
-
//'--without-new-ram-cache'|'--disable-new-ram-cache')
-
// DEFINES="`echo $DEFINES | sed -e 's/-DNEW_RAM_CACHE//g'`"
-
if (Match(*argv, "--without-new-ram-cache", NULL, NULL) ||
-
Match(*argv, "--disable-new-ram-cache", NULL, NULL) )
-
{
-
m_saPikeDefines.Remove("-DNEW_RAM_CACHE");
-
type = eArgPike;
-
return 1;
-
}
-
+
//'--without-http-compression'|'--disable-http-compression') // DEFINES="`echo $DEFINES | sed -e 's/-DHTTP_COMPRESSION//g'`" //;; if (Match(*argv, "--without-http-compression", NULL, NULL) || Match(*argv, "--disable-http-compression", NULL, NULL) ) { m_saPikeDefines.Remove("-DHTTP_COMPRESSION"); type = eArgPike; return 1; }