From a98924ce6df6653cc2f8c5c4ec09195fb0f06520 Mon Sep 17 00:00:00 2001 From: Gustavo Sverzut Barbieri Date: Fri, 26 Feb 2010 00:20:34 +0000 Subject: [PATCH] turn off build of ecore-txt and ecore-config by default. These are deprecated and will be killed in short time, stop using them! Recommendations: * ecore-txt: use eina_str_convert, drop in replacement, just sed. * ecore-config: convert your code to use eet + Eet_Data_Descriptors directly, it is simpler and faster, but requires you to change your code. Consider using eet_data_descriptor_file_new() and eet_eina_file_data_descriptor_class_set() or EET_EINA_FILE_DATA_DESCRIPTOR_CLASS_SET(). Then describe your type with EET_DATA_DESCRIPTOR_ADD_*(). SVN revision: 46494 --- legacy/ecore/configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/legacy/ecore/configure.ac b/legacy/ecore/configure.ac index 428238ed69..db9b2c142e 100644 --- a/legacy/ecore/configure.ac +++ b/legacy/ecore/configure.ac @@ -113,8 +113,8 @@ want_glib="no" # core modules want_ecore_data="yes" -want_ecore_txt="yes" -want_ecore_con="no" +want_ecore_txt="no" +want_ecore_con="yes" want_ecore_ipc="no" want_ecore_file="yes" want_ecore_config="no" @@ -195,7 +195,7 @@ case "$host_os" in want_openssl="auto" want_ecore_con="yes" want_ecore_ipc="yes" - want_ecore_config="yes" + want_ecore_config="no" want_ecore_imf="yes" want_ecore_quartz="yes" want_ecore_evas_quartz="yes" @@ -214,7 +214,7 @@ case "$host_os" in want_tslib="yes" want_ecore_con="yes" want_ecore_ipc="yes" - want_ecore_config="yes" + want_ecore_config="no" want_ecore_imf="yes" want_ecore_x="yes" want_ecore_evas_software_x11="yes"