diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2003-09-29 09:43:35 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2003-09-29 09:43:35 (GMT) |
commit | 12c66bbcfa19527db6282f77e918b55a734b1451 (patch) | |
tree | 71c86f8c003b37f09ccc943354706b0a9d4af2a7 | |
parent | 2e1a984bf1c6810d84fd8a8e4fc4b322442de32c (diff) | |
download | tcl-12c66bbcfa19527db6282f77e918b55a734b1451.zip tcl-12c66bbcfa19527db6282f77e918b55a734b1451.tar.gz tcl-12c66bbcfa19527db6282f77e918b55a734b1451.tar.bz2 |
Added note that frameworks are a MacOSX feature [Bug 619440]
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | unix/configure | 2 | ||||
-rw-r--r-- | unix/tcl.m4 | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2003-09-29 Donal K. Fellows <fellowsd@cs.man.ac.uk> + + * unix/tcl.m4 (SC_ENABLE_FRAMEWORK): Added note to make it clearer + that this is an OSX feature, not a general Unix feature. [Bug 619440] + 2003-09-28 David Gravereaux <davygrvy@pobox.com> * win/tclWinPipe.c: The windows port of expect can call diff --git a/unix/configure b/unix/configure index bba3883..5baf638 100755 --- a/unix/configure +++ b/unix/configure @@ -850,7 +850,7 @@ Optional Features: --enable-64bit-vis enable 64bit Sparc VIS support --disable-load disallow dynamic loading and "load" command --enable-symbols build with debugging symbols --disable-symbols - --enable-framework package shared libraries in frameworks --disable-framework + --enable-framework package shared libraries in MacOSX frameworks --disable-framework Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] diff --git a/unix/tcl.m4 b/unix/tcl.m4 index cd55c74..cfb84f9 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -354,7 +354,7 @@ AC_DEFUN(SC_ENABLE_SHARED, [ AC_DEFUN(SC_ENABLE_FRAMEWORK, [ AC_MSG_CHECKING([how to package libraries]) AC_ARG_ENABLE(framework, - [ --enable-framework package shared libraries in frameworks [--disable-framework]], + [ --enable-framework package shared libraries in MacOSX frameworks [--disable-framework]], [tcl_ok=$enableval], [tcl_ok=no]) if test "${enable_framework+set}" = set; then |