Hi,

I use AS_IF in a macro and got problem today when compiled with Autoconf 2.59 because

AS_IF([a],[b],[c],[d],[e])

expanded to

if a; then
 b
else
 c
fi

I wonder if anyone knows which version I need to require to get the expected expansion

if a; then :
 b
elif c; then :
 d
else
 e
fi


Thanks,
Peter


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

Reply via email to