diff options
author | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2015-09-28 15:14:00 +0200 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2015-09-28 15:14:52 +0200 |
commit | f4a41769c6cf96da1b0272c50072609c6b354a97 (patch) | |
tree | 37e70b855ccc96b29888dc81730e95adb8e869be /configure.ac | |
parent | cc5843daeb0deed57755036daa0917329e79a3a2 (diff) |
USING_X: Compare against TRUE, not "yes"
Missed in 94ed449247e2256d4163fb4a46b4be2c3f498d60
Change-Id: I61dc4023fe09185ac43f96f28ccde94d770366d6
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 37c4aac56b50..1389a6d5913e 100644 --- a/configure.ac +++ b/configure.ac @@ -9224,7 +9224,7 @@ dnl =================================================================== dnl Check for XRandr dnl =================================================================== AC_MSG_CHECKING([whether to enable RandR support]) -if test "$USING_X11" = "yes" -a "$test_randr" = "yes" -a \( "$enable_randr" = "yes" -o "$enable_randr" = "TRUE" \); then +if test "$USING_X11" = TRUE -a "$test_randr" = "yes" -a \( "$enable_randr" = "yes" -o "$enable_randr" = "TRUE" \); then if test -z "$enable_randr_link" -o "$enable_randr_link" = "no"; then XRANDR_DLOPEN="TRUE" AC_MSG_RESULT([configured to dlopen libXrandr at runtime]) |