From: Rafaël Carré Date: Wed, 4 Apr 2007 21:28:10 +0000 (+0000) Subject: Enables D-Bus on BSD systems X-Git-Tag: 0.9.0-test0~7840 X-Git-Url: http://git.videolan.org/gitweb.cgi/vlc.git/?p=vlc.git;p=vlc.git;a=commitdiff_plain;h=ac058faeb4b10effd1fbdfbf87073ea002e067f5 Enables D-Bus on BSD systems --- diff --git a/configure.ac b/configure.ac index 1773c8cdcc..6cfa28ded8 100644 --- 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)]) - -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, @@ -906,6 +907,8 @@ then fi ) fi +;; +esac dnl Build the gtk_main plugins? NEED_GTK_MAIN=no