Henrik Nordstrom wrote:
On fre, 2007-08-17 at 14:23 +1200, Amos Jeffries wrote:
Thanks Henrik.
I couldn't find the AC_REPLACE_FUNCS outside a special library test
(there is a long list for header file checks).
???
my configure.in reads
AC_SUBST(LIBREGEX)
AC_REPLACE_FUNCS(\
drand48
On fre, 2007-08-17 at 14:23 +1200, Amos Jeffries wrote:
>
> Thanks Henrik.
> I couldn't find the AC_REPLACE_FUNCS outside a special library test
> (there is a long list for header file checks).
???
my configure.in reads
AC_SUBST(LIBREGEX)
AC_REPLACE_FUNCS(\
drand48 \
tempnam
> On tor, 2007-08-16 at 23:51 +1200, Amos Jeffries wrote:
>> Is anyone able to help me with this configure problem?
>>
>> The goal is to have it test for a functions existence and if present
>> define HAVE_function and add lib/function.$obj to the compile options.
>>
>> As far as I understand autoc
On tor, 2007-08-16 at 23:51 +1200, Amos Jeffries wrote:
> Is anyone able to help me with this configure problem?
>
> The goal is to have it test for a functions existence and if present
> define HAVE_function and add lib/function.$obj to the compile options.
>
> As far as I understand autoconf;
Never mind. 5 mins more thought found a working solution.
Amos
Is anyone able to help me with this configure problem?
The goal is to have it test for a functions existence and if present
define HAVE_function and add lib/function.$obj to the compile options.
As far as I understand autoconf; I thought these checks as written below
would do exactly that bu