Author Topic: Building Molecular Blue From Linux  (Read 20780 times)

Chamooze

  • Wayfarer
  • *
  • Posts: 2
    • View Profile
(No subject)
« Reply #15 on: May 30, 2003, 08:50:20 am »
Trying to build PlaneShift on a Debian distro. I ran into some oddities:
First, it seems the description on the page does not quite work when it comes to the CVS. I haven\'t toyed around with CVS a lot, but tried going through the  build.sh script manually. Doing that, checking out of the CVS worked flawlessly.

Also, \'bison -V\' reports version 1.875a, but building CS still failed. I fetched skinpars.cpp?rev=1.5 (according to the page) and it passed. Still failed building CS tho, was missing skinlex.cpp as well. After downloading skinlex.cpp?rev=1.5 from the same place as skinpars.cpp, CS was built with some warnings (mostly deprecation-warnings I think, didn\'t see all of them).

Cel was built without problems, when following build.sh. Googled to find what package autoheader is in (autoconf), and tried to build PlaneShift. Got tons of deprecation-warnings and warnings about renamed header files. Also, close to the end of the build, jam failed to build a bunch of different object files, error messages below. Not sure how to fix this, any help is appreciated.

I tried editing down what I thought was unnecessary info, I\'ll throw up the entire thing if needed. Sorry about the spam. ;)

Chamooze


psdatabase.o
src/server/psdatabase.cpp: In member function `virtual int
   psDatabase::InsertQuestEvent(char*, int)\':
src/server/psdatabase.cpp:2374: error: ambiguous overload for `xmlString& + int&\' operator
src/server/psdatabase.cpp:2374: error: candidates are: operator+(const char*, int)
/home/tommy/prg/molblue/CS/include/csutil/csstring.h:484: error:                
    const csString& csString::operator+(const csString&) const
/home/tommy/prg/molblue/CS/include/csutil/csstring.h:519: error:                
    csString operator+(const char*, const csString&)
/home/tommy/prg/molblue/CS/include/csutil/csstring.h:525: error:                
    csString operator+(const csString&, const char*)

psaws.o
: undefined reference to
`psComponentTextBoxFactory::psComponentTextBoxFactory[in-charge](iAws*)\'
`psComponentCommandInputFactory::psComponentCommandInputFactory[in-charge](iAws*)\'
`psComponentImageFactory::psComponentImageFactory[in-charge](iAws*)\'
`psComponentProgressFactory::psComponentProgressFactory[in-charge](iAws*)\'
`psComponentLabelFactory::psComponentLabelFactory[in-charge](iAws*)\'
`psComponentItemSlotFactory::psComponentItemSlotFactory[in-charge](iAws*)\'
`psComponentTextBox::ScrollChanged(void*, iAwsSource*)\'

pscommwindow.o
: undefined reference to
`psComponentTextBox::AddLine(char const*, int)\'

psinventorywindow.o
: undefined reference to`psComponentTextBox::SetText(char const*, int)\'

psitemdescriptionwindow.o
: undefined reference to `psComponentTextBox::SetText(char const*, int)\'

