This email list is read-only.  Emails sent to this list will be discarded
----------------------------------
 meta-moblin/packages/sreadahead/sreadahead_0.02.bb |    2 +-
 .../latencytop-0.4/latencytop-makefile.patch       |   24 +++++++++++++++----
 meta/packages/latencytop/latencytop_0.4.bb         |    3 +-
 3 files changed, 22 insertions(+), 7 deletions(-)

New commits:
commit 199c24748221d95b7a59c73ca876422205c8d8b0
Author: Peter Zhu <[EMAIL PROTECTED]>
Date:   Fri Nov 14 16:30:07 2008 +0800

    Update PR of sreadahead

commit e86864ef24da0af8e25498c969a984b12f639986
Author: Peter Zhu <[EMAIL PROTECTED]>
Date:   Fri Nov 14 16:28:24 2008 +0800

    Add PR for latencytop package

commit bda920e7ca5d45d416a0319da12db1ff602a57c3
Author: Yi Yang <[EMAIL PROTECTED]>
Date:   Fri Nov 14 23:54:29 2008 +0800

    latencytop: fix dependency issue on libtinfo
    
    latencytop's Makefile used gcc to build so that it always
    uses local libraries, ncurses can help fix this issue
    using --with-termlib option but that isn't a good solution
    which has resulted in other package build errors.
    
    To change gcc to $(CC) can fix this dependency issue, Peter
    has reverted --with-termlib change against ncurses, this can
    work well now.


Diff in this email is a maximum of 400 lines.
diff --git a/meta-moblin/packages/sreadahead/sreadahead_0.02.bb 
b/meta-moblin/packages/sreadahead/sreadahead_0.02.bb
index c29a1de..8b4edb5 100644
--- a/meta-moblin/packages/sreadahead/sreadahead_0.02.bb
+++ b/meta-moblin/packages/sreadahead/sreadahead_0.02.bb
@@ -2,7 +2,7 @@ DESCRIPTION = "Super readahead, part of the fastboot tool set."
 SECTION = "base"
 HOMEPAGE = "http://www.moblin.org";
 LICENSE = "GPLv2"
-PR = "r13"
+PR = "r14"
 
 inherit update-rc.d
 
diff --git a/meta/packages/latencytop/latencytop-0.4/latencytop-makefile.patch 
b/meta/packages/latencytop/latencytop-0.4/latencytop-makefile.patch
index d062436..8840d38 100644
--- a/meta/packages/latencytop/latencytop-0.4/latencytop-makefile.patch
+++ b/meta/packages/latencytop/latencytop-0.4/latencytop-makefile.patch
@@ -1,15 +1,29 @@
---- a/Makefile 2008-11-07 23:25:22.000000000 +0800
-+++ b/Makefile 2008-11-07 23:26:21.000000000 +0800
-@@ -1,7 +1,7 @@
+--- a/Makefile 2008-11-14 22:55:51.000000000 +0800
++++ b/Makefile 2008-11-14 23:00:51.000000000 +0800
+@@ -1,7 +1,8 @@
  DESTDIR =
  SBINDIR = /usr/sbin
  XCFLAGS = -W `pkg-config --cflags glib-2.0` -D_FORTIFY_SOURCE=2 
-Wno-sign-compare 
 -LDF = -Wl,--as-needed `pkg-config --libs glib-2.0`   -lncursesw 
 +LDF = -Wl,--as-needed `pkg-config --libs glib-2.0`   -lncurses 
++CC ?= gcc
  
  #
- # The w in -lncurses is not a typo; it is the wide-character version
-@@ -25,5 +25,6 @@ clean:
+ # The w in -lncursesw is not a typo; it is the wide-character version
+@@ -14,10 +15,10 @@ LDF = -Wl,--as-needed `pkg-config --libs
+ 
+ # We write explicity this "implicit rule"
+ %.o : %.c
+-      gcc -c $(CFLAGS) $(XCFLAGS) $< -o $@
++      $(CC) -c $(CFLAGS) $(XCFLAGS) $< -o $@
+ 
+ latencytop: latencytop.o display.o latencytop.h translate.o Makefile
+-      gcc $(CFLAGS) latencytop.o display.o translate.o $(LDF) -o latencytop 
++      $(CC) $(CFLAGS) latencytop.o display.o translate.o $(LDF) -o latencytop 
+ 
+ 
+ clean:
+@@ -25,5 +26,6 @@ clean:
  
  install: latencytop
        mkdir -p $(DESTDIR)/usr/share/latencytop
diff --git a/meta/packages/latencytop/latencytop_0.4.bb 
b/meta/packages/latencytop/latencytop_0.4.bb
index 00dfb71..706d081 100644
--- a/meta/packages/latencytop/latencytop_0.4.bb
+++ b/meta/packages/latencytop/latencytop_0.4.bb
@@ -1,7 +1,8 @@
 DESCRIPTION = "LatencyTOP, a Linux tool measuring and fixing latency"
 HOMEPAGE = "http://www.latencytop.org/";
 LICENSE = "GPLv2"
-DEPENDS = "virtual/libintl ncurses"
+DEPENDS = "virtual/libintl ncurses glib-2.0"
+PR = "r1"
 
 SRC_URI = "http://www.latencytop.org/download/latencytop-${PV}.tar.gz \
           file://latencytop-makefile.patch;patch=1"
_______________________________________________
Commits mailing list
[email protected]
https://lists.moblin.org/mailman/listinfo/commits

Reply via email to