* [Buildroot] svn commit: trunk/buildroot/package/libcgicc
@ 2007-07-17 12:01 ulf at uclibc.org
0 siblings, 0 replies; 12+ messages in thread
From: ulf at uclibc.org @ 2007-07-17 12:01 UTC (permalink / raw)
To: buildroot
Author: ulf
Date: 2007-07-17 05:01:09 -0700 (Tue, 17 Jul 2007)
New Revision: 19127
Log:
Fix spelling error
Modified:
trunk/buildroot/package/libcgicc/libcgicc.mk
Changeset:
Modified: trunk/buildroot/package/libcgicc/libcgicc.mk
===================================================================
--- trunk/buildroot/package/libcgicc/libcgicc.mk 2007-07-17 11:05:31 UTC (rev 19126)
+++ trunk/buildroot/package/libcgicc/libcgicc.mk 2007-07-17 12:01:09 UTC (rev 19127)
@@ -1,6 +1,6 @@
#############################################################
#
-# licgicc
+# libcgicc
#
#############################################################
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/libcgicc
@ 2009-01-13 18:42 ulf at uclibc.org
0 siblings, 0 replies; 12+ messages in thread
From: ulf at uclibc.org @ 2009-01-13 18:42 UTC (permalink / raw)
To: buildroot
Author: ulf
Date: 2009-01-13 18:42:37 +0000 (Tue, 13 Jan 2009)
New Revision: 24819
Log:
Use GNU_MIRROR for libcgicc since www.cgicc.org is gone, change bz2 to gz and bump version
Modified:
trunk/buildroot/package/libcgicc/libcgicc.mk
Changeset:
Modified: trunk/buildroot/package/libcgicc/libcgicc.mk
===================================================================
--- trunk/buildroot/package/libcgicc/libcgicc.mk 2009-01-13 16:57:21 UTC (rev 24818)
+++ trunk/buildroot/package/libcgicc/libcgicc.mk 2009-01-13 18:42:37 UTC (rev 24819)
@@ -4,11 +4,11 @@
#
#############################################################
-LIBCGICC_VERSION=3.2.3
+LIBCGICC_VERSION=3.2.7
LIBCGICC_DIR=$(BUILD_DIR)/cgicc-$(LIBCGICC_VERSION)
-LIBCGICC_SITE=http://www.cgicc.org/files
-LIBCGICC_SOURCE=cgicc-$(LIBCGICC_VERSION).tar.bz2
-LIBCGICC_CAT:=$(BZCAT)
+LIBCGICC_SITE=$(BR2_GNU_MIRROR)/cgicc
+LIBCGICC_SOURCE=cgicc-$(LIBCGICC_VERSION).tar.gz
+LIBCGICC_CAT:=$(ZCAT)
$(DL_DIR)/$(LIBCGICC_SOURCE):
$(WGET) -P $(DL_DIR) $(LIBCGICC_SITE)/$(LIBCGICC_SOURCE)
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/libcgicc
@ 2009-01-21 0:21 ulf at uclibc.org
2009-01-21 6:21 ` Peter Korsgaard
0 siblings, 1 reply; 12+ messages in thread
From: ulf at uclibc.org @ 2009-01-21 0:21 UTC (permalink / raw)
To: buildroot
Author: ulf
Date: 2009-01-21 00:21:43 +0000 (Wed, 21 Jan 2009)
New Revision: 24932
Log:
include string.h when building cgicc, add libcgicc-unpacked, and clean up libcgicc.mk - still does not build OK
Added:
trunk/buildroot/package/libcgicc/cgicc-3.2.7-memset.patch
Modified:
trunk/buildroot/package/libcgicc/libcgicc.mk
Changeset:
Added: trunk/buildroot/package/libcgicc/cgicc-3.2.7-memset.patch
===================================================================
--- trunk/buildroot/package/libcgicc/cgicc-3.2.7-memset.patch (rev 0)
+++ trunk/buildroot/package/libcgicc/cgicc-3.2.7-memset.patch 2009-01-21 00:21:43 UTC (rev 24932)
@@ -0,0 +1,12 @@
+diff -urN cgicc-3.2.7-0rig//demo/dns.cpp cgicc-3.2.7/demo/dns.cpp
+--- cgicc-3.2.7-0rig//demo/dns.cpp 2009-01-21 00:24:13.000000000 +0100
++++ cgicc-3.2.7/demo/dns.cpp 2009-01-21 00:24:30.000000000 +0100
+@@ -34,6 +34,7 @@
+ #include <vector>
+ #include <stdexcept>
+ #include <iostream>
++#include <string.h>
+
+ #include "cgicc/CgiDefs.h"
+ #include "cgicc/Cgicc.h"
+
Modified: trunk/buildroot/package/libcgicc/libcgicc.mk
===================================================================
--- trunk/buildroot/package/libcgicc/libcgicc.mk 2009-01-21 00:17:03 UTC (rev 24931)
+++ trunk/buildroot/package/libcgicc/libcgicc.mk 2009-01-21 00:21:43 UTC (rev 24932)
@@ -17,7 +17,8 @@
$(LIBCGICC_DIR)/.unpacked: $(DL_DIR)/$(LIBCGICC_SOURCE)
$(LIBCGICC_CAT) $(DL_DIR)/$(LIBCGICC_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
- touch $(LIBCGICC_DIR)/.unpacked
+ toolchain/patch-kernel.sh $(LIBCGICC_DIR) package/libcgicc cgicc\*.patch
+ touch $@
$(LIBCGICC_DIR)/.configured: $(LIBCGICC_DIR)/.unpacked
(cd $(LIBCGICC_DIR); rm -f config.cache; \
@@ -40,11 +41,11 @@
--mandir=/usr/man \
--infodir=/usr/info \
)
- touch $(LIBCGICC_DIR)/.configured
+ touch $@
$(LIBCGICC_DIR)/.compiled: $(LIBCGICC_DIR)/.configured
$(MAKE) -C $(LIBCGICC_DIR)
- touch $(LIBCGICC_DIR)/.compiled
+ touch $@
$(STAGING_DIR)/lib/libcgicc.so: $(LIBCGICC_DIR)/.compiled
$(MAKE) DESTDIR=$(STAGING_DIR) -C $(LIBCGICC_DIR) install
@@ -55,6 +56,8 @@
libcgicc: uclibc $(TARGET_DIR)/usr/lib/libcgicc.so
+libcgicc-unpacked: $(LIBCGICC_DIR)/.unpacked
+
libcgicc-clean:
-$(MAKE) -C $(LIBCGICC_DIR) clean
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/libcgicc
@ 2009-01-21 0:27 ulf at uclibc.org
2009-01-21 6:22 ` Peter Korsgaard
0 siblings, 1 reply; 12+ messages in thread
From: ulf at uclibc.org @ 2009-01-21 0:27 UTC (permalink / raw)
To: buildroot
Author: ulf
Date: 2009-01-21 00:27:11 +0000 (Wed, 21 Jan 2009)
New Revision: 24933
Log:
add patch form cgicc'upstream, build now completes\!
Added:
trunk/buildroot/package/libcgicc/cgicc-3.2.7-sort-undeclared.patch
Changeset:
Added: trunk/buildroot/package/libcgicc/cgicc-3.2.7-sort-undeclared.patch
===================================================================
--- trunk/buildroot/package/libcgicc/cgicc-3.2.7-sort-undeclared.patch (rev 0)
+++ trunk/buildroot/package/libcgicc/cgicc-3.2.7-sort-undeclared.patch 2009-01-21 00:27:11 UTC (rev 24933)
@@ -0,0 +1,38 @@
+From: Robert Schwebel <r.schwebel@pengutronix.de>
+Subject: [patch] sort is now in <algorithm>
+
+When built with gcc-4.3.2, cgicc-3.2.7 cannot be compiled any more; sort
+is now being part of <algorithm> and must be written as ::sort:
+
+cardgame.cpp:1232: error: 'sort' was not declared in this scope
+make[2]: *** [cardgame.o] Error 1
+
+Fix it.
+
+Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
+
+---
+ demo/cardgame.cpp | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+Index: cgicc-3.2.7/demo/cardgame.cpp
+===================================================================
+--- cgicc-3.2.7.orig/demo/cardgame.cpp
++++ cgicc-3.2.7/demo/cardgame.cpp
+@@ -36,6 +36,7 @@
+ #include <sstream>
+ #include <fstream>
+ #include <queue>
++#include <algorithm>
+
+ #include "cgicc/CgiDefs.h"
+ #include "cgicc/Cgicc.h"
+@@ -1043,7 +1044,7 @@ namespace CardGameTools
+
+ void drawPlayerCards(datasplayer *vPlayer)
+ {
+- sort (vPlayer->cardsList->begin(),vPlayer->cardsList->end());
++ std::sort (vPlayer->cardsList->begin(),vPlayer->cardsList->end());
+ cout <<"<form name=\"cards\">";
+ cout <<"<input type=\"hidden\" name=\"actionner\" value=\"\">";
+ cout <<"<input type=\"hidden\" name=\"card\" value=\"\">";
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/libcgicc
2009-01-21 0:21 ulf at uclibc.org
@ 2009-01-21 6:21 ` Peter Korsgaard
0 siblings, 0 replies; 12+ messages in thread
From: Peter Korsgaard @ 2009-01-21 6:21 UTC (permalink / raw)
To: buildroot
>>>>> "ulf" == ulf <ulf@uclibc.org> writes:
ulf> Author: ulf
ulf> Date: 2009-01-21 00:21:43 +0000 (Wed, 21 Jan 2009)
ulf> New Revision: 24932
ulf> Log:
ulf> include string.h when building cgicc, add libcgicc-unpacked, and clean up libcgicc.mk - still does not build OK
ulf> $(LIBCGICC_DIR)/.configured: $(LIBCGICC_DIR)/.unpacked
ulf> (cd $(LIBCGICC_DIR); rm -f config.cache; \
ulf> @@ -40,11 +41,11 @@
ulf> --mandir=/usr/man \
ulf> --infodir=/usr/info \
ulf> )
ulf> - touch $(LIBCGICC_DIR)/.configured
ulf> + touch $@
ulf> $(LIBCGICC_DIR)/.compiled: $(LIBCGICC_DIR)/.configured
ulf> $(MAKE) -C $(LIBCGICC_DIR)
ulf> - touch $(LIBCGICC_DIR)/.compiled
ulf> + touch $@
Please just convert to Makefile.autotools.in format instead of hacking
on those old .mk's.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/libcgicc
2009-01-21 0:27 ulf at uclibc.org
@ 2009-01-21 6:22 ` Peter Korsgaard
2009-01-26 15:43 ` Peter Korsgaard
0 siblings, 1 reply; 12+ messages in thread
From: Peter Korsgaard @ 2009-01-21 6:22 UTC (permalink / raw)
To: buildroot
>>>>> "ulf" == ulf <ulf@uclibc.org> writes:
ulf> Author: ulf
ulf> Date: 2009-01-21 00:27:11 +0000 (Wed, 21 Jan 2009)
ulf> New Revision: 24933
ulf> Log:
ulf> add patch form cgicc'upstream, build now completes\!
ulf> Added:
ulf> trunk/buildroot/package/libcgicc/cgicc-3.2.7-sort-undeclared.patch
ulf> Changeset:
ulf> Added: trunk/buildroot/package/libcgicc/cgicc-3.2.7-sort-undeclared.patch
ulf> ===================================================================
ulf> --- trunk/buildroot/package/libcgicc/cgicc-3.2.7-sort-undeclared.patch (rev 0)
ulf> +++ trunk/buildroot/package/libcgicc/cgicc-3.2.7-sort-undeclared.patch 2009-01-21 00:27:11 UTC (rev 24933)
ulf> @@ -0,0 +1,38 @@
ulf> +From: Robert Schwebel <r.schwebel@pengutronix.de>
ulf> +Subject: [patch] sort is now in <algorithm>
ulf> +
ulf> +When built with gcc-4.3.2, cgicc-3.2.7 cannot be compiled any more; sort
ulf> +is now being part of <algorithm> and must be written as ::sort:
ulf> +
ulf> +cardgame.cpp:1232: error: 'sort' was not declared in this scope
ulf> +make[2]: *** [cardgame.o] Error 1
ulf> +
ulf> +Fix it.
ulf> +
ulf> +Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
ulf> +
ulf> +---
ulf> + demo/cardgame.cpp | 3 ++-
ulf> + 1 file changed, 2 insertions(+), 1 deletion(-)
Why are we building demos in the first place?
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/libcgicc
2009-01-21 6:22 ` Peter Korsgaard
@ 2009-01-26 15:43 ` Peter Korsgaard
2009-01-26 19:03 ` Ulf Samuelsson
0 siblings, 1 reply; 12+ messages in thread
From: Peter Korsgaard @ 2009-01-26 15:43 UTC (permalink / raw)
To: buildroot
>>>>> "Peter" == Peter Korsgaard <jacmet@uclibc.org> writes:
ulf> Log:
ulf> add patch form cgicc'upstream, build now completes\!
ulf> +When built with gcc-4.3.2, cgicc-3.2.7 cannot be compiled any more; sort
ulf> +is now being part of <algorithm> and must be written as ::sort:
ulf> +
ulf> +cardgame.cpp:1232: error: 'sort' was not declared in this scope
ulf> +make[2]: *** [cardgame.o] Error 1
ulf> +
ulf> +Fix it.
ulf> +
ulf> +Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
ulf> +
ulf> +---
ulf> + demo/cardgame.cpp | 3 ++-
ulf> + 1 file changed, 2 insertions(+), 1 deletion(-)
Peter> Why are we building demos in the first place?
Ping?
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/libcgicc
2009-01-26 15:43 ` Peter Korsgaard
@ 2009-01-26 19:03 ` Ulf Samuelsson
2009-01-26 20:10 ` Peter Korsgaard
0 siblings, 1 reply; 12+ messages in thread
From: Ulf Samuelsson @ 2009-01-26 19:03 UTC (permalink / raw)
To: buildroot
m?n 2009-01-26 klockan 16:43 +0100 skrev Peter Korsgaard:
> >>>>> "Peter" == Peter Korsgaard <jacmet@uclibc.org> writes:
>
> ulf> Log:
> ulf> add patch form cgicc'upstream, build now completes\!
>
> ulf> +When built with gcc-4.3.2, cgicc-3.2.7 cannot be compiled any more; sort
> ulf> +is now being part of <algorithm> and must be written as ::sort:
> ulf> +
> ulf> +cardgame.cpp:1232: error: 'sort' was not declared in this scope
> ulf> +make[2]: *** [cardgame.o] Error 1
> ulf> +
> ulf> +Fix it.
> ulf> +
> ulf> +Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
> ulf> +
> ulf> +---
> ulf> + demo/cardgame.cpp | 3 ++-
> ulf> + 1 file changed, 2 insertions(+), 1 deletion(-)
>
> Peter> Why are we building demos in the first place?
>
> Ping?
Feel free to remove them.
BR
Ulf Samuelsson
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/libcgicc
@ 2009-01-26 19:14 jacmet at uclibc.org
0 siblings, 0 replies; 12+ messages in thread
From: jacmet at uclibc.org @ 2009-01-26 19:14 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2009-01-26 19:14:18 +0000 (Mon, 26 Jan 2009)
New Revision: 25059
Log:
libcgicc: depend on toolchain config, don't use select
select should only be used for package (library) dependencies.
Modified:
trunk/buildroot/package/libcgicc/Config.in
Changeset:
Modified: trunk/buildroot/package/libcgicc/Config.in
===================================================================
--- trunk/buildroot/package/libcgicc/Config.in 2009-01-26 19:10:41 UTC (rev 25058)
+++ trunk/buildroot/package/libcgicc/Config.in 2009-01-26 19:14:18 UTC (rev 25059)
@@ -1,8 +1,11 @@
config BR2_PACKAGE_LIBCGICC
bool "libcgicc"
- select BR2_INSTALL_LIBSTDCPP
+ depends on BR2_INSTALL_LIBSTDCPP
help
GNU cgicc is a C++ class library that greatly simplifies
the creation of CGI applications for the World Wide Web.
http://www.cgicc.com
+
+comment "libcgicc requires a toolchain with C++ support enabled"
+ depends on !BR2_INSTALL_LIBSTDCPP
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/libcgicc
@ 2009-01-26 19:41 jacmet at uclibc.org
0 siblings, 0 replies; 12+ messages in thread
From: jacmet at uclibc.org @ 2009-01-26 19:41 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2009-01-26 19:41:32 +0000 (Mon, 26 Jan 2009)
New Revision: 25062
Log:
libcgicc: install to usr/lib
Modified:
trunk/buildroot/package/libcgicc/libcgicc.mk
Changeset:
Modified: trunk/buildroot/package/libcgicc/libcgicc.mk
===================================================================
--- trunk/buildroot/package/libcgicc/libcgicc.mk 2009-01-26 19:37:54 UTC (rev 25061)
+++ trunk/buildroot/package/libcgicc/libcgicc.mk 2009-01-26 19:41:32 UTC (rev 25062)
@@ -30,16 +30,8 @@
--build=$(GNU_HOST_NAME) \
--prefix=/usr \
--exec-prefix=/usr \
- --bindir=/usr/bin \
- --sbindir=/usr/sbin \
- --libdir=/lib \
- --libexecdir=/usr/lib \
--sysconfdir=/etc \
- --datadir=/usr/share \
--localstatedir=/var \
- --includedir=/include \
- --mandir=/usr/man \
- --infodir=/usr/info \
)
touch $@
@@ -47,12 +39,12 @@
$(MAKE) -C $(LIBCGICC_DIR)
touch $@
-$(STAGING_DIR)/lib/libcgicc.so: $(LIBCGICC_DIR)/.compiled
+$(STAGING_DIR)/usr/lib/libcgicc.so: $(LIBCGICC_DIR)/.compiled
$(MAKE) DESTDIR=$(STAGING_DIR) -C $(LIBCGICC_DIR) install
- touch -c $(STAGING_DIR)/lib/libcgicc.so
+ touch -c $(STAGING_DIR)/usr/lib/libcgicc.so
-$(TARGET_DIR)/usr/lib/libcgicc.so: $(STAGING_DIR)/lib/libcgicc.so
- cp -dpf $(STAGING_DIR)/lib/libcgicc.so* $(TARGET_DIR)/usr/lib/
+$(TARGET_DIR)/usr/lib/libcgicc.so: $(STAGING_DIR)/usr/lib/libcgicc.so
+ cp -dpf $(STAGING_DIR)/usr/lib/libcgicc.so* $(TARGET_DIR)/usr/lib/
libcgicc: uclibc $(TARGET_DIR)/usr/lib/libcgicc.so
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/libcgicc
@ 2009-01-26 19:41 jacmet at uclibc.org
0 siblings, 0 replies; 12+ messages in thread
From: jacmet at uclibc.org @ 2009-01-26 19:41 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2009-01-26 19:41:47 +0000 (Mon, 26 Jan 2009)
New Revision: 25063
Log:
libcgicc: don't build demos
And remove unneeded patch for demos while we're at it.
Removed:
trunk/buildroot/package/libcgicc/cgicc-3.2.7-sort-undeclared.patch
Modified:
trunk/buildroot/package/libcgicc/libcgicc.mk
Changeset:
Deleted: trunk/buildroot/package/libcgicc/cgicc-3.2.7-sort-undeclared.patch
===================================================================
--- trunk/buildroot/package/libcgicc/cgicc-3.2.7-sort-undeclared.patch 2009-01-26 19:41:32 UTC (rev 25062)
+++ trunk/buildroot/package/libcgicc/cgicc-3.2.7-sort-undeclared.patch 2009-01-26 19:41:47 UTC (rev 25063)
@@ -1,38 +0,0 @@
-From: Robert Schwebel <r.schwebel@pengutronix.de>
-Subject: [patch] sort is now in <algorithm>
-
-When built with gcc-4.3.2, cgicc-3.2.7 cannot be compiled any more; sort
-is now being part of <algorithm> and must be written as ::sort:
-
-cardgame.cpp:1232: error: 'sort' was not declared in this scope
-make[2]: *** [cardgame.o] Error 1
-
-Fix it.
-
-Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
-
----
- demo/cardgame.cpp | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-Index: cgicc-3.2.7/demo/cardgame.cpp
-===================================================================
---- cgicc-3.2.7.orig/demo/cardgame.cpp
-+++ cgicc-3.2.7/demo/cardgame.cpp
-@@ -36,6 +36,7 @@
- #include <sstream>
- #include <fstream>
- #include <queue>
-+#include <algorithm>
-
- #include "cgicc/CgiDefs.h"
- #include "cgicc/Cgicc.h"
-@@ -1043,7 +1044,7 @@ namespace CardGameTools
-
- void drawPlayerCards(datasplayer *vPlayer)
- {
-- sort (vPlayer->cardsList->begin(),vPlayer->cardsList->end());
-+ std::sort (vPlayer->cardsList->begin(),vPlayer->cardsList->end());
- cout <<"<form name=\"cards\">";
- cout <<"<input type=\"hidden\" name=\"actionner\" value=\"\">";
- cout <<"<input type=\"hidden\" name=\"card\" value=\"\">";
Modified: trunk/buildroot/package/libcgicc/libcgicc.mk
===================================================================
--- trunk/buildroot/package/libcgicc/libcgicc.mk 2009-01-26 19:41:32 UTC (rev 25062)
+++ trunk/buildroot/package/libcgicc/libcgicc.mk 2009-01-26 19:41:47 UTC (rev 25063)
@@ -32,6 +32,7 @@
--exec-prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
+ --disable-demos \
)
touch $@
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/libcgicc
2009-01-26 19:03 ` Ulf Samuelsson
@ 2009-01-26 20:10 ` Peter Korsgaard
0 siblings, 0 replies; 12+ messages in thread
From: Peter Korsgaard @ 2009-01-26 20:10 UTC (permalink / raw)
To: buildroot
>>>>> "Ulf" == Ulf Samuelsson <ulf.samuelsson@atmel.com> writes:
Peter> Why are we building demos in the first place?
>>
>> Ping?
Ulf> Feel free to remove them.
Done.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2009-01-26 20:10 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-17 12:01 [Buildroot] svn commit: trunk/buildroot/package/libcgicc ulf at uclibc.org
-- strict thread matches above, loose matches on Subject: below --
2009-01-13 18:42 ulf at uclibc.org
2009-01-21 0:21 ulf at uclibc.org
2009-01-21 6:21 ` Peter Korsgaard
2009-01-21 0:27 ulf at uclibc.org
2009-01-21 6:22 ` Peter Korsgaard
2009-01-26 15:43 ` Peter Korsgaard
2009-01-26 19:03 ` Ulf Samuelsson
2009-01-26 20:10 ` Peter Korsgaard
2009-01-26 19:14 jacmet at uclibc.org
2009-01-26 19:41 jacmet at uclibc.org
2009-01-26 19:41 jacmet at uclibc.org
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox