Use 80 instead of 8 (#1152)

sqlsrv_80_* or pdo_sqlsrv_80_* etc.
This commit is contained in:
Jenny Tam 2020-07-08 22:22:48 -07:00 committed by GitHub
parent 44b085f042
commit 0caf160cad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,7 +99,7 @@ class BuildUtil(object):
if self.vc == '':
VC = 'vc15'
version = self.version_label()
if version == '8': # Compiler version for PHP 8.0 or above
if version == '80': # Compiler version for PHP 8.0 or above
VC = 'vs16'
self.vc = VC
print('Compiler: ' + self.vc)