diff options
author | mdejong <mdejong@noemail.net> | 2001-05-11 23:02:17 (GMT) |
---|---|---|
committer | mdejong <mdejong@noemail.net> | 2001-05-11 23:02:17 (GMT) |
commit | 837ff2820206e2f0ec4af4d4d0ceed42b9a9ab59 (patch) | |
tree | fc14ce1d13ff13eb1bd838f2b5112d0b0d2a780a /win/tcl.m4 | |
parent | bb1cd0944cb14337b51ffdfe55b03afec3d36098 (diff) | |
download | tcl-837ff2820206e2f0ec4af4d4d0ceed42b9a9ab59.zip tcl-837ff2820206e2f0ec4af4d4d0ceed42b9a9ab59.tar.gz tcl-837ff2820206e2f0ec4af4d4d0ceed42b9a9ab59.tar.bz2 |
* unix/Makefile.in: Add a LDFLAGS variable to the
Makefile instead of directly substing @LDFLAGS@.
* unix/configure: Regen.
* unix/tcl.m4: Fix CFLAGS_DEFAULT so that the name
of a Makefile variable is passed as @CFLAGS@.win/tcl.m4
* win/Makefile.in: Move the setting of CFLAGS
higher up in the Makefile.
* win/configure: Regen.
* win/configure.in: Use dnl to comment out macros
so that they are not accidently expanded.
* win/tcl.m4: Fix CFLAGS_DEFAULT so that the name
of a Makefile variable is passed as @CFLAGS@.
FossilOrigin-Name: b415d56ee09857901ec51f29911fd70c611acc31
Diffstat (limited to 'win/tcl.m4')
-rw-r--r-- | win/tcl.m4 | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -245,8 +245,8 @@ AC_DEFUN(SC_ENABLE_THREADS, [ # --enable-symbols # # Defines the following vars: -# CFLAGS_DEFAULT Sets to CFLAGS_DEBUG if true -# Sets to CFLAGS_OPTIMIZE if false +# CFLAGS_DEFAULT Sets to $(CFLAGS_DEBUG) if true +# Sets to $(CFLAGS_OPTIMIZE) if false # LDFLAGS_DEFAULT Sets to LDFLAGS_DEBUG if true # Sets to LDFLAGS_OPTIMIZE if false # DBGX Debug library extension @@ -258,12 +258,12 @@ AC_DEFUN(SC_ENABLE_SYMBOLS, [ AC_ARG_ENABLE(symbols, [ --enable-symbols build with debugging symbols [--disable-symbols]], [tcl_ok=$enableval], [tcl_ok=no]) if test "$tcl_ok" = "yes"; then - CFLAGS_DEFAULT="${CFLAGS_DEBUG}" + CFLAGS_DEFAULT='$(CFLAGS_DEBUG)' LDFLAGS_DEFAULT="${LDFLAGS_DEBUG}" DBGX=d AC_MSG_RESULT([yes]) else - CFLAGS_DEFAULT="${CFLAGS_OPTIMIZE}" + CFLAGS_DEFAULT='$(CFLAGS_OPTIMIZE)' LDFLAGS_DEFAULT="${LDFLAGS_OPTIMIZE}" DBGX="" AC_MSG_RESULT([no]) |