diff options
author | horchi <vdr@jwendel.de> | 2019-11-28 13:35:08 +0100 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2019-11-28 13:35:08 +0100 |
commit | 8ff8ab951ef977f0de2809959592587664dd06a3 (patch) | |
tree | bbeb29272e45c7216bc581fd85b1c5af863d2579 /Makefile | |
parent | e64767a31174f2ee3cda6480633559a1423a9fc0 (diff) | |
download | vdr-epg-daemon-8ff8ab951ef977f0de2809959592587664dd06a3.tar.gz vdr-epg-daemon-8ff8ab951ef977f0de2809959592587664dd06a3.tar.bz2 |
2019-11-28: version 1.1.147 (horchi)\n - added: Support of python 3.8 (by Alexander Grothe)\n\n1.1.147
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -10,8 +10,10 @@ TARGET = epgd HTTPTARGET = epghttpd HISTFILE = "HISTORY.h" -BASELIBS = -lrt -lz -larchive -ldl -lcrypto -luuid -BASELIBS += $(shell mysql_config --libs_r) $(shell python-config --libs) $(shell pkg-config --cflags --libs jansson) +BASELIBS += -lrt -lz -larchive -ldl -lcrypto -luuid +BASELIBS += $(shell mysql_config --libs_r) +BASELIBS += $(shell pkg-config --cflags --libs jansson) + HLIB = -L./lib -lhorchi DLIBS = $(HLIB) $(BASELIBS) -lcurl $(shell xml2-config --libs) $(shell xslt-config --libs) -lexslt |