Pass -std=gnu99
This commit is contained in:
parent
418d1d85ab
commit
7194ca8301
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -1,7 +1,7 @@
|
|||
CRYPTO_CFLAGS := $(shell pkg-config --cflags libcrypto)
|
||||
CRYPTO_LDLIBS := $(shell pkg-config --libs libcrypto)
|
||||
|
||||
CFLAGS += -Wall -Wextra $(CRYPTO_CFLAGS)
|
||||
CFLAGS += -std=gnu99 -Wall -Wextra $(CRYPTO_CFLAGS)
|
||||
LDLIBS += $(CRYPTO_LDLIBS)
|
||||
|
||||
all : torrenthash
|
||||
|
|
Reference in a new issue