Re: [e-users] taskbar 0.1.2

2006-07-02 Thread Craig Buckner
On 6/12/06, Morten Nilsen [EMAIL PROTECTED] wrote:
 http://home.4th-age.com/taskbar-0.1.2.tar.bz2


Forgive my foolishness but:

$ ./configure
bash: ./configure: No such file or directory

Worked fine to compile and install the rest of E17

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=lnkkid=120709bid=263057dat=121642
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] taskbar 0.1.2

2006-07-02 Thread Morten Nilsen
Craig Buckner wrote:
 On 6/12/06, Morten Nilsen [EMAIL PROTECTED] wrote:
 http://home.4th-age.com/taskbar-0.1.2.tar.bz2

 
 Forgive my foolishness but:
 
 $ ./configure
 bash: ./configure: No such file or directory
 
 Worked fine to compile and install the rest of E17

you must run autogen.sh

besides, that version isn't the current one.. get the cvs version in stead..

-- 
Cheers,
Morten
:wq

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=lnkkid=120709bid=263057dat=121642
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] taskbar 0.1.2

2006-06-13 Thread Morten Nilsen
Paul Stejskal wrote:
 Making bug.
 e_mod_main.c: In function '_taskbar_cb_icon_mouse_up':
 e_mod_main.c:677: error: too many arguments to function 
 'e_border_unmaximize'
 e_mod_main.c:722: error: too many arguments to function 
 'e_border_unmaximize'

is your enlightenment up to date? it compiles fine here, and I haven't
even touched those lines..

if yours is, then something must have changed in e since my last
checkout two days ago..

-- 
Morten
:wq


___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] taskbar 0.1.2

2006-06-13 Thread Paul Stejskal
Morten Nilsen wrote:
 Paul Stejskal wrote:
   
 Making bug.
 e_mod_main.c: In function '_taskbar_cb_icon_mouse_up':
 e_mod_main.c:677: error: too many arguments to function 
 'e_border_unmaximize'
 e_mod_main.c:722: error: too many arguments to function 
 'e_border_unmaximize'
 

 is your enlightenment up to date? it compiles fine here, and I haven't
 even touched those lines..

 if yours is, then something must have changed in e since my last
 checkout two days ago..

   
Updating gives me this error building E itself.

e_hints.c: In function 'e_hints_allowed_action_set':
e_hints.c:593: error: incompatible type for argument 2 of 
'ecore_x_netwm_allowed_action_set'
make[3]: *** [e_hints.o] Error 1
make[3]: Leaving directory `/home/paul/e17_cvs/e17/apps/e/src/bin'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/paul/e17_cvs/e17/apps/e/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/paul/e17_cvs/e17/apps/e'
make: *** [all] Error 2

I've updated several times, removed my sources, rebuilt everything from 
scratch using easy_e17.sh and it's still not working :(

Paul


___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] taskbar 0.1.2

2006-06-13 Thread Morten Nilsen
Paul Stejskal wrote:
 error: incompatible type for argument 2 of 'ecore_x_netwm_allowed_action_set'
 
 I've updated several times, removed my sources, rebuilt everything from 
 scratch using easy_e17.sh and it's still not working :(

in my tree, the second argument is defined as;
  Ecore_X_Action action[10];

and the prototype for ecore_x_netwm_allowed_action_set is
  ...(Ecore_X_Window win, Ecore_X_Action *action, unsigned int num);

Which seems okay..

Do you have any Ecore_X headers that shouldn't be there?

find / -name Ecore_X.h

-- 
Cheers,
Morten
:wq


___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] taskbar 0.1.2

2006-06-13 Thread The Rasterman
On Tue, 13 Jun 2006 17:12:10 -0500 Paul Stejskal [EMAIL PROTECTED]
babbled:

 Morten Nilsen wrote:
  Paul Stejskal wrote:

  error: incompatible type for argument 2 of
  'ecore_x_netwm_allowed_action_set'
 
  I've updated several times, removed my sources, rebuilt everything from 
  scratch using easy_e17.sh and it's still not working :(
  
 
  in my tree, the second argument is defined as;
Ecore_X_Action action[10];
 
  and the prototype for ecore_x_netwm_allowed_action_set is
...(Ecore_X_Window win, Ecore_X_Action *action, unsigned int num);
 
  Which seems okay..
 
  Do you have any Ecore_X headers that shouldn't be there?
 
  find / -name Ecore_X.h
 

 Turns out I had a double install when I replaced my easy_e17.sh script 
 and it was installing to /opt instead of /usr/local/bin lol. Everything 
 is fine now. Sorry to bug ya.

PEBKAC strikes again. :)

-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)[EMAIL PROTECTED]
裸好多
Tokyo, Japan (東京 日本)


___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] taskbar 0.1.2

2006-06-12 Thread Morten Nilsen
Morten Nilsen wrote:
 http://home.4th-age.com/taskbar-0.1.2.tar.bz2
 
 fixes:
 - Gets rid of segfaulting with etk_test
 - Taskbar reappears in module list

If you've already downloaded this tarball, download it again..
I've pushed a new one, with one additional change;

- When enabled to show all icons, the shelf isn't refreshed on every
desktop change (most notable difference; iconified tasks don't animate)

-- 
Cheers,
Morten
:wq


___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] taskbar 0.1.2

2006-06-12 Thread Paul Stejskal
Morten Nilsen wrote:
 Morten Nilsen wrote:
   
 http://home.4th-age.com/taskbar-0.1.2.tar.bz2

 fixes:
 - Gets rid of segfaulting with etk_test
 - Taskbar reappears in module list
 

 If you've already downloaded this tarball, download it again..
 I've pushed a new one, with one additional change;

 - When enabled to show all icons, the shelf isn't refreshed on every
 desktop change (most notable difference; iconified tasks don't animate)

   
Making bug.
e_mod_main.c: In function '_taskbar_cb_icon_mouse_up':
e_mod_main.c:677: error: too many arguments to function 
'e_border_unmaximize'
e_mod_main.c:722: error: too many arguments to function 
'e_border_unmaximize'
make[2]: *** [e_mod_main.lo] Error 1
make[2]: Leaving directory `/home/paul/Download/taskbar-0.1.2'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/paul/Download/taskbar-0.1.2'
make: *** [all] Error 2

Sounds like a syntax error.

Paul


___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users