1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
|
2003-04-22 Jeff Hobbs <jeffh@ActiveState.com>
* tcl.m4: correct default setting of ARCH for WinCE builds.
Correct \ escaping for CE sed macros.
2003-04-10 Jeff Hobbs <jeffh@ActiveState.com>
* tcl.m4: replace $(syscal) construct with older `syscall` for
systems where sh != bash.
2003-04-09 Jeff Hobbs <jeffh@ActiveState.com>
* tcl.m4 (TEA_WITH_CELIB): add --enable-wince and --with-celib
options for Windows/CE compilation support. Requires the
Microsoft eMbedded SDK and Keuchel's celib emulation layer.
2003-02-18 Jeff Hobbs <jeffh@ActiveState.com>
* tcl.m4 (TEA_ENABLE_THREADS): Make sure -lpthread gets passed on
the link line when checking for the pthread_attr_setstacksize
symbol. (dejong)
* tcl.m4 (TEA_SETUP_COMPILER): added default calls to
TEA_TCL_EARLY_FLAGS, TEA_TCL_64BIT_FLAGS,
TEA_MISSING_POSIX_HEADERS and TEA_BUGGY_STRTOD.
2003-02-14 Jeff Hobbs <jeffh@ActiveState.com>
* tcl.m4: correct HP-UX ia64 --enable-64bit build flags
2003-01-29 Jeff Hobbs <jeffh@ActiveState.com>
* tcl.m4: check $prefix/lib as well as $exec_prefix/lib when
looking for tcl|tkConfig.sh, as this check is done before we would
set exec_prefix when the user does not define it.
2003-01-21 Mo DeJong <mdejong@users.sourceforge.net>
* tcl.m4 (TEA_CONFIG_CFLAGS): Fix build support
for mingw, the previous implementation would
use VC++ when compiling with mingw gcc. Don't
pass -fPIC since gcc always compiles pic code
under win32. Change some hard coded cases
of gcc to ${CC}.
2002-10-15 Jeff Hobbs <jeffh@ActiveState.com>
* tcl.m4: move the CFLAGS definition from TEA_ENABLE_SHARED to
TEA_MAKE_LIB because setting too early confuses other AC_* macros.
Correct the HP-11 SHLIB_LD_LIBS setting.
* tcl.m4: add the CFLAGS definition into TEA_ENABLE_SHARED and
make it pick up the env CFLAGS at configure time.
2002-10-09 Jeff Hobbs <jeffh@ActiveState.com>
* tcl.m4: add --enable-symbols=mem option to enable TCL_MEM_DEBUG.
Improved AIX 64-bit build support, allow it on AIX-4 as well.
Enable 64-bit HP-11 compilation with gcc.
Enable 64-bit IRIX64-6 cc build support.
Correct FreeBSD thread library linkage.
Add OSF1 static build support.
Improve SunOS-5 shared build SHLIB_LD macro.
2002-07-20 Zoran Vasiljevic <zoran@archiware.com>
* tcl.m4: Added MINGW32 to list of systems checked for Windows build.
Also, fixes some indentation issues with "--with-XXX" options.
2002-04-23 Jeff Hobbs <jeffh@ActiveState.com>
* tcl.m4 (TEA_ENABLE_THREADS): added USE_THREAD_ALLOC define to
use new threaded allocatory by default on Unix for Tcl 8.4.
(TEA_CONFIG_CFLAGS): corrected LD_SEARCH_FLAGS for FreeBSD-3+.
2002-04-22 Jeff Hobbs <jeffh@ActiveState.com>
* tcl.m4 (TEA_SETUP_COMPILER): removed call to AC_CYGWIN so that
we can use autoconf 2.5x as well as 2.13. This prevents us from
being able to warn against the use of cygwin gcc at configure
time, but allows autoconf 2.5x, which is what is shipped with most
newer systems.
2002-04-11 Jeff Hobbs <jeffh@ActiveState.com>
* tcl.m4: Enabled COFF as well as CV style debug info with
--enable-symbols to allow Dr. Watson users to see function info.
More info on debugging levels can be obtained at:
http://msdn.microsoft.com/library/en-us/dnvc60/html/gendepdebug.asp
2002-04-03 Jeff Hobbs <jeffh@ActiveState.com>
* tcl.m4: change all SC_* macros to TEA_*. The SC_ was for
Scriptics, which is no more. TEA represents a better, independent
prefix that won't need changing.
Added preliminary mingw gcc support. [Patch #538772]
Added TEA_PREFIX macro that handles defaulting the prefix and
exec_prefix vars to those used by Tcl if none were specified.
Added TEA_SETUP_COMPILER macro that encompasses the AC_PROG_CC
check and several other basic AC_PROG checks needed for making
executables. This greatly simplifies user's configure.in files.
Collapsed AIX-5 defines into AIX-* with extra checks for doing the
ELF stuff on AIX-5-ia64.
Updated TEA_ENABLE_THREADS to take an optional arg to allow
switching it on by default (for Thread) and add sanity checking to
warn the user if configuring threads incompatibly.
2002-03-29 Jeff Hobbs <jeffh@ActiveState.com>
* tcl.m4: made sure that SHLIB_LDFLAGS was set to LDFLAGS_DEFAULT.
Removed --enable-64bit support for AIX-4 because it wasn't correct.
Added -MT or -MD Windows linker switches to properly support
symbols-enabled builds.
2002-03-28 Jeff Hobbs <jeffh@ActiveState.com>
* tcl.m4: called AC_MSG_ERROR when SC_TEA_INIT wasn't called first
instead of calling it as that inlines it each time in shell code.
Changed Windows CFLAGS_OPTIMIZE to use -O2 instead of -Oti.
Noted TCL_LIB_VERSIONS_OK=nodots for Windows builds.
A few changes to support itcl (and perhaps others):
Added support for making your own stub libraries to SC_MAKE_LIB.
New SC_PATH_CONFIG and SC_LOAD_CONFIG that take a package name arg
and find that ${pkg}Config.sh file. itk uses this for itcl.
2002-03-27 Jeff Hobbs <jeffh@ActiveState.com>
* tcl.m4: made SC_LOAD_TKCONFIG recognize when working with a Tk
build dir setup.
Added EXTRA_CFLAGS and SHLIB_LD_LIBS substs to SC_CONFIG_CFLAGS.
Added XLIBSW onto LIBS when it is defined.
Remove TCL_LIBS from MAKE_LIB and correctly use SHLIB_LD_LIBS
instead to not rely as much on tclConfig.sh cached info.
Add TK_BIN_DIR to paths to find wish in SC_PROG_WISH.
These move towards making TEA much more independent of *Config.sh.
2002-03-19 Jeff Hobbs <jeffh@ActiveState.com>
* tcl.m4: corrected forgotten (UN)SHARED_LIB_SUFFIX and
SHLIB_SUFFIX defines for Win.
(SC_PATH_X): made this only do the check on unix platforms.
2002-03-12 Jeff Hobbs <jeffh@ActiveState.com>
* README.txt: updated to reflect fewer files
2002-03-06 Jeff Hobbs <jeffh@ActiveState.com>
* config.guess (removed):
* config.sub (removed): removed unnecessary files
* installFile.tcl (removed):
* mkinstalldirs (removed): these aren't really necessary for
making TEA work
* tcl.m4 (SC_PUBLIC_TCL_HEADERS, SC_PUBLIC_TK_HEADERS): don't
check /usr(/local)/include for includes on Windows when not using
gcc
2002-03-05 Jeff Hobbs <jeffh@ActiveState.com>
* tcl.m4: added warnings on Windows, removed RELPATH define and
added TCL_LIBS to MAKE_LIB macro.
This import represents 2.0.0, or a new start at attempting to
make TEA much easier for C extension developers.
**** moved from tclpro project to core tcl project, ****
**** renamed to 'tclconfig' ****
2001-03-15 Karl Lehenbauer <karl@procplace.com>
* installFile.tcl: Added updating of the modification time of
the target file whether we overwrote it or decided that it
hadn't changed. This was necessary for us to be able to
determine whether or not a module install touched the file.
2001-03-08 Karl Lehenbauer <karl@procplace.com>
* installFile.tcl: Added support for converting new-style (1.1+)
Cygnus drive paths to Tcl-style.
2001-01-15 <brent.welch@interwoven.com>
* tcl.m4: Added FreeBSD clause.
2001-01-03 <brent.welch@interwoven.com>
* tcl.m4: Fixed typo in SC_LIB_SPEC where it is checking
for exec-prefix.
2000-12-01 <brent.welch@interwoven.com>
* tcl.m4: Concatenated most of the Ajuba acsite.m4 file
so we don't need to modify the autoconf installation.
* config.guess:
* config.sub:
* installFile.tcl:
Added files from the itcl config subdirectory,
which should go away.
2000-7-29 <welch@ajubasolutions.com>
* Fixed the use of TCL_SRC_DIR and TK_SRC_DIR within
TCL_PRIVATE_INCLUDES and TK_PRIVATE_INCLUDES to match their recent
change from $(srcdir) to $(srcdir)/..
|