Merge pull request #42 from dther/master

Add C flag to allow tentative definitions
This commit is contained in:
Murilo Pereira 2020-06-01 15:39:24 +02:00 committed by GitHub
commit 5bbaafde79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@ VERSION = 1.2.0
CC ?= gcc
CFLAGS ?= -g
CFLAGS += -W -Wall -pedantic -ansi -std=c99 -DVERSION=\"$(VERSION)\"
CFLAGS += -W -Wall -pedantic -ansi -std=c99 -DVERSION=\"$(VERSION)\" -fcommon
# The Ncurses library with wide character support is available as "lncurses"
# under macOS.