summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Boeren <mboeren@php.net>2001-08-08 08:48:32 +0000
committerMarc Boeren <mboeren@php.net>2001-08-08 08:48:32 +0000
commita4abfc195361b0c42ec726aec68fd1af5f964cda (patch)
tree1757aa593db3ac67c8c27151442a546655fd931e
parentfdc3b548f5ebf35cc9f4ff77b540047cd5aea8a9 (diff)
downloadphp-git-a4abfc195361b0c42ec726aec68fd1af5f964cda.tar.gz
Added Frank to the CREDITS for FrontBase support
Added dbx_fbsql.c to the Makefile.in # Could someone please compile/test this? My Linux-box is down :( # Win compiles just fine, I don't expext any trouble on Linux...
-rw-r--r--ext/dbx/CREDITS5
-rw-r--r--ext/dbx/Makefile.in2
2 files changed, 4 insertions, 3 deletions
diff --git a/ext/dbx/CREDITS b/ext/dbx/CREDITS
index 976079e8f7..cda948aead 100644
--- a/ext/dbx/CREDITS
+++ b/ext/dbx/CREDITS
@@ -1,7 +1,8 @@
dbx (database abstraction)
-core routines: Marc Boeren (Guidance Rotterdam bv)
+core routines: Marc Boeren (marc@guidance.nl)
mysql support: Marc Boeren
odbc support: Marc Boeren
-pgsql support: Rui Hirokawa
+pgsql support: Rui Hirokawa (hirokawa@php.net)
mssql support: Marc Boeren
+fbsql support: Frank M. Kromann (frank@frontbase.com)
diff --git a/ext/dbx/Makefile.in b/ext/dbx/Makefile.in
index ad86ae96c7..87f1fc602f 100644
--- a/ext/dbx/Makefile.in
+++ b/ext/dbx/Makefile.in
@@ -1,6 +1,6 @@
LTLIBRARY_NAME = libdbx.la
-LTLIBRARY_SOURCES = dbx.c dbx_mysql.c dbx_odbc.c dbx_pgsql.c dbx_mssql.c
+LTLIBRARY_SOURCES = dbx.c dbx_mysql.c dbx_odbc.c dbx_pgsql.c dbx_mssql.c dbx_fbsql.c
LTLIBRARY_SHARED_NAME = dbx.la
include $(top_srcdir)/build/dynlib.mk