Guys, with Ubuntu Server 18.04 I've got the following message when
executing ./autogen.sh:

# ./autogen.sh
autoheader: warning: missing template: LIBPROXY_HDR
autoheader: Use AC_DEFINE([LIBPROXY_HDR], [], [Description])

So the configure file is not finally generated. I had pkg-config
package installed in its last version

It seems that's happening to more people in other distros:


I've got to solve it by passing the description argument when defining
the LIBPROXY_HDR library. So if you've got:

AC_DEFINE([LIBPROXY_HDR], ["proxy.h"])

You need to change it to:
AC_DEFINE([LIBPROXY_HDR], ["proxy.h"], [libproxy header file])

This is at lines 729 and 735 of  "configure . ac" file.

- Is there any reason to not pass the description argument in these 2 cases?
- Would it be appropriate to make this change on master?

_______________________________________________
openconnect-devel mailing list
[email protected]
http://lists.infradead.org/mailman/listinfo/openconnect-devel

Reply via email to