mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-22 12:35:14 +00:00
LibAudio: Make includes work from ports
The endpoints were included with a relative path that does not work by default when compiling ports. Include them from a root-relative path instead.
This commit is contained in:
parent
56e8e0daa1
commit
581e4dc25b
Notes:
sideshowbarker
2024-07-17 11:28:31 +09:00
Author: https://github.com/gmta Commit: https://github.com/SerenityOS/serenity/commit/581e4dc25b Pull-request: https://github.com/SerenityOS/serenity/pull/13820 Reviewed-by: https://github.com/kennethmyhra ✅ Reviewed-by: https://github.com/kleinesfilmroellchen ✅
1 changed files with 2 additions and 2 deletions
|
@ -11,8 +11,6 @@
|
|||
#include <AK/FixedArray.h>
|
||||
#include <AK/NonnullOwnPtr.h>
|
||||
#include <AK/OwnPtr.h>
|
||||
#include <AudioServer/AudioClientEndpoint.h>
|
||||
#include <AudioServer/AudioServerEndpoint.h>
|
||||
#include <LibAudio/Buffer.h>
|
||||
#include <LibAudio/UserSampleQueue.h>
|
||||
#include <LibCore/EventLoop.h>
|
||||
|
@ -20,6 +18,8 @@
|
|||
#include <LibIPC/ConnectionToServer.h>
|
||||
#include <LibThreading/Mutex.h>
|
||||
#include <LibThreading/Thread.h>
|
||||
#include <Userland/Services/AudioServer/AudioClientEndpoint.h>
|
||||
#include <Userland/Services/AudioServer/AudioServerEndpoint.h>
|
||||
|
||||
namespace Audio {
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue