summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordavygrvy <davygrvy@pobox.com>2001-09-09 22:25:21 (GMT)
committerdavygrvy <davygrvy@pobox.com>2001-09-09 22:25:21 (GMT)
commitf2312294921de948b34adad8c72b2c473fda6e96 (patch)
treea414a48685bfb4a3f894080784a111ed03f6b5e5
parent069b83cbc9bbb727bf6e094fd7bac1d0be3e0f47 (diff)
downloadtcl-f2312294921de948b34adad8c72b2c473fda6e96.zip
tcl-f2312294921de948b34adad8c72b2c473fda6e96.tar.gz
tcl-f2312294921de948b34adad8c72b2c473fda6e96.tar.bz2
* generic/tcl.h: reminder from David Cuthbert <dacut@kanga.org> that
I hadn't finished the Borland compatibility stuff. [Patch: 436116]
-rw-r--r--generic/tcl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tcl.h b/generic/tcl.h
index 49d177a..4b58223 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tcl.h,v 1.100 2001/09/05 04:32:11 davygrvy Exp $
+ * RCS: @(#) $Id: tcl.h,v 1.100.2.1 2001/09/09 22:25:21 davygrvy Exp $
*/
#ifndef _TCL
@@ -227,7 +227,7 @@ extern "C" {
# define DLLIMPORT
# define DLLEXPORT
#else
-# if defined(__WIN32__) && (defined(_MSC_VER) || (defined(__GNUC__) && defined(__declspec)))
+# if defined(__WIN32__) && (defined(_MSC_VER) || (__BORLANDC__ >= 0x0550) || (defined(__GNUC__) && defined(__declspec)))
# define DLLIMPORT __declspec(dllimport)
# define DLLEXPORT __declspec(dllexport)
# else