build - cmake files - remove old seemingly unused cmake files
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>
Wed, 24 Jul 2019 16:52:31 +0000 (17:52 +0100)
committerWooHyun Jung <wh0705.jung@samsung.com>
Mon, 5 Aug 2019 01:47:21 +0000 (10:47 +0900)
src/lib/efl/Efl_Config.h.cmake [deleted file]
src/lib/efl/config.h.cmake [deleted file]
src/lib/eina/eina_config.h.cmake [deleted file]

diff --git a/src/lib/efl/Efl_Config.h.cmake b/src/lib/efl/Efl_Config.h.cmake
deleted file mode 100644 (file)
index 5c7a420..0000000
+++ /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 (file)
index 9bf5126..0000000
+++ /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 (file)
index 6db7c81..0000000
+++ /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 <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_ */