aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/jogamp/openal/ALDynamicLibraryBundleInfo.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-05-04 01:37:57 +0200
committerSven Gothel <[email protected]>2023-05-04 01:37:57 +0200
commit8c9c768e697dfbab8ec92ec9c496a46a617ad8c4 (patch)
treea4797c9244406f4ca69f6e733f0735924623b8da /src/java/jogamp/openal/ALDynamicLibraryBundleInfo.java
parent159cd98994f199c014c14c048fe4d18270057e49 (diff)
Windows: Drop using soft_oal.dll blobs, use own bundled openal-soft instead.
Note: This requires mingw-w64 w/ posix-threads to allow using C++ std::mutex etc.
Diffstat (limited to 'src/java/jogamp/openal/ALDynamicLibraryBundleInfo.java')
-rw-r--r--src/java/jogamp/openal/ALDynamicLibraryBundleInfo.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/java/jogamp/openal/ALDynamicLibraryBundleInfo.java b/src/java/jogamp/openal/ALDynamicLibraryBundleInfo.java
index 233f8b1..e58e34c 100644
--- a/src/java/jogamp/openal/ALDynamicLibraryBundleInfo.java
+++ b/src/java/jogamp/openal/ALDynamicLibraryBundleInfo.java
@@ -113,11 +113,12 @@ public final class ALDynamicLibraryBundleInfo implements DynamicLibraryBundleInf
}
final List<String> alSoftLibNames = new ArrayList<String>();
{
- // This name is in use by the (installed if any) OpenAL-soft
- alSoftLibNames.add("soft_oal");
// These names are in use by the bundled OpenAL-soft, also generic ones
alSoftLibNames.add("openal");
alSoftLibNames.add("OpenAL");
+ alSoftLibNames.add("OpenAL32");
+ // This name is in use by the (installed if any) OpenAL-soft
+ alSoftLibNames.add("soft_oal");
}
final List<String> alLibNames = new ArrayList<String>();