From d1285dc756711b6dccb30a30df661376fe513bee Mon Sep 17 00:00:00 2001 From: Kent Mein Date: Thu, 9 Nov 2006 15:45:19 +0000 Subject: This is really two commits but the first one is very small and affects one file I modified for the other patch. So I'm being bad and combining them together. First one is added -lXi to LLIBS for solaris. (Makes it so it compiles again with the tablet stuff added) Second one is the real commit its an expansion of patch #4458 This adds optional ICONV lining to support international fonts in the file selector. Thanks to wisit venita (dripstone) I mostly just cleaned it up a little and made it optional via defines. Its currently turned off for all platforms except for solaris on scons. For scons see your config/(platform).py file look for WITH_BF_ICONV For the Makefiles look at source/nan_definitions.mk look for WITH_ICONV (basically you'll want to export WITH_ICONV=true and possibly set some other stuff) Let me know if there are any problems. Kent -- mein@cs.umn.edu --- config/linuxcross-config.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'config/linuxcross-config.py') diff --git a/config/linuxcross-config.py b/config/linuxcross-config.py index 2d833d2fcfc..468f4cfcc50 100644 --- a/config/linuxcross-config.py +++ b/config/linuxcross-config.py @@ -98,6 +98,12 @@ WITH_BF_QUICKTIME = 'false' # -DWITH_QUICKTIME BF_QUICKTIME = '/usr/local' BF_QUICKTIME_INC = '${BF_QUICKTIME}/include' +WITH_BF_ICONV = 'false' +BF_ICONV = LIBDIR + "/iconv" +BF_ICONV_INC = '${BF_ICONV}/include' +BF_ICONV_LIB = 'iconv' +BF_ICONV_LIBPATH = '${BF_ICONV}/lib' + # Mesa Libs should go here if your using them as well.... WITH_BF_STATICOPENGL = 'false' BF_OPENGL = 'C:\\MingW' -- cgit v1.2.3