feat(odbc): add odbc module support

This commit is contained in:
Javier Bértoli 2019-12-09 12:12:43 -03:00
parent 6492871770
commit 8b69034c5b
2 changed files with 6 additions and 0 deletions

View File

@ -71,6 +71,7 @@
'net4': 'php-net-ipv4', 'net4': 'php-net-ipv4',
'net6': 'php-net-ipv6', 'net6': 'php-net-ipv6',
'oauth': 'php-oauth', 'oauth': 'php-oauth',
'odbc': 'php-odbc',
'opcache': 'php' + php_version + '-opcache', 'opcache': 'php' + php_version + '-opcache',
'pear': 'php-pear', 'pear': 'php-pear',
'pgsql': 'php' + php_version + '-pgsql', 'pgsql': 'php' + php_version + '-pgsql',
@ -764,6 +765,7 @@
'net4': 'php-net-ipv4', 'net4': 'php-net-ipv4',
'net6': 'php-net-ipv6', 'net6': 'php-net-ipv6',
'oauth': 'php-oauth', 'oauth': 'php-oauth',
'odbc': 'php-odbc',
'opcache': 'php7.2-opcache', 'opcache': 'php7.2-opcache',
'pear': 'php-pear', 'pear': 'php-pear',
'pgsql': 'php-pgsql', 'pgsql': 'php-pgsql',
@ -2377,6 +2379,7 @@
'net4': 'php-net-ipv4', 'net4': 'php-net-ipv4',
'net6': 'php-net-ipv6', 'net6': 'php-net-ipv6',
'oauth': 'php-oauth', 'oauth': 'php-oauth',
'odbc': 'php-odbc',
'opcache': 'php' + php_version + '-opcache', 'opcache': 'php' + php_version + '-opcache',
'pear': 'php-pear', 'pear': 'php-pear',
'pgsql': 'php' + php_version + '-pgsql', 'pgsql': 'php' + php_version + '-pgsql',
@ -2740,6 +2743,7 @@
'net4': 'php-net-ipv4', 'net4': 'php-net-ipv4',
'net6': 'php-net-ipv6', 'net6': 'php-net-ipv6',
'oauth': 'php5-oauth', 'oauth': 'php5-oauth',
'odbc': 'php-odbc',
'opcache': 'php5', 'opcache': 'php5',
'pear': 'php-pear', 'pear': 'php-pear',
'pgsql': 'php5-pgsql', 'pgsql': 'php5-pgsql',

2
php/odbc.sls Normal file
View File

@ -0,0 +1,2 @@
{% set state = 'odbc' %}
{% include "php/installed.jinja" %}