diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-01-16 15:01:14 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-01-16 15:01:14 +0000 |
commit | f20e3ee62c310da3eb091a2773e21442412db4ed (patch) | |
tree | 5749cdd4890ddbecbadc8aa6f77d51911ab69487 | |
parent | 997b11741c202e219aad8516a1cf734b5f6e9849 (diff) | |
download | rtmux-f20e3ee62c310da3eb091a2773e21442412db4ed.tar.gz rtmux-f20e3ee62c310da3eb091a2773e21442412db4ed.tar.bz2 rtmux-f20e3ee62c310da3eb091a2773e21442412db4ed.zip |
We need VIS_DQ in vis.h as well.
-rw-r--r-- | configure.ac | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index c43a87e1..59589514 100644 --- a/configure.ac +++ b/configure.ac @@ -449,6 +449,13 @@ if test "x$found_stravis" = xyes; then fi fi if test "x$found_stravis" = xyes; then + AC_CHECK_DECL( + VIS_DQ, + , + [found_stravis=no]), + [#include <vis.h>]) +fi +if test "x$found_stravis" = xyes; then AC_DEFINE(HAVE_VIS) fi AM_CONDITIONAL(NO_VIS, [test "x$found_stravis" = xno]) |