summaryrefslogtreecommitdiff
path: root/src/times.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2016-10-02 10:32:25 -0700
committerGitHub <noreply@github.com>2016-10-02 10:32:25 -0700
commitca9877ff417325ce35848c96f46f23a334e53bfe (patch)
tree3675bd14ef1947dffd9da8a9a8327961d5a5b17c /src/times.cc
parentcd58d43228996198b5ba329f7c05109f2aaee65a (diff)
parentc2785590834dfe91574367f4256918c37b6ddfcc (diff)
downloadfork-ledger-ca9877ff417325ce35848c96f46f23a334e53bfe.tar.gz
fork-ledger-ca9877ff417325ce35848c96f46f23a334e53bfe.tar.bz2
fork-ledger-ca9877ff417325ce35848c96f46f23a334e53bfe.zip
Merge pull request #468 from Vanav/cygwin_fix
Fix build under Cygwin
Diffstat (limited to 'src/times.cc')
-rw-r--r--src/times.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/times.cc b/src/times.cc
index 01b89848..8b0490ff 100644
--- a/src/times.cc
+++ b/src/times.cc
@@ -33,7 +33,7 @@
#include "times.h"
-#ifdef _WIN32
+#if defined(_WIN32) || defined(__CYGWIN__)
#include "strptime.h"
#endif