Your message dated Tue, 27 Nov 2018 06:54:49 +0000 with message-id <[email protected]> and subject line Bug#896087: Removed package(s) from unstable has caused the Debian Bug report #767860, regarding tcl8.5 strtod + fixstrtod confusion leads to symbol clash to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [email protected] immediately.) -- 767860: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=767860 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: tcl8.4 Version: 8.4.15-1 Tags: patch I was trying to build tcl from source and for reasons I haven't identified yet, it decided that it needed both compat/strtod.c and compat/fixstrtod.c. However, if this happens config.h #defines strtod to fixstrtod. The result is that strtod.c generates a strtod.o which defines fixstrtod, and this leads to a multiply defined symbol. To fix this I made the following change (but I still need to investigate why configure isn't working properly). Regards, Ian. --- tcl8.4-8.4.15/compat/strtod.c~ 2002-02-25 14:26:12.000000000 +0000 +++ tcl8.4-8.4.15/compat/strtod.c 2007-09-03 17:23:28.000000000 +0100 @@ -62,6 +62,8 @@ *---------------------------------------------------------------------- */ +#undef strtod + double strtod(string, endPtr) CONST char *string; /* A decimal ASCII floating-point number,
--- End Message ---
--- Begin Message ---Version: 8.5.19-4+rm Dear submitter, as the package tcl8.5 has just been removed from the Debian archive unstable we hereby close the associated bug reports. We are sorry that we couldn't deal with your issue properly. For details on the removal, please see https://bugs.debian.org/896087 The version of this package that was in Debian prior to this removal can still be found using http://snapshot.debian.org/. This message was generated automatically; if you believe that there is a problem with it please contact the archive administrators by mailing [email protected]. Debian distribution maintenance software pp. Scott Kitterman (the ftpmaster behind the curtain)
--- End Message ---
_______________________________________________ Pkg-tcltk-devel mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-tcltk-devel
