Compiling linux problems with pioneer-thirdparty

Post Reply
Nyankosensei
Posts: 235
Joined: Wed Sep 11, 2013 8:03 pm

Compiling linux problems with pioneer-thirdparty

Post by Nyankosensei »

When i try to compile pioneer by now i get errors becouse don't find pioneer-thirdparty libs

Code: Select all

configure: using pioneer-thirdparty repository in /opt/pioneer-thirdparty
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for SIGC... yes
checking for SDL2... yes
checking for FREETYPE... yes
checking for VORBIS... yes
checking for PNG... yes
checking for ASSIMP... yes
checking for ASSIMP version >= 3.0... no
configure: error: "assimp version >= 3.0 not found. Get it from https://assimp.sourceforge.net/"
If it find sdl2 idk becouse it don't find assimp
Last edited by Nyankosensei on Wed Oct 16, 2013 8:37 pm, edited 1 time in total.
shadmar
Posts: 25
Joined: Mon Jul 01, 2013 7:28 pm

Re: Compiling linux problems

Post by shadmar »

For ubuntu :

Code: Select all

sudo apt-get install cmake git g++ automake pkg-config libsigc++-dev libsigc++-2.0-dev libsdl1.2-dev libsdl-image1.2-dev libvorbis-dev libpng-dev libglew-dev libglu1-mesa-dev mesa-common-dev libtool libfreetype6-dev

Code: Select all

git clone git://github.com/pioneerspacesim/pioneer-thirdparty.git
cd pioneer-thirdparty
autoconf
./configure
make

Code: Select all

cd ..
git clone git://github.com/pioneerspacesim/pioneer.git
cd pioneer/data
wget https://raw.github.com/pioneerspacesim/pioneer/master/data/Makefile.am
cd ..

Code: Select all

./bootstrap
./configure --with-thirdparty=../pioneer-thirdparty
make

Code: Select all

mv src/pioneer .
./pioneer
Nyankosensei
Posts: 235
Joined: Wed Sep 11, 2013 8:03 pm

Re: Compiling linux problems with pioneer-thirdparty

Post by Nyankosensei »

The problem is in the assimp version of pioneer thirdparty, i have always compiled without problems but with the updated version i get alwais this problem

P.S.
Makefile.am in data directory is need for paragon but pioneer have it by default
robn
Posts: 302
Joined: Mon Jul 01, 2013 1:11 am
Location: Melbourne, Australia

Re: Compiling linux problems with pioneer-thirdparty

Post by robn »

Please post the output from compiling pioneer-thirdparty (to a pastebin, if its big).
Post Reply