diff options
author | Memphiz <memphis@machzwo.de> | 2013-01-31 23:09:30 +0100 |
---|---|---|
committer | Memphiz <memphis@machzwo.de> | 2013-01-31 23:11:33 +0100 |
commit | 14f4952a581290c46e19da88260dc83df4d635b8 (patch) | |
tree | 2938e84b5c4ce4dfa613fc98feeeece8fd4fbb7b /Makefile.in | |
parent | 2dd0b3de92fa1082eb13420796123f74ccd194a1 (diff) |
[configure] - make fishbmc optional and default to autodetect (fixes build for gles platforms after fishbmc injection)
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index d7ee22a5db..d4fb12fb8b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -194,8 +194,11 @@ ifneq (@DISABLE_RSXS@,1) endif VIS_DIRS=xbmc/visualizations/OpenGLSpectrum \ - xbmc/visualizations/WaveForm \ - xbmc/visualizations/fishBMC + xbmc/visualizations/WaveForm + +ifneq (@DISABLE_FISHBMC@,1) + VIS_DIRS+= xbmc/visualizations/fishBMC +endif ifneq (@DISABLE_PROJECTM@,1) VIS_DIRS+= xbmc/visualizations/XBMCProjectM |