Re: [kaffe] --enable-pure-java-math not working yet

2003-02-03 Thread Dalibor Topic
Hi Tim,

--- Timothy Stack [EMAIL PROTECTED] wrote:
  Yeah, I've just seen it yesterday, too, and had a
  patch handy ;)
  
  thanks, I've checked in a fix, that does pretty
 much
  what you proposed.
 
 Now it doesn't work the other way ;)...   This line
 in configure.in:
 
 

MATH_LIB=$(top_builddir)/libraries/clib/math/libmath.la
 
 needs to look like this:
 


MATH_LIB=\$(top_builddir)/libraries/clib/math/libmath.la
 
 Otherwise top_builddir doesn't resolve so MATH_LIB
 has a value of 
  /libraries/clib/math/libmath.la
 

Thanks for catching that one again ;) I've checked in
your fix.

cheers,
dalibor topic

__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

___
kaffe mailing list
[EMAIL PROTECTED]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe



Re: [kaffe] --enable-pure-java-math not working yet

2003-01-24 Thread Timothy Stack
 Yeah, I've just seen it yesterday, too, and had a
 patch handy ;)
 
 thanks, I've checked in a fix, that does pretty much
 what you proposed.

Now it doesn't work the other way ;)...   This line in configure.in:

MATH_LIB=$(top_builddir)/libraries/clib/math/libmath.la

needs to look like this:

MATH_LIB=\$(top_builddir)/libraries/clib/math/libmath.la

Otherwise top_builddir doesn't resolve so MATH_LIB has a value of 
 /libraries/clib/math/libmath.la

 cheers,
 dalibor topic

thanks,

tim

___
kaffe mailing list
[EMAIL PROTECTED]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe



[kaffe] --enable-pure-java-math not working yet

2003-01-23 Thread Timothy Stack

hi,

The --enable-pure-java-math option doesn't seem to work quite right yet.  
When trying to link the main executable it can't find libmath since it was 
edited out of the build process.  I think you just need to change 
configure.in to leave libmath out of the JAVA_LIBS variable if pure java 
math is turned on.

JAVA_LIBS= \
\$(top_builddir)/libraries/clib/native/libnative.la \
\$(top_builddir)/libraries/clib/net/libnet.la \
\$(top_builddir)/libraries/clib/io/libio.la \
\$(top_builddir)/libraries/clib/zip/libzip.la \
\$(top_builddir)/libraries/clib/math/libmath.la \
\$(top_builddir)/libraries/clib/management/libmanagement.la \
\$(top_builddir)/libraries/clib/security/libsecurity.la \
\$(top_builddir)/libraries/extensions/microsoft/clib/libmicrosoft.la \
$AWT_LIB \
$JAVA_LIBS \


changes to:

JAVA_LIBS= \
\$(top_builddir)/libraries/clib/native/libnative.la \
\$(top_builddir)/libraries/clib/net/libnet.la \
\$(top_builddir)/libraries/clib/io/libio.la \
\$(top_builddir)/libraries/clib/zip/libzip.la \
$MATH_LIB \
\$(top_builddir)/libraries/clib/management/libmanagement.la \
\$(top_builddir)/libraries/clib/security/libsecurity.la \
\$(top_builddir)/libraries/extensions/microsoft/clib/libmicrosoft.la \
$AWT_LIB \
$JAVA_LIBS \


(I'd submit a patch but i hate messing with autoconf/automake stuff...)

thanks,

tim stack

___
kaffe mailing list
[EMAIL PROTECTED]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe