Browse Source

Minor OSX fix

tags/1.9.4
falkTX 10 years ago
parent
commit
4a375c81e9
2 changed files with 7 additions and 1 deletions
  1. +6
    -0
      Makefile
  2. +1
    -1
      source/Makefile.mk

+ 6
- 0
Makefile View File

@@ -14,8 +14,14 @@ DESTDIR =
SED_PREFIX = $(shell echo $(PREFIX) | sed "s/\//\\\\\\\\\//g")

LINK = ln -sf

ifneq ($(MACOS),true)
PYUIC ?= pyuic4 -w
PYRCC ?= pyrcc4 -py3
else
PYUIC ?= pyuic4-3.3 -w
PYRCC ?= pyrcc4-3.3 -py3
endif

# --------------------------------------------------------------



+ 1
- 1
source/Makefile.mk View File

@@ -11,7 +11,7 @@
CARLA_PLUGIN_SUPPORT = true

# Support for csound files (version 6)
CARLA_CSOUND_SUPPORT = true
CARLA_CSOUND_SUPPORT = false # not ready yet

# Support for GIG, SF2 and SFZ sample banks (through fluidsynth and linuxsampler)
CARLA_SAMPLERS_SUPPORT = true


Loading…
Cancel
Save