diff options
Diffstat (limited to 'src/crypto/mac')
-rw-r--r-- | src/crypto/mac/ghash/builtin/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/crypto/mac/macs.c.in | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/crypto/mac/ghash/builtin/CMakeLists.txt b/src/crypto/mac/ghash/builtin/CMakeLists.txt index 907c3dd..4e8208b 100644 --- a/src/crypto/mac/ghash/builtin/CMakeLists.txt +++ b/src/crypto/mac/ghash/builtin/CMakeLists.txt @@ -1,4 +1,4 @@ -include_directories(${FASTD_SOURCE_DIR}/src ${FASTD_BINARY_DIR}/src) +include_directories(${FASTD_SOURCE_DIR} ${FASTD_BINARY_DIR}/src) add_library(mac_ghash_builtin OBJECT ghash_builtin.c diff --git a/src/crypto/mac/macs.c.in b/src/crypto/mac/macs.c.in index 5a4e1fb..7d8a5ff 100644 --- a/src/crypto/mac/macs.c.in +++ b/src/crypto/mac/macs.c.in @@ -24,7 +24,8 @@ */ -#include <fastd.h> +#include <src/fastd.h> +#include <src/config.h> @MAC_DEFINITIONS@ |