Skip to content

Commit

Permalink
Migrate to new LV2 header paths (#6990)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaciejMalczyk authored May 19, 2024
1 parent 0ee05f5 commit ca109f9
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions include/Lv2Options.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
#ifdef LMMS_HAVE_LV2

#include <cstdint>
#include <lv2/lv2plug.in/ns/ext/options/options.h>
#include <lv2/lv2plug.in/ns/ext/urid/urid.h>
#include <lv2/options/options.h>
#include <lv2/urid/urid.h>
#include <map>
#include <memory>
#include <set>
Expand Down
2 changes: 1 addition & 1 deletion include/Lv2UridMap.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

#ifdef LMMS_HAVE_LV2

#include <lv2/lv2plug.in/ns/ext/urid/urid.h>
#include <lv2/urid/urid.h>
#include <mutex> // TODO: use semaphore, even though this is not realtime critical
#include <string>
#include <unordered_map>
Expand Down
2 changes: 1 addition & 1 deletion include/Lv2Worker.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#ifdef LMMS_HAVE_LV2

#include <lilv/lilv.h>
#include <lv2/lv2plug.in/ns/ext/worker/worker.h>
#include <lv2/worker/worker.h>
#include <thread>
#include <vector>

Expand Down
2 changes: 1 addition & 1 deletion src/core/lv2/Lv2Evbuf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include <cstdlib>
#include <cstring>

#include <lv2/lv2plug.in/ns/ext/atom/atom.h>
#include <lv2/atom/atom.h>

namespace lmms
{
Expand Down
6 changes: 3 additions & 3 deletions src/core/lv2/Lv2Manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
#include <algorithm>
#include <cstdlib>
#include <lilv/lilv.h>
#include <lv2/lv2plug.in/ns/ext/buf-size/buf-size.h>
#include <lv2/lv2plug.in/ns/ext/options/options.h>
#include <lv2/lv2plug.in/ns/ext/worker/worker.h>
#include <lv2/buf-size/buf-size.h>
#include <lv2/options/options.h>
#include <lv2/worker/worker.h>
#include <QDebug>
#include <QElapsedTimer>

Expand Down
4 changes: 2 additions & 2 deletions src/core/lv2/Lv2Ports.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@

#ifdef LMMS_HAVE_LV2

#include <lv2/lv2plug.in/ns/ext/atom/atom.h>
#include <lv2/lv2plug.in/ns/ext/port-props/port-props.h>
#include <lv2/atom/atom.h>
#include <lv2/port-props/port-props.h>

#include "Engine.h"
#include "Lv2Basics.h"
Expand Down
8 changes: 4 additions & 4 deletions src/core/lv2/Lv2Proc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
#ifdef LMMS_HAVE_LV2

#include <cmath>
#include <lv2/lv2plug.in/ns/ext/midi/midi.h>
#include <lv2/lv2plug.in/ns/ext/atom/atom.h>
#include <lv2/lv2plug.in/ns/ext/resize-port/resize-port.h>
#include <lv2/lv2plug.in/ns/ext/worker/worker.h>
#include <lv2/midi/midi.h>
#include <lv2/atom/atom.h>
#include <lv2/resize-port/resize-port.h>
#include <lv2/worker/worker.h>
#include <QDebug>
#include <QDomDocument>
#include <QtGlobal>
Expand Down
8 changes: 4 additions & 4 deletions src/core/lv2/Lv2UridCache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@

#ifdef LMMS_HAVE_LV2

#include <lv2/lv2plug.in/ns/ext/atom/atom.h>
#include <lv2/lv2plug.in/ns/ext/buf-size/buf-size.h>
#include <lv2/lv2plug.in/ns/ext/midi/midi.h>
#include <lv2/lv2plug.in/ns/ext/parameters/parameters.h>
#include <lv2/atom/atom.h>
#include <lv2/buf-size/buf-size.h>
#include <lv2/midi/midi.h>
#include <lv2/parameters/parameters.h>
#include <QtGlobal>

#include "Lv2UridMap.h"
Expand Down
2 changes: 1 addition & 1 deletion src/gui/Lv2ViewBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include <QHBoxLayout>
#include <QLabel>
#include <lilv/lilv.h>
#include <lv2/lv2plug.in/ns/ext/port-props/port-props.h>
#include <lv2/port-props/port-props.h>

#include "AudioEngine.h"
#include "Controls.h"
Expand Down

0 comments on commit ca109f9

Please sign in to comment.