Browse Source

Misc OSX fixes

tags/1.9.6
falkTX 9 years ago
parent
commit
270945c24b
3 changed files with 10 additions and 1 deletions
  1. +5
    -0
      data/macos/build-deps.sh
  2. +4
    -0
      source/backend/engine/CarlaEngineJuce.cpp
  3. +1
    -1
      source/includes/CarlaDefines.h

+ 5
- 0
data/macos/build-deps.sh View File

@@ -5,6 +5,11 @@

set -e

# ------------------------------------------------------------------------------------
# check for needed binaries

# TODO, check for binaries like /opt/local/bin/7z

# ------------------------------------------------------------------------------------
# cd to correct path



+ 4
- 0
source/backend/engine/CarlaEngineJuce.cpp View File

@@ -385,6 +385,8 @@ public:
}

fMidiOutMutex.unlock();

return true;
}

bool patchbayRefresh(const bool external) override
@@ -613,6 +615,8 @@ protected:
return true;
} break;
}

return false;
}

bool disconnectExternalGraphPort(const uint connectionType, const uint portId, const char* const portName) override


+ 1
- 1
source/includes/CarlaDefines.h View File

@@ -97,7 +97,7 @@
# define P_INTPTR "%i"
# define P_UINTPTR "%x"
# define P_SIZE "%u"
#elif defined(CARLA_OS_MAC) && defined(__LP64__)
#elif defined(CARLA_OS_MAC)
# define P_INT64 "%lli"
# define P_UINT64 "%llu"
# define P_INTPTR "%li"


Loading…
Cancel
Save