mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 01:08:45 +00:00
Use the HAVE_UNISTD_H guard.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@9505 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
f7be02fbe8
commit
d16564f953
@ -6,6 +6,7 @@
|
||||
* BufferView_pimpl.C:
|
||||
* DepTable.C:
|
||||
* buffer.C:
|
||||
* lyxserver.C:
|
||||
* lyxvc.C: use the HAVE_UNISTD_H guard.
|
||||
|
||||
2005-01-19 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
@ -38,7 +38,9 @@
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
#include <fcntl.h>
|
||||
#include <cerrno>
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
* FileInfo.h:
|
||||
* chdir.C:
|
||||
* forkedcall.C:
|
||||
* forkedcontr.C:
|
||||
* getcwd.C:
|
||||
* lyxsum.C:
|
||||
|
@ -40,7 +40,9 @@
|
||||
#include <sys/wait.h>
|
||||
#include <csignal>
|
||||
#include <cstdlib>
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
using std::endl;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user