Utils/Console: Fix classic spirit include warnings
[senf.git] / senf / config.hh
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief config public header */
25
26 #ifndef HH_config_
27 #define HH_config_ 1
28
29 // Custom includes
30 #include <boost/cstdint.hpp>
31 #include <limits.h>
32
33 ///////////////////////////////hh.p////////////////////////////////////////
34
35 namespace senf {
36 namespace config {
37
38     typedef boost::int_fast64_t time_type;
39
40 }}
41
42 # include "autoconf.hh"
43 # include "local_config.hh"
44 #
45 # ifndef SENF_ABSOLUTE_INCLUDE_PATH
46 #     define SENF_ABSOLUTE_INCLUDE_PATH(senf_relative_include_file_path) <senf/senf_relative_include_file_path>
47 # endif
48 #
49 # ifndef SENF_copy_n
50 #     include <algorithm>
51 #     if defined(__GNUC__) && ! defined(_STLP_ALGORITHM) && (__GNUC__>=4 || (__GNUC__==3 && __GNUC_MINOR__>=4))
52 #         include <ext/algorithm>
53 #         define SENF_copy_n __gnu_cxx::copy_n
54 #     else
55 #         define SENF_copy_n std::copy_n
56 #     endif
57 # endif
58 #
59 # ifndef SENF_MPL_RV_ALIGNMENT
60 #     define SENF_MPL_RV_ALIGNMENT 16
61 # endif
62 #
63 # if !defined(SENF_BUFFER_USE_LOCALS) && !defined(SENF_BUFFER_USE_ALLOCA) && !defined(SENF_BUFFER_USE_NEW)
64 #
65 #     if defined(__GNUC__)
66 #         define SENF_BUFFER_USE_LOCALS 1
67 #
68 #     // Add other compilers here ...
69 #
70 #     // dynamic arrays are part of C99. Which is NOT part of C++
71 #     // but lets try nonetheless ...
72 #     elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
73 #         define SENF_BUFFER_USE_LOCALS 1
74 #     endif
75 #
76 #     if !defined(SENF_BUFFER_USE_LOCALS) && !defined(SENF_BUFFER_USE_ALLOCA)
77 #         define SENF_BUFFER_USE_NEW 1
78 #     endif
79 #
80 # endif
81 #
82 # ifndef SENF_SENFLOG_LIMIT
83 #     ifndef SENF_DEBUG
84 #         define SENF_SENFLOG_LIMIT senf::log::IMPORTANT
85 #     else
86 #         define SENF_SENFLOG_LIMIT senf::log::NOTICE
87 #     endif
88 # endif
89 #
90 # ifndef SENF_DEBUG_BACKTRACE_NUMCALLERS
91 #     define SENF_DEBUG_BACKTRACE_NUMCALLERS 64
92 # endif
93 #
94 # ifndef SENF_CONSOLE_MAX_COMMAND_ARITY
95 #     define SENF_CONSOLE_MAX_COMMAND_ARITY 6
96 # endif
97 #
98 # ifndef PHOENIX_LIMIT
99 #     define PHOENIX_LIMIT 6
100 # endif
101 #
102 # if __GLIBC__>=2 && __GLIBC_MINOR__>=8
103 #     define HAVE_TIMERFD 1
104 # endif
105
106 ///////////////////////////////hh.e////////////////////////////////////////
107 #endif
108
109 \f
110 // Local Variables:
111 // mode: c++
112 // fill-column: 100
113 // comment-column: 40
114 // c-file-style: "senf"
115 // indent-tabs-mode: nil
116 // ispell-local-dictionary: "american"
117 // compile-command: "scons -u all_tests"
118 // End: