|
From: z_axis <z_...@16...> - 2015-02-23 03:28:29
|
>>What is the output of "cat src/autoconf-variables.lisp" ? Are you building from a tarball or from Git? or something else? I am building maxima from Git on OpenBSD-5.6. $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") >>Gunter Königsmann Both ./configure --prefix="/home/***/maxima/" --enable-sbcl --with-sbcl=/usr/local/bin/sbcl and ./configure --prefix=/home/***/maxima/ --enable-sbcl --with-sbcl=/usr/local/bin/sbcl report in the end: gmake[1]: Entering directory '/mnt/D/RnD/maxima/demo' gmake[1]: *** No rule to make target '*.dem', needed by 'all-am'。 停止。 gmake[1]: Leaving directory '/mnt/D/RnD/maxima/demo' Makefile:438: recipe for target 'all-recursive' failed gmake: *** [all-recursive] Error 1 After `gmake install`, it fails too. BTW, i ever built maxima on FreeBSD successfully before. But not on OpenBSD. $uname -a OpenBSD ob56.zsoft.com 5.6 GENERIC.MP#299 i386 Regards! |