diff options
author | das <das@noemail.net> | 2004-07-20 11:13:07 (GMT) |
---|---|---|
committer | das <das@noemail.net> | 2004-07-20 11:13:07 (GMT) |
commit | b33dda57bb359216c7a2aab539c536e5d7903ae2 (patch) | |
tree | f3c026378d1be998b1074b6f4f7fa44ed833a9a6 /unix/dltest | |
parent | e011af335142ec5d5d8e43cca5408c9ce95f13e2 (diff) | |
download | tcl-b33dda57bb359216c7a2aab539c536e5d7903ae2.zip tcl-b33dda57bb359216c7a2aab539c536e5d7903ae2.tar.gz tcl-b33dda57bb359216c7a2aab539c536e5d7903ae2.tar.bz2 |
* unix/tcl.m4: fixed Darwin autoconf breakage caused by
recent CFLAGS reordering.
* unix/configure: regen
* unix/tclConfig.sh.in: replaced EXTRA_CFLAGS with CFLAGS.
* unix/dltest/Makefile.in: replaced EXTRA_CFLAGS with DEFS.
FossilOrigin-Name: 7553cb7e69197bca8dc10c457333d7484900fa27
Diffstat (limited to 'unix/dltest')
-rw-r--r-- | unix/dltest/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/dltest/Makefile.in b/unix/dltest/Makefile.in index f9dd775..98e60b3 100644 --- a/unix/dltest/Makefile.in +++ b/unix/dltest/Makefile.in @@ -1,12 +1,12 @@ # This Makefile is used to create several test cases for Tcl's load # command. It also illustrates how to take advantage of configuration # exported by Tcl to set up Makefiles for shared libraries. -# RCS: @(#) $Id: Makefile.in,v 1.11 2002/07/16 22:44:43 mdejong Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.11.2.1 2004/07/20 11:13:10 das Exp $ TCL_DBGX = @TCL_DBGX@ CC = @CC@ LIBS = @TCL_BUILD_STUB_LIB_SPEC@ @DL_LIBS@ @LIBS@ @MATH_LIBS@ -AC_FLAGS = @EXTRA_CFLAGS@ +AC_FLAGS = @DEFS@ SHLIB_CFLAGS = @SHLIB_CFLAGS@ SHLIB_LD = @SHLIB_LD@ SHLIB_LD_LIBS = @SHLIB_LD_LIBS@ |