make test

2011-01-26 Thread Eve-Marie Devaliere
Dear autoconf community, I am switching a program from the 'old makefile/configure way' to autoconf... I got configure and make and make install to work but would like to now add the tests that were happening by running 'make test'... (run-time tests) I have searched the web and I came across A

Re: make test

2011-01-26 Thread Frank Lahm
Hi, 2011/1/26 Eve-Marie Devaliere : > Dear autoconf community, > > I am switching a program from the 'old makefile/configure way' to > autoconf... > > I got configure and make and make install to work but would like to now > add the tests that were happening by running 'make test'... (run-time tes

Re: make test

2011-01-26 Thread Eric Blake
On 01/26/2011 08:55 AM, Eve-Marie Devaliere wrote: > Dear autoconf community, > > I am switching a program from the 'old makefile/configure way' to > autoconf... > > I got configure and make and make install to work but would like to now > add the tests that were happening by running 'make test'.

Check for global symbol

2011-01-26 Thread Sergio Belkin
Hi, Is there a way to check is a library function is global? Thanks in advance! -- -- Sergio Belkin  http://www.sergiobelkin.com Watch More TV http://sebelk.blogspot.com LPIC-2 Certified ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org

Re: make test

2011-01-26 Thread Eve-Marie Devaliere
Thanks Frank and Eric for the prompt replies! > Autoconf includes the 'autotest' language, which parses a new file > tests.at to build up a (shell script) testsuite; as well as > documentation for a couple of hooks to add in configure.ac and your > Makefile to run such a testsuite. Such tests nee

Re: Check for global symbol

2011-01-26 Thread tom fogal
Sergio Belkin writes: > Hi, > > Is there a way to check is a library function is global? AC_TRY_COMPILE(..., [extern rettype funcname(args);], [funcname(...);] ) ? ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/lis

Re: Check for global symbol

2011-01-26 Thread Peter O'Gorman
On 01/26/2011 01:15 PM, tom fogal wrote: Sergio Belkin writes: Hi, Is there a way to check is a library function is global? AC_TRY_COMPILE(..., [extern rettype funcname(args);], [funcname(...);] ) This would need to be AC_TRY_LINK, but it's possible to just use AC_CHECK_LI

Re: make test

2011-01-26 Thread Ralf Wildenhues
Hello Eve-Marie, * Eve-Marie Devaliere wrote on Wed, Jan 26, 2011 at 05:39:35PM CET: > > http://www.gnu.org/software/automake/manual/automake.html#Tests > Yes, Frank pointed me to that and I was just having a look... Thanks, I > think this is what I am looking for. I am still trying to figure out

Re: Check for global symbol

2011-01-26 Thread tom fogal
Please keep mailing list topics on.. the mailing list :) -tom Sergio Belkin writes: > 2011/1/26 tom fogal : > > AC_TRY_COMPILE > > Thanks, I forgot to say that I'd want to check if the symbol ig global > and is in the text code. > > How can I do that? _

Re: Check for global symbol

2011-01-26 Thread Sergio Belkin
2011/1/26 tom fogal : > Please keep mailing list topics on.. the mailing list :) > > -tom > > Sergio Belkin writes: >> 2011/1/26 tom fogal : >> > AC_TRY_COMPILE >> >> Thanks, I forgot to say that I'd want to check if the symbol ig global >> and is in the text code. >> >> How can I do that? > Oh S