Fix SCons 1.2.0 build failure
[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 # 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 "local_config.hh"
43 #
44 # ifndef SENF_ABSOLUTE_INCLUDE_PATH
45 #     define SENF_ABSOLUTE_INCLUDE_PATH(senf_relative_include_file_path) <senf/senf_relative_include_file_path>
46 # endif
47 #
48 # ifndef SENF_copy_n
49 #     include <algorithm>
50 #     if defined(__GNUC__) && ! defined(_STLP_ALGORITHM) && (__GNUC__>=4 || (__GNUC__==3 && __GNUC_MINOR__>=4))
51 #         include <ext/algorithm>
52 #         define SENF_copy_n __gnu_cxx::copy_n
53 #     else
54 #         define SENF_copy_n std::copy_n
55 #     endif
56 # endif
57 #
58 # ifndef SENF_MPL_RV_ALIGNMENT
59 #     define SENF_MPL_RV_ALIGNMENT 16
60 # endif
61 #
62 # if !defined(SENF_BUFFER_USE_LOCALS) && !defined(SENF_BUFFER_USE_ALLOCA) && !defined(SENF_BUFFER_USE_NEW)
63 #
64 #     if defined(__GNUC__)
65 #         define SENF_BUFFER_USE_LOCALS 1
66 #
67 #     // Add other compilers here ...
68 #
69 #     // dynamic arrays are part of C99. Which is NOT part of C++ 
70 #     // but lets try nonetheless ...
71 #     elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
72 #         define SENF_BUFFER_USE_LOCALS 1
73 #     endif
74 #
75 #     if !defined(SENF_BUFFER_USE_LOCALS) && !defined(SENF_BUFFER_USE_ALLOCA)
76 #         define SENF_BUFFER_USE_NEW 1
77 #     endif
78 #
79 # endif
80 #
81 # ifndef SENF_SENFLOG_LIMIT
82 #     ifndef SENF_DEBUG
83 #         define SENF_SENFLOG_LIMIT senf::log::IMPORTANT
84 #     else
85 #         define SENF_SENFLOG_LIMIT senf::log::NOTICE
86 #     endif
87 # endif
88 #
89 # ifndef SENF_DEBUG_BACKTRACE_NUMCALLERS
90 #     define SENF_DEBUG_BACKTRACE_NUMCALLERS 64
91 # endif
92 #
93 # ifndef SENF_CONSOLE_MAX_COMMAND_ARITY 
94 #     define SENF_CONSOLE_MAX_COMMAND_ARITY 6
95 # endif
96
97 # ifndef PHOENIX_LIMIT
98 #     define PHOENIX_LIMIT 6
99 # endif
100 #
101 # if __GLIBC__>=2 && __GLIBC_MINOR__>=8
102 #     define HAVE_TIMERFD 1
103 # endif
104
105 # ///////////////////////////////hh.e////////////////////////////////////////
106 # endif
107  
108 \f
109 // Local Variables:
110 // mode: c++
111 // fill-column: 100
112 // comment-column: 40
113 // c-file-style: "senf"
114 // indent-tabs-mode: nil
115 // ispell-local-dictionary: "american"
116 // compile-command: "scons -u all_tests"
117 // End:
118