man, 25 02 2008 kl. 05:59 +0900, skrev Tatsuro MATSUOKA:
> However I read carefully the error message in the linking symbol.oct.
> There happend a lot of undefined refrece errors.
> So I manually set 
> export LIBS='-lginac -lcln -lgmp'
> The the symbolic package have made well.
> 
> ./configure message told me, it found the ginac.
> There seems to be misconnection between ./configure to Makfile.in.
> 
> Anyway I have been able to success to build the symbolic-1.0.5 on mingw.
I don't really know the autotools, so I'm just doing some guess work.
Can you build with the attached files?

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
LIBS = -lginac -lcln -lgmp

%.o: %.cc ; $(MKOCTFILE) -c $<
%.oct: %.cc ; $(MKOCTFILE) $(LIBS) $<
-------------------------------------------------------------------------
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

Reply via email to