diff options
author | theuni <theuni-nospam-@xbmc.org> | 2011-04-17 22:50:56 -0400 |
---|---|---|
committer | theuni <theuni-nospam-@xbmc.org> | 2011-04-18 01:30:37 -0400 |
commit | 32a836ea86764a186d702e7cc0907dc925f3da1c (patch) | |
tree | 2174ea97f443fe565c399cf37b2130cfc7b3b0d9 | |
parent | 64f28b371c5e2935c175959242e757e8d19ac81e (diff) |
changed: use opengl checks rather than arm where appropriate
-rw-r--r-- | Makefile.in | 2 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 0d2b9f47f4..6d1a295ae7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -381,7 +381,7 @@ dllloader: exports visualizations: exports for d in $(VIS_DIRS); do $(MAKE) -C $$d; done screensavers: exports -ifneq ($(findstring arm,@ARCH@), arm) +ifeq (@USE_OPENGL@,1) $(MAKE) -C xbmc/screensavers/rsxs-0.9/xbmc endif libpython: dllloader diff --git a/configure.in b/configure.in index 6269c43b8e..fc9c912cb8 100644 --- a/configure.in +++ b/configure.in @@ -1632,7 +1632,7 @@ XB_CONFIG_MODULE([lib/libid3tag/libid3tag],[ ], [0]) XB_CONFIG_MODULE([xbmc/visualizations/XBMCProjectM/libprojectM],[ -if expr "X$host_cpu" : 'Xarm.*' > /dev/null; then :; else +if test "$use_gl" = "no"; then :; else set -x rm -f CMakeCache.txt && CC="$CC" CXX="$CXX" cmake -DCMAKE_BUILD_TYPE=None -DUSE_FTGL:BOOL=OFF \ -DCMAKE_C_FLAGS:STRING="${CFLAGS}" -DCMAKE_CXX_FLAGS:STRING="${CXXFLAGS}" \ @@ -1657,7 +1657,7 @@ XB_CONFIG_MODULE([xbmc/visualizations/Goom/goom2k4-0],[ ], [$DISABLE_GOOM]) XB_CONFIG_MODULE([xbmc/screensavers/rsxs-0.9/], [ -if expr "X$host_cpu" : 'Xarm.*' > /dev/null; then :; else +if test "$use_gl" = "no"; then :; else ./configure \ CC="$CC" \ CXX="$CXX" \ |