Skip to content

Commit 4763fd6

Browse files
committed
fix build with botan 3.11
adding missing <botan/ec_group.h> include
1 parent 379be00 commit 4763fd6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/sshagent/OpenSSHKeyGen.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
#include <botan/ecdsa.h>
2525
#include <botan/ed25519.h>
2626
#include <botan/rsa.h>
27+
#include <botan/version.h>
28+
#if BOTAN_VERSION_CODE >= BOTAN_VERSION_CODE_FOR(3,11,0)
29+
#include <botan/ec_group.h>
30+
#endif
2731

2832
namespace OpenSSHKeyGen
2933
{

0 commit comments

Comments
 (0)