diff options
author | wsnipex <wsnipex@a1.net> | 2013-08-23 13:28:50 +0200 |
---|---|---|
committer | wsnipex <wsnipex@a1.net> | 2013-08-24 10:06:13 +0200 |
commit | 42200c25fd3c18f91e93d464417b2f712db69597 (patch) | |
tree | 8d7e071231b94c3808a3e6c2cb7ffb7d2ccb6f92 /Makefile.in | |
parent | 65196a27d8155dce5ccdbe231484b214c29f87a9 (diff) |
[configure] make waveform and spectrum visualizations optional
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index c6939511a6..c9113603b9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -209,8 +209,15 @@ ifneq (@DISABLE_RSXS@,1) SS_DIRS+= xbmc/screensavers/rsxs-0.9/xbmc endif -VIS_DIRS=xbmc/visualizations/OpenGLSpectrum \ - xbmc/visualizations/WaveForm +ifneq (@DISABLE_SPECTRUM@,1) + VIS_DIRS+= xbmc/visualizations/OpenGLSpectrum +else + INSTALL_FILTER+= .*visualization\.glspectrum.* +endif + +ifneq (@DISABLE_WAVEFORM@,1) + VIS_DIRS+= xbmc/visualizations/WaveForm +endif ifneq (@DISABLE_FISHBMC@,1) VIS_DIRS+= xbmc/visualizations/fishBMC |