Re: Configure can't find library but g++ can

2007-07-07 Thread astro9672
> config.log contains the information how configure >tries to use the library. That solved it for me. Turns out that libical requires libpthread. Once I added a check for that the whole thing worked great. Thanks so much! Andy _

Re: Configure can't find library but g++ can

2007-07-07 Thread Andreas Schwab
astro9672 <[EMAIL PROTECTED]> writes: > # check for libcsv > AC_CHECK_LIB(csv, > main, > LIBS="$LIBS -lcsv", > AC_MSG_ERROR([*** libcsv library not found!]) > ) You should always quote nested macro invocations. AC_CHECK_LIB(csv, main, LIBS="$LIBS -lcsv",

Re: Configure can't find library but g++ can

2007-07-07 Thread Baurzhan Ismagulov
On Sat, Jul 07, 2007 at 12:19:20AM -0700, astro9672 wrote: > So I think the library is installed and I think I have > the syntax right but configure still says it cannot > find the library. config.log contains the information how configure tries to use the library. configure may fail to build the