diff options
author | Manuel Reimer <manuel.reimer@gmx.de> | 2014-10-30 16:41:06 +0100 |
---|---|---|
committer | Manuel Reimer <manuel.reimer@gmx.de> | 2014-10-30 16:41:06 +0100 |
commit | 94542945595f39866f868181f79583d20a019d1f (patch) | |
tree | d33a90022c2d4ea4aedb2af0fb3043012d8865b7 /Makefile | |
parent | 9609e183f26f2335cc282f8e3424a7bd9d0f25b4 (diff) | |
download | vdr-plugin-skindesigner-94542945595f39866f868181f79583d20a019d1f.tar.gz vdr-plugin-skindesigner-94542945595f39866f868181f79583d20a019d1f.tar.bz2 |
Removed ImageMagick dependency. Final class names for Cairo backend
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 0 insertions, 13 deletions
@@ -3,9 +3,6 @@ # # $Id$ Makefile 1.0 2014/07/24 louis Exp $ -# External image lib to use: imagemagick, graphicsmagick -IMAGELIB = imagemagick - # The official name of this plugin. PLUGIN = skindesigner @@ -47,14 +44,6 @@ DEFINES += $(shell xml2-config --cflags) INCLUDES += $(shell pkg-config --cflags freetype2 fontconfig) -ifeq ($(IMAGELIB), imagemagick) - INCLUDES += $(shell pkg-config --cflags Magick++) - LIBS += $(shell pkg-config --libs Magick++) -else ifeq ($(IMAGELIB), graphicsmagick) - INCLUDES += $(shell pkg-config --cflags GraphicsMagick++) - LIBS += $(shell pkg-config --libs GraphicsMagick++) -endif - INCLUDES += $(shell pkg-config --cflags cairo-png) LIBS += $(shell pkg-config --libs cairo-png) @@ -74,8 +63,6 @@ OBJS = $(PLUGIN).o \ libcore/pixmapcontainer.o \ libcore/fontmanager.o \ libcore/imagecache.o \ - libcore/imagemagickwrapper.o \ - libcore/imagescaler.o \ libcore/helpers.o \ libcore/imageloader.o \ libcore/recfolderinfo.o \ |