Move Console from Scheduler into Utils
[senf.git] / 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
32 # ///////////////////////////////hh.p////////////////////////////////////////
33
34 namespace senf {
35 namespace config {
36
37     typedef boost::int_fast64_t time_type;
38
39 }}
40
41 # include "local_config.hh"
42 #
43 # ifndef SENF_ABSOLUTE_INCLUDE_PATH
44 #     define SENF_ABSOLUTE_INCLUDE_PATH(senf_relative_include_file_path) <senf/senf_relative_include_file_path>
45 # endif
46 #
47 # ifndef SENF_copy_n
48 #     include <algorithm>
49 #     if defined(__GNUC__) && ! defined(_STLP_ALGORITHM) && (__GNUC__>=4 || (__GNUC__==3 && __GNUC_MINOR__>=4))
50 #         include <ext/algorithm>
51 #         define SENF_copy_n __gnu_cxx::copy_n
52 #     else
53 #         define SENF_copy_n std::copy_n
54 #     endif
55 # endif
56 #
57 # ifndef SENF_MPL_RV_ALIGNMENT
58 #     define SENF_MPL_RV_ALIGNMENT 16
59 # endif
60 #
61 # if !defined(SENF_BUFFER_USE_LOCALS) && !defined(SENF_BUFFER_USE_ALLOCA) && !defined(SENF_BUFFER_USE_NEW)
62 #
63 #     if defined(__GNUC__)
64 #         define SENF_BUFFER_USE_LOCALS 1
65 #
66 #     // Add other compilers here ...
67 #
68 #     // dynamic arrays are part of C99. Which is NOT part of C++ 
69 #     // but lets try nonetheless ...
70 #     elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
71 #         define SENF_BUFFER_USE_LOCALS 1
72 #     endif
73 #
74 #     if !defined(SENF_BUFFER_USE_LOCALS) && !defined(SENF_BUFFER_USE_ALLOCA)
75 #         define SENF_BUFFER_USE_NEW 1
76 #     endif
77 #
78 # endif
79 #
80 # ifndef SENF_SENFLOG_LIMIT
81 #     ifndef SENF_DEBUG
82 #         define SENF_SENFLOG_LIMIT senf::log::IMPORTANT
83 #     else
84 #         define SENF_SENFLOG_LIMIT senf::log::NOTICE
85 #     endif
86 # endif
87 #
88 # ifndef SENF_DEBUG_BACKTRACE_NUMCALLERS
89 #     define SENF_DEBUG_BACKTRACE_NUMCALLERS 64
90 # endif
91 #
92 # ifndef SENF_CONSOLE_MAX_COMMAND_ARITY 
93 #     define SENF_CONSOLE_MAX_COMMAND_ARITY 6
94 # endif
95
96 # ///////////////////////////////hh.e////////////////////////////////////////
97 # endif
98  
99 \f
100 // Local Variables:
101 // mode: c++
102 // fill-column: 100
103 // comment-column: 40
104 // c-file-style: "senf"
105 // indent-tabs-mode: nil
106 // ispell-local-dictionary: "american"
107 // compile-command: "scons -u all_tests"
108 // End:
109