POV-Ray : Newsgroups : povray.unix : compiling povray 3.7.0 on ubuntu 64 Server Time
17 May 2024 02:49:33 EDT (-0400)
  compiling povray 3.7.0 on ubuntu 64 (Message 4 to 13 of 13)  
<<< Previous 3 Messages Goto Initial 10 Messages
From: tony
Subject: Re: compiling povray 3.7.0 on ubuntu 64
Date: 15 Oct 2009 14:10:00
Message: <web.4ad764f2a095ebc6ddda7f2d0@news.povray.org>
waggy wrote:
I've found to work is to configure POV-Ray to compile static.
>
> ../configure [your options here] --enable-static


What boost version have you? Have you instaled boost?

I tried with ..enable-static and continue going the same mistakes.

I don't know how to use povray 7 in my ubuntu, 8 cpu.

If anyone can help me to compile or send me the binaries.

Tony


Post a reply to this message

From: Le Forgeron
Subject: Re: compiling povray 3.7.0 on ubuntu 64
Date: 15 Oct 2009 14:27:02
Message: <4ad76976$1@news.povray.org>
Le 15/10/2009 20:07, tony nous fit lire :
> waggy wrote:
> I've found to work is to configure POV-Ray to compile static.
>> ../configure [your options here] --enable-static
> 
> 
> What boost version have you? Have you instaled boost?
> 
> I tried with ..enable-static and continue going the same mistakes.
> 
> I don't know how to use povray 7 in my ubuntu, 8 cpu.
> 
> If anyone can help me to compile or send me the binaries.

I installed a local version of boost 1.38 (in /usr/local/...)
then configure povray with

