E CVS: libs/evas sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/evas

Dir : e17/libs/evas/src/lib/canvas


Modified Files:
evas_stack.c 


Log Message:
indent.

===
RCS file: /cvsroot/enlightenment/e17/libs/evas/src/lib/canvas/evas_stack.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- evas_stack.c26 Aug 2005 06:53:37 -  1.16
+++ evas_stack.c3 Sep 2005 04:47:32 -   1.17
@@ -165,7 +165,7 @@
if (above->smart.smart)
  {
if (above->smart.smart->smart_class->above_get)
- above = above->smart.smart->smart_class->above_get(above);
+ above = above->smart.smart->smart_class->above_get(above);
  }
if (obj->smart.smart)
  {




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: embrace sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : misc
Module  : embrace

Dir : misc/embrace/src/lib


Modified Files:
embrace.c 


Log Message:
make function static

===
RCS file: /cvsroot/enlightenment/misc/embrace/src/lib/embrace.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- embrace.c   3 Sep 2005 04:05:10 -   1.2
+++ embrace.c   3 Sep 2005 04:07:04 -   1.3
@@ -1,5 +1,5 @@
 /*
- * $Id: embrace.c,v 1.2 2005/09/03 04:05:10 sebastid Exp $
+ * $Id: embrace.c,v 1.3 2005/09/03 04:07:04 sebastid Exp $
  *
  * Copyright (C) 2004 Embrace project.
  *
@@ -558,7 +558,7 @@
return true;
 }
 
-bool embrace_load_ui (Embrace *e)
+static bool embrace_load_ui (Embrace *e)
 {
char path[PATH_MAX + 1];
assert (e);




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: embrace sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : misc
Module  : embrace

Dir : misc/embrace/src/include


Modified Files:
embrace.h 


Log Message:
Fix prototypes.

===
RCS file: /cvsroot/enlightenment/misc/embrace/src/include/embrace.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- embrace.h   2 Sep 2005 05:32:57 -   1.1
+++ embrace.h   3 Sep 2005 04:03:51 -   1.2
@@ -1,5 +1,5 @@
 /*
- * $Id: embrace.h,v 1.1 2005/09/02 05:32:57 sebastid Exp $
+ * $Id: embrace.h,v 1.2 2005/09/03 04:03:51 sebastid Exp $
  *
  * Copyright (C) 2004 Embrace project.
  *
@@ -48,7 +48,7 @@
Config cfg;
 } Embrace;
 
-Embrace *embrace_new ();
+Embrace *embrace_new (void);
 void embrace_free (Embrace *e);
 
 bool embrace_init (Embrace *e);
@@ -57,7 +57,7 @@
 void embrace_run (Embrace *e);
 void embrace_stop (Embrace *e);
 
-int embrace_signal_get ();
+int embrace_signal_get (void);
 void embrace_expand_path (char *str, char *dest, int destlen);
 char *embrace_strstrip (char *str);
 




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: embrace sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : misc
Module  : embrace

Dir : misc/embrace/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/misc/embrace/m4/ac_path_generic.m4,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- ac_path_generic.m4  21 May 2004 18:40:40 -  1.2
+++ ac_path_generic.m4  3 Sep 2005 03:55:13 -   1.3
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/imlib2 sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/imlib2

Dir : e17/libs/imlib2/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/libs/imlib2/m4/ac_path_generic.m4,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- ac_path_generic.m4  1 Nov 2004 09:45:29 -   1.3
+++ ac_path_generic.m4  3 Sep 2005 03:54:27 -   1.4
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/esmart sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/libs/esmart/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  24 Jun 2004 06:11:33 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:27 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/etox sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/etox

Dir : e17/libs/etox/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/libs/etox/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  24 Jun 2004 06:11:34 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:27 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/entice sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/entice

Dir : e17/apps/entice/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/apps/entice/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  24 Jun 2004 06:11:29 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:25 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/evfs sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/evfs

Dir : e17/apps/evfs/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/apps/evfs/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  15 Aug 2005 08:52:31 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:25 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/e

Dir : e17/apps/e/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/apps/e/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  25 Nov 2004 03:37:44 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:24 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/edje sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/edje

Dir : e17/libs/edje/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/libs/edje/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  28 Jul 2004 00:39:22 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:26 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: embrace sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : misc
Module  : embrace

Dir : misc/embrace/src/lib


Modified Files:
embrace.c 


Log Message:
Fix function declarations.

===
RCS file: /cvsroot/enlightenment/misc/embrace/src/lib/embrace.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- embrace.c   2 Sep 2005 05:32:57 -   1.1
+++ embrace.c   3 Sep 2005 04:05:10 -   1.2
@@ -1,5 +1,5 @@
 /*
- * $Id: embrace.c,v 1.1 2005/09/02 05:32:57 sebastid Exp $
+ * $Id: embrace.c,v 1.2 2005/09/03 04:05:10 sebastid Exp $
  *
  * Copyright (C) 2004 Embrace project.
  *
@@ -628,7 +628,7 @@
return 0;
 }
 
-Embrace *embrace_new ()
+Embrace *embrace_new (void)
 {
return calloc (1, sizeof (Embrace));
 }
@@ -824,7 +824,7 @@
e->evt_hup = NULL;
 }
 
-int embrace_signal_get ()
+int embrace_signal_get (void)
 {
 #ifdef SIGRTMIN
assert (last_signal >= SIGRTMIN);




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/imlib2_loaders sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/imlib2_loaders

Dir : e17/libs/imlib2_loaders/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/libs/imlib2_loaders/m4/ac_path_generic.m4,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- ac_path_generic.m4  1 Nov 2004 09:47:11 -   1.3
+++ ac_path_generic.m4  3 Sep 2005 03:54:27 -   1.4
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/epsilon sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/epsilon

Dir : e17/libs/epsilon/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/libs/epsilon/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  24 Jun 2004 06:11:33 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:27 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/emotion sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/libs/emotion/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  24 Jun 2004 06:11:31 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:26 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: embrace sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : misc
Module  : embrace

Dir : misc/embrace/src


Modified Files:
e_mod_main.c 


Log Message:
Fix function prototype.

===
RCS file: /cvsroot/enlightenment/misc/embrace/src/e_mod_main.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- e_mod_main.c25 Aug 2005 21:02:59 -  1.3
+++ e_mod_main.c3 Sep 2005 04:02:01 -   1.4
@@ -9,7 +9,7 @@
 #include "embrace.h"
 
 /* module private routines */
-static Embrace  *embrace_module_new ();
+static Embrace  *embrace_module_new (void);
 static void  embrace_module_free (Embrace *embrace);
 static E_Menu   *embrace_config_menu_new (void);
 
@@ -46,7 +46,7 @@
return NULL;
}
/* actually init embrace */
-   embrace = embrace_module_new (module);
+   embrace = embrace_module_new ();
module->config_menu = embrace_config_menu_new ();
 
return embrace;
@@ -93,7 +93,7 @@
 }
 
 /* module private routines */
