build - cmake files - remove old seemingly unused cmake files

This commit is contained in:
Carsten Haitzler 2019-07-24 17:52:31 +01:00
parent a1421564e5
commit 0cd5427c3f
3 changed files with 0 additions and 82 deletions

View File

@ -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

View File

@ -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

View File

@ -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 <http://www.gnu.org/licenses/>.
*/
#ifndef EINA_CONFIG_H_
#define EINA_CONFIG_H_
#ifdef HAVE_EXOTIC
# include <Exotic.h>
#endif
#include "eina_config_gen.h"
#include <limits.h>
#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_ */