From c2a9e48de5668cd59a2b0b54c0b819e0e9d58559 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 5b48350..a336360 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