On 03/31/2014 12:48 PM, Philipp Thomas wrote: > I have a configure.ac as attached. If I run autoreconf -fi on this file it > stops with 'configure.ac:23: error: possibly undefined macro: AC_DEFINE' > but at least I see no error in that line. But if I remove the following > block beginning with 'AC_ARG_WITH([resolve-neigh],' everything runs without > problems. Can anyboy help me spot the error?
AC_ARG_WITH([resolve-neigh],
AC_HELP_STRING([--with-resolve-neigh],
[Enable neighbour resolution in Ethernet (default YES)]))
Underquoted.
You meant to write:
AC_ARG_WITH([resolve-neigh],
[AC_HELP_STRING([--with-resolve-neigh],
[Enable neighbour resolution in Ethernet (default YES)])])
--
Eric Blake eblake redhat com +1-919-301-3266
Libvirt virtualization library http://libvirt.org
signature.asc
Description: OpenPGP digital signature
_______________________________________________ Autoconf mailing list [email protected] https://lists.gnu.org/mailman/listinfo/autoconf
