diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -1,12 +1,17 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.2 2004/05/26 21:27:11 lordjaxom Exp $ +# $Id: Makefile,v 1.3 2004/06/01 21:02:38 lordjaxom Exp $ # disable in case you don't want to install imlib # in that case, you will not be able to load other files than simple xpms HAVE_IMLIB2=1 +# !!!!THIS DOESN'T WORK YET!!!! +# disable in case you don't want to install ImageMagick +# in that case, you will not be able to load other files than simple xpms +#HAVE_IMAGEMAGICK=1 + # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. # By default the main source file also carries this name. @@ -48,6 +53,10 @@ ifdef HAVE_IMLIB2 DEFINES += -DHAVE_IMLIB2 endif +ifdef HAVE_IMAGEMAGICK + DEFINES += -DHAVE_IMAGEMAGICK +endif + INCLUDES += -I$(VDRDIR)/include -I$(DVBDIR)/include DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"' |