Skip to content

Commit

Permalink
Fix build; Remove duplicated files
Browse files Browse the repository at this point in the history
  • Loading branch information
falkTX committed Aug 20, 2015
1 parent bb6a39b commit 7e4d108
Show file tree
Hide file tree
Showing 1,077 changed files with 13 additions and 403,041 deletions.
8 changes: 8 additions & 0 deletions ports/Makefile
Expand Up @@ -16,6 +16,8 @@ lv2:
$(MAKE) -C cabbage/LV2-midi
$(MAKE) -C protoplug/LV2-fx
$(MAKE) -C protoplug/LV2-gen
$(MAKE) -C PdPulp/LV2-fx
$(MAKE) -C PdPulp/LV2-ins
$(MAKE) -C radium-compressor/LV2-mono
$(MAKE) -C radium-compressor/LV2-stereo

Expand All @@ -30,6 +32,8 @@ vst:
$(MAKE) -C cabbage/VST-midi
$(MAKE) -C protoplug/VST-fx
$(MAKE) -C protoplug/VST-gen
$(MAKE) -C PdPulp/VST-fx
$(MAKE) -C PdPulp/VST-ins
$(MAKE) -C radium-compressor/VST-mono
$(MAKE) -C radium-compressor/VST-stereo

Expand All @@ -44,6 +48,8 @@ clean:
$(MAKE) clean -C cabbage/LV2-midi
$(MAKE) clean -C protoplug/LV2-fx
$(MAKE) clean -C protoplug/LV2-gen
$(MAKE) clean -C PdPulp/LV2-fx
$(MAKE) clean -C PdPulp/LV2-ins
$(MAKE) clean -C radium-compressor/LV2-mono
$(MAKE) clean -C radium-compressor/LV2-stereo

Expand All @@ -54,6 +60,8 @@ clean:
$(MAKE) clean -C cabbage/VST-midi
$(MAKE) clean -C protoplug/VST-fx
$(MAKE) clean -C protoplug/VST-gen
$(MAKE) clean -C PdPulp/VST-fx
$(MAKE) clean -C PdPulp/VST-ins
$(MAKE) clean -C radium-compressor/VST-mono
$(MAKE) clean -C radium-compressor/VST-stereo

Expand Down
4 changes: 2 additions & 2 deletions ports/cabbage/source/ComponentLayoutEditor.cpp
Expand Up @@ -645,8 +645,8 @@ void ComponentLayoutEditor::updateFrames ()
{
ChildAlias* alias = createAlias (c, type, compIndex++);
//pass on relative X and Y's to alias components so they are plant aware...
alias->getProperties().set("plantX", var(c->getProperties().getWithDefault(var::identifier("plantX"), 0)));
alias->getProperties().set("plantY", var(c->getProperties().getWithDefault(var::identifier("plantY"), 0)));
alias->getProperties().set("plantX", var(c->getProperties().getWithDefault(Identifier("plantX"), 0)));
alias->getProperties().set("plantY", var(c->getProperties().getWithDefault(Identifier("plantY"), 0)));
alias->getProperties().set(CabbageIDs::lineNumber, c->getProperties().getWithDefault(CabbageIDs::lineNumber, -99));
if (alias)
{
Expand Down
1 change: 1 addition & 0 deletions ports/cabbage/source/JucePluginCharacteristics.h
Expand Up @@ -84,5 +84,6 @@
#define JucePlugin_WantsLV2Presets 0
#define JucePlugin_WantsLV2State 0
#define JucePlugin_WantsLV2TimePos 1
#define JucePlugin_WantsLV2FixedBlockSize 1

#endif // __PLUGINCHARACTERISTICS_81BD1C82__
1 change: 1 addition & 0 deletions ports/protoplug/Source/JucePluginCharacteristics.h
Expand Up @@ -32,6 +32,7 @@
#define JucePlugin_WantsLV2State 1
#define JucePlugin_WantsLV2TimePos 1
#define JucePlugin_WantsLV2Presets 0
#define JucePlugin_WantsLV2FixedBlockSize 1

#define JucePlugin_Manufacturer "pac"
#define JucePlugin_ManufacturerWebsite ""
Expand Down
2 changes: 1 addition & 1 deletion ports/protoplug/Source/LuaLink.cpp
Expand Up @@ -376,7 +376,7 @@ double LuaLink::getTailLengthSeconds()
void LuaLink::processBlock (AudioSampleBuffer& buffer, MidiBuffer& midiMessages, AudioPlayHead* ph)
{
bool res = callVoidOverride("plugin_processBlock" , LUA_TNUMBER, (double)buffer.getNumSamples(),
LUA_TLIGHTUSERDATA, buffer.getArrayOfChannels(),
LUA_TLIGHTUSERDATA, buffer.getArrayOfWritePointers(),
LUA_TLIGHTUSERDATA, &midiMessages,
LUA_TLIGHTUSERDATA, ph,
LUA_TNUMBER, pfx->getSampleRate(),
Expand Down
12 changes: 0 additions & 12 deletions ports/radium-compressor/JuceLibraryCode/ReadMe.txt

This file was deleted.

0 comments on commit 7e4d108

Please sign in to comment.