#699 closed enhancement (fixed)
pslib should refuse to build with version of libxml2 < 2.6
| Reported by: | jhoblitt | Owned by: | |
|---|---|---|---|
| Priority: | lowest | Milestone: | |
| Component: | build | Version: | 0.9.0 |
| Severity: | minor | Keywords: | |
| Cc: |
Description
libxml2 < 2.6 is missing functions that psLib uses. autoconf should check the
version being built against and bail out if a sufficient version isn't found.
Change History (4)
comment:1 by , 20 years ago
| Owner: | changed from to |
|---|
comment:2 by , 20 years ago
| blocked: | → 717 |
|---|
comment:3 by , 20 years ago
| Owner: | changed from to |
|---|
comment:4 by , 20 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.

This has been fixed by someone.
AC_MSG_CHECKING([xml2 version])
XML_VERSION=
xml2-config --versionXML_VERSION_major=
echo $XML_VERSION | ${PERL} -pe 's|^(\d+).*|\1|'XML_VERSION_minor=
echo $XML_VERSION | ${PERL} -pe 's|^(\d+)\.(\d+).*|\2|'dnl First test the minimum version of 2.6
$XML_VERSION_minor -lt 6 )
then
newer version or use --with-xml2-config to specify another location.])
else
fi