Skip to content

Commit a80a47a

Browse files
committed
Ready to test core audio
1 parent 10d160e commit a80a47a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ ifeq (0, $(call check-alsa))
5454
$(warning No libasound installed. Check libasound in advance.)
5555
ENABLE_VIRTIOSND := 0
5656
endif
57-
ifeq (0, $(call check-coreaudio))
58-
$(warning No CoreAudio framework installed.)
59-
ENABLE_VIRTIOSND := 0
60-
endif
57+
#ifeq (0, $(call check-coreaudio))
58+
#$(warning No CoreAudio framework installed.)
59+
# ENABLE_VIRTIOSND := 0
60+
#endif
6161
$(call set-feature, VIRTIOSND)
6262
ifeq ($(call has, VIRTIOSND), 1)
6363
OBJS_EXTRA += virtio-snd.o

mk/check-libs.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ int main(){\n\
2020
if (comp == NULL) exit (-1);\n\
2121
return 0;\n\
2222
}\n'
23-
endf
23+
endef
2424

2525
# Check ALSA installation
2626
define check-alsa
@@ -30,6 +30,6 @@ endef
3030

3131
# Check Core Audio installation
3232
define check-coreaudio
33-
$(shell $(call create-coreaudo-prog) | $(CC) -x c -framework CoreAudio -o /dev/null > /dev/null 2> /dev/null -
33+
$(shell $(call create-coreaudio-prog) | $(CC) -x c -framework CoreAudio -o /dev/null > /dev/null 2> /dev/null -
3434
&& echo $$?)
35-
endf
35+
endef

0 commit comments

Comments
 (0)