summaryrefslogtreecommitdiffstats
path: root/macosx
Commit message (Collapse)AuthorAgeFilesLines
* Use some more TCL_INDEX_NONE and Tcl_Sizejan.nijtmans2022-11-241-1/+1
|
* TIP #640: Remove Tcl_SaveResult (in Tcl 8.7 it's only removed when compiled ↵jan.nijtmans2022-10-061-2/+2
| | | | with -DTCL_NO_DEPRECATED)
* Make a start converting -1 -> TCL_INDEX_NONE where appropriatejan.nijtmans2022-07-191-6/+6
|
* Eliminate the need for --enable-64bit on MacOS: We only do 64-bit now. ↵jan.nijtmans2022-04-204-3241/+2
| | | | Remove macosx/Tcl.xcode in favor of macosx/Tcl.xcodeproj
* Fix [https://core.tcl-lang.org/tk/tktview?name=bf0f4808d7|bf0f4808d7]: macOS ↵jan.nijtmans2022-04-204-27/+22
| | | | Aqua : CFLAGS_OPTIMIZE
* Change "IntRep" to "InternalRep", as discussed in the Tcl Core mailing listjan.nijtmans2021-10-061-2/+2
|
* Apply macos-tip511.diff. Resolve conflict with TIP #601jan.nijtmans2021-08-191-10/+15
|
* Fix use of TCL_THREADS macro: In Tcl 8.7, this is always defined, but can ↵jan.nijtmans2021-08-181-2/+2
| | | | have value '1' or '0'
* tip#511 proposed implementationjan.nijtmans2021-08-171-3/+146
|
* A few missing renamingsjan.nijtmans2021-04-072-4/+4
|
* Refactoring, ahoydkf2021-03-301-128/+116
|
* Add --disable-zipfs flag to GNUmakefilejan.nijtmans2021-02-091-1/+1
|
* Fix [113be1991e]: zipfs on mac. jan.nijtmans2021-01-291-1/+1
| | | From now on, --enable-framework automatically means --disable-zipfs, since those 2 options can never work together.
* Change exported symbol from TclMacOSXNotifierAddRunLoopMode -> ↵jan.nijtmans2021-01-221-1/+1
| | | | Tcl_MacOSXNotifierAddRunLoopMode
* Rebase to core-8-branchjan.nijtmans2021-01-221-3/+3
|\
| * rebasejan.nijtmans2013-07-091-3/+3
| |\
| | * Tk bug [http://core.tcl.tk/tk/tktview?name=1712098|1712098]jan.nijtmans2013-06-281-4/+4
| |/
* | Omit -Wdeclaration-after-statement from CFLAGS: No longer needed since we ↵jan.nijtmans2021-01-082-2/+2
| | | | | | | | | | stopped support for MSVC 6++ Change Tcl_WideInt -> long long in various places: Tcl_WideInt could be a 128-bit type, we don't want that everywhere.
* | Add -finput-charset=UTF-8 and -fextended-identifiers to gcc (and clang). All ↵jan.nijtmans2020-12-083-6/+6
| | | | | | | | C sources can now use UTF-8, as far as gcc/clang/msvc support it. Not used yet
* | Generate html documentation in html5 format. Fix some html5 compatibiliy ↵jan.nijtmans2020-11-202-36/+0
| | | | | | | | | | warnings. Remove old htmlhelp-related parts (since this is obsolete since Vista)
* | backout e56a9f214aculler2020-11-101-1/+1
| |
* | Merge 8.6culler2020-11-101-1/+1
|\ \
| * | Set a default DESTDIR in macosx/GNUmakefileculler2020-11-101-1/+1
| | |
* | | Merge 8.6jan.nijtmans2020-10-222-7/+15
|\ \ \ | |/ /
| * | When building a subframework for macOS use a build directory in the staging ↵culler2020-10-212-7/+15
| | | | | | | | | | | | directory.
* | | Update TZ info to tzdata2020c.José Ignacio Marín2020-10-202-0/+14
|\ \ \ | |/ /
| * | Add a make variable to GNUmakefile for building the Tcl.framework for use as ↵culler2020-10-192-0/+14
| | | | | | | | | | | | a subframework
* | | Merge 8.6. jan.nijtmans2020-10-191-1/+1
|\ \ \ | |/ / | | | Restore "install-strip" target to what it was in Tcl 8.6. Just don't use it any more on MacOS, since that's the only platform it doesn't work well.
* | | Merge 8.6jan.nijtmans2020-10-131-2/+2
|\ \ \ | |/ /
* | | Add -Wshadow flag to the compiler, so we will be notified when (accidently) ↵jan.nijtmans2020-09-291-1/+1
| | | | | | | | | | | | shadowing variable names
* | | Merge 8.6jan.nijtmans2020-09-042-2/+2
|\ \ \ | |/ /
| * | Let all test-cases load the "tcltest" package the same way. Depend on ↵jan.nijtmans2020-09-042-2/+2
| | | | | | | | | | | | tcltest 2.5, since we never test with earlier tcltest versions
| * | Code cleanup: less of use "register" keyword, and better use of typecastsjan.nijtmans2020-08-111-1/+1
| | |
| * | Eliminate many unnecessary type-casts, mostly (size_t) when value is already ↵jan.nijtmans2020-08-111-1/+1
| | | | | | | | | | | | size_t or int
* | | Merge 8.6culler2020-07-181-40/+87
|\ \ \ | |/ /
| * | Merge 8.6jan.nijtmans2020-07-162-4/+4
| |\ \
| * \ \ Merge 8.6jan.nijtmans2020-07-113-13/+20
| |\ \ \
| * | | | Use the os_unfair_lock in place of OSSpinLock when the minimum build target ↵culler2020-06-221-10/+60
| | | | | | | | | | | | | | | | | | | | is newer than OSX 10.12
| * | | | Sometimes the waitTime needs to be positive to avoid missing channel io events.culler2020-06-181-5/+13
| | | | |
| * | | | Code simplification and cleanupculler2020-06-071-25/+16
| | | | |
| * | | | Address macOS hangs in Tcl_WaitForEvent.culler2020-06-061-14/+15
| | | | |
* | | | | Merge 8.6jan.nijtmans2020-07-152-4/+4
|\ \ \ \ \ | | |_|/ / | |/| | |
| * | | | Rename doc/CrtSlave.3 to doc/CrtAlias.3. Some more doc tweaks.jan.nijtmans2020-07-152-4/+4
| | |/ / | |/| |
| * | | MacOSX: add some type-casts, improving C++ compatibility. Make sure that ↵jan.nijtmans2020-06-283-14/+24
| |/ / | | | | | | | | | strstr and strtoul() are not configured as invalid: Mac is more strict in exact function signatures. Backported from 8.7
* | | Merge 8.6. If compiled with -DTCL_NO_DEPRECATED, remove ↵jan.nijtmans2020-03-241-0/+3
|\ \ \ | |/ / | | | | | | Tcl_MacOSXOpenBundleResources() completely
| * | MacOS: Make Tcl_MacOSXOpenBundleResources() a macro calling ↵jan.nijtmans2020-03-241-0/+1
| | | | | | | | | | | | Tcl_MacOSXOpenVersionedBundleResources: One more stub entry which can be removed in Tcl 9.0
* | | need internal header now.dgp2020-03-091-0/+1
| | |
* | | Bring TCL_UNUSED to macosx sources.dgp2020-03-092-11/+6
| | |
* | | Merge 8.7jan.nijtmans2019-12-132-16/+0
|\ \ \
| * \ \ Merge 8.7 rc branchjan.nijtmans2019-11-231-1/+1
| |\ \ \