pspp-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: PSPP & PSPPIRE running as native windows applications.


From: John McCabe-Dansted
Subject: Re: PSPP & PSPPIRE running as native windows applications.
Date: Sat, 10 Feb 2007 13:57:34 +0900

On 2/8/07, Ben Pfaff <address@hidden> wrote:
I'd rather seek other solutions (for example, improving gnulib or
fixing mingw) before modifying correct PSPP code, not least
because I'm liable to forget why code has been changed away from
what seems obviously correct.

mkstemp is also missing. This can be fixed simply by replacing with
mkstemps. OTOH, perhaps gnulib should handle this as well?

In the same file as mkstemp, we should test for TMP/TEMP as well or
instead of TMPDIR. I've attached a patch.

On the topic of missing functions, nl_langinfo also seems to be
missing. I've replaced it with the following stub:

char *nl_langinfo(nl_item item)
{
       puts("**** STUB nl_langinfo *****");
       return "Sun\0";
}

--
John C. McCabe-Dansted
PhD Student
University of Western Australia

Attachment: make-file.c.patch
Description: Text Data


reply via email to

[Prev in Thread] Current Thread [Next in Thread]