diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-08-29 20:25:53 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-08-29 20:25:53 (GMT) |
commit | 8d57ba065e242221190542491377421544c3434f (patch) | |
tree | 62c861d1863965d739a321113db7b0307c6159cd /tools | |
parent | 897af8a8a02ac365edb53bc087b293adaaf8853a (diff) | |
parent | d2f4a7137d403a7acf2b9cffe545c8350245ae54 (diff) | |
download | tcl-8d57ba065e242221190542491377421544c3434f.zip tcl-8d57ba065e242221190542491377421544c3434f.tar.gz tcl-8d57ba065e242221190542491377421544c3434f.tar.bz2 |
libtommath 1.0.1 rc2, for test purposes only
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/fix_tommath_h.tcl | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/fix_tommath_h.tcl b/tools/fix_tommath_h.tcl index 04bf857..61fa4fd 100755 --- a/tools/fix_tommath_h.tcl +++ b/tools/fix_tommath_h.tcl @@ -22,7 +22,6 @@ foreach line [split $data \n] { {#define BN_H_} { puts $line puts {} - puts "\#include \"tclInt.h\"" puts "\#include \"tclTomMathDecls.h\"" puts "\#ifndef MODULE_SCOPE" puts "\#define MODULE_SCOPE extern" @@ -73,10 +72,6 @@ foreach line [split $data \n] { puts "\#if 0 /* these are macros in tclTomMathDecls.h */" set eat_endif 1 } - {__x86_64__} { - puts "[string map {__x86_64__ NEVER} $line]\ - /* 128-bit ints fail in too many places */" - } {#include} { # remove all includes } |