/usr/share/maxima/5.41.0/src/autoconf-variables.lisp is in maxima-src 5.41.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | ; -*- Lisp -*-
(in-package :maxima)
(defparameter *autoconf-variables-set* "@variables_set@")
(defparameter *autoconf-prefix* "/usr")
(defparameter *autoconf-exec_prefix* "/usr")
(defparameter *autoconf-package* "maxima")
(defparameter *autoconf-version* "5.41.0")
(defparameter *autoconf-libdir* "/usr/lib")
(defparameter *autoconf-libexecdir* "/usr/lib")
(defparameter *autoconf-datadir* "/usr/share")
(defparameter *autoconf-infodir* "/usr/share/info")
(defparameter *autoconf-host* "x86_64-pc-linux-gnu")
;; This variable is kept for backwards compatibiliy 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* "false")
(defparameter *autoconf-windows* "false")
(defparameter *autoconf-ld-flags* "")
;; 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* "/build/maxima-da47eT/maxima-5.41.0")
(defparameter *maxima-default-layout-autotools* "true")
|