diff options
author | theuni <theuni-nospam-@xbmc.org> | 2011-08-11 16:31:30 -0400 |
---|---|---|
committer | theuni <theuni-nospam-@xbmc.org> | 2011-08-29 00:21:45 -0400 |
commit | 39176815423ae9b36294a016f21023cdceb4d629 (patch) | |
tree | 6186d69b87b96366a72ed6d05a22a53ea2a97b1a /Makefile.in | |
parent | 8f8b8385996a4354f78afcc9dd80dd456c4f2a7a (diff) |
build: make rsxs configurable
Also, there were a few X libs (xt and xmu) that appear to only be used by
rsxs. We still check for them and link to them so that our packaging scripts
(Ubuntu) are able to resolve deps correctly, otherwise the linking in the XBMC
binary is unnecessary.
We might consider removing these links and hinting to packagers instead.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 52112d7c7f..db7f88e427 100644 --- a/Makefile.in +++ b/Makefile.in @@ -136,7 +136,7 @@ LIB_DIRS=\ lib/xbmc-dll-symbols SS_DIRS= -ifeq (@USE_OPENGL@,1) +ifneq (@DISABLE_RSXS@,1) SS_DIRS+= xbmc/screensavers/rsxs-0.9/xbmc endif |