-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Switch to Xenial build environment #4813
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
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
15eef6f
Switch to Xenial build environment
a3f14e2
Go back to Trusty in Windows builds
bb6575f
Try to fix Qt4 download on macOS
2005d4c
Try different formula
6456c8a
Follow instructions from cartr/homebrew-qt4
3dd7468
Disable repositories without Xenial support
e730e13
Install missing packages
ed2c013
Remove unnecessary comments
525db4b
Revert sorted list
23046f6
Merge branch 'stable-1.2' into xenial
tresf 9f3d3d2
Add Carla as a submodule
tresf c0ab5c2
Untouch osx..install.sh after rebase
tresf ce9f608
Fix Debian sid builds (#5372)
jasp00 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,3 @@ | ||
| #!/usr/bin/env bash | ||
|
|
||
| sudo add-apt-repository ppa:beineri/opt-qt592-trusty -y | ||
| sudo add-apt-repository ppa:andrewrk/libgroove -y | ||
| sudo sed -e "s/trusty/precise/" -i \ | ||
| /etc/apt/sources.list.d/andrewrk-libgroove-trusty.list | ||
|
|
||
| sudo dpkg --add-architecture i386 | ||
| sudo apt-get update -qq || true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| // A dummy Carla interface | ||
| #include "CarlaNativePlugin.h" | ||
|
|
||
| const char* carla_get_library_filename() { return nullptr; } | ||
| const char* carla_get_library_folder() { return nullptr; } | ||
| const NativePluginDescriptor* carla_get_native_rack_plugin() { return nullptr; } | ||
| const NativePluginDescriptor* carla_get_native_patchbay_plugin() { return nullptr; } | ||
| const NativePluginDescriptor* carla_get_native_patchbay16_plugin() { return nullptr; } | ||
| const NativePluginDescriptor* carla_get_native_patchbay32_plugin() { return nullptr; } | ||
| const NativePluginDescriptor* carla_get_native_patchbay64_plugin() { return nullptr; } | ||
| const NativePluginDescriptor* carla_get_native_patchbay_cv_plugin() { return nullptr; } | ||
| CarlaBackend::CarlaEngine* carla_get_native_plugin_engine(const NativePluginDescriptor* desc, NativePluginHandle handle) { return nullptr; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,9 @@ | ||
| if(LMMS_HAVE_CARLA) | ||
| if(LMMS_HAVE_CARLA OR LMMS_HAVE_WEAKCARLA) | ||
| ADD_DEFINITIONS(-DCARLA_PLUGIN_PATCHBAY -DCARLA_PLUGIN_SYNTH) | ||
| INCLUDE(BuildPlugin) | ||
| INCLUDE_DIRECTORIES(${CARLA_INCLUDE_DIRS} "${CMAKE_CURRENT_SOURCE_DIR}/../carlabase") | ||
| LINK_DIRECTORIES("${CMAKE_CURRENT_BINARY_DIR}/../carlabase" | ||
| ${CARLA_LIBRARY_DIRS}) | ||
| LINK_LIBRARIES(carlabase) | ||
| BUILD_PLUGIN(carlapatchbay carlapatchbay.cpp EMBEDDED_RESOURCES "${CMAKE_CURRENT_SOURCE_DIR}/*.png") | ||
| endif(LMMS_HAVE_CARLA) | ||
| endif() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,9 @@ | ||
| if(LMMS_HAVE_CARLA) | ||
| if(LMMS_HAVE_CARLA OR LMMS_HAVE_WEAKCARLA) | ||
| ADD_DEFINITIONS(-DCARLA_PLUGIN_RACK -DCARLA_PLUGIN_SYNTH) | ||
| INCLUDE(BuildPlugin) | ||
| INCLUDE_DIRECTORIES(${CARLA_INCLUDE_DIRS} "${CMAKE_CURRENT_SOURCE_DIR}/../carlabase") | ||
| LINK_DIRECTORIES("${CMAKE_CURRENT_BINARY_DIR}/../carlabase" | ||
| ${CARLA_LIBRARY_DIRS}) | ||
| LINK_LIBRARIES(carlabase) | ||
| BUILD_PLUGIN(carlarack carlarack.cpp EMBEDDED_RESOURCES "${CMAKE_CURRENT_SOURCE_DIR}/*.png") | ||
| endif(LMMS_HAVE_CARLA) | ||
| endif() |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.