; -*- Lisp -*- (in-package :maxima) (defparameter *autoconf-prefix* "@prefix@") (defparameter *autoconf-exec_prefix* "@expanded_exec_prefix@") (defparameter *autoconf-package* "@PACKAGE@") (defparameter *autoconf-version* "@VERSION@") (defparameter *autoconf-libdir* "@expanded_libdir@") (defparameter *autoconf-libexecdir* "@expanded_libexecdir@") (defparameter *autoconf-datadir* "@expanded_datadir@") (defparameter *autoconf-infodir* "@expanded_infodir@") (defparameter *autoconf-host* "@host@") ;; This variable is kept for backwards compatibility reasons: ;; We seem to be in the fortunate position that we sometimes need to check for windows. ;; But at least until dec 2015 we didn't need to check for a specific windows flavour. (defparameter *autoconf-win32* "@win32@") (defparameter *autoconf-windows* "@win32@") (defparameter *autoconf-ld-flags* "@LDFLAGS@") ;; This will be T if this was a lisp-only build (defparameter *autoconf-lisp-only-build* (eq t '@lisp_only_build@)) (defparameter *maxima-source-root* "@expanded_top_srcdir@") (defparameter *maxima-default-layout-autotools* "@default_layout_autotools@")