diff options
author | horchi <vdr@jwendel.de> | 2022-01-03 19:33:30 +0100 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2022-01-03 19:33:30 +0100 |
commit | 6f7b14aca9909652de88fb22ed5a696c9f643e06 (patch) | |
tree | 82ee4e9374a0427624901a4147c1cdc3168c027f /Makefile | |
parent | 81b060dd9538ff123e607630bb2afa199bdb8ef7 (diff) | |
download | vdr-epg-daemon-6f7b14aca9909652de88fb22ed5a696c9f643e06.tar.gz vdr-epg-daemon-6f7b14aca9909652de88fb22ed5a696c9f643e06.tar.bz2 |
2022-01-03: version 1.2.0 (horchi)\n - change: Removed dependency to mysql-compat package\n\n1.2.0
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 7 insertions, 8 deletions
@@ -11,13 +11,12 @@ HTTPTARGET = epghttpd HISTFILE = "HISTORY.h" BASELIBS += -lrt -lz -larchive -ldl -lcrypto -luuid -BASELIBS += $(shell mysql_config --libs_r) +BASELIBS += $(shell $(SQLCFG) --libs_r) BASELIBS += $(shell pkg-config --cflags --libs jansson) HLIB = -L./lib -lhorchi DLIBS = $(HLIB) $(BASELIBS) -lcurl $(shell pkg-config libxml-2.0 --libs) $(shell pkg-config libxslt --libs) -lexslt HTTPLIBS = $(HLIB) -lmicrohttpd $(BASELIBS) -lcurl $(shell pkg-config libxml-2.0 --libs) $(shell pkg-config libxslt --libs) -lexslt -ljpeg $(shell pkg-config imlib2 --libs) -CFLAGS += $(shell mysql_config --include) VERSION = $(shell grep 'define _VERSION ' $(HISTFILE) | awk '{ print $$3 }' | sed -e 's/[";]//g') ARCHIVE = $(TARGET)-$(VERSION) @@ -33,15 +32,15 @@ HLIBDEP = ./lib/libhorchi.a export DESTDIR ifdef GIT_REV - DEFINES += -DGIT_REV='"$(GIT_REV)"' + DEFINES += -DGIT_REV='"$(GIT_REV)"' endif ifdef SYSD_NOTIFY - ifdef SYSDLIB_210 - BASELIBS += $(shell pkg-config --libs libsystemd) - else - BASELIBS += $(shell pkg-config --libs libsystemd-daemon) - endif + ifdef SYSDLIB_210 + BASELIBS += $(shell pkg-config --libs libsystemd) + else + BASELIBS += $(shell pkg-config --libs libsystemd-daemon) + endif endif # object files |