diff options
author | das <das> | 2006-12-17 03:47:06 (GMT) |
---|---|---|
committer | das <das> | 2006-12-17 03:47:06 (GMT) |
commit | e948966663e0c332c86aad5aa167f86f853b9e55 (patch) | |
tree | 46ed3f955943f0b626f59adda7a6e0cc020ac4b4 /unix/Makefile.in | |
parent | aa3f7eb23be4f2cb040b9fd9cf025fc1740a120b (diff) | |
download | tcl-e948966663e0c332c86aad5aa167f86f853b9e55.zip tcl-e948966663e0c332c86aad5aa167f86f853b9e55.tar.gz tcl-e948966663e0c332c86aad5aa167f86f853b9e55.tar.bz2 |
* tests/macOSXLoad.test (new file): add testing of .bundle loading and
* tests/load.test: unloading on Darwin (in addition to
* tests/unload.test: existing tests of .dylib loading).
* macosx/Tcl.xcodeproj/project.pbxproj: add building of dltest binaries
so that testsuite run from Xcode can use them; fix testsuite run script.
* unix/configure.in: add support for building dltest binaries as
* unix/dltest/Makefile.in: .bundle (in addition to .dylib) on Darwin.
* unix/Makefile.in: add stub lib dependency to dltest target.
* unix/configure: autoconf-2.59
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index eb95043..cd63b0f 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -4,7 +4,7 @@ # "./configure", which is a configuration script generated by the "autoconf" # program (constructs like "@foo@" will get replaced in the actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.199 2006/12/05 18:45:51 andreas_kupries Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.200 2006/12/17 03:47:08 das Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -696,7 +696,7 @@ gentommath_h: # Makefile in the dltest subdirectory creates the dltest.marker file in this # directory after a successful build. -dltest.marker: +dltest.marker: ${STUB_LIB_FILE} cd dltest ; $(MAKE) INSTALL_TARGETS = install-binaries install-libraries install-doc @EXTRA_INSTALL@ |