summaryrefslogtreecommitdiffstats
path: root/win/Makefile.in
Commit message (Collapse)AuthorAgeFilesLines
* * win/Makefile.in: Add TCL_DEFS to AC_FLAGSmdejong2003-01-131-2/+5
| | | | | | | | | | | | | so that compiler flags defined by Tcl get passed to the compiler. Add empty rule for cat.c so that Tk compiles under msys. * win/configure: Regen. * win/tcl.m4: Update from Tcl, this pulls in a subst of TCL_DEFS, it also defines USE_THREAD_ALLOC when threads are used and it updates the SC_ENABLE_SYMBOLS and SC_PROG_TCLSH macros to match the ones used in Tcl.
* * win/Makefile.in (install-libraries): Added code section toandreas_kupries2002-09-041-2/+10
| | | | | | install the message catalogs. Copied same section from unix/Makefile.in and adapted it to the slightly different environment.
* * win/Makefile.in: Removed dependence on the (parts of) thedgp2002-08-261-27/+3
| | | | | * win/winMain.c: tcltest executable on Windows. It was not used, and the dependency complicated the Makefile. [Bug 592638].
* * unix/Makefile.in (install-binaries): simplified pkgIndex.tclhobbs2002-08-161-9/+9
| | | | | | file created on installation. * win/Makefile.in (install-binaries): corrected and simplified creation of pkgIndex.tcl file on installation.
* * unix/Makefile.in:mdejong2002-07-161-2/+4
| | | | | * win/Makefile.in: Add a more descriptive warning in the event `make genstubs` needs to be rerun.
* * win/Makefile.in (install-binaries): Fix of troubled Makefileandreas_kupries2002-06-271-7/+7
| | | | | quoting introduced by [Patch 521356] causing the installed to fail.
* * Expanded install-binaries target to create and install adgp2002-06-261-3/+17
| | | | pkgIndex.tcl file to enable Tk as a loadable package [Patch 521356]
* * doc/text.n: TIP #104 implementation which generalizes thehobbs2002-06-211-1/+2
| | | | | | | | | | | | | | | * generic/tkText.c: undo/redo stack to not be tied solely to the * generic/tkText.h: text widget. The APIs are still private. * generic/tkUndo.c: This also adds a stack limiting ability and * generic/tkUndo.h: a -maxundo option to the text widget (in * library/text.tcl: addition to the options from TIP #26) should * mac/tkMacDefault.h: users want to limit the undo/redo stack * tests/text.test: (should not be necessary in most cases). * unix/Makefile.in: [Patch #554763] (callewart) * unix/tkUnixDefault.h: * win/Makefile.in: * win/makefile.vc: * win/tkWinDefault.h:
* Added TIP#48 style engine implementationdkf2002-06-181-1/+2
| | | | Frederic Bonnet to supply docs+tests as soon as possible.
* corrected runtest target dependencieshobbs2002-04-231-3/+3
|
* * win/Makefile.in: changed gdb and shell targets to properly buildhobbs2002-04-051-3/+3
| | | | all binaries before running (otherwise an error often occured).
* TIP #41 implementation, panedwindow [Patch #512503] (melski)hobbs2002-02-221-1/+2
|
* * unix/Makefile.in:mdejong2001-12-191-2/+2
| | | | | * win/Makefile.in: Use $(MAKE) instead of make in the tcltest rule.
* * unix/Makefile.in: Add comments to better describemdejong2001-11-251-1/+23
| | | | | | | | | TCL_EXE and when it should be available. Add rule that prints message about running `make genstubs` when tkStubInit.c is out of date. * win/Makefile.in: Add TCL_TOOL_DIR and TCL_EXE variables to better match the Tcl Makefile. Add genstubs rule so tkSTubInit.c can be regenerated.
* * unix/Makefile.in:mdejong2001-11-111-1/+9
| | | | | * win/Makefile.in: Add "make gdb" target. This target can run wish inside either gdb or insight.
* * win/Makefile.in: Fix Windows Makefile so thatmdejong2001-09-101-2/+9
| | | | | tcltest will automatically be compiled if the user tries to build tktest.
* * win/Makefile.in: Use TKTEST variable directlymdejong2001-09-101-2/+2
| | | | instead of depending on the tktest alias.
* * win/configure: regeneratedhobbs2001-08-041-20/+16
| | | | | | | | * win/tcl.m4: fixed DLLSUFFIX definition to always be ${DBGX}.dll. This is necessary for TEA compliant builds that build shared against a static-built Tk. * win/Makefile.in ($(WISH)): added $(TK_STUB_LIB_FILE) to build target, otherwise it wouldn't get generated in a static build.
* * win/Makefile.in: Subst DEPARG directly insteadmdejong2001-07-061-15/+10
| | | | | | | | of relying on a variable. This will make Cygwin build faster since an extra exec will be avoided. * win/configure: Regen. * win/configure.in: Subst DEPARG. * win/tcl.m4: Update from Tcl.
* * win/Makefile.in: Remove PATHTYPE variable.mdejong2001-07-041-17/+13
| | | | | | * win/configure: Regen. * win/configure.in: Don't subst PATHTYPE. * win/tcl.m4: Update from Tcl.
* * win/Makefile.in: Don't use VPSEP, instead just use :mdejong2001-07-041-4/+3
| | | | | | in the VPATH. * win/configure: Regen. * win/configure.in: Don't subst VPSEP.
* * unix/Makefile.in:mdejong2001-06-271-1/+9
| | | | | | * win/Makefile.in: Add `make shell` target. This target will set the proper env vars before invoking wish from the build directory.
* * unix/Makefile.in: Set CFLAGS to @CFLAGS@ and @CFLAGS_DEFAULT@.mdejong2001-06-221-3/+3
| | | | | | | | | | | | | | | | | | Set LDFLAGS to @LDFLAGS@ and @LDFLAGS_DEFAULT@. Add LDFLAGS_DEBUG and LDFLAGS_OPTIMIZE to match the way CFLAGS_DEFAULT works. Use new LDFLAGS variable in the Makefile instead of @LDFLAGS@. * unix/configure: Regen. * unix/configure.in: Don't set CFLAGS to CFLAGS_DEFAULT, instead subst CFLAGS_DEFAULT into the Makefile. Add AC_SUBST for CFLAGS_DEBUG, CFLAGS_OPTIMIZE, LDFLAGS_DEFAULT, LDFLAGS_DEBUG, and LDFLAGS_OPTIMIZE. Remove unused LD_FLAGS subst. * unix/tcl.m4: Update from Tcl. * win/Makefile.in: Set CFLAGS to @CFLAGS@ and @CFLAGS_DEFAULT@. Set LDFLAGS to @LDFLAGS@ and @LDFLAGS_DEFAULT@. * win/configure: Regen. * win/configure.in: Don't set CFLAGS or LDFLAGS, instead subst CFLAGS_DEFAULT and LDFLAGS_DEFAULT into the Makefile. * win/tcl.m4: Update from Tcl.
* * win/Makefile.in (install-*): improved install-* targets to usehobbs2001-03-301-4/+4
| | | | their base build dependency.
* fixed remaining references to old-style TCL_SRC_DIR defnhobbs2000-11-031-8/+8
|
* 2000-10-30 David Gravereaux <davygrvy@ajubasolutions.com>davidg2000-10-311-4/+5
| | | | | | | | | | | * win/configure.in: * win/Makefile.in: * win/makefile.vc: * win/rc/tk.rc: * win/rc/tk_base.rc (new): * win/rc/wish.rc: Added logic to derive filenames better in the resource scripts based on compile options along with better support for building a static wish shell with cursor resources.
* * win/Makefile.in (test, winhelp, tktest): corrected thehobbs2000-10-311-4/+4
| | | | TCL_LIBRARY path specification.
* * win/Makefile.in (cat32.${OBJEXT}): add win/ subdirectory tohobbs2000-10-061-2/+2
| | | | cat32 target to correctly find the source file.
* * win/Makefile.in: commented use of TESTFLAGShobbs2000-09-291-1/+5
| | | | | * unix/Makefile.in: added TESTFLAGS to test and testlang targets to conform with Windows makefile and TEA style.
* * win/makefile.vc (install-libraries):ericm2000-09-021-3/+3
| | | | | | | | | * win/Makefile.in (install-libraries): * unix/Makefile.in (install-libraries): Added tkPlatDecls.h to list of header files to install. * generic/tk.h: Added #include "tkPlatDecls.h", which declares the platform specific component of the public Tk stubs API's.
* fix usage of TK_SRC_DIRmo2000-07-181-2/+2
|
* Recheckin without ^M line feeds.ericm2000-06-151-580/+580
|
* Added @LIBS@ to definition for LIBS variable, so that user32.lib and ericm2000-06-131-580/+580
| | | | advapi32.lib are included in the link line for the wish binary.
* * win/tcl.m4:ericm2000-06-131-32/+42
| | | | | | * win/configure.in: * win/Makefile.in: Applied patch from [RFE: 5844], to extend support for mingw compile environment on Windows.
* * win/Makefile.in (install-libraries): corrected to install Xhobbs2000-05-231-3/+9
| | | | headers [Bug: 5516]
* extra careful quotinghobbs2000-04-251-2/+2
|
* winhelp target improvementshobbs2000-04-251-1/+2
|
* * unix/Makefile.in:hobbs2000-04-251-24/+28
| | | | * win/Makefile.in: makefile cleanup
* * win/aclocal.m4: made SC_PROG_TCLSH search specifically forhobbs2000-04-211-9/+15
| | | | | | tclsh*.exe type files to find an executable. * win/Makefile.in: fixed up cleanup, winhelp, cat32 targets
* * test/winClipboard.test:hobbs2000-04-121-3/+4
| | | | | | | | | | | | * win/tkWinInt.h: * win/tkWinClipboard.c (UpdateClipboard): * win/tkWinX.c (GenerateXEvent): added updatingClipboard tsd and TkWinUpdatingClipboard accessor function to allow us to flag ourselves when we are the ones updating the clipboard. This corrected inability to create our own clipboard types within a Tk application. [Bug: 2338 4318] * win/tkWinTest.c (TestclipboardCmd): improved TestclipboardCmd with better error handling and obj'ification
* * win/makefile.vc (TKTEST_OBJS):hobbs2000-04-081-4/+8
| | | | | * win/Makefile.in (TKTEST_OBJS): moved tkWinTest.c from normal objs to TKTEST_OBJS where it belonged.
* * generic/tkDecls.h:hobbs2000-02-081-2/+3
| | | | | | | | | | | | | | | | | | | | | * generic/tk.decls: * generic/tk.h: moved new public functions created in dash patch to the stubs interface [Bug: 4062] * generic/tk.h: * doc/CrtImgType.3: * doc/CrtPhImgFmt.3: * generic/tk.h: * generic/tkImgGIF.c: * generic/tkImgPhoto.c: * generic/tkStubImg.c (new file): * generic/tkTest.c: * unix/Makefile.in: * win/Makefile.in: * win/makefile.vc: improved support for moving from the old style image C API to the new obj'ified one with new Tk_InitImageArgs command and stub'ing of image code. See docs for how to make the transition. [Bug: 4060]
* * win/Makefile.in (install-*): reduced verbosity of installhobbs2000-02-011-19/+14
| | | | | | | | | | | | * win/tkWinPixmap.c (XGetGeometry): added support for windows in XGetGeometry [Bug: 4069] * win/tkWinFont.c (GetScreenFont): fixed possible mem overrun with long font names [Bug: 4108] * win/tkWinDialog.c: added EnableWindow calls to dialogs to correct for possible loss of control in parent Tk toplevel [Bug: 1212 et al]
* Fixed "doc" target so that it copies man.macros from Tclwart1999-12-131-3/+3
|
* Added support for building Windows winhelp files.wart1999-12-071-2/+22
|
* Replaced references to mkinstalldirs with mkdir -pwart1999-11-231-5/+4
|
* Removed bogus dependency on "installdirs"wart1999-11-231-2/+2
|
* Use mkdir -p to create the install directories (like Tcl already does)wart1999-11-181-6/+7
|
* added DEMOPROGSstanton1999-09-181-1/+3
|
* Made sure that the tkConfig.sh file is always installed.wart1999-09-101-3/+3
| | | | | configure now substitutes XINCLUDES in tkConfig.sh. Needed for Tk extensions like Itk.