diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2018-09-02 09:57:35 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-09-02 15:28:34 +0200 |
commit | 45215ffc8a75377228a477bebbf2ad9c78d40a35 (patch) | |
tree | 1cacf39d0b0358cb2fef96a784eea043b62b44e3 | |
parent | ed0e55675eaf91e61d8004128169cb195a4fb72a (diff) | |
download | buildroot-45215ffc8a75377228a477bebbf2ad9c78d40a35.tar.gz buildroot-45215ffc8a75377228a477bebbf2ad9c78d40a35.zip |
php: pdo mysql extension needs hash as well
Fixes:
http://autobuild.buildroot.net/results/69cf9326539c8df8fa50c5e7acb2ce3bb985ede2/
The PDO mysql extension also needs the hash extension - so select it,
similar to how it was done for the mysqli extension in commit 65f96452636
(php: fix build with mysqli).
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/php/Config.ext | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/php/Config.ext b/package/php/Config.ext index 60ef1aee7c..51dcbbf4a4 100644 --- a/package/php/Config.ext +++ b/package/php/Config.ext @@ -132,6 +132,7 @@ if BR2_PACKAGE_PHP_EXT_PDO config BR2_PACKAGE_PHP_EXT_PDO_MYSQL bool "MySQL" + select BR2_PACKAGE_PHP_EXT_HASH help PDO driver for MySQL |