projects
/
oweals
/
tinc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b24faf3
)
Fix Windows includes.
author
Etienne Dechamps
<etienne@edechamps.fr>
Sun, 22 Jun 2014 17:45:49 +0000
(18:45 +0100)
committer
Etienne Dechamps
<etienne@edechamps.fr>
Sun, 22 Jun 2014 17:45:49 +0000
(18:45 +0100)
These Windows include lines are capitalized, which causes the build to fail
when cross-compiling from Linux to Windows using MinGW as the MinGW headers
are entirely lower case.
src/ed25519/seed.c
patch
|
blob
|
history
diff --git
a/src/ed25519/seed.c
b/src/ed25519/seed.c
index 25e518220f742c970bf07299a32a7379ecd20c72..ca4089c182bc48c1d8f7d7c49692754f640f6d79 100644
(file)
--- a/
src/ed25519/seed.c
+++ b/
src/ed25519/seed.c
@@
-3,8
+3,8
@@
#ifndef ED25519_NO_SEED
#ifdef _WIN32
-#include <
W
indows.h>
-#include <
W
incrypt.h>
+#include <
w
indows.h>
+#include <
w
incrypt.h>
#else
#include <stdio.h>
#endif