diff options
author | jenglish <jenglish@flightlab.com> | 2005-01-10 18:57:39 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2005-01-10 18:57:39 (GMT) |
commit | 0932cd846593a23540c4c74818684c574159831c (patch) | |
tree | 9af6cb5c708bbf26af1660cbda26df772b3afa7f /unix/configure.in | |
parent | ab0d39f7f42ae61b5096c0c40cb2c1c4c5fb5210 (diff) | |
download | tk-0932cd846593a23540c4c74818684c574159831c.zip tk-0932cd846593a23540c4c74818684c574159831c.tar.gz tk-0932cd846593a23540c4c74818684c574159831c.tar.bz2 |
Remove ${DBGX}, ${TK_DBGX} from Tk build system [Patch 1081595].
Re-synced with tcl/unix/tcl.m4.
Diffstat (limited to 'unix/configure.in')
-rw-r--r-- | unix/configure.in | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/unix/configure.in b/unix/configure.in index 3b96934..3c06656 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -3,7 +3,7 @@ dnl This file is an input file used by the GNU "autoconf" program to dnl generate the file "configure", which is run during Tk installation dnl to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.98 2004/12/11 00:00:21 dkf Exp $ +# RCS: @(#) $Id: configure.in,v 1.99 2005/01/10 18:57:41 jenglish Exp $ AC_INIT([tk],[8.5]) AC_PREREQ(2.57) @@ -101,8 +101,6 @@ SC_CONFIG_CFLAGS SC_ENABLE_SYMBOLS -TK_DBGX=${DBGX} - #-------------------------------------------------------------------- # Detect what compiler flags to set for 64-bit support. #-------------------------------------------------------------------- @@ -356,9 +354,9 @@ eval "TK_LIB_FILE=${TK_LIB_FILE}" if test "$SHARED_BUILD" = 0 -o $TCL_NEEDS_EXP_FILE = 0; then if test "${TCL_LIB_VERSIONS_OK}" = "ok"; then - eval TK_LIB_FLAG="-ltk${VERSION}\${TK_DBGX}" + eval TK_LIB_FLAG="-ltk${VERSION}" else - eval TK_LIB_FLAG="-ltk`echo ${VERSION} | tr -d .`\${TK_DBGX}" + eval TK_LIB_FLAG="-ltk`echo ${VERSION} | tr -d .`" fi TK_BUILD_LIB_SPEC="-L`pwd` ${TK_LIB_FLAG}" TK_LIB_SPEC="-L${libdir} ${TK_LIB_FLAG}" @@ -391,9 +389,9 @@ TK_SHARED_BUILD=${SHARED_BUILD} eval "TK_STUB_LIB_FILE=libtkstub${TK_UNSHARED_LIB_SUFFIX}" if test "${TCL_LIB_VERSIONS_OK}" = "ok"; then - eval TK_STUB_LIB_FLAG="-ltkstub${TK_VERSION}\${TK_DBGX}" + eval TK_STUB_LIB_FLAG="-ltkstub${TK_VERSION}" else - eval TK_STUB_LIB_FLAG="-ltkstub`echo ${TK_VERSION} | tr -d .`\${TK_DBGX}" + eval TK_STUB_LIB_FLAG="-ltkstub`echo ${TK_VERSION} | tr -d .`" fi TK_BUILD_STUB_LIB_SPEC="-L`pwd` ${TK_STUB_LIB_FLAG}" @@ -410,7 +408,6 @@ AC_SUBST(TK_VERSION) AC_SUBST(TK_MAJOR_VERSION) AC_SUBST(TK_MINOR_VERSION) AC_SUBST(TK_PATCH_LEVEL) -AC_SUBST(TK_DBGX) AC_SUBST(TK_STUB_LIB_FILE) AC_SUBST(TK_STUB_LIB_FLAG) |