summaryrefslogtreecommitdiffstats
path: root/win/README
diff options
context:
space:
mode:
authorwelch <welch@noemail.net>1998-08-04 15:43:16 (GMT)
committerwelch <welch@noemail.net>1998-08-04 15:43:16 (GMT)
commit47bdd82fe48da3e1933f508cb0304c74da648b93 (patch)
treedb1a624a24564d519436539d82d07821e3181e7d /win/README
parent9ec4d54f5965e545bf0a02a53746a92996a683a8 (diff)
downloadtcl-47bdd82fe48da3e1933f508cb0304c74da648b93.zip
tcl-47bdd82fe48da3e1933f508cb0304c74da648b93.tar.gz
tcl-47bdd82fe48da3e1933f508cb0304c74da648b93.tar.bz2
*** empty log message ***
FossilOrigin-Name: 56a456b066837ad89430bab179e3c07260b436dd
Diffstat (limited to 'win/README')
-rw-r--r--win/README3
1 files changed, 2 insertions, 1 deletions
diff --git a/win/README b/win/README
index 3dbeefd..162a9f0 100644
--- a/win/README
+++ b/win/README
@@ -91,6 +91,7 @@ EXPORT - this is really an import/export flag, depending on if you are
described below.
STATIC_BUILD - define this if you are *not* building a DLL
(e.g., a main program)
+DLL_BUILD - define this if you *are* building a DLL
DLLIMPORT - If STATIC_BUILD is defined, this becomes nothing.
(On UNIX, DLLIMPORT is defined to be empty)
Otherwise, this this expands to __declspec(dllimport)
@@ -114,7 +115,7 @@ presense of BUILD_Foo, like this:
* if the BUILD_foo macro is defined, the assumption is that we are
* building the dynamic library.
*/
-#ifdef BUILD_foo
+#ifdef BUILD_Foo
# undef EXPORT
# define EXPORT DLLEXPORT
#endif