aboutsummaryrefslogtreecommitdiffstats
path: root/checks/nist_tests
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-06-29 21:42:41 +0000
committerlloyd <[email protected]>2012-06-29 21:42:41 +0000
commit25208d3db9ebfb074a300191496f3668fa113cfc (patch)
treebb342a7c393cc9d882247fa26fb69eca528626c4 /checks/nist_tests
parentae8535843aa24a5f5322f3c4bd9caf7604b400c2 (diff)
Single basic TLS test using in-memory handshake.
Fix compile flags for the NIST tests
Diffstat (limited to 'checks/nist_tests')
-rw-r--r--checks/nist_tests/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/checks/nist_tests/Makefile b/checks/nist_tests/Makefile
index 52dc340c9..19f8a462d 100644
--- a/checks/nist_tests/Makefile
+++ b/checks/nist_tests/Makefile
@@ -1,10 +1,10 @@
-BOTAN_CONFIG=../../build/botan-config-1.10
+BOTAN_CONFIG=../../build/botan-config-1.11
-CC=g++
-FLAGS=-g -Os -W -Wall -ansi
-LDFLAGS=$(shell $(BOTAN_CONFIG) --libs) -L../.. -lbotan-1.10
-CFLAGS=$(shell $(BOTAN_CONFIG) --cflags) -I../../build/include
+CC=g++-4.7.0 -std=c++11
+FLAGS=-g -Os -W -Wall
+LDFLAGS=-L../.. -lbotan-1.11
+CFLAGS=-I../../build/include
x509test: x509test.cpp
$(CC) $(FLAGS) $(CFLAGS) x509test.cpp $(LDFLAGS) -o x509test