psobjectview.o
: undefined reference to `psGUIComponent::psGUIComponent[not-in-charge]()\'
`psGUIComponent::~psGUIComponent [not-in-charge]()\'
./out/linuxx86/psobjectview.o(.text+0x44f): more undefined references to `psGUIComponent::~psGUIComponent [not-in-charge]()\' follow

Then there\'s a whole bunch of undefined references to different class methods of psGUIComponent in psobjectview.o.
« Last Edit: May 30, 2003, 08:51:07 am by Chamooze »

jamincollins

  • Wayfarer
  • *
  • Posts: 8
    • View Profile
(No subject)
« Reply #16 on: May 30, 2003, 06:57:11 pm »
Chamooze,

I successfully built it on Debian Sarge here, if you\'d like I can forward you my build script.  It checks everything out of CVS, builds each in sequence and pulls the art files from the release.  In many ways it\'s similar to Andrew\'s, with the differences being that it limits the output to the console and logs it\'s progress.

Debil

  • Wayfarer
  • *
  • Posts: 4
    • View Profile
(No subject)
« Reply #17 on: May 30, 2003, 07:52:29 pm »
@acraig
running debian [dist-ugrade from knoppix 3.2]:

andreas@box:~/molblue/planeshift$ ./psclient -verbose
Warning: Failed to load `psgui\'; reason(s):
DLERROR (psgui): ./psgui.so: undefined symbol: _ZN11psComponentC2EP8psDialogi
Warning: Failed to load `psgui\'; reason(s):
DLERROR (psgui): ./psgui.so: undefined symbol: _ZN11psComponentC2EP8psDialogi
WARNING: could not load plugin \'planeshift.gui.dialogmanager\'
Cannot use preferred GLX visual - Generic visual will be used.
block_size: 8192
Mounting maps: dungeon podium hydlaa temple tower.
planeshift.application.client: Planeshift Molecular Blue
planeshift.application.client: This game uses Crystal Space Engine created by Jorrit and others
planeshift.application.client: 0.97 rdev [Unix-x86-GCC]
crystalspace.font.freefont2: Could not open fontfile /fonts/ttf/arial.ttf!

        loading definitions file /planeshift/gui/psgui.def...
        load successful (0 windows, 1 skins loaded.)
aws-debug: setting up global AWS palette...
aws-debug: finished palette setup.
planeshift.application.client: No iDialogManager plugin!
planeshift.application.client: Failed to init app!
andreas@box:~/molblue/planeshift$

@jamincollins
I want to test your script (3999@freenet.de)

acraig

  • Administrator
  • Veteran
  • *
  • Posts: 1562
    • View Profile
(No subject)
« Reply #18 on: May 30, 2003, 08:03:48 pm »
Talking to guy on IRC last night, he had a similar problem.  If you run c++filt on that symbol you will probably get:

psComponent::psComponent[not-in-charge](psDialog*, int)

if you run:
jam -a
this should fix it.   At least it did for him.
----------
Andrew
"For all I know, she's lying, everyone's lying; welcome to the Internet"

Debil

  • Wayfarer
  • *
  • Posts: 4
    • View Profile
(No subject)
« Reply #19 on: May 31, 2003, 01:17:27 am »
I tested the script:
1) there should be a test for ~/.cvspass. (if not -> touch ...)
2) I started the script from my home-dir and all the cd calls before ./configure didnt work.
3.) After I made the exports, cds, configure, ... on my own
-> nearly same error as in my last posting :(

Any ideas ?

jamincollins

  • Wayfarer
  • *
  • Posts: 8
    • View Profile
(No subject)
« Reply #20 on: May 31, 2003, 01:23:31 am »
what shell are you using?

jamincollins

  • Wayfarer
  • *
  • Posts: 8
    • View Profile
(No subject)
« Reply #21 on: May 31, 2003, 01:28:14 am »
Also, after using the script, the output of the build process should be stored in log files under the planeshift-cvs folder.  Perhaps, the planeshift-jam.log would be helpful to Andrew or one of the others in locating the problem.  It should contain all output generated by the jam build process.
« Last Edit: May 31, 2003, 01:28:46 am by jamincollins »

Debil

  • Wayfarer
  • *
  • Posts: 4
    • View Profile
(No subject)
« Reply #22 on: May 31, 2003, 08:38:24 am »
- I am using bash 2.05b.0
- I have made already a \'apt-get install bison-1.35\' in the past tries.
- I created a new user for the script (to be sure nothing of the past tries make problems)
- I am not willing to give up. You guys have a daily poster until problems are  solved  ;-)

Here are some parts of the log file. I was afraid of posting the whole one :)

...found 739 target(s)...
...updating 145 target(s)...
MkDir1 ./out
MkDir1 ./out/linuxx86
C++ ./out/linuxx86/adminmessage.o
Archive ./out/linuxx86/libpsadminnet.a
Ranlib ./out/linuxx86/libpsadminnet.a
C++ ./out/linuxx86/celbase.o
C++ ./out/linuxx86/drmessage.o
C++ ./out/linuxx86/mountcfg.o
C++ ./out/linuxx86/netpersist.o
In file included from src/common/net/msghandler.h:22,
                 from src/common/engine/netpersist.cpp:30:
/home/duke/planeshift-cvs/crystal/include/csutil/csdllist.h:25:3: Warnung: #warning csDLList is deprecated. Please use csList from csutil/list.h
Archive ./out/linuxx86/libpsengine.a
Ranlib ./out/linuxx86/libpsengine.a
C++ ./out/linuxx86/charmessages.o
C++ ./out/linuxx86/clientmsghandler.o
In file included from src/common/net/netbase.h:32,
                 from src/common/net/clientmsghandler.cpp:25:
/home/duke/planeshift-cvs/crystal/include/csutil/csdllist.h:25:3: Warnung: #warning csDLList is deprecated. Please use csList from csutil/list.h
C++ ./out/linuxx86/cmdbase.o
In file included from src/common/net/msghandler.h:22,
                 from src/common/net/cmdbase.cpp:11:

(...)

C++ ./out/linuxx86/netinfos.o
C++ ./out/linuxx86/netpacket.o
Archive ./out/linuxx86/libpsnet.a
Ranlib ./out/linuxx86/libpsnet.a
C++ ./out/linuxx86/psbehave.o
C++ ./out/linuxx86/psbl.o
C++ ./out/linuxx86/psworld.o
Archive ./out/linuxx86/libpsbehave.a
Ranlib ./out/linuxx86/libpsbehave.a
C++ ./out/linuxx86/psadvantageinfo.o
C++ ./out/linuxx86/psjobinfo.o
C++ ./out/linuxx86/psrpginfo.o
Archive ./out/linuxx86/libpsrpgrules.a
Ranlib ./out/linuxx86/libpsrpgrules.a
C++ ./out/linuxx86/binarytree.o
C++ ./out/linuxx86/delimitedstring.o
C++ ./out/linuxx86/eventmanager.o
C++ ./out/linuxx86/gameevent.o
C++ ./out/linuxx86/genqueue.o
C++ ./out/linuxx86/log.o
C++ ./out/linuxx86/pserror.o
C++ ./out/linuxx86/psres.o
C++ ./out/linuxx86/psresmngr.o
C++ ./out/linuxx86/psxmlparser.o
C++ ./out/linuxx86/serverconsole.o
C++ ./out/linuxx86/sleep.o
C++ ./out/linuxx86/strutil.o
C++ ./out/linuxx86/texfactory.o
In file included from src/common/util/texfactory.h:22,
                 from src/common/util/texfactory.cpp:21:
/home/duke/planeshift-cvs/crystal/include/csutil/csdllist.h:25:3: Warnung: #warning csDLList is deprecated. Please use csList from csutil/list.h
C++ ./out/linuxx86/xmlstring.o
Archive ./out/linuxx86/libpsutil.a
Ranlib ./out/linuxx86/libpsutil.a
C++ ./out/linuxx86/pschardata.o
In file included from src/common/util/texfactory.h:22,
                 from src/common/psprop/character/pschardata.cpp:54:
/home/duke/planeshift-cvs/crystal/include/csutil/csdllist.h:25:3: Warnung: #warning csDLList is deprecated. Please use csList from csutil/list.h
C++ ./out/linuxx86/stdpcimp.o
LinkPlugin pfcharacterdata.so
C++ ./out/linuxx86/pslinmove.o
C++ ./out/linuxx86/stdpcimp.o
LinkPlugin pflinearmovement.so
C++ ./out/linuxx86/dictionary.o
C++ ./out/linuxx86/psnpcdialog.o
In file included from src/common/psprop/npc/psnpcdialog.cpp:24:
/home/duke/planeshift-cvs/crystal/include/csutil/rng.h:2:3: Warnung: #warning csutil/rng.h has been renamed to csutil/randomgen.h. Please update your includes
C++ ./out/linuxx86/stdpcimp.o
LinkPlugin pfnpcdialog.so
C++ ./out/linuxx86/psproxlist.o
In file included from src/common/net/netbase.h:32,
                 from src/common/psprop/pc/pspcproxlist.h:28,
                 from src/common/psprop/proxlist/psproxlist.cpp:50:
/home/duke/planeshift-cvs/crystal/include/csutil/csdllist.h:25:3: Warnung: #warning csDLList is deprecated. Please use csList from csutil/list.h

(...)

In file included from src/common/net/msghandler.h:22,
                 from src/server/psdatabase.h:29,
                 from src/server/psdatabase.cpp:27:
/home/duke/planeshift-cvs/crystal/include/csutil/csdllist.h:25:3: Warnung: #warning csDLList is deprecated. Please use csList from csutil/list.h
src/server/psdatabase.cpp: In member function `virtual int
   psDatabase::InsertQuestEvent(char*, int)\':
