git.videolan.org
/
vlc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
3cb1449
)
Enables D-Bus on BSD systems
author
Rafaël Carré
<funman@videolan.org>
Wed, 4 Apr 2007 21:28:10 +0000
(21:28 +0000)
committer
Rafaël Carré
<funman@videolan.org>
Wed, 4 Apr 2007 21:28:10 +0000
(21:28 +0000)
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index
1773c8c
..
6cfa28d
100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-842,8
+842,9
@@
fi
dnl Check for dbus
AC_ARG_ENABLE(dbus,
[ --enable-dbus Linux D-BUS message bus system (default enabled)])
dnl Check for dbus
AC_ARG_ENABLE(dbus,
[ --enable-dbus Linux D-BUS message bus system (default enabled)])
-
-if test "${enable_dbus}" != "no" -a "${SYS}" = "linux"
+case "${SYS}" in
+ linux*|*bsd*)
+if test "${enable_dbus}" != "no"
then
dnl api stable dbus
PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.0.0,
then
dnl api stable dbus
PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.0.0,
@@
-906,6
+907,8
@@
then
fi
)
fi
fi
)
fi
+;;
+esac
dnl Build the gtk_main plugins?
NEED_GTK_MAIN=no
dnl Build the gtk_main plugins?
NEED_GTK_MAIN=no