Merge branch 'PHP-7.4'

* PHP-7.4:
  pdo_mysql/mysqli (native) libmysqlclient_r no-longer used
  mysql: native mysql-8.0 uses _Bool
  mysqli: use native api
This commit is contained in:
Nikita Popov 2020-09-17 11:35:03 +02:00
commit 3ad57f9f31
7 changed files with 17 additions and 32 deletions

View file

@ -25,6 +25,9 @@
# define PDO_MYSQL_PARAM_BIND MYSQLND_PARAM_BIND
#else
# include <mysql.h>
#if MYSQL_VERSION_ID >= 80000 && MYSQL_VERSION_ID < 100000
typedef _Bool my_bool;
#endif
# define PDO_MYSQL_PARAM_BIND MYSQL_BIND
#endif