src/server/psdatabase.cpp:2374: error: ambiguous overload for `xmlString& +
   int&\' operator
src/server/psdatabase.cpp:2374: error: candidates are: operator+(const char*,
   int)
/home/duke/planeshift-cvs/crystal/include/csutil/csstring.h:484: error:        
           const csString& csString::operator+(const csString&) const
/home/duke/planeshift-cvs/crystal/include/csutil/csstring.h:519: error:        
           csString operator+(const char*, const csString&)
/home/duke/planeshift-cvs/crystal/include/csutil/csstring.h:525: error:        
           csString operator+(const csString&, const char*)

g++ -c -o ./out/linuxx86/psdatabase.o -I/home/duke/planeshift-cvs/crystal/include -D__CRYSTAL_SPACE__ -Wall -Wno-unknown-pragmas -fno-exceptions -mcpu=pentiumpro -march=i686 -I/usr/local/include  -g3 -DCS_DEBUG  -I/home/duke/planeshift-cvs/cel/include -fexceptions  -Isrc/server -I. -I./include -I./src/common -I./src/client -I./src/server src/server/psdatabase.cpp

...failed C++ ./out/linuxx86/psdatabase.o ...
C++ ./out/linuxx86/psserver.o
In file included from src/common/net/msghandler.h:22,
                 from src/server/usermanager.h:12,
                 from src/server/pscelserver.h:24,
                 from src/server/psserver.cpp:30:
/home/duke/planeshift-cvs/crystal/include/csutil/csdllist.h:25:3: Warnung: #warning csDLList is deprecated. Please use csList from csutil/list.h
In file included from src/server/combatmanager.h:23,
                 from src/server/psserver.cpp:46:
/home/duke/planeshift-cvs/crystal/include/csutil/rng.h:2:3: Warnung: #warning csutil/rng.h has been renamed to csutil/randomgen.h. Please update your includes

(...)

In file included from src/common/net/netbase.h:32,
                 from src/common/psprop/pc/pspcproxlist.h:28,
                 from src/client/admin/psnpceditor.cpp:32:
/home/duke/planeshift-cvs/crystal/include/csutil/csdllist.h:25:3: Warnung: #warning csDLList is deprecated. Please use csList from csutil/list.h
LinkPlugin psadmin.so
C++ ./out/linuxx86/psdcadvant.o
C++ ./out/linuxx86/psdccustomchar.o
C++ ./out/linuxx86/psdcjob.o
C++ ./out/linuxx86/psdcmain.o
C++ ./out/linuxx86/psdconn.o
C++ ./out/linuxx86/psdcpath.o
C++ ./out/linuxx86/psdcredits.o
C++ ./out/linuxx86/psdcskil.o
C++ ./out/linuxx86/psdcupload.o
C++ ./out/linuxx86/psddsktop.o
C++ ./out/linuxx86/psdloading.o
C++ ./out/linuxx86/psdmmenu.o
C++ ./out/linuxx86/psdmngr.o
C++ ./out/linuxx86/psdsplsh.o
C++ ./out/linuxx86/psgwconfirm.o
C++ ./out/linuxx86/psgwskill.o
C++ ./out/linuxx86/psgwspell.o
C++ ./out/linuxx86/psgwwarning.o
C++ ./out/linuxx86/psbutton.o
In file included from src/common/net/cmdhandler.h:11,
                 from src/client/gui/base/psbutton.cpp:41:
/home/duke/planeshift-cvs/crystal/include/csutil/csdllist.h:25:3: Warnung: #warning csDLList is deprecated. Please use csList from csutil/list.h
C++ ./out/linuxx86/pscomp.o
C++ ./out/linuxx86/psdialog.o
C++ ./out/linuxx86/psdragplane.o
C++ ./out/linuxx86/pspix.o
In file included from src/common/net/cmdhandler.h:11,
                 from src/client/gui/base/pspix.cpp:42:
/home/duke/planeshift-cvs/crystal/include/csutil/csdllist.h:25:3: Warnung: #warning csDLList is deprecated. Please use csList from csutil/list.h
C++ ./out/linuxx86/pstext.o
C++ ./out/linuxx86/pstextin.o
src/client/gui/base/pstextin.cpp: In member function `void
   psTextInput::CalculateDrawText()\':
