|
From: Robert D. <rob...@gm...> - 2015-02-23 18:35:32
|
On 2015-02-23, z_axis <z_...@16...> wrote: > $cat src/autoconf-variables.lisp > ; -*- Lisp -*- > (in-package :maxima) > > (defparameter *autoconf-variables-set* "@variables_set@") > (defparameter *autoconf-prefix* "/home/***/maxima") > (defparameter *autoconf-exec_prefix* "/home/***/maxima") > (defparameter *autoconf-package* "maxima") > (defparameter *autoconf-version* "branch_5_35_base_180_ga5701f5_dirty") > (defparameter *autoconf-libdir* "") > (defparameter *autoconf-libexecdir* "") > (defparameter *autoconf-datadir* "") > (defparameter *autoconf-infodir* "") > (defparameter *autoconf-host* "i386-unknown-openbsd5.6") > (defparameter *autoconf-win32* "false") > (defparameter *autoconf-ld-flags* "") > > (defparameter *maxima-source-root* "/mnt/D/RnD/maxima") > (defparameter *maxima-default-layout-autotools* "true") Thanks for this info. It appears that libdir, libexecdir, datadir, and infodir are set incorrectly. I'll investigate that. But there is a work-around; can you try this? export MAXIMA_PREFIX=/home/***/maxima /path/to/maxima There is some code in src/init-cl.lisp to assign values to libdir, etc based on the environment variable MAXIMA_PREFIX. But there is also some MAXIMA_PREFIX hackery in the scripts to launch Maxima; I hope your assignment to MAXIMA_PREFIX prevails. By the way, do I understand correctly that *** is actually some real directory which has been obscured? best Robert Dodier |