Enabled exactness to use efl beta API's

Summary: Signed-off-by: kabeer khan <kabeer.khan@samsung.com>

Reviewers: cedric, tasn

Differential Revision: https://phab.enlightenment.org/D2583
master
kabeer khan 8 years ago committed by Tom Hacohen
parent c0b95e61cd
commit 834021b743
  1. 1
      .gitignore
  2. 3
      configure.ac
  3. 5
      m4/efl_beta.m4
  4. 1
      src/bin/run_test.h

1
.gitignore vendored

@ -23,6 +23,7 @@ Makefile.in
/config.status
/config.sub
/configure
/compile
/depcomp
/doc/evas.dox
/evas.spec

@ -3,6 +3,7 @@ dnl Process this file with autoconf to produce a configure script.
AC_INIT([exactness], [0.1.0], [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_CANONICAL_TARGET
@ -18,6 +19,8 @@ AC_C_CONST
AM_PROG_CC_C_O
EFL_ENABLE_BETA_API_SUPPORT
PKG_PROG_PKG_CONFIG
AC_PROG_LIBTOOL

@ -0,0 +1,5 @@
dnl use: EFL_ENABLE_BETA_API_SUPPORT
AC_DEFUN([EFL_ENABLE_BETA_API_SUPPORT],
[
AC_DEFINE([EFL_BETA_API_SUPPORT], [1], [Enable access to unstable EFL API that are still in beta])
])

@ -1,7 +1,6 @@
#ifndef RUN_TEST_H
#define RUN_TEST_H
#define EFL_BETA_API_SUPPORT
#include <Emile.h>
#include "list_file.h"

Loading…
Cancel
Save