diff options
author | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-05-24 22:16:54 +0000 |
---|---|---|
committer | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-05-24 22:16:54 +0000 |
commit | 886f2893fba13ad058ee18f15a306e49456bd8c5 (patch) | |
tree | 8eaf0ed2127da5df1f3ccb1509178e78799572b6 /Game/Code/lib/portmixer/delphi | |
parent | a7c8ba073db17fe3309f43b9f8605e7e6aa22278 (diff) | |
download | usdx-886f2893fba13ad058ee18f15a306e49456bd8c5.tar.gz usdx-886f2893fba13ad058ee18f15a306e49456bd8c5.tar.xz usdx-886f2893fba13ad058ee18f15a306e49456bd8c5.zip |
Changing macos to darwin and adjusting linklib
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1136 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/lib/portmixer/delphi')
-rw-r--r-- | Game/Code/lib/portmixer/delphi/portmixer.pas | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Game/Code/lib/portmixer/delphi/portmixer.pas b/Game/Code/lib/portmixer/delphi/portmixer.pas index a9e27516..80d7676a 100644 --- a/Game/Code/lib/portmixer/delphi/portmixer.pas +++ b/Game/Code/lib/portmixer/delphi/portmixer.pas @@ -38,9 +38,6 @@ unit portmixer;
{$IFDEF FPC}
- {$IFNDEF win32}
- {$LINKLIB libportaudio}
- {$ENDIF}
{$PACKRECORDS C} (* GCC/Visual C/C++ compatible record packing *)
{$MODE DELPHI }
{$ENDIF}
@@ -51,14 +48,15 @@ uses portaudio;
const
-{$IFDEF WIN32}
+{$IFDEF MSWINDOWS}
LibName = 'portmixer.dll';
{$ENDIF}
{$IFDEF LINUX}
LibName = 'libportmixer.so';
{$ENDIF}
-{$IFDEF MACOS}
- LibName = 'libportmixer.dylib';
+{$IFDEF DARWIN}
+// LibName = 'libportmixer.dylib';
+// {$LINKLIB libportaudio}
{$ENDIF}
type
|