Re: [e-users] Compiling E17

2005-03-01 Thread The Rasterman
On Mon, 28 Feb 2005 13:41:02 -0600 Jacob Smith <[EMAIL PROTECTED]> babbled: > I'm trying to compile e17 from CVS and in esmart I get the following > error during `make`: > > "esmart_container_plugin.c:6:18: ltdl.h: No such file or directory" you need libtldl installed. (it

Re: [e-users] problems with ewl

2005-03-01 Thread The Rasterman
On Thu, 24 Feb 2005 18:57:05 +0100 Marco Mazzoni <[EMAIL PROTECTED]> babbled: > Hi, i've got a strange problem with ewl, making it unusable. > > i've compiled all from cvs, and when i tried to make enlightment start > all went fine but the menus are unasable, so i tryed all the te

Re: [e-users] Question about E17 (probably stupid)

2005-03-01 Thread The Rasterman
On Sun, 27 Feb 2005 15:32:39 -0500 roland <[EMAIL PROTECTED]> babbled: > How does one turn off the startup/debug delay for E17? export NOSPLASH=1 -- - Codito, ergo sum - "I code, therefore I am" -- The Rasterman (Carsten Haitzler)[EMAIL PROTEC

Re: [e-users] Raster's paper.

2005-03-01 Thread The Rasterman
On Tue, 01 Mar 2005 16:17:53 + "Mark R. Bowyer" <[EMAIL PROTECTED]> babbled: > On Fri, 2005-02-25 at 18:34, Martin White wrote: > > I can happily report that E16.999 was a doddle to get going under Mandrake > > 10.1 > > With reference to the Mandrake 10 notes, and a littl

Re: [e-users] e17: OpenGL acceleration?

2005-03-01 Thread The Rasterman
On Sat, 26 Feb 2005 21:00:45 +0100 (CET) Jerry <[EMAIL PROTECTED]> babbled: > --- Ville Herva <[EMAIL PROTECTED]> a __crit : > > On Fri, Feb 25, 2005 at 09:58:13AM +0800, you > > [Didier Casse] wrote: > > > Hi Richard, > > > You might have not noticed but >

Re: [e-users] Script for building E17

2005-03-01 Thread jasper
I am now running my script for the first time with having succesfull thoughts, because when the builddir is the same as the source dir, the script finishes with 7 minutes on a 1gHz system. That's just to fast. Now there're results in my build dir and it's taking much more time and cpu-cycles. So it

Re: [e-users] Script for building E17

2005-03-01 Thread jasper
There's a small bug in the script, if BUILD_DIR is the same directory as CVS_SRC, it will remove your freshly downloaded sources because of this line: rm -rf $BUILD_DIR/* please place a # in front of it, or use two different directories. Jasper > ... > # gcc flags > FLAGS="-O3 -march=pentium3"

Re: [e-users] Script for building E17

2005-03-01 Thread jasper
> ... > # gcc flags > FLAGS="-O3 -march=pentium3" > > -- added lines -- > LDDFLAGS=-L$BUILD_DIR/lib > CPPFLAGS=-L$BUILD_DIR/include > -- added lines -- > > maak() { > make distclean &> /dev/null > > # configure, make, & install with logs > ./autogen.sh --prefix=$BUILD_DIR LDFLAGS=$LDFLAGS CPPFLAGS=

[e-users] newbie: Solaris 2.9, Ultra 5, e16 installation problem

2005-03-01 Thread Victor Norman
I'm having problems getting enlightenment to work on my machine. My current working environment is gnome-2.0, started from dtlogin on my Solaris 2.9 box. I have downloaded the enlightenment packages for Solaris, and installed them, and, after adding /usr/local/enlightenment/bin to my PATH, and /u

RE: [e-users] Raster's paper.

2005-03-01 Thread Mark R. Bowyer
On Fri, 2005-02-25 at 18:34, Martin White wrote: > I can happily report that E16.999 was a doddle to get going under Mandrake > 10.1 With reference to the Mandrake 10 notes, and a little bit of searching on rpmfind.net, I can add that the fc1 RPMs work brilliantly on Sun Java Desktop 3 for Linux

Re: [e-users] Script for building E17

2005-03-01 Thread Benone Marcos
nice job Jasper, works fine here. I just added these lines: ... LDDFLAGS=-L$BUILD_DIR/lib CPPFLAGS=-L$BUILD_DIR/include ... then, call then in autogen argument list. thanks for the script On Tue, 01 Mar 2005 15:29:02 +0100, Jasper <[EMAIL PROTECTED]> wrote: > Hello, > > because I'm getting tir

[e-users] Script for building E17

2005-03-01 Thread Jasper
Hello, because I'm getting tired of typing the commands for building E17. I took the script from Edevelop (dated 2002) and updated it. I haven't tested it yet. But does it _look_ like it'll work? ---build-e17.sh- #!/bin/sh # Where the CVS directory is CVS_SRC=/hom