You can subscribe to this list here.
2003 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
(1) |
Sep
(2) |
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ben...@id...> - 2004-05-22 12:52:37
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
From: <mr...@us...> - 2003-09-26 08:42:58
|
Geoff Horn <ge...@gw...> writes: > I've got this tar compiled but with the following problems: > > > Segmentation faults: > > 1) tcvp -u tcvpx --skin=3D/usr/share/tcvp/skins/standard/skin.conf > 2) tcvp -u tcvpx Could you try to obtain a stack trace? You could also try "tcvp --tc2-verbose=3D5" to see better when things break. > O.K. > =3D=3D=3D > 1) tcvp -h Well, at least something works. Does "tcvp music.mp3" work? > I do have the tcvp files installed in /usr/share/tcvp > > I also had problems with Suse 8.2 include files: > > 1. Had to: > a) Symlink /usr/X11R6/include/fontconfig to=20 > /usr/include/X11/fontconfig > > b) Edit Xft.h to point to <X11/fontconfig/fontconfig.h> was=20 > <fontconfig/fontconfig.h> > > 2. Had to: > a) Rename /usr/include/freetype to /usr/include/freetype.old > b) Symlink /usr/include/freetype2/freetype to /usr/include/freetype > > I couldn't find any way to force "configure" to use these includes.=20 > Strange! I've those things before. The problem is that pkg-config doesn't look in /usr/X11R6/lib/pkgconfig by default. Try export PKG_CONFIG_PATH=3D/usr/X11R6/lib/pkgconfig You might also want to install fontconfig, freetype, and Xft separately. The versions that come with XFree86 have a few small bugs and memory leaks. --=20 M=E5ns Rullg=E5rd mr...@us... |
From: Geoff H. <ge...@gw...> - 2003-09-25 19:44:16
|
I've got this tar compiled but with the following problems: Segmentation faults: 1) tcvp -u tcvpx --skin=/usr/share/tcvp/skins/standard/skin.conf 2) tcvp -u tcvpx O.K. === 1) tcvp -h I do have the tcvp files installed in /usr/share/tcvp I also had problems with Suse 8.2 include files: 1. Had to: a) Symlink /usr/X11R6/include/fontconfig to /usr/include/X11/fontconfig b) Edit Xft.h to point to <X11/fontconfig/fontconfig.h> was <fontconfig/fontconfig.h> 2. Had to: a) Rename /usr/include/freetype to /usr/include/freetype.old b) Symlink /usr/include/freetype2/freetype to /usr/include/freetype I couldn't find any way to force "configure" to use these includes. Strange! Geoff |
From: <mr...@us...> - 2003-08-12 07:51:14
|
ma...@us... writes: > Log Message: > drag to move windowCVS: -----------------------------------------------= ----------------------- ^^^^^ l=E4r dig anv=E4nda 0x0a --=20 M=E5ns Rullg=E5rd mr...@us... |
From: Michael A. <mi...@ah...> - 2003-05-27 09:50:18
|
Nu g=E5r det att s=F6ka i avi --=20 Michael Ahlberg mi...@ah... |
From: <mr...@us...> - 2003-02-28 09:28:35
|
ma...@us... writes: > while(ogg_stream_packetout(&ost->os, &op) !=3D 1) { > while(ogg_sync_pageout(&ost->oy, &og) !=3D 1) { > + int l; > + buf =3D ogg_sync_buffer(&ost->oy, BUFFER_SIZE); > + l =3D fread(buf, BUFFER_SIZE, 1, ost->f); Read errors should be handled here. > + ogg_sync_wrote(&ost->oy, l); > + if(l=3D=3D0){ > + return NULL; > + } > + } > ogg_stream_pagein(&ost->os, &og); > } --=20 M=E5ns Rullg=E5rd mr...@us... |