summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorhorchi <vdr@jwendel.de>2022-01-03 19:33:57 +0100
committerhorchi <vdr@jwendel.de>2022-01-03 19:33:57 +0100
commita7b3392b09a18a4f8c40b732b50db12ce70a28cd (patch)
treecbe10e315e2fdeb6e5c9385fc3bd98f2d75d7f0f /Makefile
parent238ba34e22de51720802c38739e9b688e98ceb57 (diff)
downloadvdr-plugin-epg2vdr-1.2.4.tar.gz
vdr-plugin-epg2vdr-1.2.4.tar.bz2
2022-01-03: version 1.2.4 (horchi)\n - change: Removed dependency to mysql-compat package\n\n1.2.4
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 931aabe..78f8f20 100644
--- a/Makefile
+++ b/Makefile
@@ -70,7 +70,7 @@ LIBS += $(HLIB)
LIBS += -lrt -larchive -lcrypto
LIBS += $(shell pkg-config --libs uuid)
LIBS += $(shell pkg-config --libs tinyxml2)
-LIBS += $(shell mysql_config --libs_r)
+LIBS += $(shell $(SQLCFG) --libs_r)
ifdef USEPYTHON
CFLAGS += $(shell $(PYTHON)-config --includes)
LIBS += $(PYTHON_LIBS)
@@ -106,7 +106,7 @@ SOFILE = libvdr-$(PLUGIN).so
### Includes and Defines (add further entries here):
-INCLUDES += $(shell mysql_config --include)
+INCLUDES += $(shell $(SQLCFG) --include)
DEFINES += -DEPG2VDR -DLOG_PREFIX='"$(PLUGIN): "' $(USES)