src/client/gui/base/pstextin.cpp:180: Warnung: comparison between signed and
   unsigned integer expressions
src/client/gui/base/pstextin.cpp:185: Warnung: comparison between signed and
   unsigned integer expressions
src/client/gui/base/pstextin.cpp:191: Warnung: comparison between signed and
   unsigned integer expressions
src/client/gui/base/pstextin.cpp:196: Warnung: comparison between signed and
   unsigned integer expressions
LinkPlugin psgui.so
C++ ./out/linuxx86/pssoundmngr.o
LinkPlugin pssound.so
C++ ./out/linuxx86/pscsdialog.o
src/setup/pscsdialog.cpp: In member function `bool pscsDialog::Initialize(int,
   const char* const*)\':
src/setup/pscsdialog.cpp:536: Warnung: unused variable `iTextureManager*txtmgr\'
LinkApplication pssetup
C++ ./out/linuxx86/texparse.o
In file included from src/common/util/texfactory.h:22,
                 from src/tools/texparse/texparse.cpp:33:
/home/duke/planeshift-cvs/crystal/include/csutil/csdllist.h:25:3: Warnung: #warning csDLList is deprecated. Please use csList from csutil/list.h
LinkApplication texparse
C++ ./out/linuxx86/ase.o
C++ ./out/linuxx86/ase2spr.o
C++ ./out/linuxx86/spr.o
LinkApplication ase_2_spr
...failed updating 1 target(s)...
...skipped 1 target(s)...
...updated 143 target(s)...

