* Makefile.in: Build libcygserver.a.

* client.cc: Rename allow_daemon to allow_server.
This commit is contained in:
Christopher Faylor
2003-08-25 18:22:07 +00:00
parent 4392d36cbb
commit 29c1c50828
3 changed files with 16 additions and 6 deletions

View File

@ -30,10 +30,7 @@ details. */
int cygserver_running = CYGSERVER_UNKNOWN; // Nb: inherited by children.
/* On by default during development. For release, we probably want off
* by default.
*/
bool allow_daemon = true; // Nb: inherited by children.
bool allow_server = false; // Nb: inherited by children.
client_request_get_version::client_request_get_version ()
: client_request (CYGSERVER_REQUEST_GET_VERSION, &version, sizeof (version))
@ -509,7 +506,7 @@ check_cygserver_available ()
void
cygserver_init ()
{
if (!allow_daemon)
if (!allow_server)
{
syscall_printf ("cygserver use disabled in client");
cygserver_running = CYGSERVER_UNAVAIL;