mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Now using pkg-config to get fribidi cflags and libs
This commit is contained in:
6
Makefile
6
Makefile
@@ -4,7 +4,7 @@
|
||||
# See the main source file 'vdr.c' for copyright information and
|
||||
# how to reach the author.
|
||||
#
|
||||
# $Id: Makefile 2.14 2011/02/27 09:59:11 kls Exp $
|
||||
# $Id: Makefile 2.15 2011/04/17 13:26:02 kls Exp $
|
||||
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
@@ -54,9 +54,9 @@ ifdef VDR_USER
|
||||
DEFINES += -DVDR_USER=\"$(VDR_USER)\"
|
||||
endif
|
||||
ifdef BIDI
|
||||
INCLUDES += -I/usr/include/fribidi
|
||||
INCLUDES += $(shell pkg-config --cflags fribidi)
|
||||
DEFINES += -DBIDI
|
||||
LIBS += -lfribidi
|
||||
LIBS += $(shell pkg-config --libs fribidi)
|
||||
endif
|
||||
|
||||
LIRC_DEVICE ?= /dev/lircd
|
||||
|
Reference in New Issue
Block a user