diff --git a/src/lib/efl/Efl_Config.h.cmake b/src/lib/efl/Efl_Config.h.cmake deleted file mode 100644 index 5c7a420dae..0000000000 --- a/src/lib/efl/Efl_Config.h.cmake +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef EFL_CONFIG_H -#define EFL_CONFIG_H - -/* Add -DEFL_API_OVERRIDE ot your CFLAGS to override the default - * installed api set and then fter that -DEFL_NOLEGACY_API_SUPPORT - * as desired - */ -#ifndef EFL_API_OVERRIDE - -#cmakedefine EFL_API_LEGACY_DEF -#cmakedefine EFL_BETA_API_SUPPORT -#endif - -#define EFL_VERSION_MAJOR @PROJECT_VERSION_MAJOR@ -#define EFL_VERSION_MINOR @PROJECT_VERSION_MINOR@ -#define EFL_BUILD_ID "@PROJECT_VERSION_TWEAK@" -#endif diff --git a/src/lib/efl/config.h.cmake b/src/lib/efl/config.h.cmake deleted file mode 100644 index 9bf51267f6..0000000000 --- a/src/lib/efl/config.h.cmake +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef CONFIG_H -#define CONFIG_H - -#ifndef _GNU_SOURCE -#define _GNU_SOURCE -#endif - -#include "config_gen.h" - -#if defined (HAVE_LISTXATTR) && defined (HAVE_SETXATTR) && defined (HAVE_GETXATTR) -#define HAVE_XATTR -#endif - -//for now statically define that to one -#define STRERROR_R_CHAR_P 1 - -#endif diff --git a/src/lib/eina/eina_config.h.cmake b/src/lib/eina/eina_config.h.cmake deleted file mode 100644 index 6db7c81eb5..0000000000 --- a/src/lib/eina/eina_config.h.cmake +++ /dev/null @@ -1,48 +0,0 @@ -/* EINA - EFL data type library - * Copyright (C) 2008 Cedric Bail - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; - * if not, see . - */ - -#ifndef EINA_CONFIG_H_ -#define EINA_CONFIG_H_ - -#ifdef HAVE_EXOTIC -# include -#endif - -#include "eina_config_gen.h" - -#include - -#ifndef __WORDSIZE -# if defined(__OPENBSD__) && (INTPTR_MAX == INT32_MAX) -# define __WORDSIZE 32 -# else -# define __WORDSIZE 64 -# endif -#endif - -/* Do not turn the following #define as meaning EFL64. We are only - interested to know if sizeof (void*) == 64bits or not. Those means - something else. - - defined(__x86_64__) || defined(__x86_64) || defined(__amd64__) || defined(__amd64) - */ -#if defined(_WIN64) || defined(__LP64__) || defined(_LP64) || defined(__ppc64__) -# define EFL64 -#endif - -#endif /* EINA_CONFIG_H_ */