Skip to content

Commit d26ece8

Browse files
authored
Merge pull request #14 from Keyfactor/openssl_v3
Updated makefile for OpenSSL v3.x
2 parents d59c9dd + 0facbd8 commit d26ece8

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

agent.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ extern struct ScheduledJob* currentJob; /* Defined in schedule.c */
9898
/* 2.15.1.0 = Updated for v12 API modifications */
9999
/* 2.15.2.0 = Updated DTO for Warning to allow agent rotation */
100100
/* 2.16.0.0 = Updated TPM for default passkey */
101-
#define AGENT_VERSION 0x0002001000000000
101+
/* 2.16.0.1 = Updated Makefile for OpenSSL v3.x */
102+
#define AGENT_VERSION 0x0002001000000001
102103

103104
#endif /* AGENT_H_ */

makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ OPENLIBS = -lcrypto -lcurl
3939

4040
# TPM specific variables for the tpm2tss stack
4141
# The following TSSLIBS definition is for the Raspberry Pi
42-
RPI_TSSLIBS = -L/usr/lib/arm-linux-gnueabihf/engines-1.1/ -ltpm2tss
42+
RPI_TSSLIBS = -L/usr/lib/arm-linux-gnueabihf/engines-1.1/ -L/usr/lib/arm-linux-gnueabihf/engines-3/ -ltpm2tss
4343
# The following TSSLIBS definition is for a linux machine
44-
TSSLIBS = -ltpm2tss -L/usr/lib/x86_64-linux-gnu/engines-1.1/
44+
TSSLIBS = -ltpm2tss -L/usr/lib/x86_64-linux-gnu/engines-1.1/ -L/usr/lib/arm-linux-gnueabihf/engines-3/
4545

4646
vpath %.c ./ ./lib ./wolfssl_wrapper
4747
SRC := $(wildcard *.c) \

0 commit comments

Comments
 (0)