diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-08-16 09:37:25 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-08-16 09:37:25 -0700 |
commit | 671635c0caecb4b72ba9c2b65f6865eca2d38cd8 (patch) | |
tree | 6380b64903adfdf2aef7782a93ffd61234fcbae1 /termbox | |
parent | 8d3b25a8e43a151f3edf9baf3346d0a069a7be46 (diff) | |
download | mu-671635c0caecb4b72ba9c2b65f6865eca2d38cd8.tar.gz |
3191 - now builds on OpenBSD
Looks like the _XOPEN_SOURCE #define isn't needed in termbox anymore, at least after I removed some features from it that I don't need. All it was doing is hiding SIGWINCH and likely other names as well.
Diffstat (limited to 'termbox')
-rw-r--r-- | termbox/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/termbox/makefile b/termbox/makefile index f6a4fe74..3ee05b69 100644 --- a/termbox/makefile +++ b/termbox/makefile @@ -1,4 +1,4 @@ -CFLAGS=-O3 -Wall -Wextra -D_XOPEN_SOURCE +CFLAGS=-O3 -Wall -Wextra libtermbox.a: utf8.o termbox.o ar rcs libtermbox.a *.o |