From 92e084f9ca9c6da80334d4975e21253ca70d35bc Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Fri, 25 Jan 2008 03:35:49 +0000 Subject: [PATCH] asparagus! also pass distcheck and have common autofoo init that is consistent for package, version etc. SVN revision: 33602 --- legacy/ecore/configure.in | 4 ++-- legacy/edje/configure.in | 2 +- legacy/edje/src/lib/edje_embryo.c | 10 +++++----- legacy/eet/configure.in | 2 +- legacy/efreet/configure.in | 2 +- legacy/embryo/configure.in | 2 +- legacy/emotion/configure.in | 2 +- legacy/evas/configure.in | 2 +- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/legacy/ecore/configure.in b/legacy/ecore/configure.in index 72bbe47473..a4ff91a7fa 100644 --- a/legacy/ecore/configure.in +++ b/legacy/ecore/configure.in @@ -1,7 +1,7 @@ -dnl Process this file with autoconf to produce a configure script. +# get rid of that stupid cache mechanism rm -f config.cache -AC_INIT(ecore, 0.9.9.041, enlightenment-devel@lists.sourceforge.net) +AC_INIT(ecore, 0.9.9.042, enlightenment-devel@lists.sourceforge.net) AC_PREREQ(2.52) AC_CONFIG_SRCDIR(configure.in) AC_CANONICAL_BUILD diff --git a/legacy/edje/configure.in b/legacy/edje/configure.in index 59b98a720c..0d94dc1226 100644 --- a/legacy/edje/configure.in +++ b/legacy/edje/configure.in @@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script. # get rid of that stupid cache mechanism rm -f config.cache -AC_INIT(edje, 0.5.0.041, enlightenment-devel@lists.sourceforge.net) +AC_INIT(edje, 0.5.0.042, enlightenment-devel@lists.sourceforge.net) AC_PREREQ(2.52) AC_CONFIG_SRCDIR(configure.in) AC_CANONICAL_BUILD diff --git a/legacy/edje/src/lib/edje_embryo.c b/legacy/edje/src/lib/edje_embryo.c index 9093a2af04..c10f39445d 100644 --- a/legacy/edje/src/lib/edje_embryo.c +++ b/legacy/edje/src/lib/edje_embryo.c @@ -212,7 +212,7 @@ SETSTR((s), params[3]); } \ else { \ char *ss; \ - ss = alloca(strlen((s))); \ + ss = alloca(strlen((s)) + 1); \ strcpy(ss, (s)); \ ss[params[4] - 2] = 0; \ SETSTR(ss, params[3]); }} \ @@ -298,7 +298,7 @@ _edje_embryo_fn_get_str(Embryo_Program *ep, Embryo_Cell *params) { char *ss; - ss = alloca(strlen(s)); + ss = alloca(strlen(s) + 1); strcpy(ss, s); ss[params[3] - 1] = 0; SETSTR(ss, params[2]); @@ -521,7 +521,7 @@ _edje_embryo_fn_fetch_str(Embryo_Program *ep, Embryo_Cell *params) { char *ss; - ss = alloca(strlen(s)); + ss = alloca(strlen(s) + 1); strcpy(ss, s); ss[params[4] - 1] = 0; SETSTR(ss, params[3]); @@ -868,7 +868,7 @@ _edje_embryo_fn_get_state(Embryo_Program *ep, Embryo_Cell *params) { char *ss; - ss = alloca(strlen(s)); + ss = alloca(strlen(s) + 1); strcpy(ss, s); ss[params[3] - 1] = 0; SETSTR(ss, params[2]); @@ -1043,7 +1043,7 @@ _edje_embryo_fn_get_text(Embryo_Program *ep, Embryo_Cell *params) { char *ss; - ss = alloca(strlen(s)); + ss = alloca(strlen(s) + 1); strcpy(ss, s); ss[params[3] - 1] = 0; SETSTR(ss, params[2]); diff --git a/legacy/eet/configure.in b/legacy/eet/configure.in index 41cc572537..7117ff6b4c 100644 --- a/legacy/eet/configure.in +++ b/legacy/eet/configure.in @@ -1,7 +1,7 @@ # get rid of that stupid cache mechanism rm -f config.cache -AC_INIT(eet, 0.9.10.041, enlightenment-devel@lists.sourceforge.net) +AC_INIT(eet, 0.9.10.042, enlightenment-devel@lists.sourceforge.net) AC_PREREQ(2.52) AC_CONFIG_SRCDIR(configure.in) AC_CANONICAL_BUILD diff --git a/legacy/efreet/configure.in b/legacy/efreet/configure.in index f62eeb9c61..a39d30c5eb 100644 --- a/legacy/efreet/configure.in +++ b/legacy/efreet/configure.in @@ -1,6 +1,6 @@ rm -f config.cache -AC_INIT(efreet, 0.0.3.006, enlightenment-devel@lists.sourceforge.net) +AC_INIT(efreet, 0.0.3.042, enlightenment-devel@lists.sourceforge.net) AC_PREREQ(2.52) AC_CONFIG_SRCDIR(configure.in) AC_CANONICAL_BUILD diff --git a/legacy/embryo/configure.in b/legacy/embryo/configure.in index 6298c614d5..019afc1ae3 100644 --- a/legacy/embryo/configure.in +++ b/legacy/embryo/configure.in @@ -1,7 +1,7 @@ # get rid of that stupid cache mechanism rm -f config.cache -AC_INIT(embryo, 0.9.1.041, enlightenment-devel@lists.sourceforge.net) +AC_INIT(embryo, 0.9.1.042, enlightenment-devel@lists.sourceforge.net) AC_PREREQ(2.52) AC_CONFIG_SRCDIR(configure.in) AC_CANONICAL_BUILD diff --git a/legacy/emotion/configure.in b/legacy/emotion/configure.in index eab2662054..db90cee72f 100644 --- a/legacy/emotion/configure.in +++ b/legacy/emotion/configure.in @@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script. # get rid of that stupid cache mechanism rm -f config.cache -AC_INIT(emotion, 0.0.1.008, enlightenment-devel@lists.sourceforge.net) +AC_INIT(emotion, 0.1.0.042, enlightenment-devel@lists.sourceforge.net) AC_PREREQ(2.52) AC_CONFIG_SRCDIR(configure.in) diff --git a/legacy/evas/configure.in b/legacy/evas/configure.in index 00a9a7aad0..e40efcf635 100644 --- a/legacy/evas/configure.in +++ b/legacy/evas/configure.in @@ -1,7 +1,7 @@ # get rid of that stupid cache mechanism rm -f config.cache -AC_INIT(evas, 0.9.9.041, enlightenment-devel@lists.sourceforge.net) +AC_INIT(evas, 0.9.9.042, enlightenment-devel@lists.sourceforge.net) AC_PREREQ(2.52) AC_CONFIG_SRCDIR(configure.in) AC_CANONICAL_BUILD