Hard Light Productions Forums

Hosted Projects - Standalone => Diaspora => Diaspora Tech Help => Topic started by: Goast on September 14, 2012, 10:27:43 am

Title: Linux Install issues, OGG not found. What am I missing?
Post by: Goast on September 14, 2012, 10:27:43 am
checking for sdl-config... /usr/bin/sdl-config
checking for SDL - version >= 1.2.6... yes
checking for Ogg... no
*** Could not run Ogg test program, checking why...
*** The test program failed to compile or link. See the file config.log for the
*** exact error that occured. This usually means Ogg was incorrectly installed
*** or that you have moved Ogg since it was installed.
configure: error: *** OGG installation not found!


What Libraries am I missing?  Any help so I'm not just downloading anything OGG related trying to find the right stuff, and yes OGGZ tools are already installed.
Title: Re: Linux Install issues, OGG not found. What am I missing?
Post by: MatthTheGeek on September 14, 2012, 10:30:06 am
First guess would be Vorbis-related stuff, as it is the encoding we use in our OGGs.
Title: Re: Linux Install issues, OGG not found. What am I missing?
Post by: pecenipicek on September 14, 2012, 10:31:28 am
checking for sdl-config... /usr/bin/sdl-config
checking for SDL - version >= 1.2.6... yes
checking for Ogg... no
*** Could not run Ogg test program, checking why...
*** The test program failed to compile or link. See the file config.log for the
*** exact error that occured. This usually means Ogg was incorrectly installed
*** or that you have moved Ogg since it was installed.
configure: error: *** OGG installation not found!


What Libraries am I missing?  Any help so I'm not just downloading anything OGG related trying to find the right stuff, and yes OGGZ tools are already installed.
http://www.hard-light.net/wiki/index.php/Fs2_open_on_Linux/Installing_the_Development_Libraries

my guess is either libogg-dev or libvorbis-dev is the one yer missing.
Title: Re: Linux Install issues, OGG not found. What am I missing?
Post by: Goast on September 14, 2012, 12:04:34 pm
Thanks, it worked.  Now I'm stuck on the launcher.

~/Downloads/Diaspora_R1_Linux/Diaspora$ ./wxlauncher/build/wxlauncher --add-profile --profile=Diaspora   --file=pro00099.ini
Fatal Error: Unable to load splash image. This normally means that you are running the Launcher from a folder that the launcher does not know how to find the resource folder from.

The launcher is expecting (/usr/local/share/wxlauncher/) to contain the resource images.
Aborted (core dumped)

Any help with this one?

edit update:  Ok now it says
Segmentation fault (core dumped)  (Sorry Linux is relatively new thing to me, trying my best)
 
Title: Re: Linux Install issues, OGG not found. What am I missing?
Post by: jg18 on September 14, 2012, 12:12:35 pm
Which instructions did you follow for building wxlauncher? It should have been the instructions in the README.txt that shipped with Diaspora.

Try this:

Code: [Select]
cd Diaspora/wxlauncher/build

rm -rf * # this is to clear out the build folder

cmake -D USE_OPENAL=1 -D CMAKE_BUILD_TYPE=RelWithDebInfo -D DEVELOPMENT_MODE=1 ../

make

The last two lines are just from the instructions in README.txt.
Title: Re: Linux Install issues, OGG not found. What am I missing?
Post by: Goast on September 14, 2012, 12:23:45 pm
Worked thank you! I followed the instructions, via the read me.  Guess I must of missed something.