summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2007-01-13 11:54:36 +0000
committerphintuka <phintuka>2007-01-13 11:54:36 +0000
commit5f4cf542808b6914743cd2e0709bd534b86bc679 (patch)
treee6b6b7d16123188dd579bdd3439e0f81ce67afc3
parent47d50d9a116b8718f223825a4107ed2cdce74204 (diff)
downloadxineliboutput-5f4cf542808b6914743cd2e0709bd534b86bc679.tar.gz
xineliboutput-5f4cf542808b6914743cd2e0709bd534b86bc679.tar.bz2
Added USE_ICONV to enable/disable iconv charset conversions
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 245a5d65..cb9d0fd8 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@
# See the main source file 'xineliboutput.c' for copyright information and
# how to reach the author.
#
-# $Id: Makefile,v 1.18 2007-01-06 03:23:11 phintuka Exp $
+# $Id: Makefile,v 1.19 2007-01-13 11:54:36 phintuka Exp $
#
# The official name of this plugin.
@@ -43,6 +43,7 @@ endif
# Override configuration here or in ../../../Make.config
#
+USE_ICONV = 1
#XINELIBOUTPUT_X11 = 1
#XINELIBOUTPUT_FB = 1
#XINELIBOUTPUT_XINEPLUGIN = 1
@@ -199,6 +200,9 @@ ifeq ($(ENABLE_TEST_POSTPLUGINS), 1)
DEFINES += -DENABLE_TEST_POSTPLUGINS
endif
+ifdef USE_ICONV
+ DEFINES += -DUSE_ICONV=$(USE_ICONV)
+endif
ifdef NOSIGNAL_IMAGE_FILE
DEFINES += -DNOSIGNAL_IMAGE_FILE='"$(NOSIGNAL_IMAGE_FILE)"'
endif