mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 07:39:26 +01:00
Externals: Fix FreeBSD build
This commit is contained in:
parent
ba57605266
commit
df6165391e
9
Externals/cubeb/CMakeLists.txt
vendored
9
Externals/cubeb/CMakeLists.txt
vendored
@ -82,7 +82,9 @@ if(USE_PULSE)
|
||||
target_sources(cubeb PRIVATE
|
||||
src/cubeb_pulse.c)
|
||||
target_compile_definitions(cubeb PRIVATE USE_PULSE)
|
||||
target_link_libraries(cubeb PRIVATE dl)
|
||||
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
|
||||
target_link_libraries(cubeb PRIVATE dl)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
check_include_files(alsa/asoundlib.h USE_ALSA)
|
||||
@ -98,7 +100,10 @@ if(USE_JACK)
|
||||
target_sources(cubeb PRIVATE
|
||||
src/cubeb_jack.cpp)
|
||||
target_compile_definitions(cubeb PRIVATE USE_JACK)
|
||||
target_link_libraries(cubeb PRIVATE dl pthread)
|
||||
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
|
||||
target_link_libraries(cubeb PRIVATE dl)
|
||||
endif()
|
||||
target_link_libraries(cubeb PRIVATE pthread)
|
||||
endif()
|
||||
|
||||
check_include_files(audioclient.h USE_WASAPI)
|
||||
|
2
Externals/cubeb/src/cubeb_jack.cpp
vendored
2
Externals/cubeb/src/cubeb_jack.cpp
vendored
@ -8,7 +8,9 @@
|
||||
*/
|
||||
#define _DEFAULT_SOURCE
|
||||
#define _BSD_SOURCE
|
||||
#ifndef __FreeBSD__
|
||||
#define _POSIX_SOURCE
|
||||
#endif
|
||||
#include <dlfcn.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
@ -51,7 +51,7 @@
|
||||
#include "Scan.h"
|
||||
#include <functional>
|
||||
|
||||
#include <functional>
|
||||
#include <cstdarg>
|
||||
|
||||
namespace glslang {
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user