2017-09-19 00:34:41 +02:00
|
|
|
From a04fb6159e394ec8346cd49993fdf70db3e1b184 Mon Sep 17 00:00:00 2001
|
2016-01-04 19:23:28 +01:00
|
|
|
From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
|
|
|
Date: Wed, 23 Dec 2015 11:51:58 +0100
|
|
|
|
Subject: [PATCH] Add an option to disable the ossaudiodev module
|
2015-01-10 16:32:48 +01:00
|
|
|
|
|
|
|
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
2016-01-04 19:23:28 +01:00
|
|
|
---
|
|
|
|
configure.ac | 6 ++++++
|
|
|
|
1 file changed, 6 insertions(+)
|
2015-01-10 16:32:48 +01:00
|
|
|
|
2016-01-04 19:23:28 +01:00
|
|
|
diff --git a/configure.ac b/configure.ac
|
2017-09-19 00:34:41 +02:00
|
|
|
index e2c3b6f25c..8e3dded25e 100644
|
2015-01-10 16:32:48 +01:00
|
|
|
--- a/configure.ac
|
|
|
|
+++ b/configure.ac
|
2019-04-10 17:42:43 +02:00
|
|
|
@@ -3035,6 +3035,12 @@ else
|
2015-01-10 16:32:48 +01:00
|
|
|
fi
|
|
|
|
AC_SUBST(MPDEC)
|
|
|
|
|
|
|
|
+AC_ARG_ENABLE(ossaudiodev,
|
|
|
|
+ AS_HELP_STRING([--disable-ossaudiodev], [disable OSSAUDIODEV]),
|
|
|
|
+ [ if test "$enableval" = "no"; then
|
|
|
|
+ DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} ossaudiodev"
|
|
|
|
+ fi])
|
|
|
|
+
|
|
|
|
# Check for support for loadable sqlite extensions
|
|
|
|
AC_MSG_CHECKING(for --enable-loadable-sqlite-extensions)
|
|
|
|
AC_ARG_ENABLE(loadable-sqlite-extensions,
|
2016-01-04 19:23:28 +01:00
|
|
|
--
|
2017-09-19 00:34:41 +02:00
|
|
|
2.13.5
|
2016-01-04 19:23:28 +01:00
|
|
|
|