From 40591bfdb5395cdd7101b40640c105695b5a04e3 Mon Sep 17 00:00:00 2001 From: Themaister Date: Fri, 1 Nov 2013 09:16:08 +0100 Subject: [PATCH] Don't bake in RSound forcibly. If HAVE_RSOUND is 1, it's already detected to be present anyways. --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7fbd95c57f..753dea46d3 100644 --- a/Makefile +++ b/Makefile @@ -113,8 +113,9 @@ ifeq ($(HAVE_COMMAND), 1) endif ifeq ($(HAVE_RSOUND), 1) - OBJ += audio/librsound.o audio/rsound.o - DEFINES += -DHAVE_RSOUND + OBJ += audio/rsound.o + DEFINES += $(RSOUND_CFLAGS) + LIBS += $(RSOUND_LIBS) endif ifeq ($(HAVE_OSS), 1)