aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/UltraStar.dpr
diff options
context:
space:
mode:
authortobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-05-02 20:52:08 +0000
committertobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-05-02 20:52:08 +0000
commit77927874d012232c7ee8e3cf068d3ca154afc2a9 (patch)
treeaaa503380edab007bd2d217b7399aaa4e19ccea5 /Game/Code/UltraStar.dpr
parent4bc171087c21de201bb6ca2e12306e1d01aca11c (diff)
downloadusdx-77927874d012232c7ee8e3cf068d3ca154afc2a9.tar.gz
usdx-77927874d012232c7ee8e3cf068d3ca154afc2a9.tar.xz
usdx-77927874d012232c7ee8e3cf068d3ca154afc2a9.zip
MacOSX patch for WideUpperChar. The cwstring Unicode manager is not supported at the moment because of some problems with the iconv linker dependencies.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1056 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/UltraStar.dpr')
-rw-r--r--Game/Code/UltraStar.dpr8
1 files changed, 5 insertions, 3 deletions
diff --git a/Game/Code/UltraStar.dpr b/Game/Code/UltraStar.dpr
index 9b76c055..b71ae5a1 100644
--- a/Game/Code/UltraStar.dpr
+++ b/Game/Code/UltraStar.dpr
@@ -24,9 +24,11 @@ program UltraStar;
uses
{$IFDEF Unix}
- cthreads, // THIS MUST be the first used unit in FPC if Threads are used!!
- // (see http://wiki.lazarus.freepascal.org/Multithreaded_Application_Tutorial)
- cwstring, // Enable Unicode support
+ cthreads, // THIS MUST be the first used unit in FPC if Threads are used!!
+ // (see http://wiki.lazarus.freepascal.org/Multithreaded_Application_Tutorial)
+ {$IFNDEF DARWIN}
+ cwstring, // Enable Unicode support. MacOSX misses some references to iconv.
+ {$ENDIF}
{$ENDIF}
//------------------------------