mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-18 10:31:57 +00:00
2532fa21a9
- This currently just moves over all of the behavior from LLVM. Eventually all of the configure checks that are directly needed by the LLVM build setup should probably go away, and the project should manage their own configuration checks if necessary. - This is the 1st half of this work, the actual Makefile.common hasn't moved over yet. I've tried to stage this in such a way that incremental builds will properly reconfigure for most active developers (the Makefiles don't handle reconfiguring in a perfectly reliable way, and I haven't found an easy way to make them do so). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142456 91177308-0d34-0410-b5e6-96231b3b80d8
40 lines
1.4 KiB
Plaintext
40 lines
1.4 KiB
Plaintext
dnl This macro checks for tclsh which is required to run dejagnu. On some
|
|
dnl platforms (notably FreeBSD), tclsh is named tclshX.Y - this handles
|
|
dnl that for us so we can get the latest installed tclsh version.
|
|
dnl
|
|
AC_DEFUN([DJ_AC_PATH_TCLSH], [
|
|
no_itcl=true
|
|
AC_MSG_CHECKING(for the tclsh program in tclinclude directory)
|
|
AC_ARG_WITH(tclinclude,
|
|
AS_HELP_STRING([--with-tclinclude],
|
|
[directory where tcl headers are]),
|
|
[with_tclinclude=${withval}],[with_tclinclude=''])
|
|
AC_CACHE_VAL(ac_cv_path_tclsh,[
|
|
dnl first check to see if --with-itclinclude was specified
|
|
if test x"${with_tclinclude}" != x ; then
|
|
if test -f ${with_tclinclude}/tclsh ; then
|
|
ac_cv_path_tclsh=`(cd ${with_tclinclude}; pwd)`
|
|
elif test -f ${with_tclinclude}/src/tclsh ; then
|
|
ac_cv_path_tclsh=`(cd ${with_tclinclude}/src; pwd)`
|
|
else
|
|
AC_MSG_ERROR([${with_tclinclude} directory doesn't contain tclsh])
|
|
fi
|
|
fi])
|
|
|
|
dnl see if one is installed
|
|
if test x"${ac_cv_path_tclsh}" = x ; then
|
|
AC_MSG_RESULT(none)
|
|
AC_PATH_PROGS([TCLSH],[tclsh8.4 tclsh8.4.8 tclsh8.4.7 tclsh8.4.6 tclsh8.4.5 tclsh8.4.4 tclsh8.4.3 tclsh8.4.2 tclsh8.4.1 tclsh8.4.0 tclsh8.3 tclsh8.3.5 tclsh8.3.4 tclsh8.3.3 tclsh8.3.2 tclsh8.3.1 tclsh8.3.0 tclsh])
|
|
if test x"${TCLSH}" = x ; then
|
|
ac_cv_path_tclsh='';
|
|
else
|
|
ac_cv_path_tclsh="${TCLSH}";
|
|
fi
|
|
else
|
|
AC_MSG_RESULT(${ac_cv_path_tclsh})
|
|
TCLSH="${ac_cv_path_tclsh}"
|
|
AC_SUBST(TCLSH)
|
|
fi
|
|
])
|
|
|