Last active
September 10, 2020 19:20
-
-
Save ryandesign/7764915882e289604285b77e940f1628 to your computer and use it in GitHub Desktop.
alienarena patch to revert an unintended change that was part of r3995 to allow macOS to find the OpenAL framework again; fixes runtime error "dlopen() on @Prefix@/lib/libopenal.dylib failed"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: configure.ac | |
=================================================================== | |
--- configure.ac (revision 5670) | |
+++ configure.ac (working copy) | |
@@ -149,7 +149,7 @@ | |
[OpenGL dynamic lib path]) | |
]) | |
AC_DEFINE_UNQUOTED([OPENAL_DRIVER], | |
- ["@PREFIX@/lib/libopenal.dylib"], | |
+ ["/System/Library/Frameworks/OpenAL.framework/OpenAL"], | |
[OpenAL dynamic lib path]) | |
],[ | |
AC_DEFINE_UNQUOTED([OPENGL_DRIVER], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment