autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Issues using autoconf or automake


From: Patrick Welche
Subject: Re: Issues using autoconf or automake
Date: Tue, 11 Mar 2014 08:19:13 +0000
User-agent: Mutt/1.5.22 (2013-10-16)

On Mon, Mar 10, 2014 at 09:07:20PM -0700, Jim Galarowicz wrote:
...
>  cd . && automake-1.13 --foreign
> Makefile.am:63: error: HAVE_QTLIB does not appear in AM_CONDITIONAL

In

http://openss.cvs.sourceforge.net/viewvc/openss/OpenSpeedShop/m4/ax_qt3.m4?revision=1.2&view=markup

I see

   if test $found_all_qt -eq 0; then
           ...
           AM_CONDITIONAL(HAVE_QTLIB, false)
   fi

   if test $found_all_qt -eq 1; then
           AM_CONDITIONAL(HAVE_QTLIB, true)
           ...
   fi

This should read

   if test $found_all_qt -eq 0; then
           ...
   fi

   if test $found_all_qt -eq 1; then
           ...
   fi
   AM_CONDITIONAL([HAVE_QTLIB], [test $found_all_qt -eq 1])

I suspect that the other cases are similar...

Cheers,

Patrick



reply via email to

[Prev in Thread] Current Thread [Next in Thread]