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 | 92a05930af027ff4da788119d0fce0f6169c7a7f (patch) | |
tree | 62c861d1863965d739a321113db7b0307c6159cd /tools/fix_tommath_h.tcl | |
parent | 4264a4f6ab00651ac7bd802a8317a1eb8f52d06e (diff) | |
parent | 1ef0babc38bf484a63c5bdcb56bed55f2df1bbab (diff) | |
download | tcl-92a05930af027ff4da788119d0fce0f6169c7a7f.zip tcl-92a05930af027ff4da788119d0fce0f6169c7a7f.tar.gz tcl-92a05930af027ff4da788119d0fce0f6169c7a7f.tar.bz2 |
libtommath 1.0.1 rc2, for test purposes only
Diffstat (limited to 'tools/fix_tommath_h.tcl')
-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 } |