make: Remove libtool version check in configure.py.
authorBradley Sepos <bradley@bradleysepos.com>
Fri, 4 Oct 2019 19:19:21 +0000 (15:19 -0400)
committerBradley Sepos <bradley@bradleysepos.com>
Fri, 4 Oct 2019 19:19:31 +0000 (15:19 -0400)
Apple's libtool does not have a version check. All supported systems support current GNU libtool which is four years old, anyway.

make/configure.py

index db0e7315d8a2bb448503efdcaf26d553f3effec4..b16868538bb64186180ce0bc0434d08b164b1de6 100644 (file)
@@ -1604,7 +1604,7 @@ try:
 
         autoconf   = ToolProbe( 'AUTOCONF.exe',   'autoconf',   'autoconf', abort=True, minversion=[2,69,0] )
         automake   = ToolProbe( 'AUTOMAKE.exe',   'automake',   'automake', abort=True, minversion=[1,16,0] )
-        libtool    = ToolProbe( 'LIBTOOL.exe',    'libtool',    'libtool', abort=True, minversion=[2,4,6] )
+        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,2] )