diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2020-06-22 15:08:46 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2020-06-22 15:08:46 +0200 |
commit | f5dba03447fa73da6e181ead7fb98c2b0a2fed41 (patch) | |
tree | 185a4960511debd929b05357545dd2fdf44bbe73 /Makefile | |
parent | 73bcd869dcb869496dc04234092167ade8af6403 (diff) | |
download | vdr-f5dba03447fa73da6e181ead7fb98c2b0a2fed41.tar.gz vdr-f5dba03447fa73da6e181ead7fb98c2b0a2fed41.tar.bz2 |
Made the call to pkg_config configurable via the PKG_CONFIG macro, which is necessary for cross-building VDR
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -4,12 +4,14 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: Makefile 4.8 2020/06/15 13:07:55 kls Exp $ +# $Id: Makefile 4.9 2020/06/22 15:08:46 kls Exp $ .DELETE_ON_ERROR: # Compiler flags: +PKG_CONFIG ?= pkg-config + CC ?= gcc CFLAGS ?= -g -O3 -Wall @@ -19,8 +21,8 @@ CXXFLAGS ?= -g -O3 -Wall -Werror=overloaded-virtual -Wno-parentheses CDEFINES = -D_GNU_SOURCE CDEFINES += -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -LIBS = -ljpeg -lpthread -ldl -lcap -lrt $(shell pkg-config --libs freetype2 fontconfig) -INCLUDES ?= $(shell pkg-config --cflags freetype2 fontconfig) +LIBS = -ljpeg -lpthread -ldl -lcap -lrt $(shell $(PKG_CONFIG) --libs freetype2 fontconfig) +INCLUDES ?= $(shell $(PKG_CONFIG) --cflags freetype2 fontconfig) # Directories: @@ -107,14 +109,14 @@ ifdef VDR_USER DEFINES += -DVDR_USER=\"$(VDR_USER)\" endif ifdef BIDI -INCLUDES += $(shell pkg-config --cflags fribidi) +INCLUDES += $(shell $(PKG_CONFIG) --cflags fribidi) DEFINES += -DBIDI -LIBS += $(shell pkg-config --libs fribidi) +LIBS += $(shell $(PKG_CONFIG) --libs fribidi) endif ifdef SDNOTIFY -INCLUDES += $(shell pkg-config --silence-errors --cflags libsystemd-daemon || pkg-config --cflags libsystemd) +INCLUDES += $(shell $(PKG_CONFIG) --silence-errors --cflags libsystemd-daemon || $(PKG_CONFIG) --cflags libsystemd) DEFINES += -DSDNOTIFY -LIBS += $(shell pkg-config --silence-errors --libs libsystemd-daemon || pkg-config --libs libsystemd) +LIBS += $(shell $(PKG_CONFIG) --silence-errors --libs libsystemd-daemon || $(PKG_CONFIG) --libs libsystemd) endif LIRC_DEVICE ?= /var/run/lirc/lircd |