* autoconf macros
@ 2017-03-13 11:42 Catonano
2017-03-13 11:49 ` Catonano
0 siblings, 1 reply; 2+ messages in thread
From: Catonano @ 2017-03-13 11:42 UTC (permalink / raw)
To: guile-user
Hello,
I copied an example of autoconf macros for an ideal guile based project
from the guile manual
Only, instead of verifying if pgp is present, I would like to verify if
wiredtiger is present
So this is the excerpt from the manual
# gpgutils
AC_PATH_PROG(GNUPG,gpg)
test x"$GNUPG" = x &&
probably_wont_work="(my gpgutils) $probably_wont_work"
And this is what I'd like
# wiredtiger
AC_PATH_PROG(WIREDTIGER,wt)
test x"$wt = x &&
probably_wont_work="(my-wiredtiger-dependant-module)
$probably_wont_work"
So I put this in the config.ac file in a dummy project folder, I run
aclocal and autoconf
A configure file and and "autom4te.cache" folder appeared
But the configure file is empty
Am I doing anything wrong ?
Thanks for any hint
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: autoconf macros
2017-03-13 11:42 autoconf macros Catonano
@ 2017-03-13 11:49 ` Catonano
0 siblings, 0 replies; 2+ messages in thread
From: Catonano @ 2017-03-13 11:49 UTC (permalink / raw)
To: guile-user
Ah the INIT was missing !
Now the configure file is populated !
Sorry for the fuss
2017-03-13 12:42 GMT+01:00 Catonano <catonano@gmail.com>:
> Hello,
>
> I copied an example of autoconf macros for an ideal guile based project
> from the guile manual
>
> Only, instead of verifying if pgp is present, I would like to verify if
> wiredtiger is present
>
> So this is the excerpt from the manual
>
> # gpgutils
> AC_PATH_PROG(GNUPG,gpg)
> test x"$GNUPG" = x &&
> probably_wont_work="(my gpgutils) $probably_wont_work"
>
>
> And this is what I'd like
>
> # wiredtiger
> AC_PATH_PROG(WIREDTIGER,wt)
> test x"$wt = x &&
> probably_wont_work="(my-wiredtiger-dependant-module)
> $probably_wont_work"
>
> So I put this in the config.ac file in a dummy project folder, I run
> aclocal and autoconf
>
> A configure file and and "autom4te.cache" folder appeared
>
> But the configure file is empty
>
> Am I doing anything wrong ?
>
> Thanks for any hint
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-03-13 11:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-13 11:42 autoconf macros Catonano
2017-03-13 11:49 ` Catonano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).