aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authork-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-05-24 16:16:28 +0000
committerk-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-05-24 16:16:28 +0000
commit67f953ca4458fa3d046bfbf8547f803b5ed43170 (patch)
treeb1c631fcb69062ce9cd87d05689a7cf4b4173aaf
parente2bc0187b7d24e33191e286048d23a677810a412 (diff)
downloadusdx-67f953ca4458fa3d046bfbf8547f803b5ed43170.tar.gz
usdx-67f953ca4458fa3d046bfbf8547f803b5ed43170.tar.xz
usdx-67f953ca4458fa3d046bfbf8547f803b5ed43170.zip
WIN32 -> MSWINDOWS; targets reorderd, linklib changed
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1132 b956fd51-792f-4845-bead-9b4dfca2ff2c
-rw-r--r--Game/Code/lib/portaudio/delphi/portaudio.pas9
1 files changed, 4 insertions, 5 deletions
diff --git a/Game/Code/lib/portaudio/delphi/portaudio.pas b/Game/Code/lib/portaudio/delphi/portaudio.pas
index 31f9ee3a..94516c7a 100644
--- a/Game/Code/lib/portaudio/delphi/portaudio.pas
+++ b/Game/Code/lib/portaudio/delphi/portaudio.pas
@@ -44,9 +44,6 @@
unit portaudio;
{$IFDEF FPC}
- {$IFNDEF win32}
- {$LINKLIB libportaudio}
- {$ENDIF}
{$PACKRECORDS C} (* GCC/Visual C/C++ compatible record packing *)
{$MODE DELPHI }
{$ENDIF}
@@ -56,14 +53,16 @@ interface
//uses;
const
-{$IFDEF WIN32}
+{$IFDEF MSWINDOWS}
LibName = 'portaudio_x86.dll';
{$ENDIF}
{$IFDEF LINUX}
LibName = 'libportaudio.so';
{$ENDIF}
{$IFDEF DARWIN}
- LibName = 'libportaudio.dylib';
+// this is for portaudio version 19
+ LibName = 'libportaudio.2.dylib';
+ {$LINKLIB libportaudio.2}
{$ENDIF}
{** Retrieve the release number of the currently running PortAudio build,