octavian-devel Mailing List for Octavian
Status: Beta
Brought to you by:
wormm
You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <ben...@id...> - 2004-05-22 12:46:08
|
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: James S. <st...@bt...> - 2003-10-23 11:35:23
|
Building on a Debian Sid system, using g++3.3, I had to add
#include <assert.h>
to
octavian/Modules.cpp and
octavian/Ports.cpp
to get it to stop complaining about first use of "assert" but then it
stops building at Port.cpp with:
/bin/sh ../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. -I.. -I..
-I../io -I../gui -g -Wall -O6 -ffast-math -D_REENTRANT -D_DEBUG -c -o
Port.lo `test -f Port.cpp || echo './'`Port.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../io -I../gui -g -Wall -O6
-ffast-math -D_REENTRANT -D_DEBUG -c Port.cpp -MT Port.lo -MD -MP -MF
.deps/Port.TPlo -fPIC -DPIC -o .libs/Port.o
Port.cpp:28:24: other_port.h: No such file or directory
Port.cpp: In member function `void OCTAVIAN::Port::DisconnectAll()':
Port.cpp:247: error: `other_port' undeclared (first use this function)
Port.cpp:247: error: (Each undeclared identifier is reported only once
for each
function it appears in.)
make[2]: *** [Port.lo] Error 1
make[2]: Leaving directory `/usr/local/octavian/octavian'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/octavian'
make: *** [all] Error 2
I took out the offending lines (as a quick fix) and then had to add the
include assert to
Preset.cpp,
XmlTree.cpp,
LASPDAModule.cpp
ConfigFile.cpp
ModuleManager.cpp
.... plus others
Also, fltk uses Fl/fl.H rather than .h so I had to change all the
includes in the gui section to reflect this.
It now stops at the following line and I am stuck:
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../io -I../octavian
-I/usr/include/freetype2 -g -Wall -O2 -I/usr/X11R6/include -g -Wall -O6
-ffast-math -D_REENTRANT -D_DEBUG -c Settings.cpp -MT Settings.lo -MD
-MP -MF .deps/Settings.TPlo -fPIC -DPIC -o .libs/Settings.o
Settings.cpp:24:19: dlfcn.H: No such file or directory
Settings.cpp: In static member function `static
OCTAVIAN::SettingsWindow*
OCTAVIAN::SettingsWindow::SettingsFactory(int, int, int, int,
OCTAVIAN::Module*)':
Settings.cpp:54: error: `dlsym' undeclared (first use this
function)
Settings.cpp:54: error: (Each undeclared identifier is reported
only once for
each function it appears in.)
Settings.cpp:59: error: `dlerror' undeclared (first use this
function)
make[2]: *** [Settings.lo] Error 1
make[2]: Leaving directory `/usr/local/octavian/gui'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/octavian'
make: *** [all] Error 2
James
|
|
From: Roman K. <wor...@ma...> - 2003-04-19 12:42:39
|
--- blah ---- |