Broken zlib detection on OpenSUSE
stefan6419846 opened this issue · 2 comments
stefan6419846 commented
I tried to build the package on OpenSUSE 15.4, but for some reasons I got told:
checking for library containing gzgets... no
configure: error: HTMLDOC requires zlib.
After changing the offending line of configure.ac
from
Line 236 in 055acba
AS_IF([$PKGCONFIG --exists zlib], [
and regenerating the configure
script, everything worked fine afterwards.
michaelrsweet commented
Not every OS uses pkg-config, so we need to use the AC_SEARCH_LIBS if there is no zlib package file.
michaelrsweet commented