<div dir="ltr">Hi,<div>I've a slackware user for 21 years and only just had to turn to this list.</div><div><br></div><div>perl-xml-libxml is not compiling in current.  It does compile in 15.0.</div><div><br></div><div>I posted this on the sticky at linuxquestions and ponce replied:</div><div><br></div><div><span style="color:rgb(0,0,0);font-family:Verdana,Arial,Helvetica,sans-serif;font-size:13.3333px;background-color:rgb(207,217,255)">> unfortunately perl-xml-libxml is unmaintained also on 15.0 (last version is from </span></div><div><span style="color:rgb(0,0,0);font-family:Verdana,Arial,Helvetica,sans-serif;font-size:13.3333px;background-color:rgb(207,217,255)">> 2019) and that version is incompatible with the newer libxml2 in current: </span></div><div><span style="color:rgb(0,0,0);font-family:Verdana,Arial,Helvetica,sans-serif;font-size:13.3333px;background-color:rgb(207,217,255)">> probably newer versions would work (with patches) but they depends on</span></div><div><span style="color:rgb(0,0,0);font-family:Verdana,Arial,Helvetica,sans-serif;font-size:13.3333px;background-color:rgb(207,217,255)">> perl-alien-libxml, that in turn depend on perl-alien-build and other perl packages </span></div><div><span style="color:rgb(0,0,0);font-family:Verdana,Arial,Helvetica,sans-serif;font-size:13.3333px;background-color:rgb(207,217,255)">> not available on SBo (and I cannot submit a bunch of perl packages that I have </span></div><div><span style="color:rgb(0,0,0);font-family:Verdana,Arial,Helvetica,sans-serif;font-size:13.3333px;background-color:rgb(207,217,255)">> to maintain from now on for an unmaintained script)...</span></div><div><br style="color:rgb(0,0,0);font-family:Verdana,Arial,Helvetica,sans-serif;font-size:13.3333px;background-color:rgb(207,217,255)"><span style="color:rgb(0,0,0);font-family:Verdana,Arial,Helvetica,sans-serif;font-size:13.3333px;background-color:rgb(207,217,255)">>long story short perl-xml-libxml needs to be updated by a new maintainer but on </span></div><div><span style="color:rgb(0,0,0);font-family:Verdana,Arial,Helvetica,sans-serif;font-size:13.3333px;background-color:rgb(207,217,255)">> SBo, not in this repository, I suggest you to write to the slackbuilds-users </span></div><div><span style="color:rgb(0,0,0);font-family:Verdana,Arial,Helvetica,sans-serif;font-size:13.3333px;background-color:rgb(207,217,255)">> mailing </span><span style="background-color:rgb(207,217,255);color:rgb(0,0,0);font-family:Verdana,Arial,Helvetica,sans-serif;font-size:13.3333px">list to ask for someone to step in: if useful to clarify what is needed, feel </span></div><div><span style="background-color:rgb(207,217,255);color:rgb(0,0,0);font-family:Verdana,Arial,Helvetica,sans-serif;font-size:13.3333px">> free to quote as-is what I wrote in the preceding paragraph.</span></div><div><span style="background-color:rgb(207,217,255);color:rgb(0,0,0);font-family:Verdana,Arial,Helvetica,sans-serif;font-size:13.3333px"><br></span></div><div>I understand that quite a few scripts depend on it.<br></div><div><br></div><div>The problem is that libxml2 isn't found despite, as far as I can see it being present an correct</div><div><br>> Checking for ability to link against xml2...no<br>> libxml2, zlib, and/or the Math library (-lm) have not been found.<br>> Try setting LIBS and INC values on the command line<br>> Or get libxml2 from<br>> <a href="http://xmlsoft.org/">http://xmlsoft.org/</a><br>> If you install via RPMs, make sure you also install the -devel<br>> RPMs, as this is where the headers (.h files) are.</div><div><br></div><div>I wonder if it is the following bit of code that is problematic in the Makefile but I don't know how to proceed further.</div><div><br></div><div>sub _libxml_check_lib {<br>    my ($libname) = @_;<br><br>    if (defined($config_LIBS_alternatives)) {<br>        foreach my $conf_LIBS (@$config_LIBS_alternatives) {<br>            if (_libxml_check_lib_with_config_LIBs($libname, $conf_LIBS)) {<br>                $config{LIBS} = $conf_LIBS;<br>                return 1;<br>            }<br>        }<br>    }<br>    else {<br>        return _libxml_check_lib_with_config_LIBs($libname, $config{LIBS});<br>    }<br>}<br><br>print "Checking for ability to link against xml2...";<br>if ( _libxml_check_lib('xml2') ) {<br>    print "yes\n";<br>}</div><div><br></div><div>I</div></div>