Check-in [d461db3e3d]
Not logged in
Bounty program for improvements to Tcl and certain Tcl packages.
Tcl 2018 Conference, Houston/TX, US, Oct 15-19
Send your abstracts to tclconference@googlegroups.com or submit via the online form
by Aug 20.

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix handling of the 64bit flag
Timelines: family | ancestors | descendants | both | autosetup
Files: files | file ages | folders
SHA1: d461db3e3dcd50b333a45f8ab94f5534a9978754
User & Date: hypnotoad 2015-03-13 11:59:55
Context
2015-03-13
12:02
Completing the migration to jimtcl compadible code for codebale/cthluhu/fileutil Alter the search path rules for find-tclsh to prefer a native 8.6 to jimtcl check-in: e61e828788 user: hypnotoad tags: autosetup
11:59
Fix handling of the 64bit flag check-in: d461db3e3d user: hypnotoad tags: autosetup
11:58
Destroy jimtcl on reconfigure Add a "make packages" target check-in: 10cccee77e user: hypnotoad tags: autosetup
Changes
Unified Diff Ignore Whitespace Patch
Changes to auto.def.
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
    set ::odie(64bit) 1

  }
  {} -
  detect {
  }
  default {
    set ::odie(64bit) [string is true [opt-bool 64bit]]
  }
}
set ::odie_config(64bit) $::odie(64bit)
set ::odie(host) [get-define host]
set ::odie(target) [get-define target]

#--------------------------------------------------------------------







|







27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
    set ::odie(64bit) 1

  }
  {} -
  detect {
  }
  default {
    set ::odie(64bit) [opt-bool 64bit]
  }
}
set ::odie_config(64bit) $::odie(64bit)
set ::odie(host) [get-define host]
set ::odie(target) [get-define target]

#--------------------------------------------------------------------