Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-07-02 07:16:00 +0400
committerChristopher Faylor <me@cgf.cx>2003-07-02 07:16:00 +0400
commit3872e9a41944f7f77cf8eea6970c6f3fd5d8fb43 (patch)
tree2690f81b955f39402d09bf3c06b7f893e15547fc /winsup/cygwin/acconfig.h
parent4d8d80b8a7a9ea21f5a90d912741267b11c50d22 (diff)
* Makefile.in: Remove cygserver stuff.
* acconfig.h: Add USE_CYGSERVER define. * config.h.in: Regenerate. * configure.in: Add --enable-server setting. * configure: Regenerate. * fhandler_tty.cc (fhandler_tty_slave::open): Conditionalize compilation of cygserver stuff. * fork.cc (fork_child): Ditto. * shm.cc: Ditto. * tty.cc (tty::common_init): Ditto. * dcrt0.cc: Use bool rather than BOOL for CYGWIN environment variable definitions. * environ.cc: Ditto. * ntea.cc: Ditto. * security.cc: Ditto. * security.h: Ditto. * syscalls.cc (check_posix_perm): Remove externs that were already declared in a header. * winsup.h: Ditto. Declare _MT_SAFE here. Delete it someday since cygwin should always be _MT_SAFE.
Diffstat (limited to 'winsup/cygwin/acconfig.h')
-rw-r--r--winsup/cygwin/acconfig.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/winsup/cygwin/acconfig.h b/winsup/cygwin/acconfig.h
index c187c0be3..79e2651d3 100644
--- a/winsup/cygwin/acconfig.h
+++ b/winsup/cygwin/acconfig.h
@@ -7,8 +7,14 @@
/* Define if GCC supports builtin memset. */
#undef HAVE_BUILTIN_MEMSET
+/* Define if MALLOC_DEBUGGING support is requested. */
+#undef MALLOC_DEBUG
+
/* Define if building thread-safe Cygwin DLL. */
#undef _MT_SAFE
/* Define if using new vfork functionality. */
#undef NEWVFORK
+
+/* Define if using cygserver */
+#undef USE_CYGSERVER