summaryrefslogtreecommitdiff
path: root/src/quotes.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/quotes.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/quotes.cc')
-rw-r--r--src/quotes.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quotes.cc b/src/quotes.cc
index 0dd9c4ed..cef9b713 100644
--- a/src/quotes.cc
+++ b/src/quotes.cc
@@ -62,7 +62,7 @@ commodity_quote_from_script(commodity_t& commodity,
DEBUG("commodity.download", "invoking command: " << getquote_cmd);
bool success = true;
-#ifndef _WIN32
+#if !defined(_WIN32) && !defined(__CYGWIN__)
if (FILE * fp = popen(getquote_cmd.c_str(), "r")) {
if (std::feof(fp) || ! std::fgets(buf, 255, fp))
success = false;