THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
A new Flyspray task has been opened. Details are below.
User who did this - Daniel-Constantin Mierla (miconda)
Attached to Project - sip-router
Summary - IMPORTANT: DO NOT ADD NEW ITEMS HERE - USE GITHUB ISSUE TRACKER
Task Type - Bug Report
Category - Core
Status - New
Assigned To -
Operating System - All
Severity - Critical
Priority - Normal
Reported Version - Development
Due in Version - Undecided
Due Date - Undecided
Details - This tracker is going to be decommissioned.
Add new issues to:
* https://github.com/kamailio/kamailio/issues
More information can be found at the following URL:
https://sip-router.org/tracker/index.php?do=details&task_id=504
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.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has been changed. The changes are listed below. For full information about what has changed, visit the URL and click the History tab.
FS#497 - dialplan: Reload failure
User who did this: Daniel-Constantin Mierla (miconda)
Severity: Critical -> Medium
More information can be found at the following URL:
https://sip-router.org/tracker/index.php?do=details&task_id=497
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.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#503 - FreeBSD + mariadb make fail
User who did this - Victor (coyote)
----------
# diff -u modules/db_mysql/Makefile{,-}
--- modules/db_mysql/Makefile 2014-12-22 12:47:36.631590149 +0300
+++ modules/db_mysql/Makefile- 2014-12-22 12:47:50.818588504 +0300
@@ -21,7 +21,7 @@
ifneq ($(MYSQLCFG),)
# use autodetection
- DEFS += $(shell $(MYSQLCFG) --include )
+ DEFS += $(shell $(MYSQLCFG) --include | sed 's/\(-I.*\)\/mysql/\1/g' )
LIBS = $(shell $(MYSQLCFG) --libs)
else
# mysql.h locations (freebsd,openbsd solaris)
----------
One or more files have been attached.
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=503#comment1738
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.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#503 - FreeBSD + mariadb make fail
User who did this - Daniel-Constantin Mierla (miconda)
----------
Ca you attach the output of?
git diff
or
diff -u oldfile newfile
----------
More information can be found at the following URL:
https://sip-router.org/tracker/index.php?do=details&task_id=503#comment1737
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.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
A new Flyspray task has been opened. Details are below.
User who did this - Victor (coyote)
Attached to Project - sip-router
Summary - FreeBSD + mariadb make fail
Task Type - Bug Report
Category - Core
Status - Unconfirmed
Assigned To -
Operating System - FreeBSD
Severity - Medium
Priority - Normal
Reported Version - Development
Due in Version - Undecided
Due Date - Undecided
Details - With mariadb + FreeBSD we got error message adout <mysql/mysql.h> not found.
#grep -A2 -B2 sed modules/db_mysql/Makefile
ifneq ($(MYSQLCFG),)
# use autodetection
DEFS += $(shell $(MYSQLCFG) --include | sed 's/\(-I.*\)\/mysql/\1/g' )
LIBS = $(shell $(MYSQLCFG) --libs)
# mysql_config --include
-I/usr/local/include/mysql -I/usr/local/include/mysql/..
see last path - cause of error.
# mysql_config --include | sed 's/\(-I.*\)\/mysql/\1/g'
-I/usr/local/include/mysql -I/usr/local/include/..
Standart mysql headers in BSD's:
/usr/local/include/mysql/msql.h, #include <mysql/mysql.h>
/usr/local/include/mysql/<mysql/mysql.h> - not found
/usr/local/include/../<mysql/mysql.h> - not found too
For correct this situation need exclude sed at all.
# diff modules/db_mysql/Makefile{,-}
24c24
< DEFS += $(shell $(MYSQLCFG) --include )
---
> DEFS += $(shell $(MYSQLCFG) --include | sed 's/\(-I.*\)\/mysql/\1/g' )
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=503
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.