exim-mysql wants to remove mariadb101-*

Hello guys,

I'm trying to install exim-mysql package on FreeBSD 10.1 with pkg install exim-mysql, but it wants to remove mariadb101-server and mariadb101-client.

exim-mysql.png


What can I do, if I don't want to replace my already installed MariaDB server?

Is there any way to solve this?
 
/usr/ports/databases/mysql56-client/Makefile:

Code:
CONFLICTS_INSTALL=  mysql5[0-57-9]-client-* \
  mariadb*-client-* \
  percona*-client-*
 
Official packages are built with the default options and dependencies and the package of mail/exim-mysql depends on the MySQL ports and not on the MariaDB ports. Build the port yourself with this set in /etc/make.conf:

Code:
DEFAULT_VERSIONS += mysql=101m
 
Back
Top