Skip to content

Commit

Permalink
Add more brew packages (#3595)
Browse files Browse the repository at this point in the history
* Add more brew packages
  • Loading branch information
tresf authored Jun 1, 2017
1 parent 635b50b commit 7be6374
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis/osx..install.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

PACKAGES="cmake pkgconfig fftw libogg libvorbis libsndfile libsamplerate jack sdl stk portaudio node fltk"
PACKAGES="cmake pkgconfig fftw libogg libvorbis libsndfile libsamplerate jack sdl libgig libsoundio stk portaudio node fltk"

if [ $QT5 ]; then
PACKAGES="$PACKAGES homebrew/versions/qt55"
Expand Down
5 changes: 5 additions & 0 deletions plugins/GigPlayer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ if(LMMS_HAVE_GIG)
INCLUDE(BuildPlugin)
INCLUDE_DIRECTORIES(${GIG_INCLUDE_DIRS})

# Disable C++11 on Clang until gig.h is patched
IF(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
REMOVE_DEFINITIONS(-std=c++0x)
ENDIF()

# Required for not crashing loading files with libgig
SET(GCC_COVERAGE_COMPILE_FLAGS "-fexceptions")
add_definitions(${GCC_COVERAGE_COMPILE_FLAGS})
Expand Down
1 change: 0 additions & 1 deletion plugins/GigPlayer/PatchesDialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
#include "LcdSpinBox.h"
#include "GigPlayer.h"

#include <fluidsynth.h>
#include <QWidget>
#include <QLabel>

Expand Down

0 comments on commit 7be6374

Please sign in to comment.