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

_______________________________________________
Autoconf mailing list
Autoconf@gnu.org
https://lists.gnu.org/mailman/listinfo/autoconf

Reply via email to