Send commitlog mailing list submissions to
        commitlog@lists.openmoko.org

To subscribe or unsubscribe via the World Wide Web, visit
        http://lists.openmoko.org/mailman/listinfo/commitlog
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of commitlog digest..."
Today's Topics:

   1. r4605 - trunk/src/target/opkg/libopkg ([EMAIL PROTECTED])
   2. Locations: Changes to 'master' ([EMAIL PROTECTED])
--- Begin Message ---
Author: tick
Date: 2008-08-25 05:26:38 +0200 (Mon, 25 Aug 2008)
New Revision: 4605

Modified:
   trunk/src/target/opkg/libopkg/opkg.c
   trunk/src/target/opkg/libopkg/opkg_error.h
   trunk/src/target/opkg/libopkg/opkg_install.c
Log:
remove build error on gcc 3.4 
Thanks for jserv found and fix this.



Modified: trunk/src/target/opkg/libopkg/opkg.c
===================================================================
--- trunk/src/target/opkg/libopkg/opkg.c        2008-08-24 04:15:52 UTC (rev 
4604)
+++ trunk/src/target/opkg/libopkg/opkg.c        2008-08-25 03:26:38 UTC (rev 
4605)
@@ -34,6 +34,8 @@
 
 #include <libbb/libbb.h>
 
+struct errlist* error_list;
+
 struct _opkg_t
 {
   args_t *args;

Modified: trunk/src/target/opkg/libopkg/opkg_error.h
===================================================================
--- trunk/src/target/opkg/libopkg/opkg_error.h  2008-08-24 04:15:52 UTC (rev 
4604)
+++ trunk/src/target/opkg/libopkg/opkg_error.h  2008-08-25 03:26:38 UTC (rev 
4605)
@@ -51,6 +51,6 @@
     struct errlist * next;
 } ;
 
-struct errlist* error_list;
+extern struct errlist* error_list;
 
 #endif /* OPKG_ERROR_H */

Modified: trunk/src/target/opkg/libopkg/opkg_install.c
===================================================================
--- trunk/src/target/opkg/libopkg/opkg_install.c        2008-08-24 04:15:52 UTC 
(rev 4604)
+++ trunk/src/target/opkg/libopkg/opkg_install.c        2008-08-25 03:26:38 UTC 
(rev 4605)
@@ -21,7 +21,9 @@
 #include <glob.h>
 #include <time.h>
 #include <signal.h>
+#ifndef __USE_GNU
 typedef void (*sighandler_t)(int);
+#endif
 
 #include "pkg.h"
 #include "pkg_hash.h"




--- End Message ---
--- Begin Message ---
 src/Makefile.am                    |    2 +
 src/e_ctrl.c                       |  198 +++++++++++++----------------------
 src/e_ctrl.h                       |   13 +--
 src/e_mod_nav.c                    |   50 ++-------
 src/e_nav_item_location.c          |   25 +++--
 src/e_nav_item_neo_other.c         |   17 +++
 src/e_nav_item_neo_other.h         |   15 +---
 src/e_nav_taglist.c                |   44 +-------
 src/e_nav_tree_model.c             |  199 ++++++++++++++++++++++++++++++++++++
 src/e_nav_tree_model.h             |   28 +++++
 src/widgets/e_nav_contact_editor.c |   30 ++++--
 src/widgets/e_nav_contact_editor.h |    2 +-
 12 files changed, 375 insertions(+), 248 deletions(-)

New commits:
commit d1c603b168ec26f36e7d90018225383d1367f6c6
Author: Chia-I Wu <[EMAIL PROTECTED]>
Date:   Mon Aug 25 11:33:34 2008 +0800

    Comment the ugliness of neo_other.

commit 79e3f4e642ab03b19fee53edeb279e4f8e5e780c
Author: Chia-I Wu <[EMAIL PROTECTED]>
Date:   Mon Aug 25 11:26:53 2008 +0800

    Store contacts as a list of neo_other in e_ctrl.

commit 0a492ce8d04bf37e61b77cfb59c4992d79b885bb
Author: Chia-I Wu <[EMAIL PROTECTED]>
Date:   Mon Aug 25 01:10:54 2008 +0800

    Use custom tree model in taglist.




--- End Message ---
_______________________________________________
commitlog mailing list
commitlog@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/commitlog

Reply via email to