diff options
author | Bradley Sepos <[email protected]> | 2020-03-26 13:15:47 -0400 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2020-03-26 13:17:40 -0400 |
commit | 1772b242f7b6a3856b2d58bbec0c74abaa77a225 (patch) | |
tree | afff711d88e090293fba5d003944fc33caa27b32 | |
parent | 4ba88e72b42f9300f5a90d86843155e4430b64f5 (diff) |
make: Relax automake and pkg-config version requirements.
Affects older systems like CentOS 7. These were stricter than needed.
(cherry picked from commit eed5cbdd841ea1a86ad104eb02ee38d8e462dd07)
-rw-r--r-- | make/configure.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/make/configure.py b/make/configure.py index 86dd6c119..81d610622 100644 --- a/make/configure.py +++ b/make/configure.py @@ -1603,11 +1603,10 @@ try: gmake = ToolProbe( 'GMAKE.exe', 'make', 'gmake', 'make', abort=True ) autoconf = ToolProbe( 'AUTOCONF.exe', 'autoconf', 'autoconf', abort=True, minversion=[2,69,0] ) - automake = ToolProbe( 'AUTOMAKE.exe', 'automake', 'automake', abort=True, minversion=[1,15,0] ) + automake = ToolProbe( 'AUTOMAKE.exe', 'automake', 'automake', abort=True, minversion=[1,13,0] ) libtool = ToolProbe( 'LIBTOOL.exe', 'libtool', 'libtool', abort=True ) lipo = ToolProbe( 'LIPO.exe', 'lipo', 'lipo', abort=False ) - pkgconfig = ToolProbe( 'PKGCONFIG.exe', 'pkgconfig', 'pkg-config', abort=True, minversion=[0,29,0] ) - + pkgconfig = ToolProbe( 'PKGCONFIG.exe', 'pkgconfig', 'pkg-config', abort=True, minversion=[0,27,0] ) meson = ToolProbe( 'MESON.exe', 'meson', 'meson', abort=True, minversion=[0,47,0] ) nasm = ToolProbe( 'NASM.exe', 'asm', 'nasm', abort=True, minversion=[2,13,0] ) ninja = ToolProbe( 'NINJA.exe', 'ninja', 'ninja-build', 'ninja', abort=True ) |