On Tue Sep 27 21:36:14 2022 +0000, **** wrote:
Zebediah Figura replied on the mailing list:
On 9/27/22 16:20, Erich E. Hoover wrote: > diff --git a/configure.ac b/configure.ac > index 1e733962b75..be8a8e81684 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -635,6 +635,8 @@ AC_CHECK_HEADERS([libprocstat.h],,, > #include <sys/queue.h> > #endif]) > > +AC_CHECK_HEADERS(sys/xattr.h, [HAVE_XATTR=1]) > + > dnl **** Check for working dll **** > > AC_SUBST(DLLFLAGS,"") You're not using HAVE_XATTR anywhere, so you can get rid of that (and fold this into the other AC_CHECK_HEADERS checks).
Good point. Now fixed.