]> git.lyx.org Git - lyx.git/blob - src/client/pch.h
Guard HAVE_UNISTD_H.
[lyx.git] / src / client / pch.h
1 #include <config.h>
2
3 #include "debug.h"
4
5 #include <boost/assert.hpp>
6 #include <boost/filesystem/operations.hpp>
7 #include <boost/lexical_cast.hpp>
8 #include <boost/scoped_ptr.hpp>
9
10 #include <fcntl.h>
11 #ifdef HAVE_UNISTD_H
12 # include <unistd.h>
13 #endif
14
15 #include <sys/select.h>
16 #include <sys/socket.h>
17 #include <sys/types.h>
18 #include <sys/un.h>
19
20 #include <cerrno>
21 #include <cstdlib>
22 #include <exception>
23 #include <iomanip>
24 #include <iostream>
25 #include <map>
26 #include <string>
27 #include <vector>