diff options
author | Martin Hunt <hunt@redhat.com> | 1997-03-19 23:39:20 +0000 |
---|---|---|
committer | Martin Hunt <hunt@redhat.com> | 1997-03-19 23:39:20 +0000 |
commit | 8a19b35a1b19df6c9fc9f1072073ff0c702157bb (patch) | |
tree | e1b5b691a4c262d6f4366a183c542ef48a13bcf8 /gdb/aclocal.m4 | |
parent | 7dd2696140dbc0e88460b2f81523230e122c0be1 (diff) | |
download | gdb-8a19b35a1b19df6c9fc9f1072073ff0c702157bb.zip gdb-8a19b35a1b19df6c9fc9f1072073ff0c702157bb.tar.gz gdb-8a19b35a1b19df6c9fc9f1072073ff0c702157bb.tar.bz2 |
Wed Mar 19 15:16:17 1997 Martin M. Hunt <hunt@onions.cygnus.com>
* Makefile.in: Install gdbtcl dir instead of gdbtk.tcl.
* gdbtk.c: Added some ifdefs for Windows. Changed GDBTK_FILENAME
to GDBTK_LIBRARY, which is now a path to search.
(gdb_path_conv): New function. Convert Cygwin32 pathname to
DOS-style pathname.
* aclocal.m4, configure.in: Changes for Windows builds.
* configure: Rebuilt.
Diffstat (limited to 'gdb/aclocal.m4')
-rw-r--r-- | gdb/aclocal.m4 | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/gdb/aclocal.m4 b/gdb/aclocal.m4 index 770d148..2c134cc 100644 --- a/gdb/aclocal.m4 +++ b/gdb/aclocal.m4 @@ -74,8 +74,9 @@ AC_DEFUN(CY_AC_PATH_TCLH, [ # be careful that we don't match stuff like tclX by accident. # the alternative search directory is involked by --with-tclinclude # + no_tcl=true -AC_MSG_CHECKING(for Tcl private headers) +AC_MSG_CHECKING(for Tcl private headers. dir=${configdir}) AC_ARG_WITH(tclinclude, [ --with-tclinclude directory where tcl private headers are], with_tclinclude=${withval}) AC_CACHE_VAL(ac_cv_c_tclh,[ # first check to see if --with-tclinclude was specified @@ -187,8 +188,8 @@ if test x"${no_tcl}" = x ; then `ls -dr ../../tcl[[7-9]]* 2>/dev/null` \ ../../../tcl \ `ls -dr ../../../tcl[[7-9]]* 2>/dev/null` ; do - if test -f "$i/unix/tclConfig.sh" ; then - ac_cv_c_tclconfig=`(cd $i/unix; pwd)` + if test -f "$i/${configdir}/tclConfig.sh" ; then + ac_cv_c_tclconfig=`(cd $i/${configdir}; pwd)` break fi done @@ -207,8 +208,8 @@ if test x"${no_tcl}" = x ; then for i in \ ${srcdir}/../tcl \ `ls -dr ${srcdir}/../tcl[[7-9]]* 2>/dev/null` ; do - if test -f "$i/unix/tclConfig.sh" ; then - ac_cv_c_tclconfig=`(cd $i/unix; pwd)` + if test -f "$i/${configdir}/tclConfig.sh" ; then + ac_cv_c_tclconfig=`(cd $i/${configdir}; pwd)` break fi done @@ -409,8 +410,8 @@ if test x"${no_tk}" = x ; then `ls -dr ../../tk[[4-9]]* 2>/dev/null` \ ../../../tk \ `ls -dr ../../../tk[[4-9]]* 2>/dev/null` ; do - if test -f "$i/unix/tkConfig.sh" ; then - ac_cv_c_tkconfig=`(cd $i/unix; pwd)` + if test -f "$i/${configdir}/tkConfig.sh" ; then + ac_cv_c_tkconfig=`(cd $i/${configdir}; pwd)` break fi done @@ -429,8 +430,8 @@ if test x"${no_tk}" = x ; then for i in \ ${srcdir}/../tk \ `ls -dr ${srcdir}/../tk[[4-9]]* 2>/dev/null` ; do - if test -f "$i/unix/tkConfig.sh" ; then - ac_cv_c_tkconfig=`(cd $i/unix; pwd)` + if test -f "$i/${configdir}/tkConfig.sh" ; then + ac_cv_c_tkconfig=`(cd $i/${configdir}; pwd)` break fi done |