Debil

  • Wayfarer
  • *
  • Posts: 4
    • View Profile
(No subject)
« Reply #23 on: May 31, 2003, 04:03:57 pm »
shame on me... ... a \"jam -a\" did it !
acraig wrote it not big enoughl ;)

thanks to all.

Thorben

  • Wayfarer
  • *
  • Posts: 8
    • View Profile
(No subject)
« Reply #24 on: June 02, 2003, 07:56:15 pm »
I used the script under debian as a normal user. When I now try to start planeshift, it sais the following:

thk@miraculix:~/molblue/planeshift$ ./psclient -verbose
Warning: Failed to load `sndogg\'; reason(s):
/home/thk/molblue/CS/sndogg.so: File not found
/home/thk/molblue/CS/lib/sndogg.so: File not found
./sndogg.so: File not found
/home/thk/molblue/cel//sndogg.so: File not found
/home/thk/molblue/cel//lib/sndogg.so: File not found
/home/thk/molblue/planeshift/sndogg.so: File not found
Warning: Failed to load `sndogg\'; reason(s):
/home/thk/molblue/CS/sndogg.so: File not found
/home/thk/molblue/CS/libsndogg.so: File not found
/home/thk/molblue/CS/lib/sndogg.so: File not found
/home/thk/molblue/CS/lib/libsndogg.so: File not found
./sndogg.so: File not found
./libsndogg.so: File not found
/home/thk/molblue/cel//sndogg.so: File not found
/home/thk/molblue/cel//libsndogg.so: File not found
/home/thk/molblue/cel//lib/sndogg.so: File not found
/home/thk/molblue/cel//lib/libsndogg.so: File not found
/home/thk/molblue/planeshift/sndogg.so: File not found
/home/thk/molblue/planeshift/libsndogg.so: File not found
WARNING: could not load plugin \'crystalspace.sound.loader.ogg\'
Warning: Failed to load `aws\'; reason(s):
/home/thk/molblue/CS/aws.so: File not found
/home/thk/molblue/CS/lib/aws.so: File not found
./aws.so: File not found
/home/thk/molblue/cel//aws.so: File not found
/home/thk/molblue/cel//lib/aws.so: File not found
/home/thk/molblue/planeshift/aws.so: File not found
Warning: Failed to load `aws\'; reason(s):
/home/thk/molblue/CS/aws.so: File not found
/home/thk/molblue/CS/libaws.so: File not found
/home/thk/molblue/CS/lib/aws.so: File not found
/home/thk/molblue/CS/lib/libaws.so: File not found
./aws.so: File not found
./libaws.so: File not found
/home/thk/molblue/cel//aws.so: File not found
/home/thk/molblue/cel//libaws.so: File not found
/home/thk/molblue/cel//lib/aws.so: File not found
/home/thk/molblue/cel//lib/libaws.so: File not found
/home/thk/molblue/planeshift/aws.so: File not found
/home/thk/molblue/planeshift/libaws.so: File not found
WARNING: could not load plugin \'crystalspace.window.alternatemanager\'
Warning: Failed to load `psgui\'; reason(s):
DLERROR (psgui): ./psgui.so: undefined symbol: GetPlLayer__7CelBase
Warning: Failed to load `psgui\'; reason(s):
DLERROR (psgui): ./psgui.so: undefined symbol: GetPlLayer__7CelBase
WARNING: could not load plugin \'planeshift.gui.dialogmanager\'
Warning: Failed to load `psadmin\'; reason(s):
DLERROR (psadmin): ./psadmin.so: undefined symbol: GetMainActor__11psCelClient
Warning: Failed to load `psadmin\'; reason(s):
DLERROR (psadmin): ./psadmin.so: undefined symbol: GetMainActor__11psCelClient
WARNING: could not load plugin \'planeshift.admin.adminmanager\'
Warning: Failed to load `csjngimg\'; reason(s):
/home/thk/molblue/CS/csjngimg.so: File not found
/home/thk/molblue/CS/lib/csjngimg.so: File not found
./csjngimg.so: File not found
/home/thk/molblue/cel//csjngimg.so: File not found
/home/thk/molblue/cel//lib/csjngimg.so: File not found
/home/thk/molblue/planeshift/csjngimg.so: File not found
Warning: Failed to load `csjngimg\'; reason(s):
/home/thk/molblue/CS/csjngimg.so: File not found
/home/thk/molblue/CS/libcsjngimg.so: File not found
/home/thk/molblue/CS/lib/csjngimg.so: File not found
/home/thk/molblue/CS/lib/libcsjngimg.so: File not found
./csjngimg.so: File not found
./libcsjngimg.so: File not found
/home/thk/molblue/cel//csjngimg.so: File not found
/home/thk/molblue/cel//libcsjngimg.so: File not found
/home/thk/molblue/cel//lib/csjngimg.so: File not found
/home/thk/molblue/cel//lib/libcsjngimg.so: File not found
/home/thk/molblue/planeshift/csjngimg.so: File not found
/home/thk/molblue/planeshift/libcsjngimg.so: File not found
Warning: Failed to load `csjpgimg\'; reason(s):
/home/thk/molblue/CS/csjpgimg.so: File not found
/home/thk/molblue/CS/lib/csjpgimg.so: File not found
./csjpgimg.so: File not found
/home/thk/molblue/cel//csjpgimg.so: File not found
/home/thk/molblue/cel//lib/csjpgimg.so: File not found
/home/thk/molblue/planeshift/csjpgimg.so: File not found
Warning: Failed to load `csjpgimg\'; reason(s):
/home/thk/molblue/CS/csjpgimg.so: File not found
/home/thk/molblue/CS/libcsjpgimg.so: File not found
/home/thk/molblue/CS/lib/csjpgimg.so: File not found
/home/thk/molblue/CS/lib/libcsjpgimg.so: File not found
./csjpgimg.so: File not found
./libcsjpgimg.so: File not found
/home/thk/molblue/cel//csjpgimg.so: File not found
/home/thk/molblue/cel//libcsjpgimg.so: File not found
/home/thk/molblue/cel//lib/csjpgimg.so: File not found
/home/thk/molblue/cel//lib/libcsjpgimg.so: File not found
/home/thk/molblue/planeshift/csjpgimg.so: File not found
/home/thk/molblue/planeshift/libcsjpgimg.so: File not found
Warning: Failed to load `cspngimg\'; reason(s):
/home/thk/molblue/CS/cspngimg.so: File not found
/home/thk/molblue/CS/lib/cspngimg.so: File not found
./cspngimg.so: File not found
/home/thk/molblue/cel//cspngimg.so: File not found
/home/thk/molblue/cel//lib/cspngimg.so: File not found
/home/thk/molblue/planeshift/cspngimg.so: File not found
Warning: Failed to load `cspngimg\'; reason(s):
/home/thk/molblue/CS/cspngimg.so: File not found
/home/thk/molblue/CS/libcspngimg.so: File not found
/home/thk/molblue/CS/lib/cspngimg.so: File not found
/home/thk/molblue/CS/lib/libcspngimg.so: File not found
./cspngimg.so: File not found
./libcspngimg.so: File not found
/home/thk/molblue/cel//cspngimg.so: File not found
/home/thk/molblue/cel//libcspngimg.so: File not found
/home/thk/molblue/cel//lib/cspngimg.so: File not found
/home/thk/molblue/cel//lib/libcspngimg.so: File not found
/home/thk/molblue/planeshift/cspngimg.so: File not found
/home/thk/molblue/planeshift/libcspngimg.so: File not found
opening audio device: Device or resource busy
Mounting maps: dungeon hydlaa tower podium temple.
planeshift.application.client: Planeshift Molecular Blue
planeshift.application.client: This game uses Crystal Space Engine created by Jorrit and others
planeshift.application.client: 0.97 rdev [Unix-x86-GCC]
Couldn\'t find aws plugin!
planeshift.application.client: Could not set up the AWS window manager!
planeshift.application.client: Failed to init app!
thk@miraculix:~/molblue/planeshift$

