From 19ea278a31e58dc99da2301a08d2322fdabd0bf9 Mon Sep 17 00:00:00 2001 From: Simon Kotlinski Date: Tue, 3 Jun 2014 13:17:16 +0200 Subject: [PATCH] Makefile: don't compile with -ansi Fixes build on Cygwin due to [1]. Closes #19 on GitHub. [1] https://cygwin.com/ml/cygwin/2014-01/msg00130.html --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f0b8e60..b7ddc8d 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CXX := c++ -CXXFLAGS := -Wall -pedantic -ansi -Wno-long-long -O2 +CXXFLAGS := -Wall -pedantic -Wno-long-long -O2 LDFLAGS := -lcrypto PREFIX := /usr/local