summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-01-16 00:49:57 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-01-16 00:49:57 +0000
commit9d300eb880bbc339f63884abda545cdf13db9e54 (patch)
treed9fbb41aacf97e9b193d05c3eaa873ae5d4f8cce /ace
parent7f32c43726bf4f056667ee74eec76cf0dbdb502c (diff)
downloadATCD-9d300eb880bbc339f63884abda545cdf13db9e54.tar.gz
ChangeLogTag:Sat Jan 15 15:49:28 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ace')
-rw-r--r--ace/Makefile2
-rw-r--r--ace/config-win32-common.h3
2 files changed, 5 insertions, 0 deletions
diff --git a/ace/Makefile b/ace/Makefile
index eff4f5e2edc..55489297cf1 100644
--- a/ace/Makefile
+++ b/ace/Makefile
@@ -470,6 +470,8 @@ Svc_Conf_l.cpp: Svc_Conf.l
-e "s/YY/ACE_YY/g" \
-e "s/free( ptr );/free( ACE_MALLOC_T (ptr) );/g" \
-e "s/exit( 1 );/ACE_OS::exit( 1 );/g" \
+ -e "s/isatty(/ACE_OS::isatty(/g" \
+ -e "s/int isatty/int nop_isatty/g" \
-e "s/realloc( ptr, size );/realloc( ACE_MALLOC_T (ptr), size );/g" \
-e "s@#include <stdio\.h>@#include \"ace/OS.h\"@" \
-e "s@#include <@#include /**/ <@" \
diff --git a/ace/config-win32-common.h b/ace/config-win32-common.h
index 4c715eaa310..29c939d314f 100644
--- a/ace/config-win32-common.h
+++ b/ace/config-win32-common.h
@@ -294,6 +294,9 @@ typedef unsigned __int64 ACE_UINT64;
// Compiler/platform has thread-specific storage
# define ACE_HAS_THREAD_SPECIFIC_STORAGE
+// Win32 doesn't have fcntl
+#define ACE_LACKS_FCNTL
+
// must have _MT defined to include multithreading
// features from win32 headers
# if !defined(_MT)