diff options
author | Pavel Roskin <plroskin@gmail.com> | 2016-12-31 00:51:13 -0800 |
---|---|---|
committer | Pavel Roskin <plroskin@gmail.com> | 2016-12-31 00:51:13 -0800 |
commit | ac512595735b743ee9307a4e894a4f3e3c32d6da (patch) | |
tree | e71d4d76e5046413a013bd0343623d151a0ff2a5 | |
parent | b84cb3583c4cca5fa2701f9e97db83b7c81929d7 (diff) | |
download | xrdp-proprietary-ac512595735b743ee9307a4e894a4f3e3c32d6da.tar.gz xrdp-proprietary-ac512595735b743ee9307a4e894a4f3e3c32d6da.zip |
When Xfixes.h is checked, the user should have libX11 already
No need to confuse the user by asking to install libX11 headers.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 5c73168a..338ba9e0 100644 --- a/configure.ac +++ b/configure.ac @@ -256,7 +256,7 @@ CFLAGS="$CFLAGS $X_CFLAGS" # checking for Xfixes AC_CHECK_HEADER([X11/extensions/Xfixes.h], [], - [AC_MSG_ERROR([please install libx11-dev and libxfixes-dev or libXfixes-devel])], + [AC_MSG_ERROR([please install libxfixes-dev or libXfixes-devel])], [#include <X11/Xlib.h>]) # checking for Xrandr |