Overview
Comment: | Clarified licensing terms
Updated "clean"/"distclean" options to clean optional packages |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e251d16623225fe35e9dc90c25760459 |
User & Date: | rkeene on 2010-09-26 04:41:32 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:41 | Added support for specifying a list of optional packages check-in: a8386e13ed user: rkeene tags: trunk | |
04:41 |
Clarified licensing terms
Updated "clean"/"distclean" options to clean optional packages check-in: e251d16623 user: rkeene tags: trunk | |
04:41 | Added support for the Thread package if asked to compile a threaded Tcl check-in: 021ebbd5e8 user: rkeene tags: trunk | |
Changes
Modified LICENSE from [4aca451bff] to [c9c0b2277a].
︙ | ︙ | |||
8 9 10 11 12 13 14 | kitsh/buildsrc/kitsh-0.0/winMain.c kitsh/buildsrc/kitsh-0.0/mk4tcl.tcl kitsh/buildsrc/kitsh-0.0/mk4tcl.tcl.h Please see "kitsh/buildsrc/kitsh-0.0/license.terms" for licensing information regarding these files. | > > > > > > > > > > > > > | > | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | kitsh/buildsrc/kitsh-0.0/winMain.c kitsh/buildsrc/kitsh-0.0/mk4tcl.tcl kitsh/buildsrc/kitsh-0.0/mk4tcl.tcl.h Please see "kitsh/buildsrc/kitsh-0.0/license.terms" for licensing information regarding these files. Files that are downloaded are under different licenses (grouped by project): * Tcl: Tcl/Tk License <http://www.tcl.tk/software/tcltk/license.html> * Tk: Tcl/Tk License <http://www.tcl.tk/software/tcltk/license.html> * Itcl: Tcl/Tk License <http://incrtcl.sourceforge.net/itcl/copyright.html> * Mk4tcl: MIT License <http://www.equi4.com/metakit/license.html> * TclVFS: BSD License * Thread: Tcl/Tk License <http://www.tcl.tk/software/tcltk/license.html> * ZLib: Zlib License <http://www.gzip.org/zlib/zlib_license.html> The final result of this build process is a derivative work of all of these projects and is restricted by the cumulative licensing requirements of all of them. All other files in this distribution are licensed under the terms of the MIT License, below: The MIT License Copyright (c) 2010 Roy S. Keene Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights |
︙ | ︙ |
Modified kitcreator from [b2dce588fe] to [2e7fd89fb9].
︙ | ︙ | |||
15 16 17 18 19 20 21 22 23 24 25 26 27 28 | mode="clean" fi if [ "$1" = "distclean" ]; then shift mode="distclean" fi CONFIGUREEXTRA="$@" export CONFIGUREEXTRA # Add packages implied by the additional arguments if echo " ${CONFIGUREEXTRA} " | grep ' --enable-threads' >/dev/null 2>/dev/null; then ADDPKGS="${ADDPKGS} thread" | > > > > > | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | mode="clean" fi if [ "$1" = "distclean" ]; then shift mode="distclean" fi if [ "${mode}" = "clean" -o "${mode}" = "distclean" ]; then # List all additional packages here so that they get cleaned up ADDPKGS="${ADDPKGS} thread" fi CONFIGUREEXTRA="$@" export CONFIGUREEXTRA # Add packages implied by the additional arguments if echo " ${CONFIGUREEXTRA} " | grep ' --enable-threads' >/dev/null 2>/dev/null; then ADDPKGS="${ADDPKGS} thread" |
︙ | ︙ |