Add missing define to rna for sound system.

This commit is contained in:
Diego Borghetti 2009-08-31 22:50:08 +00:00
parent 87929332c7
commit 121f310fab

@ -77,6 +77,18 @@ ifeq ($(WITH_QUICKTIME), true)
CPPFLAGS += -DWITH_QUICKTIME CPPFLAGS += -DWITH_QUICKTIME
endif endif
ifeq ($(WITH_SDL),true)
CPPFLAGS += -DWITH_SDL
endif
ifeq ($(WITH_JACK),true)
CPPFLAGS += -DWITH_JACK
endif
ifeq ($(WITH_OPENAL),true)
CPPFLAGS += -DWITH_OPENAL
endif
ifeq ($(OS),windows) ifeq ($(OS),windows)
# Windows needs these extra libs because of winstuff... It is not # Windows needs these extra libs because of winstuff... It is not
# _really_ needed, but it is the easiest fix for now. If you have # _really_ needed, but it is the easiest fix for now. If you have