Hi,
From what I understand your problems are related to the build system
(configure, make). Is this correct?
I had a quick look at the build system for the symbolic package, and
there's a lot of history in there. I tried to cut it down to the most
essential. Could you test if the package works if you use the attached
'configure.base' and 'Makeconf.in'?
Søren
dnl The configure script is generated by autogen.sh from configure.base
dnl and the various configure.add files in the source tree. Edit
dnl configure.base and reprocess rather than modifying ./configure.
AC_INIT(configure.base)
dnl Checking for ginac library
PKG_CHECK_MODULES(GINAC, ginac, , [AC_MSG_ERROR([GINAC not found])])
dnl Check for gmp library
AC_CHECK_LIB(gmp, __gmpz_init, , [AC_MSG_ERROR([GNU MP not found])])
## Makeconf is automatically generated from Makeconf.base and Makeconf.add
## in the various subdirectories. To regenerate, use ./autogen.sh to
## create a new ./Makeconf.in, then use ./configure to generate a new
## Makeconf.
MKOCTFILE = mkoctfile
%.o: %.c ; $(MKOCTFILE) -c $<
%.o: %.f ; $(MKOCTFILE) -c $<
%.o: %.cc ; $(MKOCTFILE) -c $<
%.oct: %.cc ; $(MKOCTFILE) $<
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Octave-dev mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/octave-dev