diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2011-04-17 13:29:42 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2011-04-17 13:29:42 +0200 |
commit | bcdd5cb8864ae01e42c32fe34f60083aa6184046 (patch) | |
tree | 090754117005b3313fd9ad267c2fb7e1622fad97 /Makefile | |
parent | e33a38a54201ec40fd3b25b37cdf3db36cc9689e (diff) | |
download | vdr-bcdd5cb8864ae01e42c32fe34f60083aa6184046.tar.gz vdr-bcdd5cb8864ae01e42c32fe34f60083aa6184046.tar.bz2 |
Now using pkg-config to get fribidi, freetype and fontconfig cflags and libs
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: Makefile 2.15 2011/04/17 13:26:02 kls Exp $ +# $Id: Makefile 2.16 2011/04/17 13:29:01 kls Exp $ .DELETE_ON_ERROR: @@ -20,8 +20,8 @@ PREFIX ?= /usr/local MANDIR = $(PREFIX)/share/man BINDIR = $(PREFIX)/bin LOCDIR = ./locale -LIBS = -ljpeg -lpthread -ldl -lcap -lrt -lfreetype -lfontconfig -INCLUDES ?= $(shell pkg-config --cflags freetype2) +LIBS = -ljpeg -lpthread -ldl -lcap -lrt $(shell pkg-config --libs freetype2 fontconfig) +INCLUDES ?= $(shell pkg-config --cflags freetype2 fontconfig) PLUGINDIR= ./PLUGINS PLUGINLIBDIR= $(PLUGINDIR)/lib |