diff options
author | nijtmans <nijtmans@noemail.net> | 2010-12-14 21:51:53 (GMT) |
---|---|---|
committer | nijtmans <nijtmans@noemail.net> | 2010-12-14 21:51:53 (GMT) |
commit | d054c356d2a214d2442e7e4c0369309a13dccc57 (patch) | |
tree | f663bf242a54c9788649f2f63f3514e43c2c8488 | |
parent | 48824e031a934ce0cf40a4b65aaabac4cfdbf6b5 (diff) | |
download | tcl-d054c356d2a214d2442e7e4c0369309a13dccc57.zip tcl-d054c356d2a214d2442e7e4c0369309a13dccc57.tar.gz tcl-d054c356d2a214d2442e7e4c0369309a13dccc57.tar.bz2 |
[Bug 3137454]: Tcl CVS HEAD does not build on GCC 3
FossilOrigin-Name: 1ae430c7dbcb6f681d267dfb37e54121ef31a6cf
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | generic/tcl.h | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2010-12-14 Jan Nijtmans <nijtmans@users.sf.net> + + * generic/tcl.h: [Bug 3137454]: Tcl CVS HEAD does not build on GCC 3 + 2010-12-14 Reinhard Max <max@suse.de> * win/tclWinSock.c (CreateSocket): Swap the loops over diff --git a/generic/tcl.h b/generic/tcl.h index 732b8e8..54a6579 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -13,7 +13,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.310 2010/12/13 22:33:11 nijtmans Exp $ + * RCS: @(#) $Id: tcl.h,v 1.311 2010/12/14 21:51:53 nijtmans Exp $ */ #ifndef _TCL @@ -190,7 +190,7 @@ extern "C" { # endif #else # define DLLIMPORT -# if defined(__GNUC__) && !defined(NO_VIZ) +# if defined(__GNUC__) && !defined(NO_VIZ) && !defined(STATIC_BUILD) # define DLLEXPORT __attribute__ ((visibility("default"))) # else # define DLLEXPORT |