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 /lib/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 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/Makefile b/lib/Makefile index 8c713f3..c17589b 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -26,7 +26,7 @@ ifdef USECURL LIBOBJS += curl.o endif -BASELIBS = -lrt -lz -luuid +BASELIBS += -lrt -lz -luuid BASELIBS += $(shell mysql_config --libs_r) ifdef USECURL @@ -38,7 +38,6 @@ ifdef USEEPGS endif ifdef USEPYTHON - BASELIBS += $(shell python-config --libs) LIBOBJS += python.o endif @@ -63,10 +62,6 @@ endif CFLAGS += $(shell mysql_config --include) DEFINES += $(USES) -ifdef USEPYTHON - CFLAGS += $(shell python-config --includes) -endif - all: lib $(TEST) $(DEMO) lib: $(LIBTARGET).a |