Tcl package Thread source code

Ticket Change Details
Login
Overview

Artifact ID: c19db4601ecba0a71574aa699f7df711a31384ebbf9b2a5ac2b5c3ce666a2ace
Ticket: 10401858b07066ec27e04ee78a2409e49d60f1ed
Thread package configure fails with Tcl 9
User & Date: petasis 2018-02-13 11:14:57
Changes

  1. assignee changed to: "nobody"
  2. closer changed to: "nobody"
  3. cmimetype changed to: "text/plain"
  4. comment changed to:
    Index: configure.ac
    ==================================================================
    --- configure.ac
    +++ configure.ac
    @@ -34,15 +34,15 @@
     #--------------------------------------------------------------------
     
     TEA_PATH_TCLCONFIG
     TEA_LOAD_TCLCONFIG
     
    -if test "${TCL_MAJOR_VERSION}" -ne 8 ; then
    +if test "${TCL_MAJOR_VERSION}" -lt 8 ; then
         AC_MSG_ERROR([${PACKAGE_NAME} ${PACKAGE_VERSION} requires Tcl 8.4+
     Found config for Tcl ${TCL_VERSION}])
     fi
    -if test "${TCL_MINOR_VERSION}" -lt 4 ; then
    +if test "${TCL_MAJOR_VERSION}" -eq 8 && test "${TCL_MINOR_VERSION}" -lt 4 ; then
         AC_MSG_ERROR([${PACKAGE_NAME} ${PACKAGE_VERSION} requires Tcl 8.4+
     Found config for Tcl ${TCL_VERSION}])
     fi
     
     #--------------------------------------------------------------------
    
  5. is_private changed to: "0"
  6. login: "petasis"
  7. priority changed to: "5 Medium"
  8. private_contact changed to: "3cb4dabca0e1e7b9d560b2ca060abb67f2a97f23"
  9. resolution changed to: "None"
  10. severity changed to: "Important"
  11. status changed to: "Open"
  12. submitter changed to: "petasis"
  13. subsystem changed to: "80. Thread Package"
  14. title changed to: "Thread package configure fails with Tcl 9"
  15. type changed to: "Patch"