The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / python3 / 112-optional-ossaudiodev.patch
diff --git a/cirros-testvm/src-cirros/buildroot-2015.05/package/python3/112-optional-ossaudiodev.patch b/cirros-testvm/src-cirros/buildroot-2015.05/package/python3/112-optional-ossaudiodev.patch
new file mode 100644 (file)
index 0000000..7f1611b
--- /dev/null
@@ -0,0 +1,21 @@
+Add an option to disable the ossaudiodev module
+
+Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+
+Index: b/configure.ac
+===================================================================
+--- a/configure.ac
++++ b/configure.ac
+@@ -2420,6 +2420,12 @@
+ 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,