summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2016-06-17 13:17:11 +0200
committerThomas Haller <thaller@redhat.com>2016-06-28 17:34:42 +0200
commit44ce13c786f272f5ba16c76a180630d745846696 (patch)
treead729f276d195a0c6766973804a21d12c0037b18
parent521133d4565f80f7241c061df2d9557703f4ac78 (diff)
downloadNetworkManager-44ce13c786f272f5ba16c76a180630d745846696.tar.gz
wwan: don't compile ofono support by default and mark as experimental
At least, there are assertions that fail and must be fixed. Still, let's merge the (incomplete) ofono patches early to have something that can be incrementally improved. However, for now mark it as experimental and disable it by default.
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index eba3fcc657..3f5708f7dd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -735,11 +735,11 @@ fi
AM_CONDITIONAL(WITH_BLUEZ5_DUN, test "${enable_bluez5_dun}" = "yes")
# OFONO
-AC_ARG_WITH(ofono, AS_HELP_STRING([--with-ofono], [Enable oFono support]),,[with_ofono=yes])
+AC_ARG_WITH(ofono, AS_HELP_STRING([--with-ofono], [Enable oFono support (experimental)]),,[with_ofono=no])
if (test "${with_ofono}" = "yes"); then
- AC_DEFINE(WITH_OFONO, 1, [Define if you have oFono support])
+ AC_DEFINE(WITH_OFONO, 1, [Define if you have oFono support (experimental)])
else
- AC_DEFINE(WITH_OFONO, 0, [Define if you have oFono support])
+ AC_DEFINE(WITH_OFONO, 0, [Define if you have oFono support (experimental)])
fi
AM_CONDITIONAL(WITH_OFONO, test "${with_ofono}" = "yes")