Re: xmlParseMemory() and xmlParseMemory gone rawhide?

2023-11-19 Thread Leigh Scott
Try adding this to the file #include -- ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/

Re: xmlParseMemory() and xmlParseMemory gone rawhide?

2023-11-18 Thread Steve Dickson
On 11/18/23 12:39 PM, Dan Horák wrote: On Sat, 18 Nov 2023 12:30:04 -0500 Steve Dickson wrote: Hello, When building an nfs-utils rpm in rawhide I get the following errors: xml.c: In function ‘junction_parse_xml_buf’: xml.c:293:15: error: implicit declaration of function ‘xmlParseMemory’

Re: xmlParseMemory() and xmlParseMemory gone rawhide?

2023-11-18 Thread Dan Horák
On Sat, 18 Nov 2023 12:30:04 -0500 Steve Dickson wrote: > Hello, > > When building an nfs-utils rpm in rawhide > I get the following errors: > > xml.c: In function ‘junction_parse_xml_buf’: > xml.c:293:15: error: implicit declaration of function ‘xmlParseMemory’ >

xmlParseMemory() and xmlParseMemory gone rawhide?

2023-11-18 Thread Steve Dickson
Hello, When building an nfs-utils rpm in rawhide I get the following errors: xml.c: In function ‘junction_parse_xml_buf’: xml.c:293:15: error: implicit declaration of function ‘xmlParseMemory’ [-Werror=implicit-function-declaration] 293 | tmp = xmlParseMemory(buf, (int)len); |