POV-Ray : Newsgroups : povray.unix : Cannot compile 3.7 on XUbuntu 13.10 x64 : Re: Cannot compile 3.7 on XUbuntu 13.10 x64 Server Time
18 Apr 2024 16:37:14 EDT (-0400)
  Re: Cannot compile 3.7 on XUbuntu 13.10 x64  
From: Ger
Date: 22 Jan 2014 14:30:13
Message: <52e01c45$1@news.povray.org>
jmelson wrote:

> Can anybody tell me how to specify this correctly?
> 
> Thanks,
> 
> Jon

This is a script that I use to install pov on Opensuse
You may need to adapt it to your system.


#---------------------------
# filename install_povray.sh

# install script for Povray 3.7 master
# this script must very obviously be run by root

# First we need to install a bunch of libs that make
# life a whole lot easier when using/compiling Povray


zypper in -l -y boost-devel
zypper in -l -y make
zypper in -l -y gcc
zypper in -l -y gcc-c++
zypper in -l -y libjpeg8-devel
zypper in -l -y openexr-devel
zypper in -l -y openexr
zypper in -l -y libpng12-devel
zypper in -l -y libtiff-devel
zypper in -l -y libSDL-devel
zypper in -l -y libSDL2-devel
zypper in -l -y libXpm-devel
zypper in -l -y libXpm-tools
zypper in -l -y libICE-devel
zypper in -l -y libSM-devel

#prepair for unix (linux) compilation
cd /home/ger/Downloads/povray-master/unix/

# and run the prebuild script
./prebuild.sh

# run configure with the appropriate options
cd /home/ger/Downloads/povray-master
./configure COMPILED_BY="Pietje Puk <p.p### [at] gmailcom>"
--with-boost-thread=boost_thread-mt LIBS="-lboost_system -lboost_thread"


# and now for the heavy lifting part . . .
# Make and install povray

make clean  
make install



# all done
#---------------------------



-- 

Ger


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.