From 8290a74c84d47957fd6b5c92ca6b2dea7c32d540 Mon Sep 17 00:00:00 2001 From: Sebastian Kemper Date: Sun, 29 Apr 2018 18:48:51 +0200 Subject: [PATCH] gammu: fix mysql depend mysql was replaced by mariadb. The lazy dependency "+PACKAGE_libmysqlclient:libmysqlclient" does not work anymore as "PACKAGE_libmysqlclient" no longer exists. This results in: Package gammu is missing dependencies for the following libraries: libmysqlclient.so.18 This commit addresses that. Signed-off-by: Sebastian Kemper --- utils/gammu/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/gammu/Makefile b/utils/gammu/Makefile index 20de09ef4..825ad1859 100644 --- a/utils/gammu/Makefile +++ b/utils/gammu/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=gammu PKG_VERSION:=1.38.4 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_URL:=http://dl.cihar.com/gammu/releases/ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz @@ -31,7 +31,7 @@ define Package/gammu URL:=http://dl.cihar.com/gammu/releases/ DEPENDS:=+libpthread +libcurl +glib2 $(ICONV_DEPENDS) $(INTL_DEPENDS) DEPENDS+=+PACKAGE_python:python +PACKAGE_bluez-libs:bluez-libs - DEPENDS+=+PACKAGE_libmysqlclient:libmysqlclient +PACKAGE_unixodbc:unixodbc +PACKAGE_libpq:libpq + DEPENDS+=+PACKAGE_libmariadbclient:libmariadbclient +PACKAGE_unixodbc:unixodbc +PACKAGE_libpq:libpq DEPENDS+=+PACKAGE_libusb-1.0:libusb-1.0 endef