diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-01-09 21:42:19 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-01-10 00:21:52 +0100 |
commit | 1366a41c320a9bb173dc5e066ab532d679d89bcc (patch) | |
tree | c59afebc1ea763046c3dd724406ddddefa548539 /configure.ac | |
parent | 92a1e544f67eae888517fcfa52d45e9530403a81 (diff) |
configure: ENABLE_NPAPI_FROM_BROWSER requires Xt library
Change-Id: I023927897787ae046baf2751d0e56bfca3fb688f
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index d757466f468f..276d93f4337b 100644 --- a/configure.ac +++ b/configure.ac @@ -9254,6 +9254,10 @@ if test "$WANT_X11" = "yes"; then AC_CHECK_HEADERS(X11/Composite.h,[],[AC_MSG_ERROR([Xt headers not found])], [#include <X11/Intrinsic.h>]) + # ENABLE_NPAPI_FROM_BROWSER requires Xt library + AC_CHECK_LIB([Xt], [XtToolkitInitialize], [:], + [AC_MSG_ERROR(Xt library not found)]) + dnl =================================================================== dnl Check for extension headers dnl =================================================================== |