embryo: add Exotic support.

SVN revision: 68399
This commit is contained in:
Cedric BAIL 2012-02-24 11:16:23 +00:00
parent 423cc7ba43
commit 342cf18748
6 changed files with 78 additions and 3 deletions

View File

@ -109,6 +109,21 @@ AC_SUBST(EFL_EMBRYO_BUILD)
# For embryo_cc_prefix.c
PKG_CHECK_MODULES([EINA], [eina >= 1.1.0])
### Checks for portability layer
PKG_CHECK_MODULES([EXOTIC],
[exotic],
[enable_exotic="yes"],
[enable_exotic="no"])
if test "x${enable_exotic}" = "xyes"; then
requirement_eina="exotic ${requirement_eina}"
EINA_CFLAGS="${EINA_CFLAGS} ${EXOTIC_CFLAGS}"
EINA_LIBS="${EXOTIC_LIBS}"
AC_DEFINE([HAVE_EXOTIC], [1], [Define to 1 if you have Exotic.])
fi
### Checks for header files
AC_CHECK_HEADERS([unistd.h])
@ -167,7 +182,7 @@ case "$host_os" in
AC_DEFINE(HAVE_GETTIMEOFDAY, 1, [Defined to 1 (MinGW platform)])
;;
*)
AC_CHECK_FUNCS(gettimeofday)
EFL_CHECK_GETTIMEOFDAY([], [AC_MSG_ERROR([Cannot find gettimeofday()])])
;;
esac

View File

@ -13,7 +13,7 @@ AC_CHECK_HEADER([fnmatch.h], [_efl_have_fnmatch="yes"], [_efl_have_fnmatch="no"]
if test "x${_efl_have_fnmatch}" = "xyes" ; then
AC_SEARCH_LIBS([fnmatch],
[fnmatch evil iberty],
[fnmatch evil exotic iberty],
[_efl_have_fnmatch="yes"],
[_efl_have_fnmatch="no"])
fi

View File

@ -0,0 +1,48 @@
dnl Copyright (C) 2011 Cedric Bail <cedric.bail@free.fr>
dnl This code is public domain and can be freely used or copied.
dnl Macro that check for gettimeofday definition
dnl Usage: EFL_CHECK_GETTIMEOFDAY(ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND])
dnl Define EFL_HAVE_GETTIMEOFDAY
AC_DEFUN([EFL_CHECK_GETTIMEOFDAY],
[
_efl_have_gettimeofday="no"
AC_LINK_IFELSE(
[AC_LANG_PROGRAM([[
#include <stdlib.h>
#include <sys/time.h>
]],
[[
int res;
res = gettimeofday(NULL, NULL);
]])],
[_efl_have_gettimeofday="yes"],
[_efl_have_gettimeofday="no"])
if test "x${_efl_have_gettimeofday}" = "xno" -a "x${enable_exotic}" = "xyes"; then
SAVE_LIBS="${LIBS}"
SAVE_CFLAGS="${CFLAGS}"
LIBS="${LIBS} ${EXOTIC_LIBS}"
CFLAGS="${CFLAGS} ${EXOTIC_CFLAGS}"
AC_LINK_IFELSE(
[AC_LANG_PROGRAM([[
#include <Exotic.h>
]],
[[
int res;
res = gettimeofday(NULL, NULL);
]])],
[_efl_have_gettimeofday="yes"],
[_efl_have_gettimeofday="no"])
fi
if test "x${_efl_have_gettimeofday}" = "xyes"; then
AC_DEFINE([EFL_HAVE_GETTIMEOFDAY], [1], [Defined if gettimeofday is available.])
fi
AS_IF([test "x${_efl_have_gettimeofday}" = "xyes"], [$1], [$2])
])

View File

@ -29,6 +29,10 @@
#include <stdio.h>
#include <string.h>
#ifdef HAVE_EXOTIC
# include <Exotic.h>
#endif
#include "Embryo.h"
#include "embryo_private.h"

View File

@ -28,6 +28,10 @@ void *alloca (size_t);
# endif
#endif
#ifdef HAVE_EXOTIC
# include <Exotic.h>
#endif
#include <stdlib.h>
#include <stdio.h>
#include <string.h>

View File

@ -2,7 +2,7 @@
# include "config.h"
#endif
#ifndef HAVE_GETTIMEOFDAY
#ifndef EFL_HAVE_GETTIMEOFDAY
# error "Your platform isn't supported yet"
#endif
@ -17,6 +17,10 @@
# include <Evil.h>
#endif
#ifdef HAVE_EXOTIC
# include <Exotic.h>
#endif
#include "Embryo.h"
#include "embryo_private.h"