diff options
author | Lionel Landwerlin <lionel.landwerlin@openwide.fr> | 2008-10-18 14:25:52 -0400 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2009-01-06 18:26:39 -0500 |
commit | 1334ecb435990ba48d3fd4d49aece3927efb0f37 (patch) | |
tree | 2b1404e022f516b5e2f68f5b897367a3b2b5a80c | |
parent | d437d9202efd8190ec6405d04627b34cb47bcc86 (diff) | |
download | dbus-1334ecb435990ba48d3fd4d49aece3927efb0f37.tar.gz |
Bug 17969: Don't test for abstract sockets if explicitly disabled
Signed-off-by: Colin Walters <walters@verbum.org>
-rw-r--r-- | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in index f429ce6f..e170df05 100644 --- a/configure.in +++ b/configure.in @@ -811,6 +811,7 @@ AC_CHECK_FUNCS(getpeerucred getpeereid) #### Abstract sockets +if ! test x$enable_abstract_sockets = xno; then AC_LANG_PUSH(C) AC_CACHE_CHECK([abstract socket namespace], ac_cv_have_abstract_sockets, @@ -854,6 +855,7 @@ AC_CACHE_CHECK([abstract socket namespace], [ac_cv_have_abstract_sockets=no] )]) AC_LANG_POP(C) +fi if test x$enable_abstract_sockets = xyes; then if test x$ac_cv_have_abstract_sockets = xno; then |