diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-10-17 11:22:47 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-10-17 11:22:47 (GMT) |
commit | d936bf460871729ab8f1b2972bb85a1c679fe9d9 (patch) | |
tree | 7bec2e9d8fb92fa682a3ced44ed0a61225a8488b | |
parent | dc871a284f6621dcd91823f7347d005a87b2acf5 (diff) | |
download | tcl-d936bf460871729ab8f1b2972bb85a1c679fe9d9.zip tcl-d936bf460871729ab8f1b2972bb85a1c679fe9d9.tar.gz tcl-d936bf460871729ab8f1b2972bb85a1c679fe9d9.tar.bz2 |
Prevent tclOOIntStubs from being exported from the shared library.
-rw-r--r-- | generic/tclOODecls.h | 1 | ||||
-rw-r--r-- | generic/tclOOStubInit.c | 1 |
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" |