diff options
author | dos-reis <gdr@axiomatics.org> | 2013-11-25 05:12:50 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2013-11-25 05:12:50 +0000 |
commit | d610364e2c1f450849d307886cada123b9a8717a (patch) | |
tree | 16427e84b153614bba45fad37997ac32929d703b /config | |
parent | e5d94bcc7b2394a2875177912329e4049adf3b88 (diff) | |
download | open-axiom-d610364e2c1f450849d307886cada123b9a8717a.tar.gz |
Check for Windows PowerShell.
Diffstat (limited to 'config')
-rw-r--r-- | config/open-axiom.m4 | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/config/open-axiom.m4 b/config/open-axiom.m4 index 44d5a4eb..35e963bc 100644 --- a/config/open-axiom.m4 +++ b/config/open-axiom.m4 @@ -21,6 +21,17 @@ AC_CHECK_TYPES([uintmax_t],[],[AC_TYPE_UINTMAX_T]) AC_TYPE_UID_T ]) +dnl --------------------------------------- +dnl -- OPENXIOM_CHECK_WINDOWS_POWERSHELL -- +dnl --------------------------------------- +dnl On Windows platforms check for availability of PowerShell. +AC_DEFUN([OPENAXIOM_CHECK_WINDOWS_POWERSHELL],[ +case $host in + *mingw*) + AC_PATH_PROG([OA_WINDOWS_POWERSHELL],[powershell.exe]) + ;; +esac +]) dnl ---------------------------------- dnl -- OPENAXIOM_REJECT_ROTTED_LISP -- @@ -34,7 +45,7 @@ if test x"$oa_include_gcl" != xyes; then openaxiom_lisp_version=`$AXIOM_LISP -batch -eval "(format t \"~S\" (lisp-implementation-version))"` AC_MSG_RESULT([$openaxiom_lisp_version]) case $openaxiom_lisp_version in - *2.6.7*|*2.6.8*|*2.6.9*) ;; # OK + *2.6.7*|*2.6.8*|*2.6.9*|*2.6.10*) ;; # OK *) AC_MSG_WARN([$openaxiom_lisp_version is not supported by this version of OpenAxiom.]) ;; |