diff options
author | Darkvater <darkvater@openttd.org> | 2006-03-31 21:22:41 +0000 |
---|---|---|
committer | Darkvater <darkvater@openttd.org> | 2006-03-31 21:22:41 +0000 |
commit | fdf4fa45ad6b0beed6c67a76001c0969e427e8f2 (patch) | |
tree | 34805e5eb4958f93fa008df7f69434abe3975ed7 /makefiledir | |
parent | f4b492fa1ef0ac681416300f8d6782b248c849b1 (diff) | |
download | openttd-fdf4fa45ad6b0beed6c67a76001c0969e427e8f2.tar.xz |
(svn r4219) - Add support for WITH_ICONV. It is enabled by default for OSX > 10.3 for all others set it with WITH_ICONV in Makefile.config or with --with-iconv with configure. --with-config=/somedir will search for iconv include files somewhere (or in Makefile.config with WITH_ICONV_PATH). Custom library loading is not (yet) supported
Diffstat (limited to 'makefiledir')
-rw-r--r-- | makefiledir/Makefile.config_writer | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/makefiledir/Makefile.config_writer b/makefiledir/Makefile.config_writer index 7caff27d7..c4941bc10 100644 --- a/makefiledir/Makefile.config_writer +++ b/makefiledir/Makefile.config_writer @@ -67,6 +67,8 @@ $(MAKE_CONFIG): $(call CONFIG_LINE,WITH_ZLIB:=$(WITH_ZLIB)) $(call CONFIG_LINE,WITH_SDL:=$(WITH_SDL)) $(call CONFIG_LINE,WITH_PNG:=$(WITH_PNG)) + $(call CONFIG_LINE,WITH_ICONV:=$(WITH_ICONV)) + $(call CONFIG_LINE,WITH_ICONV_PATH:=$(WITH_ICONV_PATH)) $(call CONFIG_LINE,STATIC_ZLIB_PATH:=$(STATIC_ZLIB_PATH)) $(call CONFIG_LINE,WITH_COCOA:=$(WITH_COCOA)) $(call CONFIG_LINE,) |