Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use ladish instead of lash for jack session management #1645

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ ENDIF()
FIND_HELPER(PORTAUDIO portaudio-2.0 portaudio.h portaudio)
FIND_HELPER(PORTMIDI portmidi portmidi.h portmidi)
FIND_HELPER(PULSEAUDIO libpulse pulse/pulseaudio.h pulse)
FIND_HELPER(LASH lash-1.0 lash/lash.h lash)
FIND_HELPER(LASH liblash lash-1.0/lash/lash.h lash)
FIND_HELPER(LRDF lrdf lrdf.h lrdf)

FIND_HELPER(RUBBERBAND rubberband rubberband/RubberBandStretcher.h rubberband)
Expand Down
2 changes: 1 addition & 1 deletion src/core/Lash/LashClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

#if defined(H2CORE_HAVE_LASH) || _DOXYGEN_

#include <lash/lash.h>
include <lash-1.0/lash/lash.h>
#include <core/Preferences/Preferences.h>
#include <core/H2Exception.h>

Expand Down
2 changes: 1 addition & 1 deletion src/core/Lash/LashClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#ifndef LASH_CLIENT
#define LASH_CLIENT

#include <lash/lash.h>
include <lash-1.0/lash/lash.h>

#include <string>
#include <cassert>
Expand Down
2 changes: 1 addition & 1 deletion src/gui/src/MainForm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
#endif

#ifdef H2CORE_HAVE_LASH
#include <lash/lash.h>
include <lash-1.0/lash/lash.h>
#include <core/Lash/LashClient.h>
#endif

Expand Down