aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-05-05 18:45:51 +0200
committerMax Kellermann <max@duempel.org>2015-05-26 09:59:23 +0200
commitced1ec2d623f25abded69755cf3ba5d8ccca1cc1 (patch)
treea9e1cbd577b6d619110d739c738d668af6dd62be /Makefile.in
parentf91d17216fdff7f9f7080e1374a3391826c46bcd (diff)
WinSystemX11: make XRandR mandatory
On https://github.com/xbmc/xbmc/pull/7058 we discussed that XRandR should be mandatory.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 25be962a27..819a43ca07 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -488,7 +488,7 @@ else
endif
@APP_NAME_LC@-xrandr: xbmc-xrandr.c
-ifneq (1,@USE_XRANDR@)
+ifneq (1,@USE_X11@)
# xbmc-xrandr.c gets picked up by the default make rules
@echo "excluding @APP_NAME_LC@-xrandr"
else
@@ -515,7 +515,7 @@ install-binaries: install-scripts
@echo "Copying @APP_NAME_LC@ binary to $(DESTDIR)$(libdir)/@APP_NAME_LC@/"
@install -d $(DESTDIR)$(libdir)/@APP_NAME_LC@
@cd $(DESTDIR)$(libdir); [ -L xbmc ] || [ -d xbmc ] || ln -s @APP_NAME_LC@ xbmc
-ifeq (1,@USE_XRANDR@)
+ifeq (1,@USE_X11@)
@install @APP_NAME_LC@-xrandr $(DESTDIR)$(libdir)/@APP_NAME_LC@/@APP_NAME_LC@-xrandr
endif
ifeq (@USE_LIBXBMC@,1)