79590: [PATCH 1/4 (try2)] audio: Change winmm import to delayed import

buildbot at kegel.com buildbot at kegel.com
Wed Oct 5 23:22:14 CDT 2011


This is an experimental automated build and test service.
Please feel free to ignore this email while we work the kinks out.

For more info about this message, see http://wiki.winehq.org/BuildBot

The Buildbot has detected a failed build on builder runtests-ati while building Wine.
Full details are available at: http://buildbot.kegel.com/builders/runtests-ati/builds/136 (though maybe not for long, as I'm still reinstalling the buildbot periodically while experimenting)
BUILD FAILED: failed git

Errors:
error: patch failed: dlls/winealsa.drv/Makefile.in:1
error: dlls/winealsa.drv/Makefile.in: patch does not apply
error: patch failed: dlls/winecoreaudio.drv/Makefile.in:1
error: dlls/winecoreaudio.drv/Makefile.in: patch does not apply
error: patch failed: dlls/wineoss.drv/Makefile.in:1
error: dlls/wineoss.drv/Makefile.in: patch does not apply

-------------- next part --------------
From: Andrew Eikum <aeikum at codeweavers.com>
Subject: [PATCH 1/4 (try2)] audio: Change winmm import to delayed import
Message-Id: <20111005183934.GA9338 at foghorn.codeweavers.com>
Date: Wed, 5 Oct 2011 13:39:34 -0500

---
 dlls/winealsa.drv/Makefile.in      |    3 ++-
 dlls/winecoreaudio.drv/Makefile.in |    3 ++-
 dlls/wineoss.drv/Makefile.in       |    3 ++-
 3 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/dlls/winealsa.drv/Makefile.in b/dlls/winealsa.drv/Makefile.in
index c5f8cde..336da8b 100644
--- a/dlls/winealsa.drv/Makefile.in
+++ b/dlls/winealsa.drv/Makefile.in
@@ -1,5 +1,6 @@
 MODULE    = winealsa.drv
-IMPORTS   = uuid winmm ole32
+IMPORTS   = uuid ole32
+DELAYIMPORTS = winmm
 EXTRALIBS = @ALSALIBS@
 
 C_SRCS = \
diff --git a/dlls/winecoreaudio.drv/Makefile.in b/dlls/winecoreaudio.drv/Makefile.in
index f0598aa..ff0a500 100644
--- a/dlls/winecoreaudio.drv/Makefile.in
+++ b/dlls/winecoreaudio.drv/Makefile.in
@@ -1,5 +1,6 @@
 MODULE    = winecoreaudio.drv
-IMPORTS   = uuid winmm ole32 user32
+IMPORTS   = uuid ole32 user32
+DELAYIMPORTS = winmm
 EXTRALIBS = @COREAUDIO@
 
 C_SRCS = \
diff --git a/dlls/wineoss.drv/Makefile.in b/dlls/wineoss.drv/Makefile.in
index 61b466b..3edf9d3 100644
--- a/dlls/wineoss.drv/Makefile.in
+++ b/dlls/wineoss.drv/Makefile.in
@@ -1,5 +1,6 @@
 MODULE    = wineoss.drv
-IMPORTS   = uuid winmm ole32 user32
+IMPORTS   = uuid ole32 user32
+DELAYIMPORTS = winmm
 EXTRAINCL = @OSS4INCL@
 
 C_SRCS = \



More information about the wine-tests-results mailing list