Module: sip-router
Branch: janakj/postgres
Commit: d357fdbcfa406c4f4b167170207c3120d0f8007e
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=d357fdb…
Author: Jan Janak <jan(a)iptel.org>
Committer: Jan Janak <jan(a)iptel.org>
Date: Mon Nov 3 13:03:56 2003 +0000
- sql:// changed to mysql:// in all modules
---
modules/db_postgres/dbase.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/db_postgres/dbase.c b/modules/db_postgres/dbase.c
index 8262df6..24b7e80 100644
--- a/modules/db_postgres/dbase.c
+++ b/modules/db_postgres/dbase.c
@@ -115,7 +115,7 @@ static int connect_db(db_con_t* _h, const char* _db_url)
/*
** get the connection parameters parsed from the db_url string
- ** it looks like: sql://username:userpass@dbhost:dbport/dbname
+ ** it looks like: postgres://username:userpass@dbhost:dbport/dbname
** username/userpass : name and password for the database
** dbhost : the host name or ip address hosting the database
** dbport : the port to connect to database on
Module: sip-router
Branch: janakj/bdb
Commit: 986445fbfdfd58dfb21992a9a098adda3be7a396
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=986445f…
Author: Jan Janak <jan(a)iptel.org>
Committer: Jan Janak <jan(a)iptel.org>
Date: Sun Feb 15 15:54:00 2009 +0100
Fixed wrong order of directives in modules Makefile.
Some of the directives in the Makefile of the module were listed in a
wrong order and as a result they had no effect.
---
modules/db_berkeley/Makefile | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/db_berkeley/Makefile b/modules/db_berkeley/Makefile
index 5671867..851d961 100644
--- a/modules/db_berkeley/Makefile
+++ b/modules/db_berkeley/Makefile
@@ -4,6 +4,9 @@
#
#
# WARNING: do not run this directly, it should be run by the master Makefile
+include ../../Makefile.defs
+auto_gen=
+NAME=db_berkeley.so
# extra debug messages
# -DBDB_EXTRA_DEBUG is optional
@@ -11,9 +14,6 @@ DEFS +=-I$(LOCALBASE)/include -I$(LOCALBASE)/BerkeleyDB.4.6/include \
-I$(SYSBASE)/include
-include ../../Makefile.defs
-auto_gen=
-NAME=db_berkeley.so
LIBS=-L$(LOCALBASE)/lib -L$(SYSBASE)/lib -L$(LOCALBASE)/BerkeleyDB.4.6/lib -ldb
include ../../Makefile.modules
Module: sip-router
Branch: janakj/bdb
Commit: f1b7917b954c7d8b34c688212b01d04096ea5cfc
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=f1b7917…
Author: Jan Janak <jan(a)iptel.org>
Committer: Jan Janak <jan(a)iptel.org>
Date: Sun Feb 15 15:08:43 2009 +0100
Merge commit 'berkeley/trunk' into bdb
* commit 'berkeley/trunk': (41 commits)
- unify common rows and row allocation functionality in the DB API core
- fix compilation on OpenBSD, related to missing includes paths and wrong
- disable big integer (DB_BIGINT) support for non SQL DB modules for now
- remove not reached return statement at the end of val2str functions
- fix link entity names, patch from Carsten Gross
- port from opensips r4526, credits goes to bogdan
- renamed: bdb_recover -> kambdb_recover
- regenerated all READMEs (make modules-readme exclude_modules="")
- renaming: changed entities in documentation
- renaming: openser -> kamailio
- renaming scripts part 1
- fix some FAQ entries, change missing entity, regenerate READMEs
- change name in copyright headers
- fix unnecessary module library links, related to #1855859
- titles for admin, devel and faq chapters are defined via entities for coherence and easier management
- updated some old entity names
- content of faq removed (mistakenly added by me after Henning did the cleanup for modules' docs; rev 3839)
- entity &user; replaced with &admin; to obey naming structure (entities to be replaced by xinclude); updated obsolete address tags
- step 2 for the rest of modules to re-link history from sgml to xml files
- step 1 for the rest of modules to re-link history from sgml to xml files
...
---