summaryrefslogtreecommitdiff
path: root/PACE/pace
diff options
context:
space:
mode:
authorluther <luther@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-08-22 01:41:20 +0000
committerluther <luther@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-08-22 01:41:20 +0000
commite98d6a4fa00a4dfdbcf329dcc45d2d801375d2f1 (patch)
treeb248ff8f561ac195bc25a1045a7d5f81caea49e5 /PACE/pace
parentc6dc304d604dfe2e61c746eb10b5c7375637e483 (diff)
downloadATCD-e98d6a4fa00a4dfdbcf329dcc45d2d801375d2f1.tar.gz
Mon Aug 21 20:34:51 2000 Luther J Baker <luther@cs.wustl.edu>
Diffstat (limited to 'PACE/pace')
-rw-r--r--PACE/pace/config/features.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/PACE/pace/config/features.h b/PACE/pace/config/features.h
index 6436618f3a0..d9b3d56040a 100644
--- a/PACE/pace/config/features.h
+++ b/PACE/pace/config/features.h
@@ -18,6 +18,29 @@
/* Features: Can be customized by the developer. */
+#if defined (WIN32)
+
+/* If using win32 .. define PACE_HAS_MFC to 1, if you want ACE to use
+ * CWinThread. This should be defined, if your application uses MFC.
+ * Setting applies to : building PACE
+ * Runtime restrictions: MFC DLLs must be installed
+ * Additonal notes : If both PACE_HAS_MFC and PACE_MT_SAFE are
+ * defined, the MFC DLL (not the static lib)
+ * will be used from ACE. */
+# if !defined (PACE_HAS_MFC)
+# define PACE_HAS_MFC 0
+# endif /* PACE_HAS_MFC */
+
+/* Turn off the following define if you want to disable threading.
+ * Compile using multi-thread libraries.
+ * Setting applies to : building PACE, linking with PACE
+ * Runtime restrictions: multithreaded runtime DLL must be installed. */
+# if !defined (PACE_MT_SAFE)
+# define PACE_MT_SAFE 1
+# endif /* PACE_MT_SAFE */
+
+#endif /* WIN32 */
+
#endif /* PACE_CONFIG_FEATURES_H */