[e-users] Need help with elementary

2009-06-13 Thread j runtt
I am tring to compile elementary and I have run into a problem during : " make": els_icon.c: In function '_smart_add': els_icon.c:359: error: 'EVAS_IMAGE_SCALE_HINT_STATIC' undeclared (first use in this function) els_icon.c:359: error: (Each undeclared identifier is reported only once els_icon.c

Re: [e-users] Need help with elementary

2009-06-13 Thread Larry Wyble
I've been trying to get compile help here for weeks. I don't think this is the place for actual help with the build of E. No answers ever come. No one pays attention to this mail list. On Sat, 13 Jun 2009 05:44:38 -0700 (PDT) j runtt wrote: > > I am tring to compile elementary and I have run

Re: [e-users] Need help with elementary

2009-06-13 Thread Gustavo Sverzut Barbieri
Err... I do! sorry not replying sooner, but the problem is using an old evas. Please use all libs from svn head, at least until 20th June it will be stable. also make sure u dont have multiple evas instances on your machine, like in /opt, /usr and /usr/local On 6/13/09, Larry Wyble wrote: > > I

Re: [e-users] Need help with elementary

2009-06-13 Thread Viktor Kojouharov
Here's a good rule of thumbs when dealing with compile time errors: 1. Find the error. In this case, its this: els_icon.c:359: error: 'EVAS_IMAGE_SCALE_HINT_STATIC' undeclared (first use in this function) 2. Read the error. Notice how it talks about EVAS_something_something. You are not compilin

Re: [e-users] Need help with elementary

2009-06-13 Thread j runtt
Yes , I just heard back from Gustavo Sverzut Barbier about this, Thank you very much for you reply .I have always used the snapshots to compile e17 in puppylinux. I have just started using svn .So far all the extra stuff I have tried has worked except for esmart but you have told me how to fix

[e-users] problem making e_dbus

2009-06-13 Thread Larry Wyble
I have gone through my system and rebuilt eina, eet, evas and ecore from the newest versions and installed them and made sure there were no old versions lying around but when I try to build e_dbus I get the following errors. libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../.. -I/usr/include/db

Re: [e-users] problem making e_dbus

2009-06-13 Thread Viktor Kojouharov
It can't find Eina.h. Is it in any of those directories after the -I in the output? On Sat, 2009-06-13 at 13:46 -0500, Larry Wyble wrote: > I have gone through my system and rebuilt eina, eet, evas and ecore > from the newest versions and installed them and made sure there were > no old versions

Re: [e-users] problem making e_dbus

2009-06-13 Thread Larry Wyble
Yes: $ locate Eina.h /usr/include/eina-0/Eina.h > It can't find Eina.h. > > Is it in any of those directories after the -I in the output? > > On Sat, 2009-06-13 at 13:46 -0500, Larry Wyble wrote: > > I have gone through my system and rebuilt eina, eet, evas and > > ecore from the newest ver

[e-users] pager in shelve configuration

2009-06-13 Thread Mister Olli
Hi, I've configured a auto hiding shelve containing the pager. there are two things I don't understand in configuration/ behavior of the shelve: - when applying the 'default' style a see 1px line when shelve is hidden, when applying the 'invisble' style the line is 4px (1px like the default styl

Re: [e-users] Is E17 causing memory leak in X.org ?

2009-06-13 Thread Peter Kraus
Hmm, >IMHO: >Arch is definitely not even close to the mentioned above statements. I agree. But using vanilla sources is not a crime, is it. > >and that statements are amazing: >> Comment by Peter Kraus (PetoKraus) - Saturday, 11 April 2009, 07:02 GMT-4 >> OK, seems to not leak that much under Op

[e-users] quick question to py-elementary

2009-06-13 Thread Christian K.
Hi! am coding on the current elive-dev version with the efl-all and python-efl-all packages installed. till now i just coded things like e.g. elementary only in c but now i want to try the python bindings especially for elementary. i first just tried to test the test app but i got a stupid element

Re: [e-users] Is E17 causing memory leak in X.org ?

2009-06-13 Thread Michael Jennings
On Saturday, 13 June 2009, at 09:07:44 (+0100), Peter Kraus wrote: > Well, I tried everything I could think of to track this issue. Sorry > that my occupation is not a programmer that I couldn't fix it myself, > but I've been asking at #e about this for quite a long time, being > willing to provid

[e-users] Any help anywhere??

2009-06-13 Thread Larry Wyble
Is there another mailing list where we can get help with E? I've posted a couple of problems on this one and no one seems to have any suggestions to the problems I have run into or there just isn't enough traffic on this one. Is there some place where we can get help?? Thanks --

Re: [e-users] quick question to py-elementary

2009-06-13 Thread The Rasterman
On Fri, 12 Jun 2009 21:27:34 +0200 "Christian K." said: even if you get the python bindings going - they support only a subset of elementary's api, so often you will be stuck with "well the c api does it.. but python doesn't" and can't do what you need/want to do. > Hi! > > am coding on the cur

Re: [e-users] Is E17 causing memory leak in X.org ?

2009-06-13 Thread The Rasterman
On Sat, 13 Jun 2009 09:07:44 +0100 Peter Kraus said: > Hmm, > > >IMHO: > >Arch is definitely not even close to the mentioned above statements. > > I agree. But using vanilla sources is not a crime, is it. > > > > >and that statements are amazing: > >> Comment by Peter Kraus (PetoKraus) - Satur

Re: [e-users] Is E17 causing memory leak in X.org ?

2009-06-13 Thread The Rasterman
On Thu, 11 Jun 2009 12:03:57 +0200 RocketIII Scientist said: use xrestop. that reports what x apps use what x resources. you'll find e uses 1 screen sized pixmap for desktop bg and thats pretty much it. as reported already - it looks like x added a leak in mouse pointer changes. the code for anim

Re: [e-users] Any help anywhere??

2009-06-13 Thread The Rasterman
On Sat, 13 Jun 2009 21:53:13 -0500 Larry Wyble said: enlightenment-devel list is what most developers listen to. note - a lot of us have answered the same question so many times... we get bored of answering them. so if you are getting no response... searching for similar questions/problems will p

Re: [e-users] Need help with elementary

2009-06-13 Thread The Rasterman
On Sat, 13 Jun 2009 17:19:22 +0200 Viktor Kojouharov said: > Here's a good rule of thumbs when dealing with compile time errors: > > 1. Find the error. In this case, its this: > > els_icon.c:359: error: 'EVAS_IMAGE_SCALE_HINT_STATIC' undeclared (first > use in this function) > > 2. Read the er

Re: [e-users] Need help with elementary

2009-06-13 Thread The Rasterman
On Sat, 13 Jun 2009 08:30:20 -0700 (PDT) j runtt said: > > Yes , I just heard back from Gustavo Sverzut Barbier about this, Thank you > very much for you reply .I have always used the snapshots to compile e17 in > puppylinux. I have just started using svn .So far all the extra stuff I have > tri

Re: [e-users] kde apps always on virtual desktop one

2009-06-13 Thread The Rasterman
On Wed, 10 Jun 2009 10:57:08 +1200 Jochen Schroeder said: chances are the kde apps are explicitly requesting desktop 0 - that ore's own remembering are the only ways this can happen. > Hi all, > > I've recently started testing some kde4 apps, before I was using mainly > gtk apps. Now I quite li