aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/eina/src/include/eina_config.h.in
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-04 18:41:13 +1000
committerDavid Walter Seikel2012-01-04 18:41:13 +1000
commitdd7595a3475407a7fa96a97393bae8c5220e8762 (patch)
treee341e911d7eb911a51684a7412ef7f7c7605d28e /libraries/eina/src/include/eina_config.h.in
parentAdd the skeleton. (diff)
downloadSledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.zip
SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.gz
SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.bz2
SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.xz
Add the base Enlightenment Foundation Libraries - eina, eet, evas, ecore, embryo, and edje.
Note that embryo wont be used, but I'm not sure yet if you can build edje without it.
Diffstat (limited to '')
-rw-r--r--libraries/eina/src/include/eina_config.h.in67
1 files changed, 67 insertions, 0 deletions
diff --git a/libraries/eina/src/include/eina_config.h.in b/libraries/eina/src/include/eina_config.h.in
new file mode 100644
index 0000000..be328cd
--- /dev/null
+++ b/libraries/eina/src/include/eina_config.h.in
@@ -0,0 +1,67 @@
1/* EINA - EFL data type library
2 * Copyright (C) 2008 Cedric Bail
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library;
16 * if not, see <http://www.gnu.org/licenses/>.
17 */
18
19#ifndef EINA_CONFIG_H_
20#define EINA_CONFIG_H_
21
22#ifdef EINA_MAGIC_DEBUG
23# undef EINA_MAGIC_DEBUG
24#endif
25@EINA_CONFIGURE_MAGIC_DEBUG@
26
27#ifdef EINA_DEFAULT_MEMPOOL
28# undef EINA_DEFAULT_MEMPOOL
29#endif
30@EINA_CONFIGURE_DEFAULT_MEMPOOL@
31
32#ifdef EINA_SAFETY_CHECKS
33# undef EINA_SAFETY_CHECKS
34#endif
35@EINA_CONFIGURE_SAFETY_CHECKS@
36
37#ifdef EINA_HAVE_INTTYPES_H
38# undef EINA_HAVE_INTTYPES_H
39#endif
40@EINA_CONFIGURE_HAVE_INTTYPES_H@
41
42#ifdef EINA_HAVE_STDINT_H
43# undef EINA_HAVE_STDINT_H
44#endif
45@EINA_CONFIGURE_HAVE_STDINT_H@
46
47#ifdef EINA_HAVE_THREADS
48# undef EINA_HAVE_THREADS
49#endif
50@EINA_CONFIGURE_HAVE_THREADS@
51
52#ifdef EINA_HAVE_DEBUG_THREADS
53# undef EINA_HAVE_DEBUG_THREADS
54#endif
55@EINA_CONFIGURE_HAVE_DEBUG_THREADS@
56
57#ifdef EINA_SIZEOF_WCHAR_T
58# undef EINA_SIZEOF_WCHAR_T
59#endif
60#define EINA_SIZEOF_WCHAR_T @EINA_SIZEOF_WCHAR_T@
61
62#ifdef EINA_HAVE_ON_OFF_THREADS
63# undef EINA_HAVE_ON_OFF_THREADS
64#endif
65@EINA_CONFIGURE_HAVE_ON_OFF_THREADS@
66
67#endif /* EINA_CONFIG_H_ */