diff options
-rw-r--r-- | Makefile.target | 3 | ||||
-rw-r--r-- | audio/sdlaudio.c | 4 | ||||
-rwxr-xr-x | configure | 1 |
3 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.target b/Makefile.target index c764538503..81a2dfb552 100644 --- a/Makefile.target +++ b/Makefile.target @@ -343,6 +343,9 @@ $(QEMU_SYSTEM): $(VL_OBJS) libqemu.a sdl.o: sdl.c $(CC) $(CFLAGS) $(DEFINES) $(SDL_CFLAGS) -c -o $@ $< +sdlaudio.o: sdlaudio.c + $(CC) $(CFLAGS) $(DEFINES) $(SDL_CFLAGS) -c -o $@ $< + depend: $(SRCS) $(CC) -MM $(CFLAGS) $(DEFINES) $^ 1>.depend diff --git a/audio/sdlaudio.c b/audio/sdlaudio.c index 6103c4511b..d6e13d03cc 100644 --- a/audio/sdlaudio.c +++ b/audio/sdlaudio.c @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ -#include <SDL/SDL.h> -#include <SDL/SDL_thread.h> +#include <SDL.h> +#include <SDL_thread.h> #include "vl.h" #include "audio/audio_int.h" @@ -172,6 +172,7 @@ if test "$mingw32" = "yes" ; then target_list="i386-softmmu ppc-softmmu sparc-softmmu" EXESUF=".exe" gdbstub="no" + oss="no" fi if test -z "$cross_prefix" ; then |