Re: Autoconf Digest, Vol 3, Issue 18

2003-02-13 Thread Fred Cook
[EMAIL PROTECTED] wrote: > Send Autoconf mailing list submissions to > [EMAIL PROTECTED] > > To subscribe or unsubscribe via the World Wide Web, visit > http://mail.gnu.org/mailman/listinfo/autoconf > or, via email, send a message with subject or body 'help' to > [EMAIL PRO

Re: Autoconf Digest, Vol 3, Issue 18

2003-02-13 Thread Paul Eggert
Fred Cook <[EMAIL PROTECTED]> writes: > What you are saying is to gen a test program and have gcc 3.2.1 > compile/link it with python and if it fails then gen an error > message and quit. Yes, that's the ticket. > This is all OK, but it maybe easier to upgrade to python 2.2 and be > done with it

Re: Autoconf Digest, Vol 3, Issue 18

2003-02-13 Thread Paul Eggert
Dan Kegel <[EMAIL PROTECTED]> writes: > What about 3.2.2? Is it higher quality in your opinion? 3.2.2 still miscompiles Samba on sparc with -O2, so I'm still leery I'm afraid. If your program is simple, and doesn't have procedures with lots of arguments, some of which are "double" or "long long

Re: Autoconf Digest, Vol 3, Issue 18

2003-02-13 Thread Dan Kegel
Paul Eggert wrote: Dan Kegel <[EMAIL PROTECTED]> writes: What about 3.2.2? Is it higher quality in your opinion? 3.2.2 still miscompiles Samba on sparc with -O2, so I'm still leery I'm afraid. ... I'd trust it to compile "cat", say Now there's a vote of confidence. I guess it's time to

How do I make a portable test??

2003-02-13 Thread Dr. David Kirkby
Hi, I have written a package http://atlc.sourceforge.net/ which ideally would like to link in with the gsl scientific library, although it can be configured without it. I want to: a) Test for the presence of some gsl library header files b) Test for the presence of some gsl library files.

Re: How do I make a portable test??

2003-02-13 Thread John Burger
From: "Dr. David Kirkby" <[EMAIL PROTECTED]> [Much elided] dnl something here generates an error: dnl "test: ==: unexpected operator" on a Sun running NetBSD 1.6 if test $gsl_inc_count == 0 && test $gsl_lib_count == 0; then gsl_not_installed=1 elif test $gsl_inc_count != 2 || test $gsl_lib_c

Re: How do I make a portable test??

2003-02-13 Thread Eric Siegerman
On Fri, Feb 14, 2003 at 02:11:37AM +, Dr. David Kirkby wrote: > "test: ==: unexpected operator" on a Sun running NetBSD 1.6 "==" is indeed unexpected :-) Bourne shell doesn't support it; I don't believe ksh does either. It looks like a bash extension, in which shell it does pattern matching

configure.ac

2003-02-13 Thread Bob Lockie
I am trying to create a configure.ac but I'm having trouble. When I put the following code in I get a warning. if test "x$enable_ogglibs" = xyes; then dnl Libraries required for reading ogg tags, if not found 'enable_ogglibs' is disabled AC_CHECK_L