NEW FILE HEADER / COPYRIGHT FORMAT
[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
31 //#include "config.mpp"
32 ///////////////////////////////hh.p////////////////////////////////////////
33
34 # include "local_config.hh"
35
36 # ifndef SENF_ABSOLUTE_INCLUDE_PATH
37 #     define SENF_ABSOLUTE_INCLUDE_PATH(senf_relative_include_file_path) <senf/senf_relative_include_file_path>
38 # endif
39
40 # ifndef SENF_copy_n
41 #     include <algorithm>
42 #     if defined(__GNUC__) && ! defined(_STLP_ALGORITHM) && (__GNUC__>=4 || (__GNUC__==3 && __GNUC_MINOR__>=4))
43 #         include <ext/algorithm>
44 #         define SENF_copy_n __gnu_cxx::copy_n
45 #     else
46 #         define SENF_copy_n std::copy_n
47 #     endif
48 # endif
49
50 # ifndef SENF_MPL_RV_ALIGNMENT
51 #     define SENF_MPL_RV_ALIGNMENT 16
52 # endif
53
54 # if !defined(SENF_BUFFER_USE_LOCALS) && !defined(SENF_BUFFER_USE_ALLOCA) && !defined(SENF_BUFFER_USE_NEW)
55 #
56 #     if defined(__GNUC__)
57 #         define SENF_BUFFER_USE_LOCALS 1
58 #
59 #     // Add other compilers here ...
60 #
61 #     // dynamic arrays are part of C99. Which is NOT part of C++ 
62 #     // but lets try nonetheless ...
63 #     elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
64 #         define SENF_BUFFER_USE_LOCALS 1
65 #     endif
66 #
67 #     if !defined(SENF_BUFFER_USE_LOCALS) && !defined(SENF_BUFFER_USE_ALLOCA)
68 #         define SENF_BUFFER_USE_NEW 1
69 #     endif
70 #
71 # endif
72
73 # ifndef SENF_SENFLOG_LIMIT
74 #     define SENF_SENFLOG_LIMIT senf::log::VERBOSE
75 # endif
76
77 ///////////////////////////////hh.e////////////////////////////////////////
78 //#include "config.cci"
79 //#include "config.ct"
80 //#include "config.cti"
81 #endif
82
83 \f
84 // Local Variables:
85 // mode: c++
86 // fill-column: 100
87 // comment-column: 40
88 // c-file-style: "senf"
89 // indent-tabs-mode: nil
90 // ispell-local-dictionary: "american"
91 // compile-command: "scons -u all_tests"
92 // End: