diff options
author | Russell King <rmk@armlinux.org.uk> | 2017-02-11 17:20:40 +0000 |
---|---|---|
committer | Russell King <rmk@armlinux.org.uk> | 2017-02-11 17:21:11 +0000 |
commit | b0513ae57d3fe73c5c020ccbd2c83a6f6b2264a7 (patch) | |
tree | ac54db81ec98f13a6bd1e04e9522ea07ac0bda42 | |
parent | e54438a96a8dba9c178769459efda7aa92ef5d2e (diff) |
build: lack of viv_open should not disable etnadrm
The lack of viv_open() should not disable etnadrm, as etnadrm does not
require libetnaviv to be built.
Signed-off-by: Russell King <rmk@armlinux.org.uk>
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index a31fd39..aede771 100644 --- a/configure.ac +++ b/configure.ac @@ -189,9 +189,9 @@ AS_IF([test x$ACCEL_ETNAVIV != xno || test x$ACCEL_ETNADRM != xno], LDFLAGS="$LDFLAGS $ETNAVIV_LIBS" CFLAGS="$CFLAGS $ETNAVIV_CFLAGS" AC_CHECK_LIB([etnaviv], [viv_open], - [AS_IF([test x$ACCEL_ETNAVIV = xauto], [ACCEL_ETNAVIV=yes]) - AS_IF([test x$ACCEL_ETNADRM = xauto], [ACCEL_ETNADRM=yes])], - [ACCEL_ETNAVIV=no ACCEL_ETNADRM=no]) + [AS_IF([test x$ACCEL_ETNAVIV = xauto], [ACCEL_ETNAVIV=yes])], + [ACCEL_ETNAVIV=no]) + AS_IF([test x$ACCEL_ETNADRM = xauto], [ACCEL_ETNADRM=yes], [ACCEL_ETNADRM=no]) AS_IF([test x$ACCEL_ETNAVIV != xno], [ AC_CHECK_LIB([etnaviv], [etna_bo_from_dmabuf], |