diff options
author | Ivan Vanyushkin <vanav@vanav.org> | 2016-09-29 21:46:45 +0300 |
---|---|---|
committer | Ivan Vanyushkin <vanav@vanav.org> | 2016-09-29 21:46:45 +0300 |
commit | c2785590834dfe91574367f4256918c37b6ddfcc (patch) | |
tree | 9fa8e9ac135f1ad9f1e5d09d20606aea0ac0dc86 /src/quotes.cc | |
parent | 258cab91ab702e82d477b41bb1c6a026c848bda5 (diff) | |
download | fork-ledger-c2785590834dfe91574367f4256918c37b6ddfcc.tar.gz fork-ledger-c2785590834dfe91574367f4256918c37b6ddfcc.tar.bz2 fork-ledger-c2785590834dfe91574367f4256918c37b6ddfcc.zip |
Fix build under Cygwin.
Diffstat (limited to 'src/quotes.cc')
-rw-r--r-- | src/quotes.cc | 2 |
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; |