This repository has been archived by the owner on Jan 15, 2025. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(PA-5715) Download release tarballs for libxml2 and libxslt
Previously, we were using internally hosted libxml2 and libxslt tarballs to work around the fact that upstream source tarballs don't contain a configure script. There are two different issues preventing us from generating the configure script: 1. libxml2's configure.ac added a requirement on automake 1.16 to resolve an issue when building using python, but not all of our systems have 1.16 available: AM_INIT_AUTOMAKE([1.16.3 foreign no-dist-gzip dist-xz]) 2. We explicitly disable python, so the automake 1.16.3 requirement isn't actually needed: ./configure --prefix=/opt/puppetlabs/puppet --without-python ... In theory we could patch configure.ac and run `autoreconf -fi`, but we don't have new enough libtool installed on all of our systems. So just install the release tarballs that do contain a configure script.
- Loading branch information