Module: sip-router
Branch: master
Commit: 37f7dfe0cc8a239ab7f9461c5c26f16cc24aa924
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=37f7dfe…
Author: Peter Dunkley <peter.dunkley(a)crocodile-rcs.com>
Committer: Peter Dunkley <peter.dunkley(a)crocodile-rcs.com>
Date: Mon May 7 02:51:36 2012 +0100
pkg/kamailio/fedora: Created .spec for building Kamailio on Fedora
- Also updated pkg/kamailio/fedora/kamailio.init and added
pkg/kamailio/fedora/kamailio.default.
- Tested/developed on Fedora 16 x86_64 - but should work on other architectures.
- The spec file builds all Kamailio 3.3.0 modules (modules/modules_k) except:
- modules/auth_identity: Conflicts with TLS unless statically linked (which
requires changes to Makefile and is impractical for generic RPM building).
- modules/db_cassandra: Requires Thrift which is not in the F16 repo.
- modules/iptrtpproxy: Needs local copy of iptables source to build
(impractical for generic RPM building).
- modules_k/db_oracle: Requires Oracle which is not in the F16 repo
(and is closed-source).
- modules_k/memcached: Module compilation appears to require an older
version of libmemcached-devel than the one in the F16 repo.
- modules_k/mi_xmlrpc: The F16 repo contains an unsupported version of
libxmlrpc-c3, and there is an compilation error due to the module code
using an unknown type ('TString').
- modules_k/osp: Requires OSP Toolkit which is not in the F16 repo.
- I plan to update this .spec in a couple of weeks when Fedora 17 is released. I
will add modules/db_cassandra and modules_k/osp if Fedora 17 contains the
right versions of Thrift and OSP Toolkit.
---
pkg/kamailio/fedora/kamailio.default | 25 +
pkg/kamailio/fedora/kamailio.init | 106 +++-
pkg/kamailio/fedora/kamailio.spec | 879 ++++++++++++++++++++++++++++++++++
3 files changed, 983 insertions(+), 27 deletions(-)
Diff: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commitdiff;h=37f…
Hi,
I am trying to build .deb packages for Ubuntu/Debian. I have Ubuntu
server 12.04 installed, and I get following error:
abyss_data.c:219:24: error: unknown type name ‘TBuffer’
and similar message about 'TString'.
Any ideas how to solve this?
Kind regards,
Sasa
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#226 - Kamailio looses track of location entries
User who did this - Andrew Pogrebennyk (marduk)
----------
Glad that you write this, we discussed it here: http://comments.gmane.org/gmane.comp.voip.openser.user/34907, but AFAIK no development has been made into that direction.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=226#comment636
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
Module: sip-router
Branch: master
Commit: 79e59ec116c14d3416803736a920d9ac478c6055
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=79e59ec…
Author: Peter Dunkley <peter.dunkley(a)crocodile-rcs.com>
Committer: Peter Dunkley <peter.dunkley(a)crocodile-rcs.com>
Date: Fri May 4 18:14:06 2012 +0100
lib/srdb1: Changed OP_NEQ to use ANSI standard <>
- OP_NEQ was "!=" which works with many, but not all, SQL databases.
- One database this doesn't work with is PostgreSQL.
- <> is the standard and all databases should support it.
---
lib/srdb1/db_op.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/lib/srdb1/db_op.h b/lib/srdb1/db_op.h
index 4b4c3a4..2da6e1f 100644
--- a/lib/srdb1/db_op.h
+++ b/lib/srdb1/db_op.h
@@ -41,7 +41,7 @@
/** operator greater than equal */
#define OP_GEQ ">="
/** operator negation */
-#define OP_NEQ "!="
+#define OP_NEQ "<>"
/** bitwise AND */
#define OP_BITWISE_AND "&"