Skip to content

Commit d0899f4

Browse files
committed
Rename firebird utils
1 parent 647667a commit d0899f4

6 files changed

Lines changed: 5 additions & 5 deletions

File tree

config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ if test "$PHP_INTERBASE" != "no"; then
6060
PHP_REQUIRE_CXX()
6161
PHP_CXX_COMPILE_STDCXX([11], [mandatory], [PHP_INTERBASE_STDCXX])
6262

63-
PHP_INTERBASE_CXX_SOURCES="pdo_firebird_utils.cpp"
63+
PHP_INTERBASE_CXX_SOURCES="firebird_utils.cpp"
6464

6565
AS_VAR_IF([ext_shared], [no],
6666
[PHP_ADD_SOURCES([$ext_dir],

config.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if (PHP_INTERBASE != "no") {
99
CHECK_LIB("gds32_ms.lib", "interbase", PHP_INTERBASE + "\\lib")
1010
)
1111
) {
12-
EXTENSION("interbase", "interbase.c ibase_query.c ibase_service.c ibase_events.c ibase_blobs.c pdo_firebird_utils.cpp", PHP_INTERBASE_SHARED, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
12+
EXTENSION("interbase", "interbase.c ibase_query.c ibase_service.c ibase_events.c ibase_blobs.c firebird_utils.cpp", PHP_INTERBASE_SHARED, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
1313
AC_DEFINE('HAVE_IBASE', 1, 'Have interbase library');
1414
} else {
1515
WARNING("interbase not enabled; libraries and headers not found");
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include <firebird/Interface.h>
2222
#include <cstring>
2323
#include "php.h"
24-
#include "pdo_firebird_utils.h"
24+
#include "firebird_utils.h"
2525
#include "php_ibase_includes.h"
2626

2727
/* Returns the client version. 0 bytes are minor version, 1 bytes are major version. */
File renamed without changes.

ibase_query.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
#include "ext/standard/php_standard.h"
4040
#include "php_interbase.h"
4141
#include "php_ibase_includes.h"
42-
#include "pdo_firebird_utils.h"
42+
#include "firebird_utils.h"
4343

4444
#define ISC_LONG_MIN INT_MIN
4545
#define ISC_LONG_MAX INT_MAX

interbase.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
#include "SAPI.h"
4040
#include <stdbool.h>
4141
#include <time.h>
42-
#include "pdo_firebird_utils.h"
42+
#include "firebird_utils.h"
4343

4444
#define ROLLBACK 0
4545
#define COMMIT 1

0 commit comments

Comments
 (0)