can somebody tell me what went wrong?

Thorben

acraig

  • Administrator
  • Veteran
  • *
  • Posts: 1562
    • View Profile
(No subject)
« Reply #25 on: June 02, 2003, 08:53:48 pm »
If the script fails then try doing each of the steps manually as described here

That way you can see what particular line has failed.

Please not the message for Debian users at the top.
----------
Andrew
"For all I know, she's lying, everyone's lying; welcome to the Internet"

Pycelle

  • Wayfarer
  • *
  • Posts: 4
    • View Profile
(No subject)
« Reply #26 on: June 05, 2003, 10:31:47 pm »
Warning: Failed to load `gl3d\'; use \'-verbose\' argument for details.
Warning: Failed to load `gl3d\'; use \'-verbose\' argument for details.
WARNING: could not load plugin \'crystalspace.graphics3d.opengl\'
Warning: Failed to load `csjngimg\'; use \'-verbose\' argument for details.
Warning: Failed to load `csjngimg\'; use \'-verbose\' argument for details.
Warning: Failed to load `csjpgimg\'; use \'-verbose\' argument for details.
Warning: Failed to load `csjpgimg\'; use \'-verbose\' argument for details.
Warning: Failed to load `cspngimg\'; use \'-verbose\' argument for details.
Warning: Failed to load `cspngimg\'; use \'-verbose\' argument for details.
crystalspace.system: No iGraphics3D plugin!
Segmentation fault

