diff options
author | hobbs <hobbs> | 2004-05-26 22:51:53 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2004-05-26 22:51:53 (GMT) |
commit | 4761295d5dc11e76a759fc26de4b30d09bccd1a5 (patch) | |
tree | c10f5e706aedf192e66a2c06265018f7f5cc8e21 /unix/Makefile.in | |
parent | 6cc01e6368eeff74fcaff85e89e3910e120e7afc (diff) | |
download | tcl-4761295d5dc11e76a759fc26de4b30d09bccd1a5.zip tcl-4761295d5dc11e76a759fc26de4b30d09bccd1a5.tar.gz tcl-4761295d5dc11e76a759fc26de4b30d09bccd1a5.tar.bz2 |
* unix/Makefile.in: Rework configure ordering to TCL_LINK_LIBS,
* unix/tcl.m4: ENABLE_SHARED, CONFIG_CFLAGS, & ENABLE_SYMBOLS
* unix/configure: before TCL_EARLY_FLAGS and TCL_64BIT_FLAGS
* unix/configure.in: (about 400 lines earlier) in configure.in.
This forces CFLAGS configuration to be done before many tests,
which is needed for 64-bit builds and may affect other builds.
Also make CONFIG_CFLAGS append to CFLAGS directly instead of using
EXTRA_CFLAGS, and have LDFLAGS append to any existing value.
[Bug #874058]
* unix/dltest/Makefile.in: change EXTRA_CFLAGS to DEFS
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 ba9490a..51a3c0c 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.136 2004/04/24 05:59:19 das Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.137 2004/05/26 22:51:55 hobbs Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -238,7 +238,7 @@ DYLIB_INSTALL_DIR = ${LIB_RUNTIME_DIR} COMPAT_OBJS = @LIBOBJS@ -AC_FLAGS = @EXTRA_CFLAGS@ @DEFS@ +AC_FLAGS = @DEFS@ AR = @AR@ RANLIB = @RANLIB@ SRC_DIR = @srcdir@ |