--with-boost=/usr/local
(and --disable-io-restrictions, but that's a personal taste)

No problem. (and yes, I'm on ubuntu amd64, currently 9.04)
Now, beta 34 has expired...


Post a reply to this message

From: waggy
Subject: Re: compiling povray 3.7.0 on ubuntu 64
Date: 15 Oct 2009 16:40:00
Message: <web.4ad787c1a095ebc6f99d05c80@news.povray.org>
"tony" wrote:
> What boost version have you? Have you instaled boost?
>
> I tried with ..enable-static and continue going the same mistakes.
>
> I don't know how to use povray 7 in my ubuntu, 8 cpu.
>
> If anyone can help me to compile or send me the binaries.
>
I compiled and installed Boost 1.40.0 as a regular user on a shared cluster, so
the installation was a bit more involved.  Like Le Forgeron, below, I found it
necessary to ./configure --with-boost=[path to lib directory], as well.

You can read the detailed instructions for this somewhat unusual installation on
my wiki to see if any of it helps.

http://wiki.waggy.org/dokuwiki/povray/shamu_install

The POV-Ray installation instructions are near the bottom, at step 5.


Post a reply to this message

From: tony
Subject: Re: compiling povray 3.7.0 on ubuntu 64
Date: 16 Oct 2009 08:20:00
Message: <web.4ad86394a095ebc6e208ab490@news.povray.org>
"waggy" wrote:

>
> I compiled and installed Boost 1.40.0 as a regular user on a shared cluster, so
> the installation was a bit more involved.  Like Le Forgeron, below, I found it
> necessary to ./configure --with-boost=[path to lib directory], as well.
>
> You can read the detailed instructions for this somewhat unusual installation on
> my wiki to see if any of it helps.
>
> http://wiki.waggy.org/dokuwiki/povray/shamu_install
>
> The POV-Ray installation instructions are near the bottom, at step 5.


I am installed boost 1 39 0:

     configure
            ./bootstrap.sh --prefix=/home/tony/installed
--libdir=/home/tony/instaled/lib
     ./bjam install


and the povray installation:

     cd ~/src/povray-3.7.0.beta.34

../configure COMPILED_BY="Your tony <ema### [at] tonyes>" \
--prefix=/home/tony/installed \
--with-boost=/home/tony/installed \
--with-boost-lib=/home/tony/installed/lib \
--enable-static

make check install

as it given notice that expired I made:

    cd ~/src/povray-3.7.0.beta.34/source/backend
cp povray.h povray.h.orig

and

Change line 128 in /home/tony/src/povray-3.7.0.beta.34/source/backend/povray.h.

  #define EXPIRE_AT       (1243807200 + DAYS(366))


All right. I have compiled and running "povray-3.7.0.beta.34"

Thanks all.

But when rendering no start window-render, it make in console mode.
Is there any way to display the render while has it doing?


Tony


Post a reply to this message

From: clipka
Subject: Re: compiling povray 3.7.0 on ubuntu 64
Date: 16 Oct 2009 09:15:33
Message: <4ad871f5$1@news.povray.org>
tony schrieb:

> But when rendering no start window-render, it make in console mode.
> Is there any way to display the render while has it doing?

AFAIK you need to have the X window development packages installed when 
running POV-Ray's Configure script.


Post a reply to this message

From: Le Forgeron
Subject: Re: compiling povray 3.7.0 on ubuntu 64
Date: 16 Oct 2009 09:20:46
Message: <4ad8732e@news.povray.org>
tony a écrit :

> Thanks all.
> 
> But when rendering no start window-render, it make in console mode.
> Is there any way to display the render while has it doing?
> 
If you have the X11 devkit installed, it should be detected
automatically by configure. (unless --disable-x11)

Now, that kind of devkit is not installed by default (no use of it for
running x11 applications, the runtime are enough), check the output of
configure about its detection.


Post a reply to this message

From: waggy
Subject: Re: compiling povray 3.7.0 on ubuntu 64
Date: 16 Oct 2009 12:15:00
Message: <web.4ad89b84a095ebc6f99d05c80@news.povray.org>
"tony" wrote:
>All right. I have compiled and running "povray-3.7.0.beta.34"

Good work, Tony!

> But when rendering no start window-render, it make in console mode.
> Is there any way to display the render while has it doing?

From your original post, it looks like you don't have the SDL libraries
installed.

> checking for sdl-config... no
> checking for libSDL... not found
> configure: WARNING: the preview display is disabled

From INSTALL.TXT, it looks like that is indeed what you need for the preview.

- SDL version 1.2 or above (used for the display preview)
  http://www.libsdl.org

I hope this helps.


Post a reply to this message

From: tony
Subject: Re: compiling povray 3.7.0 on ubuntu 64
Date: 18 Oct 2009 09:25:01
Message: <web.4adb164ba095ebc6825502be0@news.povray.org>
Hi waggy:

I have first configured as follows:

../configure COMPILED_BY="tony <nto### [at] terraes>" \
--prefix=/home/tony/installed \
--with-boost=/home/tony/installed \
--with-boost-libdir=/home/tony/installed/lib \
--with-x \
--enable-static

and gives this output:

.....
checking X11/Xlib.h usability... yes
checking X11/Xlib.h presence... yes
checking for X11/Xlib.h... yes
checking for XFlush in -lX11... no
configure: X Window display will be disabled


After I installed SDL-1.2.13 on /home/tony/installed and I reconfigure:

../configure COMPILED_BY="tony <nto### [at] terraes>" \
--prefix=/home/tony/installed \
--with-boost=/home/tony/installed \
--with-boost-libdir=/home/tony/installed/lib \
--with-libsdl=/home/tony/installed/include/SDL \
--with-x \
--enable-static

and gives the same output:

.....
checking X11/Xlib.h usability... yes
checking X11/Xlib.h presence... yes
checking for X11/Xlib.h... yes
checking for XFlush in -lX11... no
configure: X Window display will be disabled

After I reconfigure adding:

--x-includes=/home/tony/installed/include/SDL \
--x-libraries=/home/tony/installed/lib \

and gives the same output.

Do you know why?

Tony


Post a reply to this message

From: waggy
Subject: Re: compiling povray 3.7.0 on ubuntu 64
Date: 19 Oct 2009 00:50:03
Message: <web.4adbeff3a095ebc6f99d05c80@news.povray.org>
"tony" wrote:
> .....
> checking X11/Xlib.h usability... yes
> checking X11/Xlib.h presence... yes
> checking for X11/Xlib.h... yes
> checking for XFlush in -lX11... no
> configure: X Window display will be disabled
>
[...]
> Do you know why?
>
> Tony

That is odd.  In your original post, it seemed to be giving up on X Windows a
bit later...

> checking X11/Xlib.h usability... yes
> checking X11/Xlib.h presence... yes
> checking for X11/Xlib.h... yes
> checking for XFlush in -lX11... yes
> checking X11/xpm.h usability... no
> checking X11/xpm.h presence... no
> checking for X11/xpm.h... no
> checking whether to enable the watch cursor... no
> checking for sdl-config... no
> checking for libSDL... not found
> configure: WARNING: the preview display is disabled

I apologize I probably can't help with this.  I gave up on X support for now,
since it really isn't needed (and could be counterproductive) for the system I
compiled the POV-Ray beta to run on.

I hope you can find a way to get it working without too much more trouble.


Post a reply to this message

From: tony
Subject: Re: compiling povray 3.7.0 on ubuntu 64
Date: 19 Oct 2009 09:35:01
Message: <web.4adc69daa095ebc6825502be0@news.povray.org>
Thanks waggy, I appreciate your help.

Greetings.

Tony


Post a reply to this message

<<< Previous 3 Messages Goto Initial 10 Messages

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