summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-10-17 11:22:47 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-10-17 11:22:47 (GMT)
commitd936bf460871729ab8f1b2972bb85a1c679fe9d9 (patch)
tree7bec2e9d8fb92fa682a3ced44ed0a61225a8488b
parentdc871a284f6621dcd91823f7347d005a87b2acf5 (diff)
downloadtcl-d936bf460871729ab8f1b2972bb85a1c679fe9d9.zip
tcl-d936bf460871729ab8f1b2972bb85a1c679fe9d9.tar.gz
tcl-d936bf460871729ab8f1b2972bb85a1c679fe9d9.tar.bz2
Prevent tclOOIntStubs from being exported from the shared library.
-rw-r--r--generic/tclOODecls.h1
-rw-r--r--generic/tclOOStubInit.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/generic/tclOODecls.h b/generic/tclOODecls.h
index 1ddb7c6..b93865e 100644
--- a/generic/tclOODecls.h
+++ b/generic/tclOODecls.h
@@ -11,6 +11,7 @@
#endif
#define tclOOPrivateStubs tclOOIntStubs
+#define TclOOPrivateStubs TclOOIntStubs
/* !BEGIN!: Do not edit below this line. */
diff --git a/generic/tclOOStubInit.c b/generic/tclOOStubInit.c
index 33da395..7be341a 100644
--- a/generic/tclOOStubInit.c
+++ b/generic/tclOOStubInit.c
@@ -9,6 +9,7 @@
#include "tclOOInt.h"
MODULE_SCOPE const TclOOStubs tclOOStubs;
+MODULE_SCOPE const TclOOIntStubs tclOOIntStubs;
#ifdef __GNUC__
#pragma GCC dependency "tclOO.decls"