From 71f937ad13413236e55da110746026d2548f4fe2 Mon Sep 17 00:00:00 2001 From: Harshal Sheth Date: Thu, 28 May 2020 18:20:37 -0400 Subject: [PATCH] Try fixing macos build issue As per https://stackoverflow.com/questions/48042203/curses-library-doesnt-support-wide-char-on-os-x-high-sierra --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index fef9458..afd05d2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -17,7 +17,7 @@ cava_CPPFLAGS = -DPACKAGE=\"$(PACKAGE)\" -DVERSION=\"$(VERSION)\" \ cava_CFLAGS = -std=c99 -Wall -Werror -Wextra -Wno-unused-result -Wno-unknown-warning-option -Wno-maybe-uninitialized if OSX - cava_CFLAGS += -DNORT + cava_CFLAGS += -DNORT -D_XOPEN_SOURCE_EXTENDED else cava_LDFLAGS += -lrt endif