]> git.lyx.org Git - lyx.git/blob - boost/boost/config/platform/hpux.hpp
major boost update
[lyx.git] / boost / boost / config / platform / hpux.hpp
1 //  (C) Copyright Boost.org 2001. Permission to copy, use, modify, sell and
2 //  distribute this software is granted provided this copyright notice appears
3 //  in all copies. This software is provided "as is" without express or implied
4 //  warranty, and with no claim as to its suitability for any purpose.
5
6 //  See http://www.boost.org for most recent version.
7
8 //  hpux specific config options:
9
10 #define BOOST_PLATFORM "HP-UX"
11
12 // In principle, HP-UX has a nice <stdint.h> under the name <inttypes.h>
13 // However, it has the following problem:
14 // Use of UINT32_C(0) results in "0u l" for the preprocessed source
15 // (verifyable with gcc 2.95.3, assumed for HP aCC)
16 // #define BOOST_HAS_STDINT_H
17
18 #define BOOST_NO_SWPRINTF 
19 #define BOOST_NO_CWCTYPE
20
21 // boilerplate code:
22 #define BOOST_HAS_UNISTD_H
23 #include <boost/config/posix_features.hpp>
24
25 #ifndef BOOST_HAS_GETTIMEOFDAY
26 // gettimeofday is always available
27 #define BOOST_HAS_GETTIMEOFDAY
28 #endif