summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 2 insertions, 12 deletions
diff --git a/Makefile b/Makefile
index 620c7fa..dedf333 100644
--- a/Makefile
+++ b/Makefile
@@ -3,9 +3,6 @@
#
# $Id$ Makefile 1.0 2014/07/24 louis Exp $
-# External image lib to use: imagemagick, graphicsmagick
-IMAGELIB = imagemagick
-
# Config
CONFIG := #-DDOPROFILE # enable profiling code
@@ -50,13 +47,8 @@ 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 librsvg-2.0 cairo-png) -ljpeg
+LIBS += $(shell pkg-config --libs librsvg-2.0 cairo-png) -ljpeg
LIBS += $(shell xml2-config --libs)
@@ -74,8 +66,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 \