? config.log ? config.h ? libtool ? config.status ? Makefile ? wvAbw ? wvHtml ? wvLatex ? wvCleanLatex ? wvText ? wvWml ? wvSummary ? wvWare ? config.cache ? wvConvert ? wvSimpleCLX ? wvVersion ? wv-libconfig ? wv-incconfig ? albert.patch ? foo.diff ? wv.diff ? expat/Makefile ? expat/xmlparse/Makefile ? expat/xmltok/Makefile ? exporter/Makefile ? glib-wv/Makefile ? iconv/Makefile ? libole2/Makefile ? magick/Makefile ? oledecod/Makefile Index: getopt.h =================================================================== RCS file: /cvsroot/wvware/wv/getopt.h,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 getopt.h --- getopt.h 2000/09/02 20:04:10 1.1.1.1 +++ getopt.h 2000/10/13 17:54:58 @@ -1,3 +1,6 @@ +#include "config.h" +#ifndef HAVE_UNISTD_H + /* Declarations for getopt. Copyright (C) 1989,90,91,92,93,94,96,97 Free Software Foundation, Inc. @@ -131,3 +134,4 @@ #endif #endif /* _GETOPT_H */ +#endif /* HAVE_UNISTD_H */ Index: magick/utility.c =================================================================== RCS file: /cvsroot/wvware/wv/magick/utility.c,v retrieving revision 1.2 diff -u -r1.2 utility.c --- magick/utility.c 2000/10/13 00:37:40 1.2 +++ magick/utility.c 2000/10/13 17:54:58 @@ -133,7 +133,7 @@ #if defined(macintosh) (void) getcwd(filename,MaxTextExtent >> 1); #endif - (void) mkstemp(filename+strlen(filename)); + (void) tmpnam(filename+strlen(filename)); #endif #endif if ((strchr(filename,'%') == (char *) NULL) && Index: oledecod/oledecod.c =================================================================== RCS file: /cvsroot/wvware/wv/oledecod/oledecod.c,v retrieving revision 1.3 diff -u -r1.3 oledecod.c --- oledecod/oledecod.c 2000/10/13 00:37:40 1.3 +++ oledecod/oledecod.c 2000/10/13 17:54:59 @@ -368,7 +368,7 @@ { assert (i == *root); assert (i == 0); - mkstemp (sbfilename); + tmpnam (sbfilename); test (sbfilename[0], 7, ends ()); sbfile = OLEfile = fopen (sbfilename, "wb+"); test (OLEfile != NULL, 7, ends ()); @@ -377,7 +377,7 @@ else /* other entry, save in a file */ { - mkstemp (pps_list[i].filename); + tmpnam (pps_list[i].filename); test (pps_list[i].filename[0], 7, ends ()); verbose (pps_list[i].name); OLEfile = fopen (pps_list[i].filename, "wb");