aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/eina/acinclude.m4
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/acinclude.m4
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/acinclude.m414
1 files changed, 14 insertions, 0 deletions
diff --git a/libraries/eina/acinclude.m4 b/libraries/eina/acinclude.m4
new file mode 100644
index 0000000..cfc0859
--- /dev/null
+++ b/libraries/eina/acinclude.m4
@@ -0,0 +1,14 @@
1m4_ifndef([AC_HEADER_ASSERT], [
2# AC_HEADER_ASSERT
3# ----------------
4# Check whether to enable assertions.
5AC_DEFUN([AC_HEADER_ASSERT],
6[
7 AC_MSG_CHECKING([whether to enable assertions])
8 AC_ARG_ENABLE([assert],
9 [ --disable-assert turn off assertions],
10 [AC_MSG_RESULT([no])
11 AC_DEFINE(NDEBUG, 1, [Define to 1 if assertions should be disabled.])],
12 [AC_MSG_RESULT(yes)])
13])
14])