Files
MINGW-packages/mingw-w64-openal/0003-openal-not-32.mingw.patch
Christoph Reiter 8ffac92ccb openal: Update to 1.18.0 (#2573)
* Refresh patches
* Disable building tool which depends on qt5
2017-06-09 12:50:00 +03:00

16 lines
389 B
Diff

--- openal-soft-1.18.0/CMakeLists.txt.orig 2017-06-09 09:58:31.540585400 +0200
+++ openal-soft-1.18.0/CMakeLists.txt 2017-06-09 10:00:24.729585500 +0200
@@ -1152,7 +1152,11 @@
IF(NOT WIN32)
SET(LIBNAME "openal")
ELSE()
- SET(LIBNAME "OpenAL32")
+ IF(MINGW)
+ SET(LIBNAME "openal")
+ ELSE()
+ SET(LIBNAME "OpenAL32")
+ ENDIF()
ENDIF()
FIND_PACKAGE(Git)