[E-devel] [Fwd: E CVS: www andreas]

2007-04-27 Thread Landry, Marc-Andre
Am I wrong or there is no more eet-config? If so there is an error with
this addition.

Feel little lost with all the last month change.
LMA

 Original Message 

To: [EMAIL PROTECTED]
Subject: E CVS: www andreas
From: Enlightenment CVS <[EMAIL PROTECTED]>
Message-Id: <[EMAIL PROTECTED]>
Date: Sun, 22 Apr 2007 17:02:08 -0400 (EDT)

Enlightenment CVS committal

Author  : andreas
Project : web
Module  : www

Dir : web/www/p/about/libs/eet


Modified Files:
en-body


Log Message:
lib about pages

===
RCS file: /cvs/e/web/www/p/about/libs/eet/en-body,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- en-body 15 Apr 2007 11:32:19 -  1.1
+++ en-body 22 Apr 2007 21:01:37 -  1.2
@@ -1 +1,88 @@
-Body
+
+
+
+
+Eet
+
+
+
+
+
+
+EET is a tiny library designed to write an arbitary set of chunks of
+data to a file and optionally compress each chunk (very much like a zip
+file) and allow fast random-access reading of the file later on. It
+does not do zip as a zip itself has more complexity than is needed, and
+it was much simpler to impliment this once here.
+
+Eet is extremely fast, small and simple. Eet files can be very small
+and highly compressed, making them very optimal for just sending across
+the internet without having to archive, compress or decompress and
+install them. They allow for lightning-fast random-acess reads once
+created, making them perfect for storing data that is written once (or
+rarely) and read many times, but the program does not want to have to
+read it all in at once.
+
+It also can encode and decode data structures in memory, as well as
+image data for saving to Eet files or sending across the network to
+other machines, or just writing to arbitary files on the system. All
+data is encoded in a platform independant way and can be written and
+read by any architecture.
+
+Code Example:
+
+
+#include 
+
+int main(int argc, char **argv) {
+  Eet_File *ef;
+  char buf[1024], *ret, **list;
+  int size, num, i;
+
+  strcpy(buf, "Here is a string of data to save!");
+
+  ef = eet_open("/tmp/my_file.eet, EET_FILE_MODE_WRITE);
+  if (!ef) return -1;
+  if (!eet_write(ef, "/key/to_store/at", buf, 1024, 1))
+fprintf("Error writing data!n");
+  eet_close(ef);
+
+  ef = eet_open("/tmp/my_file.eet, EET_FILE_MODE_READ);
+  if (!ef) return -1;
+  list = eet_list(ef, "*", "num);
+  if (list)
+{
+  for (i = 0; i < num; i++)
+printf("Key stored: %sn", list[i]);
+  free(list);
+}
+  ret = eet_read(ef, "/key/to_store/at", "size);
+  if (ret)
+{
+  printf("Data read (%i bytes):n%sn", size, ret);
+  free(ret);
+}
+  eet_close(ef);
+
+  return 0;
+}
+
+
+This code is compiled in the following manner: gcc `eet-config
--libs --cflags` eet_example.c -o eet_example
+
+
+EET also provides the CLI "eet" tool which allows for easy EET
+management and creation.  Supported operations with the tool include
+listing the contents of an eet file, and both packing and unpacking
+of an eet file, as well as some compression control over files to
+be packed.
+
+
+
+
+
+EET's project manager is http://enlightenment.sourceforge.net/Main/The_Team/";>Carsten
"Rasterman" Haitzler.
+
+
+
+



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Patch for e_modules to add support to gettext with automake-1.10

2007-03-17 Thread Landry, Marc-Andre
Kim Woelders wrote:
> You may not like autopoint and there have been people claiming that 
> building e17 (e17/apps/e) is broken, but in my opinion nobody has yet
>  provided any serious "proof" like logs showing what fails when
> building from a clean checkout using the current setup.
> 

I may try to provide such a log of e17 and maybe all other projects if
any one wish for and make it use automake-1.9 fisrt and then
automake-1.10. This will only take me about 2 days to generate maybe
more to make it acurate.

> 
> /Kim

/LMA

NB: Still don't understand all the fuse about using automake-1.10 and is
dependancy? Don't wan't to start another flaming subject but I wan't to
deeply understand what blocking this upgrade. This may help to settle
this. Maybe drag this to upstream: ie autofoo. What fact generate so
much trouble? Some have point out copyright infrigment or something
alike, still don't get it but haven't had time to dig this.

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Screen[saver/lock/etc] stuff

2007-03-17 Thread Landry, Marc-Andre
Ravenlock wrote:
> On 03/16/2007 13:47, Luchezar Petkov wrote:
>> And by the way, most end users don't know what "DMPS" is... Even I
>> didn't knew before checking out Wikipedia. :-)
>>
> 
> I agree.  Many/Most do not.  "Power Management" might be better?  Or 
> "Display Power Management"?

"Power management" made me also think about UPS so I would rather use
"Display Power Management".

Marc-André

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Forecasts font overlapping

2007-02-28 Thread Landry, Marc-Andre
Doing the same as before, the probleme could be bypass by changing from
mb to kPa wich is to the international system.

105 b = 0.1 MPa or 100 kNA/m² = 100kPa.

so

1014.00 mb = 101.4 kPa

same precision but maybe it will fit in just like English value.

or

Changing the "Steady", "Rising" and alike for a little icon.


Виктор Кожухаров wrote:
> Could you try updating the module from cvs and see whether this
> overlapping still persists?
> 
> В пн, 2007-02-26 в 19:13 -0500, Landry, Marc-Andre написа:
>> I have just install the newly add forecasts e-modules to see a little
>> bug. Nothing that much anoying else that I can't read is beginning.
>>
>> http://picasaweb.google.fr/lma1980/EnlightenmentDR17Screenshot/photo#5035991375881178274

Keep on good work,
LMA

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Forecasts font overlapping

2007-02-26 Thread Landry, Marc-Andre
I have just install the newly add forecasts e-modules to see a little
bug. Nothing that much anoying else that I can't read is beginning.

http://picasaweb.google.fr/lma1980/EnlightenmentDR17Screenshot/photo#5035991375881178274

Keep on good work,
LMA

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Patch for e_modules to add support to gettext with automake-1.10

2007-02-13 Thread Landry, Marc-Andre
I will suggest a solution in 3 days that won't make you comment out all
those line.

Hope you'll like it!

Marc-André Landry

PS : I don't have any cvs commit ability so don't be affraid that I
broke something in your box else you apply my patch.

Christopher Michael wrote:
> Kim Woelders wrote:
>> Landry, Marc-Andre wrote:
>>> Michael Jennings wrote:
>>>> On Tuesday, 13 February 2007, at 09:17:51 (-0500),
>>>> Landry, Marc-Andre wrote:
>>>>
>>>>> +echo "Running autopoint..."; autopoint -f || exit 1
>>>> No.
>>>>
>>>> Michael
>>>>
>>> I will work on this for my self. I had lost track of this subject and I
>>> excuse me if I didn't understand that there will not be any support for
>>> this case. I will try to better help on the todo list for reporting
>>> patch.
>>>
>>> «Désolé» I didn't intended to take your time,
>>> Marc-André Landry
>>>
>> Don't feel bad. Autofoo in general and gettext in particular have a long
>> history of, lets say, exciting people.
>>
>> I still don't quite get all the opposition against autopoint (except the
>> stupid requirement that the cvs program must be available). In my
>> opinion automake-1.10 is not broken but people here insist on pissing
>> against the wind and refuse to set up configuration stuff as it is
>> supposed to be, and then blame the autotools that they don't work (/me
>> ducks).
>>
> Not trying to light the flames, but I have both cvs and automake-1.10
> installed here, and yet autopoint doesn't work for me. I have to comment
> out every autopoint in all the autogen.sh scripts that use it.
> 
>> The e17/apps/e autogen.sh has used autopoint for months now, and my
>> impression is that the noise level from people with autotool issues in
>> this module has decreased considerably since then.
>>
> Again, have to comment that out or else it doesn't build here.
> 
>> Anyway, I think adding autopoint to autogen.sh is only part of the
>> solution if you go down that path. There seem to be quite a few other
>> fixups required, like po/Makefile->po/Makefile.in in configure.in,
>> remove po/Makefile.am, add po/Makevars and po/POTFILES.in, order of
>> autoconf and autoheader in autogen.sh, and more.
>>
> Yes, all needing to be commented out here else I get massive failures.
> 
>> In case anybody bothers to persue this I have attached a patch for the
>> alarm module, which passes make distcheck with automake-1.9.6 as well as
>> automake-1.10 (a few bits in the patch are not related to gettext but
>> required just to pass distcheck). I'm not saying this is the One and
>> Only way to do this but only that this patch works for me.
>> No worries - I have absolutely no intention to commit this in fear of
>> what might happen to my reproductive powers.
>>
>> /Kim
> 
> dh

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Patch for e_modules to add support to gettext with automake-1.10

2007-02-13 Thread Landry, Marc-Andre
Michael Jennings wrote:
> On Tuesday, 13 February 2007, at 09:17:51 (-0500),
> Landry, Marc-Andre wrote:
> 
>> +echo "Running autopoint..."; autopoint -f || exit 1
> 
> No.
> 
> Michael
> 

I will work on this for my self. I had lost track of this subject and I
excuse me if I didn't understand that there will not be any support for
this case. I will try to better help on the todo list for reporting patch.

«Désolé» I didn't intended to take your time,
Marc-André Landry

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Patch for e_modules to add support to gettext with automake-1.10

2007-02-13 Thread Landry, Marc-Andre
Jesse Luehrs wrote:
> 
> You might want to take a look at the diff for net/autogen.sh again...
> 

Done! New and working patch attach.

Thank you Jesse, I am not used to do so big patch and not having time to
send it before other change append.

LMA
? autogen-4-automake-1.10.patch
Index: alarm/autogen.sh
===
RCS file: /var/cvs/e/e_modules/alarm/autogen.sh,v
retrieving revision 1.1
diff -u -r1.1 autogen.sh
--- alarm/autogen.sh8 Nov 2006 10:06:38 -   1.1
+++ alarm/autogen.sh13 Feb 2007 15:37:31 -
@@ -5,6 +5,7 @@
 
 touch README
 
+echo "Running autopoint..."; autopoint -f || exit 1
 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
Index: alarm/po/Makefile.am
===
RCS file: /var/cvs/e/e_modules/alarm/po/Makefile.am,v
retrieving revision 1.1
diff -u -r1.1 Makefile.am
--- alarm/po/Makefile.am8 Nov 2006 10:06:38 -   1.1
+++ alarm/po/Makefile.am13 Feb 2007 15:37:31 -
@@ -2,6 +2,7 @@
 
 MSGFMT = msgfmt
 
+
 localedir = @LOCALEDIR@
 locale_DATA = $(addsuffix .mo,$(ALL_LINGUAS))
 
Index: calendar/autogen.sh
===
RCS file: /var/cvs/e/e_modules/calendar/autogen.sh,v
retrieving revision 1.3
diff -u -r1.3 autogen.sh
--- calendar/autogen.sh 16 Mar 2006 20:56:09 -  1.3
+++ calendar/autogen.sh 13 Feb 2007 15:37:31 -
@@ -5,6 +5,7 @@
 
 touch README
 
+echo "Running autopoint..."; autopoint -f || exit 1
 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
Index: cpu/Makefile.am
===
RCS file: /var/cvs/e/e_modules/cpu/Makefile.am,v
retrieving revision 1.16
diff -u -r1.16 Makefile.am
--- cpu/Makefile.am 8 Nov 2006 12:43:17 -   1.16
+++ cpu/Makefile.am 13 Feb 2007 15:37:31 -
@@ -1,5 +1,7 @@
 MAINTAINERCLEANFILES = Makefile.in
 
+SUBDIRS = po
+
 EDJE_CC = @edje_cc@
 EDJE_FLAGS = -v \
 -id $(top_srcdir) \
Index: cpu/autogen.sh
===
RCS file: /var/cvs/e/e_modules/cpu/autogen.sh,v
retrieving revision 1.3
diff -u -r1.3 autogen.sh
--- cpu/autogen.sh  30 Aug 2006 18:08:52 -  1.3
+++ cpu/autogen.sh  13 Feb 2007 15:37:31 -
@@ -3,6 +3,7 @@
 rm -rf autom4te.cache
 rm -f aclocal.m4 ltmain.sh
 
+echo "Running autopoint..."; autopoint -f || exit 1
 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
Index: cpu/configure.in
===
RCS file: /var/cvs/e/e_modules/cpu/configure.in,v
retrieving revision 1.16
diff -u -r1.16 configure.in
--- cpu/configure.in20 Sep 2006 19:02:15 -  1.16
+++ cpu/configure.in13 Feb 2007 15:37:31 -
@@ -17,6 +17,12 @@
 AM_ENABLE_SHARED
 AM_PROG_LIBTOOL
 
+ALL_LINGUAS="bg eo fi it ja ru sv"
+AC_SUBST(ALL_LINGUAS)
+
+AM_GNU_GETTEXT([external])
+AM_GNU_GETTEXT_VERSION(0.14)
+
 MODULE_ARCH="$host_os-$host_cpu"
 AC_SUBST(MODULE_ARCH)
 AC_DEFINE_UNQUOTED(MODULE_ARCH, "$MODULE_ARCH", "Module architecture")
@@ -142,6 +148,7 @@
 
 AC_OUTPUT([
 Makefile
+po/Makefile
 module.desktop
 e_modules-cpu.spec
 ],[
Index: emu/autogen.sh
===
RCS file: /var/cvs/e/e_modules/emu/autogen.sh,v
retrieving revision 1.2
diff -u -r1.2 autogen.sh
--- emu/autogen.sh  20 Mar 2006 11:37:33 -  1.2
+++ emu/autogen.sh  13 Feb 2007 15:37:31 -
@@ -5,6 +5,7 @@
 
 touch README
 
+echo "Running autopoint..."; autopoint -f || exit 1
 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
Index: flame/autogen.sh
===
RCS file: /var/cvs/e/e_modules/flame/autogen.sh,v
retrieving revision 1.2
diff -u -r1.2 autogen.sh
--- flame/autogen.sh1 Apr 2006 19:35:59 -   1.2
+++ flame/autogen.sh13 Feb 2007 15:37:32 -
@@ -5,6 +5,7 @@
 
 touch README
 
+echo "Running autopoint..."; autopoint -f || exit 1
 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
Index: language/autogen.sh
===
RCS file: /var/cvs/e/e_modules/language/autogen.sh,v
retrieving revision 1.3
diff -u -r1.3 autogen.sh
--- language/autogen.sh 25 Jul 2006 22:07:16 -  1.3
+++ language/autogen.sh 13 Feb 2007 15:37:32 -
@@ -5,6 +5,7 @@
 

[E-devel] Patch for e_modules to add support to gettext with automake-1.10

2007-02-13 Thread Landry, Marc-Andre
Hello all,
great work, I would say amazing work! All the pieces are so great. Not
only that you will been able to raise the money for the servers. Beside,
I know, it was a long time ago I made a contribution to help on all the
project to support automake-1.10 and is 'caprice'.

I took a day off last week to make all the modules happy whit
automake-1.10 and here are those modification. It took time as I wanted
to test all of them before sending the patch. I have seen no flaws
beside that I haven't test all the linguas (= I also tried to correct
some configure.in file that where missing some information to correctly
got linked to gettext.

This patch shall not break anything as it touch mostly only the
autogen.sh script.

Continue the great work, I will try to send more support for
automake-1.10 later on. Beside I lost some mail on a crash that where
talking about this. Can't remember if it was okay to exit if autopoint
didn't work.

Sheer,
LMA
? autogen-4-automake-1.10.patch
Index: alarm/autogen.sh
===
RCS file: /var/cvs/e/e_modules/alarm/autogen.sh,v
retrieving revision 1.1
diff -u -r1.1 autogen.sh
--- alarm/autogen.sh8 Nov 2006 10:06:38 -   1.1
+++ alarm/autogen.sh13 Feb 2007 14:08:18 -
@@ -5,6 +5,7 @@
 
 touch README
 
+echo "Running autopoint..."; autopoint -f || exit 1
 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
Index: alarm/po/Makefile.am
===
RCS file: /var/cvs/e/e_modules/alarm/po/Makefile.am,v
retrieving revision 1.1
diff -u -r1.1 Makefile.am
--- alarm/po/Makefile.am8 Nov 2006 10:06:38 -   1.1
+++ alarm/po/Makefile.am13 Feb 2007 14:08:18 -
@@ -2,6 +2,7 @@
 
 MSGFMT = msgfmt
 
+
 localedir = @LOCALEDIR@
 locale_DATA = $(addsuffix .mo,$(ALL_LINGUAS))
 
Index: calendar/autogen.sh
===
RCS file: /var/cvs/e/e_modules/calendar/autogen.sh,v
retrieving revision 1.3
diff -u -r1.3 autogen.sh
--- calendar/autogen.sh 16 Mar 2006 20:56:09 -  1.3
+++ calendar/autogen.sh 13 Feb 2007 14:08:18 -
@@ -5,6 +5,7 @@
 
 touch README
 
+echo "Running autopoint..."; autopoint -f || exit 1
 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
Index: cpu/Makefile.am
===
RCS file: /var/cvs/e/e_modules/cpu/Makefile.am,v
retrieving revision 1.16
diff -u -r1.16 Makefile.am
--- cpu/Makefile.am 8 Nov 2006 12:43:17 -   1.16
+++ cpu/Makefile.am 13 Feb 2007 14:08:19 -
@@ -1,5 +1,7 @@
 MAINTAINERCLEANFILES = Makefile.in
 
+SUBDIRS = po
+
 EDJE_CC = @edje_cc@
 EDJE_FLAGS = -v \
 -id $(top_srcdir) \
Index: cpu/autogen.sh
===
RCS file: /var/cvs/e/e_modules/cpu/autogen.sh,v
retrieving revision 1.3
diff -u -r1.3 autogen.sh
--- cpu/autogen.sh  30 Aug 2006 18:08:52 -  1.3
+++ cpu/autogen.sh  13 Feb 2007 14:08:19 -
@@ -3,6 +3,7 @@
 rm -rf autom4te.cache
 rm -f aclocal.m4 ltmain.sh
 
+echo "Running autopoint..."; autopoint -f || exit 1
 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
Index: cpu/configure.in
===
RCS file: /var/cvs/e/e_modules/cpu/configure.in,v
retrieving revision 1.16
diff -u -r1.16 configure.in
--- cpu/configure.in20 Sep 2006 19:02:15 -  1.16
+++ cpu/configure.in13 Feb 2007 14:08:19 -
@@ -17,6 +17,12 @@
 AM_ENABLE_SHARED
 AM_PROG_LIBTOOL
 
+ALL_LINGUAS="bg eo fi it ja ru sv"
+AC_SUBST(ALL_LINGUAS)
+
+AM_GNU_GETTEXT([external])
+AM_GNU_GETTEXT_VERSION(0.14)
+
 MODULE_ARCH="$host_os-$host_cpu"
 AC_SUBST(MODULE_ARCH)
 AC_DEFINE_UNQUOTED(MODULE_ARCH, "$MODULE_ARCH", "Module architecture")
@@ -142,6 +148,7 @@
 
 AC_OUTPUT([
 Makefile
+po/Makefile
 module.desktop
 e_modules-cpu.spec
 ],[
Index: emu/autogen.sh
===
RCS file: /var/cvs/e/e_modules/emu/autogen.sh,v
retrieving revision 1.2
diff -u -r1.2 autogen.sh
--- emu/autogen.sh  20 Mar 2006 11:37:33 -  1.2
+++ emu/autogen.sh  13 Feb 2007 14:08:19 -
@@ -5,6 +5,7 @@
 
 touch README
 
+echo "Running autopoint..."; autopoint -f || exit 1
 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
Index: flame/autogen.sh
===
RCS file: /var/cvs/e/e_modules/flame/autogen.sh,v
retrieving revision 1.2
diff -

[E-devel] WBoD when I try accessing E Menu>Application>(sub menu)

2006-12-19 Thread Landry, Marc-Andre
White Box of Death when I try accessing E Menu>Application>(sub menu) or
to execute a command from 'Run Command'.

Attach a log from a gdb backtrace, I may add more information but I use
a batch file to generate this log so if you have request on some command
I may had to the batch file. It will be a pleasure to add them.

Marc-André Landry
LMA1980

NB: first bt is for menu access and second is for 'Run Command' facility.

Using host libthread_db library "/lib/libthread_db.so.1".
[Thread debugging using libthread_db enabled]
[New Thread -1215646032 (LWP 31568)]
0xb7fc2410 in __kernel_vsyscall ()
#0  0xb7fc2410 in __kernel_vsyscall ()
#1  0xb796128b in poll () from /lib/libc.so.6
#2  0xb7a26967 in _XWaitForReadable () from /usr/lib/libX11.so.6
#3  0x0001 in ?? ()
#4  0x in ?? ()
#5  0xb7ad3b24 in ?? () from /usr/lib/libX11.so.6
#6  0xb7a2f939 in _X11TransSocketRead () from /usr/lib/libX11.so.6
Previous frame inner to this frame (corrupt stack?)
[Current thread is 0 (process 31568)]
Using host libthread_db library "/lib/libthread_db.so.1".
[Thread debugging using libthread_db enabled]
[New Thread -1215777104 (LWP 31568)]
0xb7fa2410 in __kernel_vsyscall ()
#0  0xb7fa2410 in __kernel_vsyscall ()
#1  0xb794128b in poll () from /lib/libc.so.6
#2  0xb7a06967 in _XWaitForReadable () from /usr/lib/libX11.so.6
#3  0x0001 in ?? ()
#4  0x in ?? ()
#5  0xb7ab3b24 in ?? () from /usr/lib/libX11.so.6
#6  0xb7a0f939 in _X11TransSocketRead () from /usr/lib/libX11.so.6
Previous frame inner to this frame (corrupt stack?)
[Current thread is 0 (process 31568)]

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] RFC: Proposed Config Panel Refactoring

2006-11-28 Thread Landry, Marc-Andre
Christopher Michael wrote:
> Mooo :)
> 
> Based on some recent discussion in the ml about the new Config Panel and 
> the order of items listed, I am offering a "first stab" at this for 
> review/reorder:
> 
> Appearance
>   Wallpaper
>   Theme
>   Colors
>   Fonts
>   Borders
>   Icon Theme
>   Mouse Cursor
>   Transitions
>   Startup
> Screen
>   Virtual Desktops
>   Screen Resolution
>   Screen Lock
+   Shelves
> Behavior
>   Key Bindings
>   Mouse Bindings
> Menus
>   Application(s) Menu(s)
>   Menu Settings
> Windows
>   Window Display
>   Window Focus
>   Window Manipulation
> Language
>   Language Settings
>   Language Tool (TODO)
> Advanced
+   Modules
>   Performance
>   Window List
>   Run Command
>   Search Directories
>   File Associations (maybe rename to File Icons)
> - Extensions
> - Modules
> - Shelves
> 
> 
> 
> Comments welcome :)
> 
> Cheers,
> devilhorns

I think that "Extensions" could lead to some user miss understanding and
 that they belong to Screen and Advanced sections.

Keep on good work,
LMA1980

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] ETerm configure.in patch for automake-1.10 that ask the addition of AM_PROG_AS

2006-11-05 Thread Landry, Marc-Andre
The error :
/usr/share/automake-1.10/am/depend2.am: am__fastdepCCAS does not appear
in AM_CONDITIONAL
/usr/share/automake-1.10/am/depend2.am:   The usual way to define
`am__fastdepCCAS' is to add `AM_PROG_AS'
/usr/share/automake-1.10/am/depend2.am:   to `configure.in' and run
`aclocal' and `autoconf' again.


The patch result :
Generating configuration files for Eterm, please wait
+ libtoolize -c -f
You should add the contents of `/usr/share/aclocal/libtool.m4' to
`aclocal.m4'.
+ aclocal -I .
configure.in:125: warning: AC_ARG_PROGRAM invoked multiple times
+ autoconf
configure.in:125: warning: AC_ARG_PROGRAM invoked multiple times
+ autoheader
configure.in:125: warning: AC_ARG_PROGRAM invoked multiple times
+ automake -a -c
configure.in:125: warning: AC_ARG_PROGRAM invoked multiple times
configure.in:25: installing `./missing'
configure.in:25: installing `./install-sh'
src/Makefile.am: installing `./depcomp'

Note on automake-1.10 : It seems that it is way much more strict then
pass version. I added my result with the patch as I don't know if the
warning are real problem. I only began to look how autofoo work 2 month ago.

Hope it will help other fellow that use automake-1.10
Index: eterm/Eterm/configure.in
===
RCS file: /var/cvs/e/eterm/Eterm/configure.in,v
retrieving revision 1.94
diff -u -r1.94 configure.in
--- eterm/Eterm/configure.in4 Jan 2006 08:44:14 -   1.94
+++ eterm/Eterm/configure.in5 Nov 2006 23:06:05 -
@@ -91,6 +91,8 @@
 CFLAGS="$CCOPTS"
 fi
 
+AM_PROG_AS
+
 AC_ARG_WITH(cc, [  --with-cc=compiler  force Eterm to build with a 
particular compiler (like pgcc, egcs, etc.)], [
 CC=$withval, 
   if test -z "$CC"; then
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E CVS: apps/e raster

2006-11-02 Thread Landry, Marc-Andre
Michael Jennings wrote:
> On Thursday, 02 November 2006, at 19:03:32 (+0100),
> Kim Woelders wrote:
> 
>> +if cvs -v >/dev/null 2>&1; then
>> +  echo "Running autopoint..." ; autopoint -f || exit 1
>> +else
>>  # no more autopoint. cuases too many hassles. too bad gentoo users - go back
>>  # to automake 1.9 :(
>> -#echo "Running autopoint..." ; autopoint -f || exit 1
>> +  echo "No cvs - Not running autopoint..."
>> +fi
> 
> Better plan:
> 
> echo "Running autopoint..." ; autopoint -f || :
>   ^
> Michael
> 

I would much more try to see if autopoint if installed and make an eval 
`autopoint -f`. This if I understand eval usage will prevent from 
stopping the execution of autogen.sh and execute autopoint -f if possible.

Marc-André


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] automake 1.10 again

2006-10-31 Thread Landry, Marc-Andre
Mike Frysinger wrote:
> On Tuesday 31 October 2006 12:09, David Seikel wrote:
>> Most stick with
>> autoconf 2.59 and automenu 1.9, as they have been quite stable for a
>> long time.
> 
> that's just being lazy :p
> 
> the issue here isnt incompatibles, it's that older automake versions didnt 
> error out properly while newer (1.10+) automake's do
> 
> that doesnt make the error any less of an error ... it just means people are 
> inclined to simply ignore it by forcing automake-1.9 instead of automake-1.10
> -mike


I already try to provide a patch for this that ran autopoint for us in 
the autogen.sh. I do understand that maybe some rm I hadded was too 
drastict.

I also seen a whole change within my system (E17) that now does support 
i18n or if you prefere is now localisable. Before I do the little patch 
in my repository, it wasn't having any localisation support : only 
utf-8.en as it is my default language but I also support utf-8.fr_ca. 
Now I get both of them for the pleasure of reading some funny 
translation. I'm used to use english interface but sometimes I have to 
show that it could be in french for presentation.

Now this may explain what the heck it does when config.rpath isn't there.

Hope it help to close such a debate, as it is a trivial problem. For 
gentooers, I may send the patch without the eavy rm and with a little 
"autopoint -f" that you may add to blocking ebuild.

Marc-André

NB: Désolé for the duplicate Mike...


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Fwd: Re: building with automake-1.10] Patch proposal

2006-10-24 Thread Landry, Marc-Andre
Mike Frysinger wrote:
> autopoint isnt really dependant on automake version at all ... it
comes from
> the gettext package
>
> i would drop the `rm` from all of your patches and instead invoke
> `autopoint -f`
> -mike

Hello Mike & all,
I rather prefer not to force anything but else take care of the rest.
Maybe I do have done too much of cleaning, in fact there is only
ABOUT-NLS that block autopoint. I also prevent autopoint to run with
wrong version of his needed file (m4 & po/*).

automake-1.10 complain about a missing file (config.rpath) that he don't
provide and it prevent it from ending cleanly and so that is why a said
building with automake-1.10. As version 1.9 did complain but didn't stop
running and so wasn't mandatory.

I had also to had one little call to AM_PROG_AC in imlib2 configure.in
from suggestion of automake-1.10 : don't know if I put it a the right
place, still it did the job.

Since I modify the autogen.sh script my system his now using all asked
language package, and so before it wasn't. I then think this was some
how mandatory to have a fully working system. Note that I'm a newby with
autofoo_ tools and I may get them a little mix up in my conception.

I also have to say that I thought to use the force option but I then
choose to go with manually remove files rather then squashing them.

Thank you for the comment,
Marc-André

PS: Désollé for the double posting of the patch as when I got to bed my
first mail wasn't showing up.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Patch proposal for automake-1.10

2006-10-23 Thread Landry, Marc-Andre
This is a little proposal to let at least fully execute automake-1.10.

Divide into 2 file one for e17 repos and another for e_modules (I
haven't test all e_modules just those I install : cpu doc mem net nls
screenshot tclock uptime weather.

This is my second email to the e17-devel list as I got trouble with
lists.sf.net and my gmail account.

Hope this will help other users,
Marc-André

? automake-1.10.patch
Index: apps/e/autogen.sh
===
RCS file: /var/cvs/e/e17/apps/e/autogen.sh,v
retrieving revision 1.16
diff -u -r1.16 autogen.sh
--- apps/e/autogen.sh   31 May 2006 22:51:24 -  1.16
+++ apps/e/autogen.sh   24 Oct 2006 03:54:42 -
@@ -1,10 +1,12 @@
 #!/bin/sh
 
+rm -f ABOUT-NLS config.rpath m4 po/Makefile.in.in po/Makevars.template 
po/Rules-quot po/boldquot.sed po/[EMAIL PROTECTED] po/[EMAIL PROTECTED] 
po/insert-header.sin po/quot.sed po/remove-potcdate.sin
 rm -rf autom4te.cache
 rm -f aclocal.m4 ltmain.sh
 
 touch README
 
+echo "Running autopoint..."; autopoint || exit 1
 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
Index: libs/imlib2/configure.in
===
RCS file: /var/cvs/e/e17/libs/imlib2/configure.in,v
retrieving revision 1.132
diff -u -r1.132 configure.in
--- libs/imlib2/configure.in30 Sep 2006 08:15:32 -  1.132
+++ libs/imlib2/configure.in24 Oct 2006 03:54:42 -
@@ -11,6 +11,7 @@
 AC_C_BIGENDIAN
 AC_PROG_CC
 
+AM_PROG_AS
 
 case $host_os in
 solaris*)
Index: proto/ephoto/autogen.sh
===
RCS file: /var/cvs/e/e17/proto/ephoto/autogen.sh,v
retrieving revision 1.3
diff -u -r1.3 autogen.sh
--- proto/ephoto/autogen.sh 16 Oct 2006 12:30:33 -  1.3
+++ proto/ephoto/autogen.sh 24 Oct 2006 03:54:42 -
@@ -1,10 +1,11 @@
 #!/bin/sh
-
+rm -f ABOUT-NLS config.rpath m4 po/Makefile.in.in po/Makevars.template 
po/Rules-quot po/boldquot.sed po/[EMAIL PROTECTED] po/[EMAIL PROTECTED] 
po/insert-header.sin po/quot.sed po/remove-potcdate.sin
 rm -rf autom4te.cache
 rm -f aclocal.m4 ltmain.sh
 
 touch README
 
+echo "Running autopoint..."; autopoint || exit 1
 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
Index: proto/etk/autogen.sh
===
RCS file: /var/cvs/e/e17/proto/etk/autogen.sh,v
retrieving revision 1.4
diff -u -r1.4 autogen.sh
--- proto/etk/autogen.sh27 Oct 2005 07:46:14 -  1.4
+++ proto/etk/autogen.sh24 Oct 2006 03:54:42 -
@@ -1,8 +1,9 @@
 #!/bin/sh
-
+rm -f ABOUT-NLS config.rpath m4 po/Makefile.in.in po/Makevars.template 
po/Rules-quot po/boldquot.sed po/[EMAIL PROTECTED] po/[EMAIL PROTECTED] 
po/insert-header.sin po/quot.sed po/remove-potcdate.sin
 rm -rf autom4te.cache
 rm -f aclocal.m4 ltmain.sh
 
+echo "Running autopoint..."; autopoint || exit 1
 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1

Index: mem/autogen.sh
===
RCS file: /var/cvs/e/e_modules/mem/autogen.sh,v
retrieving revision 1.2
diff -u -r1.2 autogen.sh
--- mem/autogen.sh  9 Mar 2006 11:37:42 -   1.2
+++ mem/autogen.sh  24 Oct 2006 04:16:54 -
@@ -1,10 +1,11 @@
 #!/bin/sh
-
+rm -f ABOUT-NLS dist.rpath
 rm -rf autom4te.cache
 rm -f aclocal.m4 ltmain.sh
 
 touch README
 
+echo "Running autopoint..."; autopoint || exit 1
 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
Index: net/autogen.sh
===
RCS file: /var/cvs/e/e_modules/net/autogen.sh,v
retrieving revision 1.2
diff -u -r1.2 autogen.sh
--- net/autogen.sh  9 Mar 2006 11:39:09 -   1.2
+++ net/autogen.sh  24 Oct 2006 04:16:54 -
@@ -1,10 +1,12 @@
 #!/bin/sh
 
+rm -rf ABOUT-NLS config.rpath m4 po/Makefile.in.in po/Makevars.template 
po/Rules-quot po/boldquot.sed po/[EMAIL PROTECTED] po/[EMAIL PROTECTED] 
po/insert-header.sin po/quot.sed po/remove-potcdate.sin
 rm -rf autom4te.cache
 rm -f aclocal.m4 ltmain.sh
 
 touch README
 
+echo "Running autopoint..."; autopoint || exit 1
 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
Index: screenshot/autogen.sh
===
RCS file: /var/cvs/e/e_modules/screenshot/autogen.sh,v
retrieving revision 1.5
diff -u -r1.5 autogen.sh
--- sc

[E-devel] [Fwd: Re: building with automake-1.10] Patch proposal

2006-10-23 Thread Landry, Marc-Andre
I based on Kim post made a few change to be able to use automake-1.10 on
some autogen.sh. I haven't touch all the modules and look forward
solving warning : I only added two line maybe I hadded too much but
couldn't be sure of what to clean out to not force autopoint. I also had
to touch one configure.in : imlib2 configure.in add a missing entry to
make automake-1.10 happy. Need to be test against automake-1.9.

Pleased to help,
Marc-André

By the way keep on the good work!

 Original Message 
From: - Thu Oct 19 20:40:41 2006
...
Sender: [EMAIL PROTECTED]

> ...

Not sure but I think there was a similar problem in e16 ages ago. IIRC
it was solved by changing the order of things in autogen.sh to

autopoint ...
aclocal ...
autoconf ...
autoheader ...
libtoolize ...
automake ...

/Kim

? automake-1.10.patch
Index: apps/e/autogen.sh
===
RCS file: /var/cvs/e/e17/apps/e/autogen.sh,v
retrieving revision 1.16
diff -u -r1.16 autogen.sh
--- apps/e/autogen.sh   31 May 2006 22:51:24 -  1.16
+++ apps/e/autogen.sh   24 Oct 2006 03:54:42 -
@@ -1,10 +1,12 @@
 #!/bin/sh
 
+rm -f ABOUT-NLS config.rpath m4 po/Makefile.in.in po/Makevars.template 
po/Rules-quot po/boldquot.sed po/[EMAIL PROTECTED] po/[EMAIL PROTECTED] 
po/insert-header.sin po/quot.sed po/remove-potcdate.sin
 rm -rf autom4te.cache
 rm -f aclocal.m4 ltmain.sh
 
 touch README
 
+echo "Running autopoint..."; autopoint || exit 1
 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
Index: libs/imlib2/configure.in
===
RCS file: /var/cvs/e/e17/libs/imlib2/configure.in,v
retrieving revision 1.132
diff -u -r1.132 configure.in
--- libs/imlib2/configure.in30 Sep 2006 08:15:32 -  1.132
+++ libs/imlib2/configure.in24 Oct 2006 03:54:42 -
@@ -11,6 +11,7 @@
 AC_C_BIGENDIAN
 AC_PROG_CC
 
+AM_PROG_AS
 
 case $host_os in
 solaris*)
Index: proto/ephoto/autogen.sh
===
RCS file: /var/cvs/e/e17/proto/ephoto/autogen.sh,v
retrieving revision 1.3
diff -u -r1.3 autogen.sh
--- proto/ephoto/autogen.sh 16 Oct 2006 12:30:33 -  1.3
+++ proto/ephoto/autogen.sh 24 Oct 2006 03:54:42 -
@@ -1,10 +1,11 @@
 #!/bin/sh
-
+rm -f ABOUT-NLS config.rpath m4 po/Makefile.in.in po/Makevars.template 
po/Rules-quot po/boldquot.sed po/[EMAIL PROTECTED] po/[EMAIL PROTECTED] 
po/insert-header.sin po/quot.sed po/remove-potcdate.sin
 rm -rf autom4te.cache
 rm -f aclocal.m4 ltmain.sh
 
 touch README
 
+echo "Running autopoint..."; autopoint || exit 1
 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
Index: proto/etk/autogen.sh
===
RCS file: /var/cvs/e/e17/proto/etk/autogen.sh,v
retrieving revision 1.4
diff -u -r1.4 autogen.sh
--- proto/etk/autogen.sh27 Oct 2005 07:46:14 -  1.4
+++ proto/etk/autogen.sh24 Oct 2006 03:54:42 -
@@ -1,8 +1,9 @@
 #!/bin/sh
-
+rm -f ABOUT-NLS config.rpath m4 po/Makefile.in.in po/Makevars.template 
po/Rules-quot po/boldquot.sed po/[EMAIL PROTECTED] po/[EMAIL PROTECTED] 
po/insert-header.sin po/quot.sed po/remove-potcdate.sin
 rm -rf autom4te.cache
 rm -f aclocal.m4 ltmain.sh
 
+echo "Running autopoint..."; autopoint || exit 1
 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1

Index: mem/autogen.sh
===
RCS file: /var/cvs/e/e_modules/mem/autogen.sh,v
retrieving revision 1.2
diff -u -r1.2 autogen.sh
--- mem/autogen.sh  9 Mar 2006 11:37:42 -   1.2
+++ mem/autogen.sh  24 Oct 2006 04:16:54 -
@@ -1,10 +1,11 @@
 #!/bin/sh
-
+rm -f ABOUT-NLS dist.rpath
 rm -rf autom4te.cache
 rm -f aclocal.m4 ltmain.sh
 
 touch README
 
+echo "Running autopoint..."; autopoint || exit 1
 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
 echo "Running autoheader..." ; autoheader || exit 1
 echo "Running autoconf..." ; autoconf || exit 1
Index: net/autogen.sh
===
RCS file: /var/cvs/e/e_modules/net/autogen.sh,v
retrieving revision 1.2
diff -u -r1.2 autogen.sh
--- net/autogen.sh  9 Mar 2006 11:39:09 -   1.2
+++ net/autogen.sh  24 Oct 2006 04:16:54 -
@@ -1,10 +1,12 @@
 #!/bin/sh
 
+rm -rf ABOUT-NLS config.rpath m4 po/Makefile.in.in po/Makevars.template 
po/Rules-quot po/boldquot.sed po/[EMAIL PROTECTED] po/[EMAIL PROTECTED] 
po/insert-header.sin po/quot.sed po/remove-potcdate.sin
 rm -rf autom4te.cache
 rm -f aclocal.m4 ltmain.sh
 
 touch README
 
+ec

Re: [E-devel] building with automake-1.10

2006-10-20 Thread Landry, Marc-Andre
Mike Russo wrote:
> I tried setting WANT_AUTOMAKE=1.9 and doing an 'emerge e' but I'm still
> getting the same errors. Does emerge clear out my env's and not respect
> this?  Should I unmerge automake-1.10 instead?

Have you try to `WANT_AUTOMAKE=1.9 emerge e` or
`WANT_AUTOMAKE=1.9;export WANT_AUTOMAKE;emerge e` else emerge won't take
your newly set env's value. 'cause it generate a new *sh environment
(normally bash) and so only take exported value or pre-set one.

Hope it help
Marc-André



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Segfault in equate using scientific mode

2006-09-22 Thread Landry, Marc-Andre
Adding a valgrind test : `valgrind --tool=memcheck --trace-children=yes
--track-fds=yes --log-file=equate.valgrind --error-limit=no
--leak-check=full equate -s`.

Attached the log file. Hope will help.
Again,
Marc-André Landry
lma1980...gmail.com

==28400== Memcheck, a memory error detector.
==28400== Copyright (C) 2002-2006, and GNU GPL'd, by Julian Seward et al.
==28400== Using LibVEX rev 1606, a library for dynamic binary translation.
==28400== Copyright (C) 2004-2006, and GNU GPL'd, by OpenWorks LLP.
==28400== Using valgrind-3.2.0, a dynamic binary instrumentation framework.
==28400== Copyright (C) 2000-2006, and GNU GPL'd, by Julian Seward et al.
==28400== For more details, rerun with: -v
==28400== 
==28400== My PID = 28400, parent PID = 27343.  Prog and args are:
==28400==equate
==28400==-s
==28400== 
==28400== Conditional jump or move depends on uninitialised value(s)
==28400==at 0x413A6F5: ewl_widget_show (ewl_widget.c:326)
==28400==by 0x804AC23: draw_ewl (gui.c:400)
==28400==by 0x804ADBF: equate_init_gui (gui.c:252)
==28400==by 0x804D4F1: main (main.c:107)
==28400== 
==28400== Conditional jump or move depends on uninitialised value(s)
==28400==at 0x4132AC2: ewl_widget_type_is (ewl_widget.c:1587)
==28400==by 0x413A70F: ewl_widget_show (ewl_widget.c:327)
==28400==by 0x804AC23: draw_ewl (gui.c:400)
==28400==by 0x804ADBF: equate_init_gui (gui.c:252)
==28400==by 0x804D4F1: main (main.c:107)
==28400== 
==28400== Use of uninitialised value of size 4
==28400==at 0x4132AD3: ewl_widget_type_is (ewl_widget.c:1592)
==28400==by 0x413A70F: ewl_widget_show (ewl_widget.c:327)
==28400==by 0x804AC23: draw_ewl (gui.c:400)
==28400==by 0x804ADBF: equate_init_gui (gui.c:252)
==28400==by 0x804D4F1: main (main.c:107)
==28400== 
==28400== Invalid read of size 4
==28400==at 0x4132AD3: ewl_widget_type_is (ewl_widget.c:1592)
==28400==by 0x413A70F: ewl_widget_show (ewl_widget.c:327)
==28400==by 0x804AC23: draw_ewl (gui.c:400)
==28400==by 0x804ADBF: equate_init_gui (gui.c:252)
==28400==by 0x804D4F1: main (main.c:107)
==28400==  Address 0x152 is not stack'd, malloc'd or (recently) free'd
==28400== 
==28400== Process terminating with default action of signal 11 (SIGSEGV)
==28400==  Access not within mapped region at address 0x152
==28400==at 0x4132AD3: ewl_widget_type_is (ewl_widget.c:1592)
==28400==by 0x413A70F: ewl_widget_show (ewl_widget.c:327)
==28400==by 0x804AC23: draw_ewl (gui.c:400)
==28400==by 0x804ADBF: equate_init_gui (gui.c:252)
==28400==by 0x804D4F1: main (main.c:107)
==28400== 
==28400== FILE DESCRIPTORS: 8 open at exit.
==28400== Open file descriptor 7: /usr/share/ewl/themes/e17.edj
==28400==at 0x47A37A3: __open_nocancel (in /lib/libc-2.4.so)
==28400==by 0x4756FD0: _IO_file_fopen@@GLIBC_2.1 (fileops.c:332)
==28400==by 0x474C5AC: __fopen_internal (iofopen.c:93)
==28400==by 0x474C60B: fopen@@GLIBC_2.1 (iofopen.c:107)
==28400==by 0x44B548F: eet_open (eet_lib.c:544)
==28400==by 0x42246B5: _edje_cache_file_coll_open (edje_cache.c:73)
==28400==by 0x4219A0C: edje_file_data_get (edje_load.c:484)
==28400==by 0x41218CF: ewl_theme_data_str_get (ewl_theme.c:483)
==28400==by 0x4122D48: ewl_theme_init (ewl_theme.c:196)
==28400==by 0x40D7509: ewl_init (ewl_misc.c:219)
==28400==by 0x804ADB4: equate_init_gui (gui.c:251)
==28400==by 0x804D4F1: main (main.c:107)
==28400== 
==28400== Open AF_UNIX socket 6: 
==28400==at 0x47B3577: socket (in /lib/libc-2.4.so)
==28400==by 0x46076B4: _X11TransSocketOpenCOTSClientBase (Xtranssock.c:565)
==28400==by 0x4608BD2: _X11TransOpen (Xtrans.c:461)
==28400==by 0x45E4058: _X11TransConnectDisplay (ConnDis.c:363)
==28400==by 0x45F77CC: XOpenDisplay (OpenDis.c:154)
==28400==by 0x424FD7F: ecore_x_init (ecore_x.c:180)
==28400==by 0x4034624: ee_init (ewl_engine_x11.c:146)
==28400==by 0x4034C81: ewl_engine_create (ewl_engine_x11.c:127)
==28400==by 0x408A850: ewl_engine_new (ewl_engines.c:247)
==28400==by 0x408A808: ewl_engine_new (ewl_engines.c:234)
==28400==by 0x40D6867: ewl_init (ewl_misc.c:161)
==28400==by 0x804ADB4: equate_init_gui (gui.c:251)
==28400== 
==28400== Open AF_UNIX socket 5: /home/xeno/.ecore/equate/7
==28400==at 0x47B3577: socket (in /lib/libc-2.4.so)
==28400==by 0x4273F56: ecore_ipc_server_add (ecore_ipc.c:339)
==28400==by 0x426C3FE: _ecore_config_ipc_ecore_init 
(ecore_config_ipc_ecore.c:325)
==28400==by 0x426BA31: _ecore_config_ipc_init (ecore_config_ipc_main.c:263)
==28400==by 0x42697B9: do_init (ecore_config.c:1607)
==28400==by 0x426A9B8: ecore_config_init (ecore_config.c:1626)
==28400==by 0x804D32D: main (main.c:68)
==28400== 
==28400== Open AF_UNIX socket 4: /home/xeno/.ecore/_system/29
==28400==at 0x47B3577: socket (in /lib/libc-2.4.so)
==28400==by 0x4273F56: ecore_ipc_server_add (ecore_ipc.c:339)
==28400==by 0x426C3FE: _ecore_config_ipc_ecore_in

[E-devel] Segfault in equate using scientific mode

2006-09-22 Thread Landry, Marc-Andre
I got it by a segfault testing equate. Backtrace attached (really).

I think it something ewl don't like. Not sure 100%.

Have fun tracking the bug.

Marc-André Landry
lma1980...gmail.com

$ gdb equate -directory /usr/portage/distfiles/cvs-src/misc/equate/src/ 
-directory /usr/portage/distfiles/cvs-src/e17/libs/ewl/src/lib/
GNU gdb 6.4
Copyright 2005 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "i686-pc-linux-gnu"...Using host libthread_db 
library "/lib/libthread_db.so.1".

(gdb) set args -s
(gdb) run
Starting program: /usr/bin/equate -s
[Thread debugging using libthread_db enabled]
[New Thread -1217304912 (LWP 18637)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread -1217304912 (LWP 18637)]
0xb7ecdad3 in ewl_widget_type_is (widget=0x2, type=0xb7ee250b "widget") at 
ewl_widget.c:1592
1592if (widget->inheritance) 
(gdb) bt
#0  0xb7ecdad3 in ewl_widget_type_is (widget=0x2, type=0xb7ee250b "widget") at 
ewl_widget.c:1592
#1  0xb7ed5710 in ewl_widget_show (w=0x2) at ewl_widget.c:327
#2  0x0804ac24 in draw_ewl (draw_mode=SCI) at gui.c:400
#3  0x0804adc0 in equate_init_gui (equate=0x804ff94, argc=2, argv=0xbf9b5214) 
at gui.c:252
#4  0x0804d4f2 in main (argc=2, argv=0xbf9b5214, env=Cannot access memory at 
address 0x8
) at main.c:107
(gdb) l
1587DCHECK_PARAM_PTR_RET("widget", widget, FALSE);
1588DCHECK_PARAM_PTR_RET("type", type, FALSE);
1589/* we don't check the type of the widget in here or we'll get 
into
1590 * an infinate loop ... */
1591
1592if (widget->inheritance) 
1593{
1594char *match, *end;
1595
1596match = (char *)widget->inheritance;
(gdb) p match
No symbol "match" in current context.
(gdb) p widget
$1 = (Ewl_Widget *) 0x2
(gdb) p widget->inheritance
Cannot access memory at address 0x152
(gdb) p type
$2 = 0xb7ee250b "widget"
(gdb) p *widget->inheritance
Cannot access memory at address 0x152
(gdb) down
Bottom (innermost) frame selected; you cannot go down.
(gdb) up
#1  0xb7ed5710 in ewl_widget_show (w=0x2) at ewl_widget.c:327
327 DCHECK_TYPE("w", w, EWL_WIDGET_TYPE);
(gdb) l
322 void
323 ewl_widget_show(Ewl_Widget *w)
324 {
325 DENTER_FUNCTION(DLEVEL_STABLE);
326 DCHECK_PARAM_PTR("w", w);
327 DCHECK_TYPE("w", w, EWL_WIDGET_TYPE);
328
329 /*
330  * Nothing to do if already visible.
331  */
(gdb) p *w
Cannot access memory at address 0x2
(gdb) p w
$3 = (Ewl_Widget *) 0x2
(gdb) up
#2  0x0804ac24 in draw_ewl (draw_mode=SCI) at gui.c:400
400   ewl_widget_show(disp_cell[2]);
(gdb) l
395ewl_container_child_append(EWL_CONTAINER(displaycell), disp_table);
396ewl_widget_show(disp_cell[1]);
397ewl_container_child_append(EWL_CONTAINER(disp_table), disp_cell[1]);
398ewl_grid_child_position_set(EWL_GRID(disp_table), disp_cell[1], 0, 
0, 0, 0);
399if (calc_mode == SCI) {
400   ewl_widget_show(disp_cell[2]);
401   ewl_container_child_append(EWL_CONTAINER(disp_table), 
disp_cell[2]);
402   ewl_grid_child_position_set(EWL_GRID(disp_table), disp_cell[2], 
0, 0, 1, 1);
403}
404ewl_widget_configure(disp_table);
(gdb) p calc_mode
$4 = SCI
(gdb) p disp_cell[2]
Can't take address of "disp_cell" which isn't an lvalue.
(gdb) p disp_cell
$5 = {0x0, 0x8066678}
(gdb) p &disp_cell[2]
Can't take address of "disp_cell" which isn't an lvalue.
(gdb) p *disp_cell[2]
Can't take address of "disp_cell" which isn't an lvalue.
(gdb) up
#3  0x0804adc0 in equate_init_gui (equate=0x804ff94, argc=2, argv=0xbf9b5214) 
at gui.c:252
252  draw_ewl(equate->conf.mode);
(gdb) l
247   * case SCI:
248   */
249   default:
250  inited = 1;
251  ewl_init(&argc, argv);
252  draw_ewl(equate->conf.mode);
253  ewl_main();
254  break;
255   }
256}
(gdb) p equate
$6 = (Equate *) 0x804ff94
(gdb) p equate->conf.mode
$7 = SCI
(gdb) up
#4  0x0804d4f2 in main (argc=2, argv=0xbf9b5214, env=Cannot access memory at 
address 0x8
) at main.c:107
107equate_init_gui(&equate, argc, argv);
(gdb) l
102
103ecore_config_listen("gui_mode", "/settings/mode", gui_listener, 0, 
NULL);
104ecore_config_listen("gui_theme", "/settings/theme", gui_listener, 1, 
NULL);
105
106equate_init(&equate);
107equate_init_gui(&equate, argc, argv);
108return 0;
109 }
(gdb) p argc
$8 = 2
(gdb) p argv
$9 = (char **) 0xbf9b5214
(gdb) up
Initial frame selected; you cannot go up.
(gdb) exit


-

[E-devel] ecore-config segmentation fault

2006-08-18 Thread Landry, Marc-Andre
Hello, I know it won't be use full but I could easily reproduce it using
  "ecore_config -c /etc/entrance_config.cfg -d -k
/entrance/session/2/icon" this command which return
"Segmentation fault". I found after ward that my entrance_config.cfg was
 (seems) broken.

I would like to gived a dump but never had to before... How do I
generate such. It may be due to my flags :
CHOST="i686-pc-linux-gnu"
CFLAGS="-O2 -march=athlon-tbird -mtune=athlon-tbird -pipe
-floop-optimize2 -fgcse-after-reload -fgcse-las -fgcse-sm -fgcse-lm"
CXXFLAGS="${CFLAGS}"
LDFLAGS="-Wl,-O2 -Wl,--sort-common -s,-z,now"

In some case I got trouble with '-s,-z,now' from LDFLAGS as unrecognized
 option but it won't block the compillation.

Hope fully helping,
LMA1980

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] cvs, servers and stuff.

2006-08-14 Thread Landry, Marc-Andre
Carsten Haitzler (The Rasterman) wrote:
> On Tue, 15 Aug 2006 09:01:06 +1000 David Seikel <[EMAIL PROTECTED]> babbled:
> 
>> Strangely enough, another large, old open source project I am involved
>> in is having exactly the same conversation.  One of them came up with
>> this -
>>
>> http://wiki.metalforge.net/doku.php/user:rednaxela:scmtable
>>
>> It may be helpful.
> 
> mercurial looks god there - but svn is the easiest learning curve :)

I may be little off topic. But as a novice in sys admin. I found lot
more easier to config svn then cvs. I try to test BDB filesystem and
also FSFS and found no trouble dumping from BDB to FSFS, managing
concurrent branches against trunk and taging branches and trunk to a
given TAG so that you and up with several build possible out of
checkout. Cause of the little overhead I didn't try all those with CVS
so my comment may not help. For as little I have read, I can't even know
where all this going. Is there some people wanting to migrate to svn.

For such I may only say : why broking something that working? If you do
found something problematic, find the solution, and solution don't mean
replacement but neither discard it.

My 2 cent,
LMA1980

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Patch for module calendar

2006-08-14 Thread Landry, Marc-Andre
First time I work with diff... If someone could show me the way to build
 only one file for all those modification. At least, those patch let me
compile calendar module.

LMA1980
*** calendar/src/add_event_dialog.c Mon Aug 14 18:05:35 2006
--- /root/e_modules/calendar/src/add_event_dialog.c Mon Aug 14 23:10:38 2006
*** add_event_show(void *con, void *DayToFix
*** 44,50 
  v->basic.create_widgets = _add_event_basic_create_widgets;
  
  /* create config diaolg */ 
! cfd = e_config_dialog_new(con, D_("Font Editor"), "Calendar", 
"_e_modules_calendar_add_event_dialog", NULL, 0, v, DayToFix);
   }
  }
  
--- 44,50 
  v->basic.create_widgets = _add_event_basic_create_widgets;
  
  /* create config diaolg */ 
! cfd = e_config_dialog_new(con, D_("Font Editor"), NULL, 0, v, 
DayToFix);
   }
  }
  
*** calendar/src/main_editor.c  Mon Aug 14 18:05:35 2006
--- /root/e_modules/calendar/src/main_editor.c  Mon Aug 14 23:24:33 2006
*** e_int_config_calendar(void *con, void *c
*** 47,53 
  v->advanced.create_widgets = _color_edit_advanced_create_widgets;
  
  /* create config diaolg for NULL object/data */
! cfd = e_config_dialog_new(con, D_("Calendar Settings"), "Calendar", 
"_e_modules_calendar_main_editor_dialog", NULL, 0, v, calendar);
   }
  }
  
--- 47,53 
  v->advanced.create_widgets = _color_edit_advanced_create_widgets;
  
  /* create config diaolg for NULL object/data */
! cfd = e_config_dialog_new(con, D_("Calendar Settings"), NULL, 0, v, 
calendar);
   }
  }
  
*** calendar/src/otherfonts_editor.cMon Aug 14 18:05:35 2006
--- /root/e_modules/calendar/src/otherfonts_editor.cMon Aug 14 23:30:30 2006
*** e_int_config_calendar_other(void *con, v
*** 45,51 
  v->advanced.create_widgets = _color_edit_advanced_create_widgets;
  
  /* create config diaolg for NULL object/data */
! cfd = e_config_dialog_new(con, D_("Calendar Settings"), "Calendar", 
"_e_modules_calendar_other_fonts_editor_dialog", NULL, 0, v, calendar);
   }
  }
  /***
--- 45,51 
  v->advanced.create_widgets = _color_edit_advanced_create_widgets;
  
  /* create config diaolg for NULL object/data */
! cfd = e_config_dialog_new(con, D_("Calendar Settings"), NULL, 0, v, 
calendar);
   }
  }
  /***
*** calendar/src/today_editor.c Mon Aug 14 18:05:35 2006
--- /root/e_modules/calendar/src/today_editor.c Mon Aug 14 23:35:47 2006
*** e_int_config_calendar_today(void *con, v
*** 43,49 
  v->advanced.create_widgets = _color_edit_advanced_create_widgets;
  
  /* create config diaolg for NULL object/data */
! cfd = e_config_dialog_new(con, D_("Calendar Settings"), "Calendar", 
"_e_modules_calendar_today_editor_dialog", NULL, 0, v, calendar);
   }
  }
  /***
--- 43,49 
  v->advanced.create_widgets = _color_edit_advanced_create_widgets;
  
  /* create config diaolg for NULL object/data */
! cfd = e_config_dialog_new(con, D_("Calendar Settings"), NULL, 0, v, 
calendar);
   }
  }
  /***
*** calendar/src/add_todo_dialog.c  Mon Aug 14 18:05:35 2006
--- /root/e_modules/calendar/src/add_todo_dialog.c  Mon Aug 14 23:20:15 2006
*** add_todo_show(void *con, void *DayToFix)
*** 46,52 
  v->basic.create_widgets = _add_todo_basic_create_widgets;
  
 /* create config diaolg */ 
!cfd = e_config_dialog_new(con, D_("Font Editor"), "Calendar", 
"_e_modules_calendar_add_todo_dialog", NULL, 0, v, DayToFix);
   }
  }
  
--- 46,52 
  v->basic.create_widgets = _add_todo_basic_create_widgets;
  
 /* create config diaolg */ 
!cfd = e_config_dialog_new(con, D_("Font Editor"), NULL, 0, v, 
DayToFix);
   }
  }
  
*** calendar/src/weekday_editor.c   Mon Aug 14 18:05:35 2006
--- /root/e_modules/calendar/src/weekday_editor.c   Mon Aug 14 23:37:06 2006
*** e_int_config_calendar_weekday(void *con,
*** 48,54 
  v->advanced.create_widgets = _color_edit_advanced_create_widgets;
  
  /* create config diaolg for NULL object/data */
! cfd = e_config_dialog_new(con, D_("Calendar Settings"), "Calendar", 
"_e_modules_calendar_weekday_editor_dialog", NULL, 0, v, calendar);
   }
  }
  /***
--- 48,54 
  v->advanced.create_widgets = _color_edit_advanced_create_widgets;
  
  /* create config diaolg for NULL object/data */
! cfd = e_config_dialog_new(con, D_("Calendar Settings"), NULL, 0, v, 
calendar);
   }
  }
  /***
**

Re: [E-devel] Patch for bling

2006-08-14 Thread Landry, Marc-Andre
HERE IS THE working patch...
Désolé!
Regards,
LMA1980

*** bling/e_mod_config.cMon Aug 14 16:55:44 2006
--- /root/e_modules/bling/e_mod_config.cMon Aug 14 22:09:28 2006
*** _config_bling_module(E_Container *con, B
*** 44,50 
 v->advanced.create_widgets = _advanced_create_widgets;
  
 snprintf(buf, sizeof(buf), "%s/module.eap", e_module_dir_get(b->module));
!cfd = e_config_dialog_new(con, D_("BlingConfiguration"), "Bling", 
"_e_modules_bling_config_dialog", buf, 0, v, b);
  
 b->config_dialog = cfd;
  }
--- 44,53 
 v->advanced.create_widgets = _advanced_create_widgets;
  
 snprintf(buf, sizeof(buf), "%s/module.eap", e_module_dir_get(b->module));
!cfd = e_config_dialog_new(con,
!   D_("BlingConfiguration"),
!   buf, 0, v, b);
! 
  
 b->config_dialog = cfd;
  }

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Patch for bling

2006-08-14 Thread Landry, Marc-Andre
This little patch correct the e_config_dialog_new too much parameter error.

LMA1980
*** e_mod_config.c  Mon Aug 14 19:57:28 2006
--- /root/e_modules/bling/e_mod_config.cMon Aug 14 19:05:14 2006
*** _config_bling_module(E_Container *con, B
*** 44,50 
 v->advanced.create_widgets = _advanced_create_widgets;
  
 snprintf(buf, sizeof(buf), "%s/module.eap", e_module_dir_get(b->module));
!cfd = e_config_dialog_new(con, D_("BlingConfiguration"), "Bling", 
"_e_modules_bling_config_dialog", buf, 0, v, b);
  
 b->config_dialog = cfd;
  }
--- 44,50 
 v->advanced.create_widgets = _advanced_create_widgets;
  
 snprintf(buf, sizeof(buf), "%s/module.eap", e_module_dir_get(b->module));
!cfd = e_config_dialog_new(con, D_("BlingConfiguration"), "Bling", 
"_e_modules_bling_config_dialog", 0, v, b);
  
 b->config_dialog = cfd;
  }
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel