* Scott Hawley wrote on Mon, Sep 06, 2004 at 10:41:35PM CEST:
> >>Hi, is there a way I can tell autoconf/configure WHERE to look for 
> >>files, e.g. via a LIB_PATHS environment variable?  I've been reading 
> >>documentation and haven't found this info.
> >
> >Read the file "INSTALL" for just about any GNU package (e.g. the 
> >package known as "Autoconf") and you will find the information you are 
> >looking for.  You will also find this information in the GNU 
> >programming standards manual.

Oh well.  Bob unfortunately just used one of the few packages which do
not make use of a C compiler as an example.  So that special configure
did not tell you about CPPFLAGS and LDFLAGS.

Well, just try this (assuming you have a working Autoconf package
installed):
$ cat > configure.ac << EOF
AC_INIT(bla, 0.1, [EMAIL PROTECTED])
AC_PROG_CC
AC_OUTPUT
EOF
$ autoconf
$ ./configure --help

And it will tell you.

Regards,
Ralf


_______________________________________________
Autoconf mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/autoconf

Reply via email to