From db18108a45f3d5898486c856d81ef0a1e338684e Mon Sep 17 00:00:00 2001 From: hasufell Date: Mon, 28 Apr 2014 12:18:14 +0200 Subject: [PATCH 1/3] BUILD: add missing include --- external/libtompoly-0.04/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/libtompoly-0.04/makefile b/external/libtompoly-0.04/makefile index af2503e..c14f34d 100644 --- a/external/libtompoly-0.04/makefile +++ b/external/libtompoly-0.04/makefile @@ -1,5 +1,5 @@ #Makefile for GCC by Tom St Denis -CFLAGS += -fPIC -I. -Os -Wall -W +CFLAGS += -fPIC -I. -Os -Wall -W -I../libtommath-0.42.0 VERSION=0.04 From 7c8a7580f5d4c802fc42963b9aef7f327b61c652 Mon Sep 17 00:00:00 2001 From: hasufell Date: Mon, 28 Apr 2014 12:19:26 +0200 Subject: [PATCH 2/3] BUILD: remove non-existing header from build --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 1f2182f..d7335a7 100644 --- a/src/Makefile +++ b/src/Makefile @@ -38,7 +38,7 @@ LIBS += -L. # objects PQC_OBJS = rand.o poly.o keypair.o mem.o -PQC_HEADERS = err.h rand.h poly.h context.h keypair.h +PQC_HEADERS = err.h rand.h poly.h context.h # CUNIT_OBJS = cunit.o # includes From 180d2acc1b64da9ad8e0bc3db43aec56621d0f1b Mon Sep 17 00:00:00 2001 From: hasufell Date: Mon, 28 Apr 2014 12:21:20 +0200 Subject: [PATCH 3/3] BUILD: remove obsolete object --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index d7335a7..30f657e 100644 --- a/src/Makefile +++ b/src/Makefile @@ -37,7 +37,7 @@ endif LIBS += -L. # objects -PQC_OBJS = rand.o poly.o keypair.o mem.o +PQC_OBJS = rand.o poly.o mem.o PQC_HEADERS = err.h rand.h poly.h context.h # CUNIT_OBJS = cunit.o