[vlc-devel] commit: Do not build hal and dbus for windows, they are linux only. ( Jean-Paul Saman )

git version control git at videolan.org
Thu Aug 14 12:54:28 CEST 2008


vlc | branch: master | Jean-Paul Saman <jpsaman at videolan.org> | Thu Aug 14 15:12:30 2008 +0800| [876516ef596ea9cb367183d02595233b7eb377d0] | committer: Jean-Paul Saman 

Do not build hal and dbus for windows, they are linux only.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=876516ef596ea9cb367183d02595233b7eb377d0
---

 configure.ac |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index 3614f7e..a4a9ceb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -869,7 +869,7 @@ dnl Check for hal
 AC_ARG_ENABLE(hal,
   [  --enable-hal            Linux HAL services discovery (default enabled)])
  
-if test "${enable_hal}" != "no"
+if test "${enable_hal}" != "no" -a "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
 then
   PKG_CHECK_MODULES(HAL, hal >= 0.5.0,
     [
@@ -887,7 +887,7 @@ AC_ARG_ENABLE(dbus,
   [  --enable-dbus           Linux D-BUS message bus system (default enabled)])
 case "${SYS}" in
     linux*|*bsd*)
-if test "${enable_dbus}" != "no"
+if test "${enable_dbus}" != "no" -a "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
 then
   dnl api stable dbus
   PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.0.0,




More information about the vlc-devel mailing list