earlier i thought that tls cannot use async tcp, but it actually turns
out that if tls is enabled, tcp async capability has to be turned off
and is thus lost:
Note: Using TLS over asynch TCP is not supported at the moment. If you
use TLS you have to disable asynch TCP!
if it is not possible to make tls use non-async tcp at the same time
when async tcp is enabled for non-tls tcp transport, then my opinion is
that we should wait that tls can use async tcp before sr is released.
-- juha
Module: sip-router
Branch: master
Commit: 04424443dc83e18bf75cdcf5e04aa23b44ed2ce3
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=0442444…
Author: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Committer: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Date: Thu Oct 1 16:52:17 2009 +0200
makefile: mysql shared *.sql removed
mysql shared *.sql files are no longer installed by the main
makefile, but by the db_mysql module.
---
Makefile | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
index ec2b9ba..dfe5ea3 100644
--- a/Makefile
+++ b/Makefile
@@ -341,9 +341,7 @@ utils_script_install=
# This is the list of files to be installed into the arch-independent
# shared directory (by default /usr/local/share/$(MAIN_NAME))
-share_install= scripts/mysql/my_create.sql \
- scripts/mysql/my_data.sql \
- scripts/mysql/my_drop.sql
+share_install=
Module: sip-router
Branch: master
Commit: 6f7433d3d0f493e0ea65e4fe64e4f0d6a1c29420
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=6f7433d…
Author: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Committer: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Date: Thu Oct 1 16:05:02 2009 +0200
makefile: doc update for Makefile.utils
---
Makefile.utils | 26 +++++++++++++++++++++++++-
1 files changed, 25 insertions(+), 1 deletions(-)
diff --git a/Makefile.utils b/Makefile.utils
index 0c38a79..3f48660 100644
--- a/Makefile.utils
+++ b/Makefile.utils
@@ -8,6 +8,24 @@
# --------
# 2009-04-23 initial version derived from Makefile.modules (andrei)
+#
+# Variables that should be defined in the util Makefiles, prior to including
+# this makefile:
+#
+# NAME - util binary name, with no path (MUST).
+#
+# COREPATH - path to the main/core directory (OPTIONAL, default ../..)
+#
+# DEFS - local extra defines (OPTIONAL)
+#
+# LIBS - local extra libs (OPTIONAL)
+#
+# SER_LIBS - ser/sr libs that should be compiled, linked against and installed
+# along the binary. The format is: <path>/<shortname>, e.g.
+# SER_LIBS=../../lib/srdb2/srdb2 for libsrdb2 with the sources
+# in ../../lib/srdb2. (OPTIONAL)
+#
+
UTIL_NAME=$(NAME)
# default path to the core makefiles
@@ -66,10 +84,16 @@ install: $(NAME) $(util_dst) install-libs
$(INSTALL_TOUCH) $(util_dst)/$(NAME)
$(INSTALL_BIN) $(NAME) $(util_dst)
+ifneq (,$(SER_LIBS))
install-libs:
@for lib in $(dir $(SER_LIBS)); do \
$(call try_err, $(MAKE) -C "$${lib}" install-if-newer ) ;\
- done
+ done; true
+
+else
+install-libs:
+
+endif # $(SER_LIBS)
.PHONY: install-if-newer
install-if-newer: $(util_dst)/$(NAME)