aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2013-01-02 18:05:26 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2013-01-02 18:05:26 +0000
commit54afc5a44d323e5ea9d654665467c38df7885fa2 (patch)
tree191600776bd8fce88b39f3b4b5a80898f1e56032
parentdb29fbd4721211235a2567ea9d2711ef156f2bc5 (diff)
make the error message always fire, we'll only include this on 64-bit systems
svn path=/trunk/scripts/guiplugins/64bit-warning-plugin/; revision=16813
-rw-r--r--64bit-warning-plugin.tcl18
1 files changed, 9 insertions, 9 deletions
diff --git a/64bit-warning-plugin.tcl b/64bit-warning-plugin.tcl
index cafb44f..cc7646e 100644
--- a/64bit-warning-plugin.tcl
+++ b/64bit-warning-plugin.tcl
@@ -1,11 +1,11 @@
-# This plugin is only to print a warning about the beta status of 64-bit
-# builds on various platforms
+# This plugin is only to print a warning about the beta status of
+# 64-bit builds on various platforms. It is included on 64-bit builds
+# by packages/Makefile
-if {$tcl_platform(machine) eq "x86_64"} {
- set msg "WARNING: 64-bit builds are still beta, some libraries are known to have serious issues, like "
- if {$tcl_platform(os) eq "Darwin"} {
- append msg "Gem, tclpd, "
- }
- append msg "pdp, maxlib, moonlib, moocow, bsaylor, etc."
- ::pdwindow::error "$msg\n"
+set msg "WARNING: 64-bit builds are still beta, some libraries are known to have serious issues ("
+if {$tcl_platform(os) eq "Darwin"} {
+ append msg "Gem, tclpd, "
}
+append msg "cyclone, maxlib, moonlib, moocow, pdp, bsaylor, etc.)"
+::pdwindow::error "$msg\n"
+