summaryrefslogtreecommitdiffstats
path: root/win/makefile.vc
Commit message (Collapse)AuthorAgeFilesLines
...
* | | The -debug:full option is not supported when using the modern versions of ↵Joe Mistachkin2011-03-171-2/+2
| | | | | | | | | | | | link.exe included with MSVC, use -debug instead.
* | | [FRQ 491789]: "setargv() doesn't support a unicodenijtmans2010-10-111-1/+5
| | | | | | | | | | | | cmdline" implemented for Tk on MSVC++
* | | Add netapi32 to the windows link linenijtmans2010-10-111-2/+2
| | |
* | | win/rules.vc: (sync with tcl version)nijtmans2010-09-091-5/+5
| | | | | | | | | | | | | | | | | | mingw should always link with -ladvapi32 Remove ascii variant of tkWinPocs table, it is no longer necessary.
* | | Fix [Tcl Bug 2967340]: Static build failurenijtmans2010-03-121-1/+2
| | |
* | | Fix dependancies on ${TKSTUBLIB} whennijtmans2009-12-121-5/+5
| | | | | | | | | | | | TCL_USE_STATIC_PACKAGES is defined
* | | Include tk stubs in the tktest link line due to nijtmans recent changespatthoyts2009-11-221-2/+2
| | |
* | | Implementation of TIP #244, PNG image support.dkf2008-12-281-1/+2
| | |
* | | msvc uses __inline, so added the necessary macro now that we are using thispatthoyts2008-10-191-3/+4
| | |
* | | Implementation of the [tk busy] command on non-OSX.dkf2008-10-181-1/+2
| | | | | | | | | | | | Adapted from [Patch 1997907]
* | | Split the photo image core into two pieces to make it easier to maintain.dkf2008-08-251-1/+2
| | |
* | | TIP 285 ImplementationJoe Mistachkin2008-06-131-1/+7
| | |
* | | We should use the thread allocator for threaded builds. Added 'tclalloc' ↵patthoyts2008-05-151-3/+6
| | | | | | | | | | | | option to disable.
* | | Include ws2_32 in the link list [Bug 19200872]patthoyts2008-04-201-2/+2
| | |
* | | Fixed stubs usagepatthoyts2008-04-031-5/+13
| | |
* | | Tweak the debug targetspatthoyts2008-04-021-18/+7
| | |
* | | * generic/tkWindow.c: Revised package initialization so thatdgp2008-04-021-2/+1
|/ / | | | | | | | | | | * unix/Makefile.in: "tkStubsPtr" is not present in libtk.so, but * win/Makefile.in: is present only in libtkstub.a. This tightens * win/makefile.bc: up the rules for users of the stubs interfaces. * win/makefile.vc: [Tcl Bug 1819422].
* | Put ttkStubLib.o in libtkstub instead of libtk. [Bug 1863007].jenglish2008-03-181-4/+3
| |
* | Support compilation with MSVC9 on AMD64patthoyts2007-12-141-1/+3
| |
* | merge stable branch onto HEADdgp2007-12-131-1/+1
| |
* | (bug 1835052) Fix tidy target to remove tktest rather than tcltestpatthoyts2007-11-281-3/+3
| |
* | Fix the environment to run only our built versionpatthoyts2007-11-171-21/+42
| |
* | * bitmaps/*.xbm: Changed CVS storage mode from -kb to -kkv as thesedavygrvy2007-10-171-2/+3
| | | | | | | | | | | | are really text files, not binaries. * win/makefile.vc: Added $(BITMAPDIR) to the search path for the depend target.
* | * win/makefile.vc: depend target now works and builds a generateddavygrvy2007-10-161-86/+23
| | | | | | | | dependency list with $(TCLTOOLSDIR)/mkdepend.tcl
* | Hush.patthoyts2007-10-121-3/+3
| |
* | Fixed install of tk broken with last commitpatthoyts2007-10-121-8/+3
| |
* | Mine all version information from headers. Sync tcl and tk and bringpatthoyts2007-10-121-64/+49
| | | | | | | | | | extension versions closer together. Try and avoid using tclsh to do substitutions as we may cross compile.
* | * generic/tkStubLib.c: Remove C library calls from Tk_InitStubs()dgp2007-09-181-2/+2
| | | | | | | | | | * win/makefile.vc: so that we don't need the C library linked in to libtkStub.
* | Add crt flags for tkStubLib now it makes use of C-library functionspatthoyts2007-09-171-2/+2
| |
* | * win/Makefile.in (install-binaries): Fixed missing brace in theandreas_kupries2007-09-121-2/+2
| | | | | | | | | | * win/makefile.vc (install-binaries): generated package index file. Note: unix/Makefile.in is good.
* | * generic/tkConsole.c: Revised calls to Tcl_InitStubs() anddgp2007-09-111-3/+2
| | | | | | | | | | | | | | | | | | * generic/tkMain.c: [package require Tcl] so that Tk Says What * generic/tkWindow.c: It Means using the new facilties of [package] * library/tk.tcl: in Tcl 8.5 about what version(s) of Tcl it * unix/Makefile.in: is willing to work with. [Bug 1578344]. * win/Makefile.in: * win/makefile.vc:
* | Test ttk widgetspatthoyts2007-05-151-2/+18
| |
* | [Tk Bug 1712081]dgp2007-05-141-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * unix/Makefile.in: Updates to account for new and deleted files * win/Makefile.in: tkStubImg.c and tkOldTest.c. * win/makefile.bc: * win/makefile.vc: * generic/tkOldTest.c (new): New file used to create testing * generic/tkTest.c: commands for testing various Tk * tests/constraints.tcl: legacy interfaces where a separate * tests/image.test: compilation unit is needed in order to #define suitable macros during compilation. Only the effect of USE_OLD_IMAGE on Tk_CreateImageType() is currently tested, but more similar testing commands can be added to this same file. New constraint defined to detect presence of the image type provided by the new testing code, and a few tests added to exercise it. Having USE_OLD_IMAGE support tested by the default test suite should reduce chance of a recurrence of this bug. * doc/CrtImgType.3: Revised docs to better indicate the legacy * doc/CrtPhImgFmt.3: nature of the interfaces supported by USE_OLD_IMAGE. * generic/tkDecls.h: make genstubs * generic/tkStubInit.c: * generic/tk.decls: Reworked USE_OLD_IMAGE support to use * generic/tk.h: the same support mechanisms both with * generic/tkStubImg.c (deleted):and without a stub-enabled build. In each case, route the legacy calls to Tk_CreateImageType and Tk_CreatePhotoImageFormat through the Tk_CreateOldImageType and Tk_CreateOldPhotoImageFormat routines. Add those routines to the public stub table so they're available to a stub-enabled extension. Remove the definition of Tk_InitImageArgs() and use a macro to convert any calls to it in source code into a comment. * generic/tkImage.c: Removed the MODULE_SCOPE declarations that * generic/tkImgPhoto.c: broke USE_OLD_IMAGE support.
* | Added compliler define SUPPORT_CONFIG_EMBEDDED to support config of -use ↵chengyemao2007-02-281-1/+2
| | | | | | | | option at Windows
* | Windows build fixesJoe Mistachkin2007-02-091-1/+7
| |
* | Build fix for man2tcl.c with MSVC8Joe Mistachkin2007-01-191-2/+4
| |
* | Oops. Removing rogue flagpatthoyts2006-11-031-3/+2
| |
* | Add manifest merging for MSVC8.patthoyts2006-10-311-15/+35
| |
* | Update to support ttk merge.patthoyts2006-10-311-11/+104
| |
* | generic/tkImgBmap.c: Fixed line endings.patthoyts2006-10-191-31/+31
| | | | | | | | | | | | win/makefile.vc: Patched up build system to manage win/rules.vc: AMD64 with MSVC8 win/nmakehlp.c: Ensure operation without Platform SDK.
* | * unix/Makefile.in (install-binaries): Added a second guard to theandreas_kupries2006-09-271-2/+3
| | | | | | | | | | | | | | | | * win/Makefile.in: package index file to prevent older versions of * win/makefile.vc: Tcl from seeing version numbers which may contain a/b information, and then balking on them. This could otherwise happen when Tcl/Tk 8.4 and 8.5 are installed in the same directory, seeing each other. [SF Tk Bug 1566418].
* | * generic/tkConsole.c: TIP #268 update regarding registered packageandreas_kupries2006-09-221-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tkMain.c: version, now using full patchlevel instead of * generic/tkWindow.c: major.minor * library/tk.tcl: * unix/configure: * unix/Makefile.in: * unix/tcl.m4: * win/configure: * win/Makefile.in: * win/makefile.vc: * win/rules.vc: * win/tcl.m4:
* | * generic/tkInt.decls: move all platform test sources from tk lib intodas2005-12-091-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | * generic/tkTest.c: tktest directly, removes requirement to export * macosx/tkMacOSXTest.c: TkplatformtestInit from internal stubs table. * unix/Makefile.in: * win/Makefile.in: * win/makefile.vc: * win/tkWinTest.c: * generic/tkIntPlatDecls.h: * generic/tkStubInit.c: regen.
* | add tkWinTest.obj to regular Tk obj for TkplatformtestInithobbs2005-12-081-6/+3
| |
* | * win/tcl.m4: Add build support for Windows-x64 builds.hobbs2005-12-081-3/+27
| | | | | | | | | | | | | | | | | | * win/configure: --enable-64bit now accepts =amd64|ia64 for * win/Makefile.in: Windows 64-bit build variants (default: amd64) * win/makefile.vc: [Bug 1369597] * win/configure.in: Add CE build support (some C code fixes needed) * win/wish.exe.manifest.in (new): manifest must map in MACHINE * win/rc/wish.exe.manifest (removed): and VERSION to be correct.
* | * win/makefile.vc: clarify necessary defined vars that can comehobbs2005-03-081-14/+18
| | | | | | | | from MSVC or the Platform SDK.
* | * win/makefile.vc: Shell targets needed more stack space. [Bug 1066755]davygrvy2004-11-261-4/+4
| |
* | * win/tkWinX.c: Signature for tkWinXCleanup needed to bedavygrvy2004-10-271-1/+3
| | | | | | | | | | | | | | * generic/tkInt.decls: changed so it matches the Tcl_ExitProc * generic/tkIntPlatDecls.h: typedef to avoid a bad-style cast. * win/makefile.vc: Force TCL_LIBRARY envar when calling tclsh
* | added VC7-safe environment check used in the Tcl makefile.vcdavygrvy2004-09-161-5/+7
| |
* | include tkTest.c in list of files which depend on tkText.hvincentdarley2004-09-101-1/+2
| |