From: Jeff R. <dv...@di...> - 2012-10-10 17:37:49
|
Hi all, An advisory about building with tcl8.6: all exported symbols in shared libraries need to be declared as NS_EXPORT. I checked in the necessary changes to the header files, but all modules are affected too. So for modules, int Ns_ModuleVersion = 1; needs to change to NS_EXPORT int Ns_ModuleVersion = 1; and int Ns_ModuleInit(char *server, char *module) becomes NS_EXPORT int Ns_ModuleInit(char *server, char *module) Other than that, I haven't noticed any issues. -J |