Skip to content

Don't export php_pdo_int.h #15688

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion ext/pdo/config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ if test "$PHP_PDO" != "no"; then
pdo_sql_parser.h
php_pdo_driver.h
php_pdo_error.h
php_pdo_int.h
php_pdo.h
]))
PHP_ADD_MAKEFILE_FRAGMENT
Expand Down
1 change: 0 additions & 1 deletion ext/pdo/config.w32
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ if (PHP_PDO != "no") {
"pdo_sql_parser.h " +
"php_pdo_driver.h " +
"php_pdo_error.h " +
"php_pdo_int.h " +
"php_pdo.h"
);
}
1 change: 0 additions & 1 deletion ext/pdo/pdo_sql_parser.re
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

#include "php.h"
#include "php_pdo_driver.h"
#include "php_pdo_int.h"
#include "pdo_sql_parser.h"

static int default_scanner(pdo_scanner_t *s)
Expand Down
1 change: 0 additions & 1 deletion ext/pdo_mysql/mysql_sql_parser.re
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

#include "php.h"
#include "ext/pdo/php_pdo_driver.h"
#include "ext/pdo/php_pdo_int.h"
#include "ext/pdo/pdo_sql_parser.h"

int pdo_mysql_scanner(pdo_scanner_t *s)
Expand Down
1 change: 0 additions & 1 deletion ext/pdo_pgsql/pgsql_sql_parser.re
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

#include "php.h"
#include "ext/pdo/php_pdo_driver.h"
#include "ext/pdo/php_pdo_int.h"
#include "ext/pdo/pdo_sql_parser.h"

int pdo_pgsql_scanner(pdo_scanner_t *s)
Expand Down
1 change: 0 additions & 1 deletion ext/pdo_sqlite/sqlite_sql_parser.re
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

#include "php.h"
#include "ext/pdo/php_pdo_driver.h"
#include "ext/pdo/php_pdo_int.h"
#include "ext/pdo/pdo_sql_parser.h"

int pdo_sqlite_scanner(pdo_scanner_t *s)
Expand Down
Loading