im useing RedHat linux 9, and i dont know why i always get this error, im kinda new to linux, so it might be something obvious, any suggestions?

atlana

  • Wayfarer
  • *
  • Posts: 1
    • View Profile
(No subject)
« Reply #27 on: June 06, 2003, 04:18:38 am »
I am having the same problem as Pycelle

I have used the complete download, tried it manualy, tried compiling with Jam and Make. It seems that CS is not completely making all the files it needs. I get about 10 or so warnings about \"file is deprecated\", but none of them seem to have anything to do with the missing .o files. I have redhat 8.0 the system runs perfectly except for this compile. Please help, thanks.

Sharaz

  • Hydlaa Resident
  • *
  • Posts: 81
    • View Profile
(No subject)
« Reply #28 on: June 06, 2003, 03:46:20 pm »
I have the same problem Chamoose did, but in my case jam -a didn\'t work. :(
I used \'jam -a > output.log 2> errors.log\' to split the output and put them online at: http://newton.luon.net/~bas/ps/

Hope anybody can help me....
The two most common things in the Universe are hydrogen and stupidity. Just look at the number of Windoze users ;)
     -- Harlan Ellison (Edited by me)

--->  Join the BISM  <---

Sharaz

  • Hydlaa Resident
  • *
  • Posts: 81
    • View Profile
(No subject)
« Reply #29 on: June 06, 2003, 05:43:21 pm »
Ok, new update....
After using an old verson of gcc/g++ (2.95),  manually compiling skinlex.cpp by removing a the -Wall option (yes I know it\'s evil) I finally get CS and CEL to run and PS to compile. But now I still have a problem:
http://newton.luon.net/~bas/ps/runerrors.log

Please help, I\'ve been trying to get in for over a month!
The two most common things in the Universe are hydrogen and stupidity. Just look at the number of Windoze users ;)
     -- Harlan Ellison (Edited by me)

--->  Join the BISM  <---