From: caro Date: Thu, 6 Jan 2011 18:27:21 +0000 (+0000) Subject: add guards in config.h to avoid multiple inclusions X-Git-Tag: submit/2.0alpha-wayland/20121127.222001~222 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=78df728c13ed75d325b091f05d8a65a30009d222;p=profile%2Fivi%2Feet.git add guards in config.h to avoid multiple inclusions git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eet@55940 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/configure.ac b/configure.ac index 3b49c76..6531006 100644 --- a/configure.ac +++ b/configure.ac @@ -22,12 +22,17 @@ AC_INIT([eet], [v_ver.beta3], [enlightenment-devel@lists.sourceforge.net]) AC_PREREQ([2.52]) AC_CONFIG_SRCDIR([configure.ac]) AC_CONFIG_MACRO_DIR([m4]) -AC_CANONICAL_BUILD -AC_CANONICAL_HOST -AC_ISC_POSIX + +AC_CONFIG_HEADERS([config.h]) +AH_TOP([ +#ifndef EFL_CONFIG_H__ +#define EFL_CONFIG_H__ +]) +AH_BOTTOM([ +#endif /* EFL_CONFIG_H__ */ +]) AM_INIT_AUTOMAKE([1.6 dist-bzip2]) -AM_CONFIG_HEADER([config.h]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AC_LIBTOOL_WIN32_DLL @@ -52,6 +57,12 @@ AC_SUBST(release_info) VMAJ=v_maj AC_SUBST(VMAJ) + +### Needed information + +AC_CANONICAL_BUILD +AC_CANONICAL_HOST + ### Default options with respect to host want_gnutls="auto" @@ -413,6 +424,7 @@ AC_SUBST(lt_enable_auto_import) EFL_LINKER_FLAG([-Wl,--as-needed]) ### Checks for library functions +AC_ISC_POSIX AC_FUNC_ALLOCA AC_CHECK_FUNCS(fmemopen open_memstream realpath)