-static Embrace *embrace_module_new ()
+static Embrace *embrace_module_new (void)
 {
Embrace *embrace;
 




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/examine sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/examine

Dir : e17/apps/examine/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/apps/examine/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  24 Jun 2004 06:11:30 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:25 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/libs/ecore/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  24 Jun 2004 06:11:31 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:26 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/libs/ewl/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  24 Jun 2004 06:11:36 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:27 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e_utils sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/e_utils

Dir : e17/apps/e_utils/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/apps/e_utils/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  10 Jan 2005 21:11:37 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:25 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/evoak sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/evoak

Dir : e17/libs/evoak/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/libs/evoak/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  24 Jun 2004 06:11:34 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:27 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/epeg sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/epeg

Dir : e17/libs/epeg/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/libs/epeg/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  24 Jun 2004 06:11:33 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:27 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/evas sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/evas

Dir : e17/libs/evas/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/libs/evas/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  24 Jun 2004 04:58:53 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:27 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/engrave sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/engrave

Dir : e17/libs/engrave/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/libs/engrave/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  21 Oct 2004 06:56:37 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:26 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/eet sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/eet

Dir : e17/libs/eet/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/libs/eet/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  24 Jun 2004 05:56:37 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:26 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/edb sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/edb

Dir : e17/libs/edb/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/libs/edb/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  24 Jun 2004 05:58:38 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:26 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/embryo sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/embryo

Dir : e17/libs/embryo/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/libs/embryo/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  24 Jun 2004 05:59:57 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:26 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/imlib2_tools sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/imlib2_tools

Dir : e17/apps/imlib2_tools/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/apps/imlib2_tools/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  24 Jun 2004 06:11:30 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:26 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/entrance sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/apps/entrance/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  24 Jun 2004 04:50:13 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:25 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/elation sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/elation

Dir : e17/apps/elation/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/apps/elation/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  15 Jul 2004 09:47:00 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:25 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e_modules sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/e_modules

Dir : e17/apps/e_modules/m4


Modified Files:
ac_path_generic.m4 


Log Message:
If the version from config has something after x.y.z, drop it.

===
RCS file: /cvsroot/enlightenment/e17/apps/e_modules/m4/ac_path_generic.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ac_path_generic.m4  30 Mar 2005 09:58:25 -  1.1
+++ ac_path_generic.m4  3 Sep 2005 03:54:25 -   1.2
@@ -66,11 +66,11 @@
  UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`"
  ifelse([$2], , ,[
 DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\1/'`
 DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\2/'`
 DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \
- --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+ --version | sed 
's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\).*/\3/'`
 DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])"
 DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], 
[\2])"
 DOWN[]_wanted_micro_version="regexp($2, 
[\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])"




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/lib/ecore_con


Modified Files:
ecore_con.c 


Log Message:
Delay dns lookup until after initializing the server. If the hostname
is in cache, it will execute the callback without delay.

===
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore_con/ecore_con.c,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -3 -r1.49 -r1.50
--- ecore_con.c 30 Aug 2005 09:32:09 -  1.49
+++ ecore_con.c 3 Sep 2005 03:07:29 -   1.50
@@ -440,10 +440,6 @@
   }
  }
  }
-   else if (type == ECORE_CON_REMOTE_SYSTEM)
- {
-   ecore_con_dns_lookup(name, _ecore_con_cb_dns_lookup, svr);
- }
 
svr->name = strdup(name);
if (!svr->name) goto error;
@@ -456,6 +452,10 @@
svr->clients = ecore_list_new();
ecore_list_append(servers, svr);
ECORE_MAGIC_SET(svr, ECORE_MAGIC_CON_SERVER);   
+
+   if (type == ECORE_CON_REMOTE_SYSTEM)
+ ecore_con_dns_lookup(svr->name, _ecore_con_cb_dns_lookup, svr);
+
return svr;

error:




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/emotion raster

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion/src/lib


Modified Files:
Emotion.h 


Log Message:


add c++ stuff

===
RCS file: /cvsroot/enlightenment/e17/libs/emotion/src/lib/Emotion.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- Emotion.h   4 May 2005 21:32:37 -   1.6
+++ Emotion.h   3 Sep 2005 01:38:45 -   1.7
@@ -53,6 +53,10 @@
 #define EMOTION_CHANNEL_AUTO -1
 #define EMOTION_CHANNEL_DEFAULT 0
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+   
 /* api calls available */
 Evas_Object *emotion_object_add   (Evas *evas);
 Evas_Boolemotion_object_init  (Evas_Object *obj);
@@ -107,4 +111,8 @@
 int  emotion_object_spu_button_get(Evas_Object *obj);
 const char  *emotion_object_meta_info_get (Evas_Object *obj, 
Emotion_Meta_Info meta);
 
+#ifdef __cplusplus
+}
+#endif
+  
 #endif




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_apps.c 


Log Message:
TODO

===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_apps.c,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -3 -r1.61 -r1.62
--- e_apps.c31 Aug 2005 04:49:05 -  1.61
+++ e_apps.c3 Sep 2005 00:00:54 -   1.62
@@ -1015,6 +1015,9 @@
Ecore_Event_Exe_Exit *ev;
E_App *a;

+   /* FIXME: Check if we launched this exe, else it isn't sure that
+* the exe data is an E_App!
+*/
ev = event;
if (ev->exe)
  {




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e_modules sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/e_modules

Dir : e17/apps/e_modules/src/modules/weather


Modified Files:
e_mod_main.c 


Log Message:
* Return 0 if the server event belongs to us. 0 == don't process event
  further.

===
RCS file: 
/cvsroot/enlightenment/e17/apps/e_modules/src/modules/weather/e_mod_main.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- e_mod_main.c29 Aug 2005 17:32:11 -  1.20
+++ e_mod_main.c2 Sep 2005 23:50:50 -   1.21
@@ -856,7 +856,7 @@
  face->conf->url,
  weather->conf->host);
ecore_con_server_send(face->server, buf, strlen(buf));
-   return 1;
+   return 0;
 }
 
 static int
@@ -886,7 +886,7 @@
memcpy(face->buffer + face->cursize, e->data, e->size);
face->cursize += e->size;
face->buffer[face->cursize] = 0;
-   return 1;
+   return 0;
 }
 
 static int
@@ -920,7 +920,7 @@
face->cursize = 0;
free(face->buffer);
face->buffer = NULL;
-   return 1;
+   return 0;
 }
 
 static int




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_border.c 


Log Message:
* Make sure that the window isn't transient for itself.
* If the window is transient for it's groups leader, don't register
  as a group member.

===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_border.c,v
retrieving revision 1.388
retrieving revision 1.389
diff -u -3 -r1.388 -r1.389
--- e_border.c  2 Sep 2005 21:06:57 -   1.388
+++ e_border.c  2 Sep 2005 21:23:39 -   1.389
@@ -4751,7 +4751,7 @@
 E_Border *bd_parent;
 
 bd_parent = 
e_border_find_by_client_window(bd->client.icccm.transient_for);
-if (bd_parent)
+if ((bd_parent) && (bd_parent != bd))
   {
  bd_parent->transients = 
evas_list_append(bd_parent->transients, bd);
  bd->parent = bd_parent;
@@ -4764,8 +4764,12 @@
 E_Border *bd_leader;
 
 bd_leader = 
e_border_find_by_client_window(bd->client.icccm.client_leader);
-/* If this border is the leader of the group, don't register 
itself */
-if ((bd_leader) && (bd_leader != bd))
+/* 
+ * If this border is the leader of the group, don't register itself
+ * If this window is transient, don't register if the leader is the
+ * same as the parent
+ */
+if ((bd_leader) && (bd_leader != bd) && (bd_leader != bd->parent))
   {
  bd_leader->group = evas_list_append(bd_leader->group, bd);
  bd->leader = bd_leader;




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_border.c 


Log Message:
* Windows can be transient and be part of a group
* Check for recursive focus

===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_border.c,v
retrieving revision 1.387
retrieving revision 1.388
diff -u -3 -r1.387 -r1.388
--- e_border.c  2 Sep 2005 17:51:34 -   1.387
+++ e_border.c  2 Sep 2005 21:06:57 -   1.388
@@ -973,12 +973,12 @@
E_OBJECT_CHECK(bd);
E_OBJECT_TYPE_CHECK(bd, E_BORDER_TYPE);
//printf("e_border_focus_set(%p, %i %i);\n", bd, focus, set);
-   if (bd->modal)
+   if ((bd->modal) && (bd->modal != bd))
  {
e_border_focus_set(bd->modal, focus, set);
return;
  }
-   else if ((bd->leader) && (bd->leader->modal))
+   else if ((bd->leader) && (bd->leader->modal) && (bd->leader->modal != bd))
  {
e_border_focus_set(bd->leader->modal, focus, set);
return;
@@ -2345,8 +2345,11 @@
if (bd->leader->modal == bd)
  {
 bd->leader->modal = NULL;
+/* TODO Should we focus leader when this window closes? */
+#if 0
 if (bd->focused)
   e_border_focus_set(bd->leader, 1, 1);
+#endif
  }
  }
while (bd->group)
@@ -4743,12 +4746,6 @@
if (bd->new_client)
  {
bd->new_client = 0;
-   if ((bd->client.icccm.transient_for) && 
(bd->client.icccm.client_leader))
- {
-e_error_dialog_show(_("ICCCM error"),
-_("Weird, this window is transient and has a 
leader: %s\n"),
-  e_border_name_get(bd));
- }
if (bd->client.icccm.transient_for)
  {
 E_Border *bd_parent;
@@ -4767,7 +4764,8 @@
 E_Border *bd_leader;
 
 bd_leader = 
e_border_find_by_client_window(bd->client.icccm.client_leader);
-if (bd_leader)
+/* If this border is the leader of the group, don't register 
itself */
+if ((bd_leader) && (bd_leader != bd))
   {
  bd_leader->group = evas_list_append(bd_leader->group, bd);
  bd->leader = bd_leader;




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/evoak sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/evoak

Dir : e17/libs/evoak/src/lib


Modified Files:
Makefile.am 


Log Message:
Don't include $(includedir) in searchpath, find headers in this source
and in the provided package CFLAGS.

===
RCS file: /cvsroot/enlightenment/e17/libs/evoak/src/lib/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Makefile.am 2 Nov 2004 03:53:33 -   1.2
+++ Makefile.am 2 Sep 2005 20:15:28 -   1.3
@@ -4,8 +4,7 @@
 
 MAINTAINERCLEANFILES = Makefile.in
 
-INCLUDES= -I$(includedir) \
-  -I$((top_srcdir) \
+INCLUDES= -I$(top_srcdir) \
   -I$(top_srcdir)/src/lib \
   @my_cflags@
 




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/epsilon sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/epsilon

Dir : e17/libs/epsilon/src/lib


Modified Files:
Makefile.am 


Log Message:
* Better usage of m4 macros to get cflags/libs from configure scripts.
* Bail out if the script doesn't find a lib that will result in a
  compile error.

===
RCS file: /cvsroot/enlightenment/e17/libs/epsilon/src/lib/Makefile.am,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- Makefile.am 16 Jul 2005 15:50:10 -  1.6
+++ Makefile.am 2 Sep 2005 20:13:21 -   1.7
@@ -6,7 +6,7 @@
 MAINTAINERCLEANFILES = Makefile.in
 SUBDIRS  = exiftags
 
-INCLUDES= -I$(includedir) @imlib_cflags@ @epeg_cflags@ 
@ecore_cflags@ @evas_cflags@ @edje_cflags@
+INCLUDES= @IMLIB2_CFLAGS@ @EPEG_CFLAGS@ @ECORE_CFLAGS@ 
@EVAS_CFLAGS@ @EDJE_CFLAGS@
 
 lib_LTLIBRARIES  = libepsilon.la
 include_HEADERS  = Epsilon.h
@@ -15,6 +15,6 @@
 Epsilon_Exif.c \
 md5.c md5.h
 
-libepsilon_la_LIBADD   = exiftags/libepsilon_exiftags.la @imlib_libs@ 
@epeg_libs@ @ecore_libs@ @evas_libs@ @edje_libs@
+libepsilon_la_LIBADD   = exiftags/libepsilon_exiftags.la @IMLIB2_LIBS@ 
@EPEG_LIBS@ @ECORE_LIBS@ @EVAS_LIBS@ @EDJE_LIBS@
 libepsilon_la_DEPENDENCIES = ../config.h 
 libepsilon_la_LDFLAGS  = $(LDFLAGS) -version-info 0:1:0




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/emotion sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion/src/lib


Modified Files:
Makefile.am 


Log Message:
Don't include $(includedir) in searchpath, find headers in this source
and in the provided package CFLAGS.

===
RCS file: /cvsroot/enlightenment/e17/libs/emotion/src/lib/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- Makefile.am 2 Nov 2004 03:50:27 -   1.3
+++ Makefile.am 2 Sep 2005 20:15:28 -   1.4
@@ -4,8 +4,7 @@
 
 MAINTAINERCLEANFILES = Makefile.in
 
-INCLUDES= -I$(includedir) \
-  -I$(top_srcdir) \
+INCLUDES= -I$(top_srcdir) \
   -I$(top_srcdir)/src/lib \
   @my_cflags@
 




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/epsilon sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/epsilon

Dir : e17/libs/epsilon


Modified Files:
configure.in epsilon-config.in 


Log Message:
* Better usage of m4 macros to get cflags/libs from configure scripts.
* Bail out if the script doesn't find a lib that will result in a
  compile error.

===
RCS file: /cvsroot/enlightenment/e17/libs/epsilon/configure.in,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- configure.in30 Jul 2005 06:16:02 -  1.9
+++ configure.in2 Sep 2005 20:13:21 -   1.10
@@ -44,84 +44,73 @@
 [CFLAGS="$CFLAGS -I$withval/include"
 LIBS="-L$withval/lib $LIBS"])
 
-AC_PATH_GENERIC(imlib2, 1.0.0, [
-  AC_SUBST(imlib_libs)
-  AC_SUBST(imlib_cflags) ],
-  AC_MSG_ERROR(Cannot find imlib2: Is imlib2-config in the path?) )
-imlib_libs=`imlib2-config --libs`
-imlib_cflags=`imlib2-config --cflags`
-AC_SUBST(imlib_libs)
-AC_SUBST(imlib_cflags)
-
-have_png="no"
-have_epeg="no"
-epeg_libs=""
-epeg_cflags=""
+AC_PATH_GENERIC(imlib2, 1.0.0,
+  [ have_imlib2="yes" ],
+  [
+have_imlib2="yes"
+AC_MSG_ERROR(Cannot find imlib2: Is imlib2-config in the path?)
+  ]
+)
+
 dnl Make sure the epeg header/lib is available
-AC_CHECK_HEADER( Epeg.h, 
-  [ AC_DEFINE(HAVE_EPEG_H, 1, [Epeg.h available]) 
-have_epeg="yes" 
-epeg_libs=`epeg-config --libs`
-epeg_cflags=`epeg-config --cflags` ],
-  [ AC_MSG_WARN(Cannot find Epeg.h on your system: jpeg thumbnail suckage!) ])
-AC_CHECK_LIB(epeg, epeg_file_open, [ 
-AC_DEFINE(HAVE_EPEG_LIB, 1, [libepeg available]) 
-])
-AC_SUBST(epeg_libs)
-AC_SUBST(epeg_cflags)
+AC_PATH_GENERIC(epeg, 0.9.0,
+  [
+AC_DEFINE(HAVE_EPEG_H, 1, [Epeg.h is available])
+have_epeg="yes"
+  ],
+  [
+have_epeg="yes"
+AC_MSG_WARN(Cannot find Epeg on your system: jpeg thumbnail suckage!)
+  ]
+)
 
 dnl Make sure the png header/lib is available
-AC_CHECK_HEADER( png.h, 
-  [ AC_DEFINE(HAVE_PNG_H, 1, [png.h available]) 
-have_png="yes" 
-LIBS="$LIBS -lpng -lz -lm" ], 
-  [ AC_MSG_ERROR(Cannot find png.h on your system, try --with-png=) ])
-AC_CHECK_LIB(png, png_create_read_struct, [ 
-AC_DEFINE(HAVE_PNG_LIB, 1, [libpng available]) 
-])
-  
+PKG_CHECK_MODULES(PNG, libpng12 >= 1.2.0,
+  [ have_png="yes" ],
+  [ have_png="no" ]
+)
+
 AC_PATH_PROG(PERL, perl, 0)
 AC_SUBST(PERL)
 
 dnl Make sure the Evas header/lib is available
-AC_CHECK_HEADER( Evas.h, 
-  [ AC_DEFINE(HAVE_EVAS_H, 1, [Evas.h available]) 
-have_evas="yes" 
-evas_libs=`evas-config --libs`
-evas_cflags=`evas-config --cflags` ],
-  [ AC_MSG_WARN(Cannot find Evas.h on your system: edje thumbnail suckage!) ])
-AC_CHECK_LIB(evas, evas_object_rectangle_add, [ 
-AC_DEFINE(HAVE_EVAS_LIB, 1, [libevas available]) 
-])
-AC_SUBST(evas_libs)
-AC_SUBST(evas_cflags)
+AC_PATH_GENERIC(evas, 0.9.9,
+  [ have_evas="yes" ],
+  [
+have_evas="yes"
+AC_MSG_ERROR(Cannot find Evas on your system: jpeg thumbnail suckage!)
+  ]
+)
 
 dnl Make sure the Ecore_Evas header/lib is available
-AC_CHECK_HEADER( Ecore_Evas.h, 
-  [ AC_DEFINE(HAVE_ECORE_EVAS_H, 1, [Ecore_Evas.h available]) 
-have_evas="yes" 
-ecore_libs=`ecore-config --libs`
-ecore_cflags=`ecore-config --cflags` ],
-  [ AC_MSG_WARN(Cannot find Ecore_Evas.h on your system: edje thumbnail suckage
-) ])
-AC_CHECK_LIB(ecore_evas, ecore_evas_buffer_new, [ 
-AC_DEFINE(HAVE_ECORE_EVAS_LIB, 1, [libecore_evas available]) 
-])
-AC_SUBST(ecore_libs)
-AC_SUBST(ecore_cflags)
+AC_PATH_GENERIC(ecore, 0.9.9,
+  [
+SAVE_CFLAGS=$CFLAGS;
+CFLAGS="$CFLAGS $ECORE_CFLAGS"
+AC_CHECK_HEADER(Ecore_Evas.h, 
+  [
+have_ecore="yes" 
+  ], [
+have_ecore="no" 
+AC_MSG_ERROR(Cannot find Ecore_Evas on your system: edje thumbnail 
suckage)
+  ]
+)
+CFLAGS=$SAVE_CFLAGS
+  ],
+  [
+have_ecore="yes"
+AC_MSG_ERROR(Cannot find Ecore_Evas on your system: jpeg thumbnail 
suckage!)
+  ]
+)
 
 dnl Make sure the Edje header/lib is available
-AC_CHECK_HEADER( Edje.h, 
-  [ AC_DEFINE(HAVE_EDJE_H, 1, [Edje.h available]) 
-have_edje="yes" 
-edje_libs=`edje-config --libs`
-edje_cflags=`edje-config --cflags` ],
-  [ AC_MSG_WARN(Cannot find Edje.h on your system: edje thumbnail suckage!) ])
-AC_CHECK_LIB(edje, edje_object_add, [ 
-AC_DEFINE(HAVE_EDJE_LIB, 1, [libedje available]) 
-])
-AC_SUBST(edje_libs)
-AC_SUBST(edje_cflags)
+AC_PATH_GENERIC(edje, 0.5.0,
+  [ have_edje="yes" ],
+  [
+have_edje="yes"
+AC_MSG_ERROR(Cannot find Edje on your system: jpeg thumbnail suckage!)
+  ]
+)
 
 
 AC_OUTPUT([
===
RCS file: /cvsroot/enlightenment/e17/libs/epsilon/epsilon-config.in,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -3 -r1.1.1.1 -r1.2
--- epsilon-config.in   10 Dec 2003 04:46:34 -  1.1.1.1
+++ epsilon-config.in   2 Sep 20

E CVS: libs/epsilon sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/epsilon

Dir : e17/libs/epsilon/src/bin


Modified Files:
Makefile.am 


Log Message:
* Better usage of m4 macros to get cflags/libs from configure scripts.
* Bail out if the script doesn't find a lib that will result in a
  compile error.

===
RCS file: /cvsroot/enlightenment/e17/libs/epsilon/src/bin/Makefile.am,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- Makefile.am 16 Jul 2005 15:50:10 -  1.4
+++ Makefile.am 2 Sep 2005 20:13:21 -   1.5
@@ -1,11 +1,10 @@
 ## Process this file with automake to produce Makefile.in
 
-INCLUDES = \
--I$(top_srcdir)/src/lib \
[EMAIL PROTECTED]@ \
[EMAIL PROTECTED]@ \
[EMAIL PROTECTED]@ \
[EMAIL PROTECTED]@
+INCLUDES = -I$(top_srcdir)/src/lib \
+   @IMLIB2_CFLAGS@ \
+   @EVAS_CFLAGS@ \
+   @ECORE_CFLAGS@ \
+   @EDJE_CFLAGS@
 
 bin_PROGRAMS = epsilon
 
@@ -13,6 +12,6 @@
 epsilon_main.c 
 
 epsilon_LDADD = \
-$(top_builddir)/src/lib/libepsilon.la @imlib_libs@ @evas_libs@ @ecore_libs@ 
@edje_libs@
+$(top_builddir)/src/lib/libepsilon.la @IMLIB2_LIBS@ @EVAS_LIBS@ @ECORE_LIBS@ 
@EDJE_LIBS@
 
 epsilon_DEPENDENCIES = $(top_builddir)/src/lib/libepsilon.la




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/epsilon sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/epsilon

Dir : e17/libs/epsilon/src/lib/exiftags


Modified Files:
Makefile.am 


Log Message:
* Better usage of m4 macros to get cflags/libs from configure scripts.
* Bail out if the script doesn't find a lib that will result in a
  compile error.

===
RCS file: /cvsroot/enlightenment/e17/libs/epsilon/src/lib/exiftags/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- Makefile.am 2 Nov 2004 20:10:15 -   1.3
+++ Makefile.am 2 Sep 2005 20:13:21 -   1.4
@@ -5,11 +5,10 @@
 # A list of all the files in the current directory which can be regenerated
 MAINTAINERCLEANFILES = Makefile.in
 
-INCLUDES = -I$(includedir) \
-  -I$(top_builddir)/src \
+INCLUDES = -I$(top_builddir)/src \
   -I$(top_srcdir)/src \
   -I$(top_srcdir)/src/lib \
-  @imlib_cflags@ @epeg_cflags@
+  @IMLIB2_CFLAGS@ @EPEG_CFLAGS@
 
 noinst_LTLIBRARIES = libepsilon_exiftags.la
 libepsilon_exiftags_la_SOURCES = \




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/examples


Modified Files:
Makefile.am 


Log Message:
Don't include $(includedir) in searchpath, find headers in this source
and in the provided package CFLAGS.

===
RCS file: /cvsroot/enlightenment/e17/libs/ecore/examples/Makefile.am,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- Makefile.am 13 Jun 2005 10:52:22 -  1.11
+++ Makefile.am 2 Sep 2005 20:15:27 -   1.12
@@ -21,7 +21,6 @@
 noinst_PROGRAMS = $(EXAMPLES) $(CON_EXAMPLES) $(CONFIG_EXAMPLES) $(X_EXAMPLES)
 
 INCLUDES = \
--I$(includedir) \
 -I$(top_srcdir)/src/lib/ecore \
 -I$(top_srcdir)/src/lib/ecore_config \
 -I$(top_srcdir)/src/lib/ecore_x \




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/emotion sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion/src/modules/xine


Modified Files:
Makefile.am 


Log Message:
Don't include $(includedir) in searchpath, find headers in this source
and in the provided package CFLAGS.

===
RCS file: /cvsroot/enlightenment/e17/libs/emotion/src/modules/xine/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- Makefile.am 2 Nov 2004 03:50:27 -   1.3
+++ Makefile.am 2 Sep 2005 20:15:28 -   1.4
@@ -4,8 +4,7 @@
 
 MAINTAINERCLEANFILES = Makefile.in
 
-INCLUDES= -I$(includedir) \
-  -I$(top_srcdir) \
+INCLUDES= -I$(top_srcdir) \
   -I$(top_srcdir)/src/lib \
   -I$(top_srcdir)/src/modules \
   -I$(top_srcdir)/src/modules/xine \




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/emotion sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion/src/modules


Modified Files:
Makefile.am 


Log Message:
Don't include $(includedir) in searchpath, find headers in this source
and in the provided package CFLAGS.

===
RCS file: /cvsroot/enlightenment/e17/libs/emotion/src/modules/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- Makefile.am 2 Nov 2004 03:50:27 -   1.3
+++ Makefile.am 2 Sep 2005 20:15:28 -   1.4
@@ -6,8 +6,7 @@
 
 MAINTAINERCLEANFILES = Makefile.in
 
-INCLUDES= -I$(includedir) \
-  -I$(top_srcdir) \
+INCLUDES= -I$(top_srcdir) \
   -I$(top_srcdir)/src/lib \
   -I$(top_srcdir)/src/modules \
   @my_cflags@ @xine_cflags@




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/edje sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/edje

Dir : e17/libs/edje/src/lib


Modified Files:
Makefile.am 


Log Message:
Don't include $(includedir) in searchpath, find headers in this source
and in the provided package CFLAGS.

===
RCS file: /cvsroot/enlightenment/e17/libs/edje/src/lib/Makefile.am,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -3 -r1.29 -r1.30
--- Makefile.am 9 Nov 2004 09:31:08 -   1.29
+++ Makefile.am 2 Sep 2005 20:15:28 -   1.30
@@ -8,7 +8,6 @@
 INCLUDES= \
 -I$(top_srcdir) \
 -I$(top_builddir) \
--I$(includedir) \
 @eet_cflags@ \
 @embryo_cflags@ \
 @evas_cflags@ \




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e dj2

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_border.c 


Log Message:
the _ should be there, just need to move the )

===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_border.c,v
retrieving revision 1.386
retrieving revision 1.387
diff -u -3 -r1.386 -r1.387
--- e_border.c  2 Sep 2005 14:22:17 -   1.386
+++ e_border.c  2 Sep 2005 17:51:34 -   1.387
@@ -4746,8 +4746,8 @@
if ((bd->client.icccm.transient_for) && 
(bd->client.icccm.client_leader))
  {
 e_error_dialog_show(_("ICCCM error"),
-("Weird, this window is transient and has a 
leader: %s\n",
-  e_border_name_get(bd)));
+_("Weird, this window is transient and has a 
leader: %s\n"),
+  e_border_name_get(bd));
  }
if (bd->client.icccm.transient_for)
  {




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/evas raster

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/evas

Dir : e17/libs/evas/src/lib/canvas


Modified Files:
evas_object_textblock.c 


Log Message:


more tb2 work!

===
RCS file: 
/cvsroot/enlightenment/e17/libs/evas/src/lib/canvas/evas_object_textblock.c,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -3 -r1.88 -r1.89
--- evas_object_textblock.c 30 Aug 2005 15:19:39 -  1.88
+++ evas_object_textblock.c 2 Sep 2005 15:27:09 -   1.89
@@ -1383,16 +1383,28 @@
return _is_white(chr);
 }
 
-static void
+static int
 _layout_strip_trailing_whitespace(Ctxt *c, Evas_Object_Textblock_Format *fmt, 
Evas_Object_Textblock_Item *it)
 {
int p, tp, chr, adv, tw, th;

p = evas_common_font_utf8_get_last((unsigned char *)(it->text), 
strlen(it->text));
tp = p;
-   while (p >= 0)
+   if (p > 0)
+/*   while (p >= 0)*/
  {
chr = evas_common_font_utf8_get_prev((unsigned char *)(it->text), &p);
+   if (_is_white(chr))
+ {
+_layout_item_text_cutoff(c, it, tp);
+adv = c->ENFN->font_h_advance_get(c->ENDT, it->format->font.font, 
it->text);
+c->ENFN->font_string_size_get(c->ENDT, it->format->font.font, 
it->text, &tw, &th);
+it->w = tw;
+it->h = th;
+c->x = it->x + adv;
+return 1;
+ }
+/*   
if (!_is_white(chr))
  {
 evas_common_font_utf8_get_next((unsigned char *)(it->text), &tp);
@@ -1405,10 +1417,12 @@
 return;
  }
tp = p;
+ */
  }
+   return 0;
 }
 
-static void
+static int
 _layout_item_abort(Ctxt *c, Evas_Object_Textblock_Format *fmt, 
Evas_Object_Textblock_Item *it)
 {
if (it->text) free(it->text);
@@ -1417,8 +1431,9 @@
if (c->ln->items)
  {
it = (Evas_Object_Textblock_Item *)((Evas_Object_List 
*)c->ln->items)->last;
-   _layout_strip_trailing_whitespace(c, fmt, it);
+   return _layout_strip_trailing_whitespace(c, fmt, it);
  }
+   return 0;
 }
 
 static char *
@@ -1493,6 +1508,7 @@
Evas_List *remove_items = NULL, *l;
int index, p, ch, tw, th, inset, adv;

+//   printf("_layout_walk_back_to_item_word_redo(...)\n");
/* it is not appended yet */
for (pit = (Evas_Object_Textblock_Item *)((Evas_Object_List 
*)c->ln->items)->last;
pit;
@@ -1513,6 +1529,14 @@
 new_it->source_pos = pit->source_pos + index;
 _layout_item_text_cutoff(c, pit, index);
 _layout_strip_trailing_whitespace(c, pit->format, pit);
+/* ***  
+if (!white_stripped)
+  {
+ index = 0;
+ ch = evas_common_font_utf8_get_next((unsigned char *)str, 
&index);
+ if (_is_white(ch)) str += index;
+  }
+ */
 break;
  }
  }
@@ -1567,7 +1591,7 @@
 _layout_text_append(Ctxt *c, Evas_Object_Textblock_Format *fmt, 
Evas_Object_Textblock_Node *n)
 {
int adv, inset, tw, th, new_line, empty_item;
-   int wrap, twrap, ch, index;
+   int wrap, twrap, ch, index, white_stripped;
char *str;
Evas_Object_Textblock_Item *it, *tit;

@@ -1578,6 +1602,7 @@
  {
/* if this is the first line item and it starts with spaces - remove 
them */
wrap = 0;
+   white_stripped = 0;
if (!c->ln->items)
  {
 twrap = wrap;
@@ -1665,7 +1690,7 @@
  }
if (c->ln->items != NULL)
  {
-_layout_item_abort(c, fmt, it);
+white_stripped = _layout_item_abort(c, fmt, 
it);
 empty_item = 1;
  }
else
@@ -1711,7 +1736,7 @@
}
  if (c->ln->items != NULL)
{
-  _layout_item_abort(c, fmt, it);
+  white_stripped = _layout_item_abort(c, fmt, it);
   empty_item = 1;
   new_line = 1;
}
@@ -1753,6 +1778,12 @@
  }
if (new_line)
  {
+if (!white_stripped)
+  {
+ index = 0;
+ ch = evas_common_font_utf8_get_next((unsigned char *)str, 
&index);
+ if (_is_white(ch)) str += index;
+  }
 new_line = 0;
 _layout_line_advance(c, fmt);
  }
@@ -1855,9 +1886,17 @@
 c->o->style_pad.r - 
 c->marginl - c->marginr))
  {
+
 _layout_line_advance(c, fmt);
 x2 = (fmt->tabstops * ((c->x + fmt->tabstops) 
/ fmt->tabstops));
  

E CVS: libs/evas raster

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/evas

Dir : e17/libs/evas/src/lib


Modified Files:
Evas.h 


Log Message:


more tb2 work!

===
RCS file: /cvsroot/enlightenment/e17/libs/evas/src/lib/Evas.h,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -3 -r1.61 -r1.62
--- Evas.h  30 Aug 2005 15:19:39 -  1.61
+++ Evas.h  2 Sep 2005 15:27:09 -   1.62
@@ -496,10 +496,9 @@
EAPI void 
evas_textblock2_cursor_line_last(Evas_Textblock_Cursor *cur);
EAPI int  
evas_textblock2_cursor_pos_get(Evas_Textblock_Cursor *cur);
EAPI void 
evas_textblock2_cursor_pos_set(Evas_Textblock_Cursor *cur, int pos);
-   EAPI void 
evas_textblock2_cursor_line_set(Evas_Textblock_Cursor *cur, int line);
+   EAPI Evas_Bool
evas_textblock2_cursor_line_set(Evas_Textblock_Cursor *cur, int line);
EAPI int  
evas_textblock2_cursor_compare(Evas_Textblock_Cursor *cur1, 
Evas_Textblock_Cursor *cur2);
EAPI void 
evas_textblock2_cursor_copy(Evas_Textblock_Cursor *cur, Evas_Textblock_Cursor 
*cur_dest);
-   

EAPI void 
evas_textblock2_cursor_text_append(Evas_Textblock_Cursor *cur, const char 
*text);
EAPI void 
evas_textblock2_cursor_text_prepend(Evas_Textblock_Cursor *cur, const char 
*text);
@@ -514,13 +513,13 @@

EAPI int  
evas_textblock2_cursor_char_geometry_get(Evas_Textblock_Cursor *cur, Evas_Coord 
*cx, Evas_Coord *cy, Evas_Coord *cw, Evas_Coord *ch);
EAPI int  
evas_textblock2_cursor_line_geometry_get(Evas_Textblock_Cursor *cur, Evas_Coord 
*cx, Evas_Coord *cy, Evas_Coord *cw, Evas_Coord *ch);
- 
+   EAPI Evas_Bool
evas_textblock2_cursor_char_coord_set(Evas_Textblock_Cursor *cur, Evas_Coord x, 
Evas_Coord y);
+
EAPI Evas_Bool
evas_object_textblock2_line_number_geometry_get(Evas_Object *obj, int line, 
Evas_Coord *cx, Evas_Coord *cy, Evas_Coord *cw, Evas_Coord *ch);
EAPI void evas_object_textblock2_clear(Evas_Object 
*obj);
EAPI void 
evas_object_textblock2_size_formatted_get(Evas_Object *obj, Evas_Coord *w, 
Evas_Coord *h);
EAPI void 
evas_object_textblock2_size_native_get(Evas_Object *obj, Evas_Coord *w, 
Evas_Coord *h);
EAPI void 
evas_object_textblock2_style_insets_get(Evas_Object *obj, Evas_Coord *l, 
Evas_Coord *r, Evas_Coord *t, Evas_Coord *b);
-   /* FIXME: jump cursor to object-relative x, y */


EAPI void  evas_object_del   (Evas_Object *obj);




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: embrace dj2

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : dj2
Project : misc
Module  : embrace

Dir : misc/embrace


Modified Files:
embrace.spec 


Log Message:
- set the license to GPL as it should be

===
RCS file: /cvsroot/enlightenment/misc/embrace/embrace.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- embrace.spec29 Aug 2005 16:11:47 -  1.1
+++ embrace.spec2 Sep 2005 14:36:30 -   1.2
@@ -2,7 +2,7 @@
 Name: embrace
 Version: 0.0.3
 Release:1.%(date '+%Y%m%d')
-License: BSD
+License: GPL
 Group:User Interface/Desktops
 Source: %{name}-%{version}.tar.gz
 Packager: %{?_packager:%{_packager}}%{!?_packager:Jim Perrin <[EMAIL 
PROTECTED]>}




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e jcwong

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : jcwong
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_border.c 


Log Message:
minus "_"

===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_border.c,v
retrieving revision 1.385
retrieving revision 1.386
diff -u -3 -r1.385 -r1.386
--- e_border.c  2 Sep 2005 09:56:01 -   1.385
+++ e_border.c  2 Sep 2005 14:22:17 -   1.386
@@ -4746,7 +4746,7 @@
if ((bd->client.icccm.transient_for) && 
(bd->client.icccm.client_leader))
  {
 e_error_dialog_show(_("ICCCM error"),
-_("Weird, this window is transient and has a 
leader: %s\n",
+("Weird, this window is transient and has a 
leader: %s\n",
   e_border_name_get(bd)));
  }
if (bd->client.icccm.transient_for)




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/e

Dir : e17/apps/e


Modified Files:
TODO 


Log Message:
* Add options
-   e_config->transient.move
-   e_config->transient.resize
-   e_config->transient.raise
-   e_config->transient.lower
-   e_config->transient.layer
-   e_config->transient.desktop
-   e_config->transient.iconify
* Implement
-   e_config->transient.raise
-   e_config->transient.lower
-   e_config->transient.layer
-   e_config->transient.desktop
-   e_config->transient.iconify
* Show hide border in e_border_desk_set
* Add e_border_layer_set()

===
RCS file: /cvsroot/enlightenment/e17/apps/e/TODO,v
retrieving revision 1.259
retrieving revision 1.260
diff -u -3 -r1.259 -r1.260
--- TODO2 Sep 2005 06:15:55 -   1.259
+++ TODO2 Sep 2005 07:38:39 -   1.260
@@ -26,7 +26,10 @@
 
 * desktopname could reaally be part of pager - and display a full pager layout
   of all desktops and whihc one of them just got selected
+* some sort of gui display of a desktop name (in the pager?)
 * if a parent window is "on top" child dialog windows should also be "on top"
+* transients should have option to always follow parent
+  (move/resize/raise/lower) (and remember this).
 * in addition to smart place should add manual placement and place at pointer
   and maybe a few others.
 * emit signal to submenu entries if they have a submenu shown for them or not
@@ -64,11 +67,8 @@
   to properly choose the border based on client window properties.
 * do something with the icccm urgency field hint
 * different borders for non-resizable windows, shaped windows etc.
-* some sort of gui display of a desktop name (in the pager?)
 * window icons should be able to be chosen if e eapp icon overrides netwm
   icon or the other way around (and remember this).
-* transients should have option to always follow parent
-  (move/resize/raise/lower) (and remember this).
 * actions to make current zone different (warp mouse to there)
 * actions to make the current container different
 * titlebar/border expansion/gadget panel for modules to put window widgets in




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_border.c e_border.h 


Log Message:
Honour modal windows.

===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_border.c,v
retrieving revision 1.383
retrieving revision 1.384
diff -u -3 -r1.383 -r1.384
--- e_border.c  2 Sep 2005 07:38:40 -   1.383
+++ e_border.c  2 Sep 2005 09:25:53 -   1.384
@@ -973,6 +973,11 @@
E_OBJECT_CHECK(bd);
E_OBJECT_TYPE_CHECK(bd, E_BORDER_TYPE);
//printf("e_border_focus_set(%p, %i %i);\n", bd, focus, set);
+   if (bd->modal)
+ {
+   e_border_focus_set(bd->modal, focus, set);
+   return;
+ }
if ((bd->visible) && (bd->changes.visible))
  {  
if ((bd->want_focus) && (set) && (!focus))
@@ -2311,7 +2316,15 @@
  }
 
if (bd->parent)
- bd->parent->children = evas_list_remove(bd->parent->children, bd);
+ {
+   bd->parent->children = evas_list_remove(bd->parent->children, bd);
+   if (bd->parent->modal == bd)
+ {
+bd->parent->modal = NULL;
+if (bd->focused)
+  e_border_focus_set(bd->parent, 1, 1);
+ }
+ }
while (bd->children)
  {
E_Border *child;
@@ -4715,6 +4728,8 @@
   {
  bd_parent->children = evas_list_append(bd_parent->children, 
bd);
  bd->parent = bd_parent;
+ if (bd->client.netwm.state.modal)
+   bd->parent->modal = bd;
   }
  }
 // printf("##- NEW CLIENT SETUP 0x%x\n", bd->client.win);
===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_border.h,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -3 -r1.107 -r1.108
--- e_border.h  2 Sep 2005 07:38:40 -   1.107
+++ e_border.h  2 Sep 2005 09:25:53 -   1.108
@@ -386,6 +386,7 @@
E_Remember *remember;
 
E_Border *parent;
+   E_Border *modal;
Evas_List *children;
 };
 




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_border.c e_border.h e_theme.h e_zone.h 


Log Message:
* Add missing prototypes.
* Store client_leader info.
* Honour modal windows for group.

===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_border.c,v
retrieving revision 1.384
retrieving revision 1.385
diff -u -3 -r1.384 -r1.385
--- e_border.c  2 Sep 2005 09:25:53 -   1.384
+++ e_border.c  2 Sep 2005 09:56:01 -   1.385
@@ -537,7 +537,7 @@
if (e_config->transient.desktop)
  {
Evas_List *l;
-   for (l = bd->children; l; l = l->next)
+   for (l = bd->transients; l; l = l->next)
  {
 E_Border *child;
 
@@ -813,10 +813,10 @@
/* We need to set raise to one, else the child wont
 * follow to the new layer. It should be like this,
 * even if the user usually doesn't want to raise
-* the children.
+* the transients.
 */
e_config->transient.raise = 1;
-   for (l = bd->children; l; l = l->next)
+   for (l = bd->transients; l; l = l->next)
  {
 E_Border *child;
 
@@ -861,12 +861,12 @@
if (e_config->transient.raise)
  {
Evas_List *l;
-   for (l = bd->children; l; l = l->next)
+   for (l = bd->transients; l; l = l->next)
  {
 E_Border *child;
 
 child = l->data;
-/* Don't raise iconic children. If the user wants these shown,
+/* Don't raise iconic transients. If the user wants these shown,
  * thats another option.
  */
 if (!child->iconic)
@@ -907,7 +907,7 @@
if (e_config->transient.lower)
  {
Evas_List *l;
-   for (l = bd->children; l; l = l->next)
+   for (l = bd->transients; l; l = l->next)
  {
 E_Border *child;
 
@@ -978,6 +978,11 @@
e_border_focus_set(bd->modal, focus, set);
return;
  }
+   else if ((bd->leader) && (bd->leader->modal))
+ {
+   e_border_focus_set(bd->leader->modal, focus, set);
+   return;
+ }
if ((bd->visible) && (bd->changes.visible))
  {  
if ((bd->want_focus) && (set) && (!focus))
@@ -1562,7 +1567,7 @@
  {
Evas_List *l;
 
-   for (l = bd->children; l; l = l->next)
+   for (l = bd->transients; l; l = l->next)
  {
 E_Border *child;
 
@@ -1603,7 +1608,7 @@
  {
Evas_List *l;
 
-   for (l = bd->children; l; l = l->next)
+   for (l = bd->transients; l; l = l->next)
  {
 E_Border *child;
 
@@ -2317,7 +2322,7 @@
 
if (bd->parent)
  {
-   bd->parent->children = evas_list_remove(bd->parent->children, bd);
+   bd->parent->transients = evas_list_remove(bd->parent->transients, bd);
if (bd->parent->modal == bd)
  {
 bd->parent->modal = NULL;
@@ -2325,13 +2330,32 @@
   e_border_focus_set(bd->parent, 1, 1);
  }
  }
-   while (bd->children)
+   while (bd->transients)
  {
E_Border *child;
 
-   child = bd->children->data;
+   child = bd->transients->data;
child->parent = NULL;
-   bd->children = evas_list_remove_list(bd->children, bd->children);
+   bd->transients = evas_list_remove_list(bd->transients, bd->transients);
+ }
+
+   if (bd->leader)
+ {
+   bd->leader->group = evas_list_remove(bd->leader->group, bd);
+   if (bd->leader->modal == bd)
+ {
+bd->leader->modal = NULL;
+if (bd->focused)
+  e_border_focus_set(bd->leader, 1, 1);
+ }
+ }
+   while (bd->group)
+ {
+   E_Border *child;
+
+   child = bd->group->data;
+   child->leader = NULL;
+   bd->group = evas_list_remove_list(bd->group, bd->group);
  }
 }
 
@@ -4719,6 +4743,12 @@
if (bd->new_client)
  {
bd->new_client = 0;
+   if ((bd->client.icccm.transient_for) && 
(bd->client.icccm.client_leader))
+ {
+e_error_dialog_show(_("ICCCM error"),
+_("Weird, this window is transient and has a 
leader: %s\n",
+  e_border_name_get(bd)));
+ }
if (bd->client.icccm.transient_for)
  {
 E_Border *bd_parent;
@@ -4726,12 +4756,25 @@
 bd_parent = 
e_border_find_by_client_window(bd->client.icccm.transient_for);
 if (bd_parent)
   {
- bd_parent->children = evas_list_append(bd_parent->children, 
bd);
+ bd_parent->transients = 
evas_list_append(bd_parent->transients, bd);
  bd->parent = bd_parent;
  if (bd->client.netwm.state.modal)
bd->parent->modal = bd;
   }
  }
+   if (bd->client.icccm.client_leader)
+ {

E CVS: apps/e sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_border.c e_border.h 


Log Message:
* Check and remember WM_TRANSIENT_FOR relationships.
* Only check if bd->client.icccm.transient_for is set,
  bd->client.netwm.type == ECORE_X_WINDOW_TYPE_DIALOG is only for
  decorations.
* When a border is raised, raise it's children above it.
* Should this behaviour be userdefineable?

===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_border.c,v
retrieving revision 1.381
retrieving revision 1.382
diff -u -3 -r1.381 -r1.382
--- e_border.c  31 Aug 2005 04:41:47 -  1.381
+++ e_border.c  2 Sep 2005 06:15:57 -   1.382
@@ -782,6 +782,7 @@
 e_border_raise(E_Border *bd)
 {
E_Border *above;
+   Evas_List *l;
 
E_OBJECT_CHECK(bd);
E_OBJECT_TYPE_CHECK(bd, E_BORDER_TYPE);
@@ -807,6 +808,13 @@
ev->below = NULL;
ecore_event_add(E_EVENT_BORDER_LOWER, ev, 
_e_border_event_border_lower_free, NULL);
  }
+   for (l = bd->children; l; l = l->next)
+ {
+   E_Border *child;
+
+   child = l->data;
+   e_border_stack_above(child, bd);
+ }
 }
 
 void
@@ -2210,6 +2218,17 @@
// e_object_breadcrumb_add(E_OBJECT(bd), "border_remove_event");
ecore_event_add(E_EVENT_BORDER_REMOVE, ev, 
_e_border_event_border_remove_free, NULL);
  }
+
+   if (bd->parent)
+ bd->parent->children = evas_list_remove(bd->parent->children, bd);
+   while (bd->children)
+ {
+   E_Border *child;
+
+   child = bd->children->data;
+   child->parent = NULL;
+   bd->children = evas_list_remove_list(bd->children, bd->children);
+ }
 }
 
 static void
@@ -4596,6 +4615,17 @@
if (bd->new_client)
  {
bd->new_client = 0;
+   if (bd->client.icccm.transient_for)
+ {
+E_Border *bd_parent;
+
+bd_parent = 
e_border_find_by_client_window(bd->client.icccm.transient_for);
+if (bd_parent)
+  {
+ bd_parent->children = evas_list_append(bd_parent->children, 
bd);
+ bd->parent = bd_parent;
+  }
+ }
 // printf("##- NEW CLIENT SETUP 0x%x\n", bd->client.win);
if (bd->re_manage)
  {
@@ -4658,22 +4688,13 @@
  
  /* FIXME: special placement for dialogs etc. etc. etc goes
   * here */
- if ((bd->client.netwm.type == ECORE_X_WINDOW_TYPE_DIALOG) &&
- ((bd->client.icccm.transient_for != 0)))
+ /* FIXME: what if parent is not on this desktop - or zone? */
+ if ((bd->parent) && (bd->parent->visible))
{
-  E_Border *bd_parent;
-  
-  bd_parent = 
e_border_find_by_client_window(bd->client.icccm.transient_for);
-//if (!bd_parent)
-//  bd_parent = 
e_border_find_by_client_window(bd->client.icccm.client_leader);
-  /* FIXME: what if parent is not on this desktop - or 
zone? */
-  if ((bd_parent) && (bd_parent->visible))
-{
-   bd->x = bd_parent->x + ((bd_parent->w - bd->w) / 2);
-   bd->y = bd_parent->y + ((bd_parent->h - bd->h) / 2);
-   bd->changes.pos = 1;
-   placed = 1;
-}
+  bd->x = bd->parent->x + ((bd->parent->w - bd->w) / 2);
+  bd->y = bd->parent->y + ((bd->parent->h - bd->h) / 2);
+  bd->changes.pos = 1;
+  placed = 1;
}
  if (!placed)
{
===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_border.h,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -3 -r1.105 -r1.106
--- e_border.h  31 Aug 2005 04:41:48 -  1.105
+++ e_border.h  2 Sep 2005 06:15:57 -   1.106
@@ -385,7 +385,8 @@
Ecore_X_Rectangle *shape_rects;
E_Remember *remember;
 
-//   Ecore_Timer *dangling_ref_check;
+   E_Border *parent;
+   Evas_List *children;
 };
 
 struct _E_Border_Pending_Move_Resize 




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_border.c e_border.h e_config.c e_config.h e_desk.c e_hints.c 
e_ipc_handlers.h e_ipc_handlers_list.h 


Log Message:
* Add options
-   e_config->transient.move
-   e_config->transient.resize
-   e_config->transient.raise
-   e_config->transient.lower
-   e_config->transient.layer
-   e_config->transient.desktop
-   e_config->transient.iconify
* Implement
-   e_config->transient.raise
-   e_config->transient.lower
-   e_config->transient.layer
-   e_config->transient.desktop
-   e_config->transient.iconify
* Show hide border in e_border_desk_set
* Add e_border_layer_set()

===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_border.c,v
retrieving revision 1.382
retrieving revision 1.383
diff -u -3 -r1.382 -r1.383
--- e_border.c  2 Sep 2005 06:15:57 -   1.382
+++ e_border.c  2 Sep 2005 07:38:40 -   1.383
@@ -528,6 +528,23 @@
ev->desk = desk;
e_object_ref(E_OBJECT(desk));
ecore_event_add(E_EVENT_BORDER_DESK_SET, ev, 
_e_border_event_border_desk_set_free, NULL);
+
+   if (bd->desk->visible)
+ e_border_show(bd);
+   else
+ e_border_hide(bd, 1);
+
+   if (e_config->transient.desktop)
+ {
+   Evas_List *l;
+   for (l = bd->children; l; l = l->next)
+ {
+E_Border *child;
+
+child = l->data;
+e_border_desk_set(child, bd->desk);
+ }
+ }
 }
 
 void
@@ -779,10 +796,42 @@
 }
 
 void
+e_border_layer_set(E_Border *bd, int layer)
+{
+   int raise;
+
+   E_OBJECT_CHECK(bd);
+   E_OBJECT_TYPE_CHECK(bd, E_BORDER_TYPE);
+
+   raise = e_config->transient.raise;
+   
+   bd->layer = layer;
+   if (e_config->transient.layer)
+ {
+   Evas_List *l;
+
+   /* We need to set raise to one, else the child wont
+* follow to the new layer. It should be like this,
+* even if the user usually doesn't want to raise
+* the children.
+*/
+   e_config->transient.raise = 1;
+   for (l = bd->children; l; l = l->next)
+ {
+E_Border *child;
+
+child = l->data;
+child->layer = layer;
+ }
+ }
+   e_border_raise(bd);
+   e_config->transient.raise = raise;
+}
+
+void
 e_border_raise(E_Border *bd)
 {
E_Border *above;
-   Evas_List *l;
 
E_OBJECT_CHECK(bd);
E_OBJECT_TYPE_CHECK(bd, E_BORDER_TYPE);
@@ -808,12 +857,21 @@
ev->below = NULL;
ecore_event_add(E_EVENT_BORDER_LOWER, ev, 
_e_border_event_border_lower_free, NULL);
  }
-   for (l = bd->children; l; l = l->next)
+
+   if (e_config->transient.raise)
  {
-   E_Border *child;
+   Evas_List *l;
+   for (l = bd->children; l; l = l->next)
+ {
+E_Border *child;
 
-   child = l->data;
-   e_border_stack_above(child, bd);
+child = l->data;
+/* Don't raise iconic children. If the user wants these shown,
+ * thats another option.
+ */
+if (!child->iconic)
+  e_border_stack_above(child, bd);
+ }
  }
 }
 
@@ -846,6 +904,17 @@
ev->above = NULL;
ecore_event_add(E_EVENT_BORDER_RAISE, ev, 
_e_border_event_border_raise_free, NULL);
  }
+   if (e_config->transient.lower)
+ {
+   Evas_List *l;
+   for (l = bd->children; l; l = l->next)
+ {
+E_Border *child;
+
+child = l->data;
+e_border_stack_above(child, bd);
+ }
+ }
 }
 
 void
@@ -1411,8 +1480,7 @@
 
e_zone_fullscreen_set(bd->zone, 1);
 
-   bd->layer = 200;
-   e_border_raise(bd);
+   e_border_layer_set(bd, 200);
x = bd->zone->x;
y = bd->zone->y;
w = bd->zone->w;
@@ -1453,8 +1521,7 @@
ecore_evas_show(bd->bg_ecore_evas);
 
/* FIXME: Find right layer */
-   bd->layer = 100;
-   e_border_raise(bd);
+   e_border_layer_set(bd, 100);
 
e_hints_window_fullscreen_set(bd, 0);
edje_object_signal_emit(bd->bg_object, "unfullscreen", "");
@@ -1485,6 +1552,19 @@
e_object_ref(E_OBJECT(bd));
 //   e_object_breadcrumb_add(E_OBJECT(bd), "border_iconify_event");
ecore_event_add(E_EVENT_BORDER_ICONIFY, ev, 
_e_border_event_border_iconify_free, NULL);
+
+   if (e_config->transient.iconify)
+ {
+   Evas_List *l;
+
+   for (l = bd->children; l; l = l->next)
+ {
+E_Border *child;
+
+child = l->data;
+e_border_iconify(child);
+ }
+ }
 }
 
 void
@@ -1499,10 +1579,9 @@
if ((bd->fullscreen) || (bd->shading)) return;
if (bd->iconic)
  {
+   bd->iconic = 0;
desk = e_desk_current_get(bd->desk->zone);
e_border_desk_set(bd, desk);
-   bd->iconic = 0;
-   e_border_show(bd);
e_border_r

E CVS: apps/e sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_ipc_handlers.h e_pointer.c e_pointer.h 


Log Message:
Update cursor size.

===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_ipc_handlers.h,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -3 -r1.67 -r1.68
--- e_ipc_handlers.h2 Sep 2005 08:17:29 -   1.67
+++ e_ipc_handlers.h2 Sep 2005 08:28:12 -   1.68
@@ -4591,8 +4591,8 @@
 #elif (TYPE == E_WM_IN)
START_INT(val, HDL);
e_config->cursor_size = val;
-   /* TODO: Update cursor size on screen! */
E_CONFIG_LIMIT(e_config->cursor_size, 0, 1024);
+   e_pointers_size_set(e_config->cursor_size);
SAVE;
END_INT;
 #elif (TYPE == E_REMOTE_IN)
===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_pointer.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- e_pointer.c 24 Aug 2005 04:22:52 -  1.8
+++ e_pointer.c 2 Sep 2005 08:28:12 -   1.9
@@ -34,7 +34,7 @@
evas_output_size_set(p->evas, p->w, p->h);
evas_output_viewport_set(p->evas, 0, 0, p->w, p->h);

-   p->pixels = calloc(p->w * p->h, sizeof(int));
+   p->pixels = malloc(p->w * p->h * sizeof(int));

einfo = (Evas_Engine_Info_Buffer *)evas_engine_info_get(p->evas);
if (einfo)
@@ -89,6 +89,37 @@
 }
 
 void
+e_pointers_size_set(int size)
+{
+   Evas_List *l;
+
+   for (l = _e_pointers; l; l = l->next)
+ {
+   E_Pointer *p;
+   Evas_Engine_Info_Buffer *einfo;
+
+   p = l->data;
+
+   p->w = p->h = size;
+   evas_output_size_set(p->evas, p->w, p->h);
+   evas_output_viewport_set(p->evas, 0, 0, p->w, p->h);
+
+   p->pixels = realloc(p->pixels, p->w * p->h * sizeof(int));
+
+   einfo = (Evas_Engine_Info_Buffer *)evas_engine_info_get(p->evas);
+   if (einfo)
+ {
+einfo->info.dest_buffer = p->pixels;
+einfo->info.dest_buffer_row_bytes = p->w * sizeof(int);
+evas_engine_info_set(p->evas, (Evas_Engine_Info *)einfo);
+ }
+
+   evas_object_move(p->pointer_object, 0, 0);
+   evas_object_resize(p->pointer_object, p->w, p->h);
+ }
+}
+
+void
 e_pointer_idler_before(void)
 {
Evas_List *l;
===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_pointer.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- e_pointer.h 24 Aug 2005 04:22:52 -  1.7
+++ e_pointer.h 2 Sep 2005 08:28:12 -   1.8
@@ -28,6 +28,7 @@
 };
 
 EAPI E_Pointer *e_pointer_window_set(Ecore_X_Window win);
+EAPI void   e_pointers_size_set(int size);
 EAPI void   e_pointer_idler_before(void);
 
 #endif




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_ipc_handlers.h 


Log Message:
These shouldn't activate on already existing borders.

===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_ipc_handlers.h,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -3 -r1.66 -r1.67
--- e_ipc_handlers.h2 Sep 2005 07:38:40 -   1.66
+++ e_ipc_handlers.h2 Sep 2005 08:17:29 -   1.67
@@ -4713,7 +4713,6 @@
 #elif (TYPE == E_WM_IN)
START_INT(val, HDL);
e_config->transient.move = val;
-   /* TODO: Activate changes! */
SAVE;
END_INT;
 #elif (TYPE == E_REMOTE_IN)
@@ -4753,7 +4752,6 @@
 #elif (TYPE == E_WM_IN)
START_INT(val, HDL);
e_config->transient.resize = val;
-   /* TODO: Activate changes! */
SAVE;
END_INT;
 #elif (TYPE == E_REMOTE_IN)
@@ -4793,7 +4791,6 @@
 #elif (TYPE == E_WM_IN)
START_INT(val, HDL);
e_config->transient.raise = val;
-   /* TODO: Activate changes! */
SAVE;
END_INT;
 #elif (TYPE == E_REMOTE_IN)
@@ -4833,7 +4830,6 @@
 #elif (TYPE == E_WM_IN)
START_INT(val, HDL);
e_config->transient.lower = val;
-   /* TODO: Activate changes! */
SAVE;
END_INT;
 #elif (TYPE == E_REMOTE_IN)
@@ -4873,7 +4869,6 @@
 #elif (TYPE == E_WM_IN)
START_INT(val, HDL);
e_config->transient.layer = val;
-   /* TODO: Activate changes! */
SAVE;
END_INT;
 #elif (TYPE == E_REMOTE_IN)
@@ -4913,7 +4908,6 @@
 #elif (TYPE == E_WM_IN)
START_INT(val, HDL);
e_config->transient.desktop = val;
-   /* TODO: Activate changes! */
SAVE;
END_INT;
 #elif (TYPE == E_REMOTE_IN)
@@ -4953,7 +4947,6 @@
 #elif (TYPE == E_WM_IN)
START_INT(val, HDL);
e_config->transient.iconify = val;
-   /* TODO: Activate changes! */
SAVE;
END_INT;
 #elif (TYPE == E_REMOTE_IN)




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: embrace sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : misc
Module  : embrace

Dir : misc/embrace/src/lib




Log Message:
Directory /cvsroot/enlightenment/misc/embrace/src/lib added to the repository





---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/pager


Modified Files:
e_mod_main.c 


Log Message:
* Add options
-   e_config->transient.move
-   e_config->transient.resize
-   e_config->transient.raise
-   e_config->transient.lower
-   e_config->transient.layer
-   e_config->transient.desktop
-   e_config->transient.iconify
* Implement
-   e_config->transient.raise
-   e_config->transient.lower
-   e_config->transient.layer
-   e_config->transient.desktop
-   e_config->transient.iconify
* Show hide border in e_border_desk_set
* Add e_border_layer_set()

===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/modules/pager/e_mod_main.c,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -3 -r1.105 -r1.106
--- e_mod_main.c14 Aug 2005 16:57:56 -  1.105
+++ e_mod_main.c2 Sep 2005 07:38:40 -   1.106
@@ -1476,10 +1476,9 @@
desk = e_desk_at_xy_get(face->zone, x, y);
bd = ev->data;
 
-   if ((bd) && (desk) && (bd->desk != desk))
+   if ((bd) && (desk))
  {
e_border_desk_set(bd, desk);
-   e_border_hide(bd, 1);
  }
 
for (l = face->desks; l; l = l->next)




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: embrace sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : misc
Module  : embrace

Dir : misc/embrace/src/plugins/mbox


Modified Files:
Makefile.am 


Log Message:
Don't rely on includedir or on the users CPPFLAGS/LDFLAGS.

===
RCS file: /cvsroot/enlightenment/misc/embrace/src/plugins/mbox/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.am 1 Mar 2004 20:02:58 -   1.1
+++ Makefile.am 2 Sep 2005 05:11:24 -   1.2
@@ -1,8 +1,11 @@
-## $Id: Makefile.am,v 1.1 2004/03/01 20:02:58 tsauerbeck Exp $
+## $Id: Makefile.am,v 1.2 2005/09/02 05:11:24 sebastid Exp $
 
 if BUILD_MBOX
 
-INCLUDES = -I$(top_srcdir)/src
+AM_CFLAGS = -I$(top_srcdir)/src \
+@EDB_CFLAGS@\
+@EVAS_CFLAGS@   \
+@ECORE_CFLAGS@
 
 plugin_LTLIBRARIES = libmbox.la
 plugindir = @PLUGIN_DIR@




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: embrace sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : misc
Module  : embrace

Dir : misc/embrace


Modified Files:
configure.ac 


Log Message:
Move libembrace to a libdir. This should allow paralell building 'make -j'.

===
RCS file: /cvsroot/enlightenment/misc/embrace/configure.ac,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- configure.ac25 Aug 2005 19:42:14 -  1.15
+++ configure.ac2 Sep 2005 05:32:57 -   1.16
@@ -1,6 +1,6 @@
 ###
 ##
-## $Id: configure.ac,v 1.15 2005/08/25 19:42:14 sebastid Exp $
+## $Id: configure.ac,v 1.16 2005/09/02 05:32:57 sebastid Exp $
 ##
 ## Copyright (C) 2004 Embrace project.
 ##
@@ -19,7 +19,7 @@
 AC_PREREQ(2.53)
 
 AC_INIT(embrace, 0.0.3, , embrace)
-AC_CONFIG_SRCDIR([src/embrace.c])
+AC_CONFIG_SRCDIR([src/main.c])
 
 AC_CANONICAL_BUILD
 AC_CANONICAL_HOST
@@ -153,6 +153,8 @@
 data/themes/default/programs/Makefile
 m4/Makefile
 src/Makefile
+src/include/Makefile
+src/lib/Makefile \
 src/plugins/Makefile
 src/plugins/maildir/Makefile
 src/plugins/mbox/Makefile




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: embrace sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : misc
Module  : embrace

Dir : misc/embrace/src/plugins/sylpheed


Modified Files:
Makefile.am 


Log Message:
Move libembrace to a libdir. This should allow paralell building 'make -j'.

===
RCS file: /cvsroot/enlightenment/misc/embrace/src/plugins/sylpheed/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Makefile.am 2 Sep 2005 05:11:24 -   1.2
+++ Makefile.am 2 Sep 2005 05:32:57 -   1.3
@@ -1,11 +1,11 @@
-## $Id: Makefile.am,v 1.2 2005/09/02 05:11:24 sebastid Exp $
+## $Id: Makefile.am,v 1.3 2005/09/02 05:32:57 sebastid Exp $
 
 if BUILD_SYLPHEED
 
-AM_CFLAGS = -I$(top_srcdir)/src \
-   @XML_CFLAGS@\
-@EDB_CFLAGS@\
-@EVAS_CFLAGS@   \
+AM_CFLAGS = -I$(top_srcdir)/src/include \
+   @XML_CFLAGS@   \
+@EDB_CFLAGS@   \
+@EVAS_CFLAGS@  \
 @ECORE_CFLAGS@
 
 plugin_LTLIBRARIES = libsylpheed.la




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: embrace sebastid

2005-09-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : sebastid
Project : misc
Module  : embrace

Dir : misc/embrace/src


Modified Files:
Makefile.am 
Removed Files:
embrace.c embrace.h embrace_plugin.c embrace_plugin.h 
mailbox.c mailbox.h 


Log Message:
Move libembrace to a libdir. This should allow paralell building 'make -j'.

===
RCS file: /cvsroot/enlightenment/misc/embrace/src/Makefile.am,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- Makefile.am 2 Sep 2005 05:11:24 -   1.10
+++ Makefile.am 2 Sep 2005 05:32:57 -   1.11
@@ -1,8 +1,8 @@
-## $Id: Makefile.am,v 1.10 2005/09/02 05:11:24 sebastid Exp $
+## $Id: Makefile.am,v 1.11 2005/09/02 05:32:57 sebastid Exp $
 
-SUBDIRS = plugins
+SUBDIRS = lib plugins include
 
-AM_CFLAGS = -I. \
+AM_CFLAGS = -I./include \
 @ENLIGHTENMENT_CFLAGS@ \
 @ECORE_CFLAGS@  \
 @EDB_CFLAGS@\
@@ -10,14 +10,6 @@
 @EDJE_CFLAGS@   \
 @ESMART_CFLAGS@
 
-noinst_LTLIBRARIES = libembrace.la
-
-libembrace_la_SOURCES = embrace.c embrace.h  \
-embrace_plugin.c embrace_plugin.h \
-mailbox.c mailbox.h
-
-libembrace_la_DEPENDENCIES = $(top_builddir)/config.h
-
 bin_PROGRAMS = embrace
 
 embrace_SOURCES = main.c
@@ -28,11 +20,11 @@
 @EDJE_LIBS@   \
 @ESMART_LIBS@ \
 @DL_LIBS@ \
-$(top_builddir)/src/libembrace.la \
+$(top_builddir)/src/lib/libembrace.la \
 -lesmart_container -lesmart_draggies -lesmart_trans_x11
 
 embrace_LDFLAGS = -export-dynamic
-embrace_DEPENDENCIES = $(top_builddir)/src/libembrace.la
+embrace_DEPENDENCIES = $(top_builddir)/src/lib/libembrace.la
 
 if BUILD_MODULE
 
@@ -42,9 +34,9 @@
 pkg_LTLIBRARIES= module.la
 module_la_SOURCES  = e_mod_main.c
 module_la_LIBADD   = @ENLIGHTENMENT_LIBS@ -lm @DL_LIBS@ \
- $(top_builddir)/src/libembrace.la \
+ $(top_builddir)/src/lib/libembrace.la \
  -lesmart_container -lesmart_draggies 
-lesmart_trans_x11
 module_la_LDFLAGS  = -module -avoid-version
-module_la_DEPENDENCIES = $(top_builddir)/src/libembrace.la
+module_la_DEPENDENCIES = $(top_builddir)/src/lib/libembrace.la
 
 endif




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs