Angus Leeming <[EMAIL PROTECTED]> writes:
| Ruurd has the following one line patch:
>
| Index: src/support/copy.C
|
| bool lyx::copy(string const & from, string const & to)
| {
| - ifstream ifs(from.c_str());
| + ifstream ifs(from.c_str(), ios::binary);
| if (!ifs)
|return false;
| ofs
Ruurd has the following one line patch:
Index: src/support/copy.C
bool lyx::copy(string const & from, string const & to)
{
- ifstream ifs(from.c_str());
+ ifstream ifs(from.c_str(), ios::binary);
if (!ifs)
return false;
ofstream ofs(to.c_str(),
Googling comes up with this:
http://gcc.