POV-Ray : Newsgroups : povray.unix : Compiling POV-Ray 3.7, second attempt Server Time
28 Mar 2024 12:57:58 EDT (-0400)
  Compiling POV-Ray 3.7, second attempt (Message 17 to 26 of 26)  
<<< Previous 10 Messages Goto Initial 10 Messages
From: William F Pokorny
Subject: Re: Compiling POV-Ray 3.7, second attempt
Date: 26 Jul 2015 12:32:45
Message: <55b50bad$1@news.povray.org>
On 07/26/2015 11:09 AM, "Jörg \"Yadgar\" Bleimann" wrote:
> On 26.07.2015 14:40, Le_Forgeron wrote:
>> LIBS="-lboost_system
>> - -lboost_thread"
>
> Yadgar

Unsure if your issue, but I believe there is an extra dash above between 
the two library specs. Perhaps try:

LIBS="-lboost_system -lboost_thread"

if you have not already.

Bill P.


Post a reply to this message

From: green
Subject: Re: Compiling POV-Ray 3.7, second attempt
Date: 26 Jul 2015 14:00:01
Message: <web.55b51f8830d76883373e22480@news.povray.org>
=?UTF-8?B?IkrDtnJnIFwiWWFkZ2FyXCIgQmxlaW1hbm4i?= <yazdegird@gmx.de> wrote:
> On 26.07.2015 14:40, Le_Forgeron wrote:
> > LIBS="-lboost_system
> > - -lboost_thread"
>
> Even worse:
>
> Environment
> -----------
> checking build system type... x86_64-unknown-linux-gnu
> checking host system type... x86_64-unknown-linux-gnu
> checking for a BSD-compatible install... /usr/bin/install -c
> checking whether build environment is sane... yes
> checking for a thread-safe mkdir -p... /bin/mkdir -p
> checking for gawk... gawk
> checking whether make sets $(MAKE)... yes
> checking whether to enable maintainer-specific portions of Makefiles... no
> checking whether $C_INCLUDE_PATH contains the "." path... no
> checking whether $CPLUS_INCLUDE_PATH contains the "." path... no
>
> Programs
> --------
> checking for gcc... gcc
> checking whether the C compiler works... no
> configure: error: in `/media/Raytracing/povray-3.7-stable':
> configure: error: C compiler cannot create executables
> See `config.log' for more details
> configure: WARNING: cache variable ac_cv_env_LIBS_value contains a newline
>
> See you in Khyberspace!
>
> Yadgar

i hate linux and i know nothing about it, but i needed to 'do stuff' with
linux povray so i had to compile it on four different machines (two identical,
well, mostly) recently.  your problems look disgustingly familiar to me.  the
following is more advice than directions but maybe it will give you an idea
for a new course.
  this is for xubuntu 14.04

it looks like you did, or did not need, the automake --add-missing step.

i found the directions to add libboost to be inadequate; for me using synaptic
to add libboost1.55-all-dev fixed whatever it was that was ailing; it might
have been, i am pretty sure i remember this, well i think i remember this, or
maybe i dreamed it, gcc did not have sufficient c++ junk/whatever.  the last
time i compiled, four days ago, i just added it fairly early in the hair-
-pulling process and compilation was almost painless.  the 'make' step was snafu
but when i retried it, it worked.  go figure.

my configure line finally ended up being
../configure COMPILED_BY="whatever..." --with-boost-thread=boost_thread
LIBS="-lboost_system -lboost_thread"
i got there by carefully comparing various recommendations and then typing like
a monkey, randomly.

linux is a p.o.s.  i am trying to get that distributed dealy, httpov, to work,
well nominally trying, right now trying not to think about it, it is proving
to be a steeper hill than compilation.
  i hate linux.  it is 17% faster than winxp64 and 25% faster than winxp32 on
my three lesser machines (not as much faster on the best one) but i still
hate it.  user hostile!


Post a reply to this message

From: James Holsenback
Subject: Re: Compiling POV-Ray 3.7, second attempt
Date: 27 Jul 2015 14:56:14
Message: <55b67ece$1@news.povray.org>
On 07/26/2015 12:32 PM, William F Pokorny wrote:
> On 07/26/2015 11:09 AM, "Jörg \"Yadgar\" Bleimann" wrote:
>> On 26.07.2015 14:40, Le_Forgeron wrote:
>>> LIBS="-lboost_system
>>> - -lboost_thread"
>>
>> Yadgar
>
> Unsure if your issue, but I believe there is an extra dash above between
> the two library specs. Perhaps try:
>
> LIBS="-lboost_system -lboost_thread"

that's the incantation ... try

./configure COMPILED_BY="Jörg 'Yadgar' Bleimann <yaz### [at] gmxde>" 
LIBS="-lboost_system -lboost_thread"

then do:

make clean
make


Post a reply to this message

From: James Holsenback
Subject: Re: Compiling POV-Ray 3.7, second attempt
Date: 27 Jul 2015 15:13:13
Message: <55b682c9$1@news.povray.org>
On 07/27/2015 02:56 PM, James Holsenback wrote:
> On 07/26/2015 12:32 PM, William F Pokorny wrote:
>> On 07/26/2015 11:09 AM, "Jörg \"Yadgar\" Bleimann" wrote:
>>> On 26.07.2015 14:40, Le_Forgeron wrote:
>>>> LIBS="-lboost_system
>>>> - -lboost_thread"
>>>
>>> Yadgar
>>
>> Unsure if your issue, but I believe there is an extra dash above between
>> the two library specs. Perhaps try:
>>
>> LIBS="-lboost_system -lboost_thread"
>
> that's the incantation ... try
>
> ./configure COMPILED_BY="Jörg 'Yadgar' Bleimann <yaz### [at] gmxde>"
> LIBS="-lboost_system -lboost_thread"
>
> then do:
>
> make clean
> make

one more thing i wanted to follow up on but forgot ... from your 
configure report I noticed that you don't have exr support or X Window 
display

 > X Window display: disabled
 > Unsupported image formats: openexr

probably ok if you don't plan on using hdr or exr images. the one that 
almost is a must have is X Window support. if you want these look for 
the follow in your package manager:

openexr-devel - Library to Handle EXR Pictures (16-bit floating-point 
format)
libSDL-devel - SDL Library Developer Files

of course you'll have to re-run configure, make clean, make ...


Post a reply to this message

From: "Jörg \"Yadgar\" Bleimann"
Subject: Re: Compiling POV-Ray 3.7, second attempt
Date: 27 Jul 2015 19:03:45
Message: <55b6b8d1$1@news.povray.org>
Hi(gh)!

On 26.07.2015 18:32, William F Pokorny wrote:

> Unsure if your issue, but I believe there is an extra dash above between
> the two library specs. Perhaps try:
>
> LIBS="-lboost_system -lboost_thread"
>
> if you have not already.
>
> Bill P.

Doesn't work either:

// begin messages

===============================================================================
Configure POV-Ray version 3.7.0
===============================================================================

This is an unofficial version compiled by:
  Jörg "Yadgar" Bleimann <yaz### [at] gmxde>
The POV-Ray Team(tm) is not responsible for supporting this version.

Environment
-----------
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether $C_INCLUDE_PATH contains the "." path... no
checking whether $CPLUS_INCLUDE_PATH contains the "." path... no

Programs
--------
checking for gcc... gcc
checking whether the C compiler works... no
configure: error: in `/media/Raytracing/povray-3.7-stable':
configure: error: C compiler cannot create executables
See `config.log' for more details

// end messages

See you in Khyberspace!

Yadgar

Now playing: My Life (Simple Minds)


Post a reply to this message

From: "Jörg \"Yadgar\" Bleimann"
Subject: Re: Compiling POV-Ray 3.7, second attempt
Date: 27 Jul 2015 19:06:51
Message: <55b6b98b$1@news.povray.org>
Hi(gh)!

Oh, yes, and attached here is the config.log...

See you in Khyberspace!

Yadgar


Post a reply to this message


Attachments:
Download 'us-ascii' (10 KB)

From: "Jörg \"Yadgar\" Bleimann"
Subject: Re: Compiling POV-Ray 3.7, second attempt
Date: 27 Jul 2015 19:13:08
Message: <55b6bb04@news.povray.org>
Hi(gh)!

On 27.07.2015 21:13, James Holsenback wrote:

> openexr-devel - Library to Handle EXR Pictures (16-bit floating-point
> format)

Not available with my current repository list...

> libSDL-devel - SDL Library Developer Files

X support really would be a fine amenity - with my recent installations 
of POV-Ray 3.6 (and also 3.7) I wondered while POV-Ray displays no 
correct rendering window (but rather a discoloration of other windows 
present on the screen), while with an installation of 3.6 some three 
years ago, the window was displayed correctly!

But I would like to postpone the installation of these packages until I 
got 3.7 to work at all...

See you in Khyberspace!

Yadgar


Post a reply to this message

From: "Jörg \"Yadgar\" Bleimann"
Subject: Re: Compiling POV-Ray 3.7, second attempt
Date: 27 Jul 2015 23:42:47
Message: <55b6fa37@news.povray.org>
On 26.07.2015 19:57, green wrote:

> my configure line finally ended up being
> ../configure COMPILED_BY="whatever..." --with-boost-thread=boost_thread
> LIBS="-lboost_system -lboost_thread"
> i got there by carefully comparing various recommendations and then typing like
> a monkey, randomly.

Also does not work... here are the messages:

===============================================================================
Configure POV-Ray version 3.7.0
===============================================================================

This is an unofficial version compiled by:

The POV-Ray Team(tm) is not responsible for supporting this version.

Environment
-----------
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether $C_INCLUDE_PATH contains the "." path... no
checking whether $CPLUS_INCLUDE_PATH contains the "." path... no

Programs
--------
checking for gcc... gcc
checking whether the C compiler works... no
configure: error: in `/media/Raytracing/povray-3.7-stable':
configure: error: C compiler cannot create executables
See `config.log' for more details

// end messages

config.log is attached!

See you in Khyberspace!

Yadgar


Post a reply to this message


Attachments:
Download 'us-ascii' (10 KB)

From: Le Forgeron
Subject: Re: Compiling POV-Ray 3.7, second attempt
Date: 28 Jul 2015 02:11:28
Message: <55b71d10@news.povray.org>
Le 28/07/2015 05:42, "Jörg \"Yadgar\" Bleimann" a écrit :
> configure:4732: gcc    conftest.c -lboost_system -lboost_thread >&5
> /usr/bin/ld: cannot find -lboost_system
> /usr/bin/ld: cannot find -lboost_thread
> collect2: error: ld returned 1 exit status
> configure:4736: $? = 1

of course the package libboost-all-dev was installed, wasn't it ?

And it installed libboost-system-dev and libboost-thread-dev ?


Post a reply to this message

From: "Jörg \"Yadgar\" Bleimann"
Subject: Re: Compiling POV-Ray 3.7, second attempt
Date: 28 Jul 2015 07:10:12
Message: <55b76314@news.povray.org>
Hi(gh)!

On 28.07.2015 08:11, Le_Forgeron wrote:

> of course the package libboost-all-dev was installed, wasn't it ?

No, it wasn't! So I did afterwards...

> And it installed libboost-system-dev and libboost-thread-dev ?

No, but rather libboost-system1-dev and libboost-thread1-dev, the latter 
in two versions!

Now, on entering

./configure COMPILED_BY="Jörg \"Yadgar\" Bleimann <yaz### [at] gmxde>" 
--with-boost-thread=boost_thread LIBS="-lboost_system -lboost_thread"

I get:

// begin messages

===============================================================================
Configure POV-Ray version 3.7.0
===============================================================================

This is an unofficial version compiled by:
  Jörg "Yadgar" Bleimann <yaz### [at] gmxde>
The POV-Ray Team(tm) is not responsible for supporting this version.

Environment
-----------
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether $C_INCLUDE_PATH contains the "." path... no
checking whether $CPLUS_INCLUDE_PATH contains the "." path... no

Programs
--------
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for stdlib.h... (cached) yes
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking whether the g++ compiler works... yes
checking how to run the C++ preprocessor... g++ -E
checking for C++ compiler vendor... gnu
checking for g++ version... 4.7
checking for ranlib... ranlib

Libraries
---------
checking whether to link with cygwin DLL... no
checking whether to enable static linking... no
checking for the pthreads library -lpthreads... no
checking whether pthreads work without any flags... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking if more special flags are required for pthreads... no
checking for boostlib >= 1.37... yes
checking whether the Boost::Thread library is available... yes
checking for exit in -lboost_thread... yes
checking whether the boost thread library is usable... yes
checking for sin in -lmkl... no
checking for sin in -lm... yes
checking for clock_gettime in -lrt... yes
checking whether to use the ZLIB library... yes
checking for library containing zlibVersion... -lz
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking for libz version >= 1.2.1... 1.2.7, ok
checking whether to use the PNG library... yes
checking for library containing png_get_libpng_ver... -lpng
checking png.h usability... yes
checking png.h presence... yes
checking for png.h... yes
checking for libpng version >= 1.2.5... 1.2.49, ok
checking whether to use the JPEG library... yes
checking for library containing jpeg_std_error... -ljpeg
checking jpeglib.h usability... yes
checking jpeglib.h presence... yes
checking for jpeglib.h... yes
checking for libjpeg version >= 6b (62)... 80, ok
checking whether to use the TIFF library... yes
checking for library containing TIFFGetVersion... -ltiff
checking tiffio.h usability... yes
checking tiffio.h presence... yes
checking for tiffio.h... yes
checking for libtiff version >= 3.6.1... 4.0.2, ok
checking whether to use the OpenEXR library... yes
checking for pkg-config... no
checking for OpenEXR's pkg-config... not found
configure: WARNING: all program features using the OpenEXR library are 
disabled
checking for X... libraries /usr/lib, headers /usr/include
checking whether -R must be followed by a space... neither works
checking for dnet_ntoa in -ldnet... no
checking for dnet_ntoa in -ldnet_stub... no
checking for gethostbyname... yes
checking for connect... yes
checking for remove... yes
checking for shmat... yes
checking for IceConnectionNumber in -lICE... no
checking X11/Xlib.h usability... no
checking X11/Xlib.h presence... no
checking for X11/Xlib.h... no

Language constructs and functions
---------------------------------
checking whether time.h and sys/time.h may both be included... yes
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for unistd.h... (cached) yes
checking for size_t... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking size of int... 4
checking size of long int... 8
checking size of size_t... 8
checking size of float... 4
checking for working memcmp... yes
checking for vsnprintf... yes
checking for getcwd... yes
checking for readlink... yes
checking for nanosleep... yes
checking for clock_gettime... yes
checking for getrusage... yes
checking for gettimeofday... yes
checking for asinh... yes

Compiling
---------
checking whether to enable pipes for communications... yes
checking whether g++ accepts -pipe... yes
checking whether g++ accepts -Wno-multichar... yes
checking whether g++ accepts -Wno-write-strings... yes
checking whether g++ accepts -fno-enforce-eh-specs... yes
checking whether to enable I/O restrictions... yes
checking whether to enable debugging... no
checking whether to enable profiling... no
checking whether to enable stripping... yes
checking whether g++ accepts -s... yes
checking whether to enable optimizations... yes
checking whether g++ accepts -O3... yes
checking whether g++ accepts -ffast-math... yes
checking whether to enable architecture-specific optimizations... yes
checking whether g++ accepts -xHost... no
checking whether g++ accepts -march=native... yes
checking which architecture to optimize for... x86_64-unknown-linux-gnu 
(using -march=native)

Makefiles
---------
configure: creating ./config.status
config.status: creating Makefile
config.status: creating source/Makefile
config.status: creating vfe/Makefile
config.status: creating unix/Makefile
config.status: creating config.h
config.status: executing depfiles commands

===============================================================================
POV-Ray 3.7.0 has been configured.

Built-in features:
   I/O restrictions:          enabled
   X Window display:          disabled
   Supported image formats:   gif tga iff ppm pgm hdr png jpeg tiff
   Unsupported image formats: openexr

Compilation settings:
   Build architecture:  x86_64-unknown-linux-gnu
   Built/Optimized for: x86_64-unknown-linux-gnu (using -march=native)
   Compiler vendor:     gnu
   Compiler version:    g++ 4.7
   Compiler flags:      -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native

Type 'make check' to build the program and run a test render.
Type 'make install' to install POV-Ray on your system.

The POV-Ray components will be installed in the following directories:
   Program (executable):       /usr/local/bin
   System configuration files: /usr/local/etc/povray/3.7
   User configuration files:   /root/.povray/3.7
   Standard include files:     /usr/local/share/povray-3.7/include
   Standard INI files:         /usr/local/share/povray-3.7/ini
   Standard demo scene files:  /usr/local/share/povray-3.7/scenes
   Documentation (text, HTML): /usr/local/share/doc/povray-3.7
   Unix man page:              /usr/local/share/man
===============================================================================

// end messages

Looks like all worked fine!

Onward with make:

// begin messages

make  all-recursive
make[1]: Entering directory `/media/Raytracing/povray-3.7-stable'
Making all in source
make[2]: Entering directory `/media/Raytracing/povray-3.7-stable/source'
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT pov_mem.o -MD 
-MP -MF .deps/pov_mem.Tpo -c -o pov_mem.o pov_mem.cpp
mv -f .deps/pov_mem.Tpo .deps/pov_mem.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT optout.o -MD 
-MP -MF .deps/optout.Tpo -c -o optout.o optout.cpp
mv -f .deps/optout.Tpo .deps/optout.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT lightgrp.o 
-MD -MP -MF .deps/lightgrp.Tpo -c -o lightgrp.o lightgrp.cpp
mv -f .deps/lightgrp.Tpo .deps/lightgrp.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT colour.o -MD 
-MP -MF .deps/colour.Tpo -c -o colour.o `test -f 
'backend/colour/colour.cpp' || echo './'`backend/colour/colour.cpp
mv -f .deps/colour.Tpo .deps/colour.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT spectral.o 
-MD -MP -MF .deps/spectral.Tpo -c -o spectral.o `test -f 
'backend/colour/spectral.cpp' || echo './'`backend/colour/spectral.cpp
mv -f .deps/spectral.Tpo .deps/spectral.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT colutils.o 
-MD -MP -MF .deps/colutils.Tpo -c -o colutils.o `test -f 
'backend/colour/colutils.cpp' || echo './'`backend/colour/colutils.cpp
mv -f .deps/colutils.Tpo .deps/colutils.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT polysolv.o 
-MD -MP -MF .deps/polysolv.Tpo -c -o polysolv.o `test -f 
'backend/math/polysolv.cpp' || echo './'`backend/math/polysolv.cpp
mv -f .deps/polysolv.Tpo .deps/polysolv.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT splines.o -MD 
-MP -MF .deps/splines.Tpo -c -o splines.o `test -f 
'backend/math/splines.cpp' || echo './'`backend/math/splines.cpp
mv -f .deps/splines.Tpo .deps/splines.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT chi2.o -MD 
-MP -MF .deps/chi2.Tpo -c -o chi2.o `test -f 'backend/math/chi2.cpp' || 
echo './'`backend/math/chi2.cpp
mv -f .deps/chi2.Tpo .deps/chi2.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT quatern.o -MD 
-MP -MF .deps/quatern.Tpo -c -o quatern.o `test -f 
'backend/math/quatern.cpp' || echo './'`backend/math/quatern.cpp
mv -f .deps/quatern.Tpo .deps/quatern.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT mathutil.o 
-MD -MP -MF .deps/mathutil.Tpo -c -o mathutil.o `test -f 
'backend/math/mathutil.cpp' || echo './'`backend/math/mathutil.cpp
mv -f .deps/mathutil.Tpo .deps/mathutil.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT hcmplx.o -MD 
-MP -MF .deps/hcmplx.Tpo -c -o hcmplx.o `test -f 
'backend/math/hcmplx.cpp' || echo './'`backend/math/hcmplx.cpp
mv -f .deps/hcmplx.Tpo .deps/hcmplx.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT matrices.o 
-MD -MP -MF .deps/matrices.Tpo -c -o matrices.o `test -f 
'backend/math/matrices.cpp' || echo './'`backend/math/matrices.cpp
mv -f .deps/matrices.Tpo .deps/matrices.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT povray.o -MD 
-MP -MF .deps/povray.Tpo -c -o povray.o `test -f 'backend/povray.cpp' || 
echo './'`backend/povray.cpp
backend/povray.cpp: In function ‘void 
{anonymous}::BuildInitInfo(POVMSObjectPtr)’:
backend/povray.cpp:265:57: error: expected ‘)’ before ‘Yadgar’
make[2]: *** [povray.o] Fehler 1
make[2]: Leaving directory `/media/Raytracing/povray-3.7-stable/source'
make[1]: *** [all-recursive] Fehler 1
make[1]: Leaving directory `/media/Raytracing/povray-3.7-stable'
make: *** [all] Fehler 2

// end messages

Whoops! Another glitch in the call ;-) Seems it is because of incorrect 
masking of " in configure, so I try configure using 'Yadgar' instead of 
"Yadgar"... and then make:

// begin messages

make  all-recursive
make[1]: Entering directory `/media/Raytracing/povray-3.7-stable'
Making all in source
make[2]: Entering directory `/media/Raytracing/povray-3.7-stable/source'
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT pov_mem.o -MD 
-MP -MF .deps/pov_mem.Tpo -c -o pov_mem.o pov_mem.cpp
mv -f .deps/pov_mem.Tpo .deps/pov_mem.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT optout.o -MD 
-MP -MF .deps/optout.Tpo -c -o optout.o optout.cpp
mv -f .deps/optout.Tpo .deps/optout.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT lightgrp.o 
-MD -MP -MF .deps/lightgrp.Tpo -c -o lightgrp.o lightgrp.cpp
mv -f .deps/lightgrp.Tpo .deps/lightgrp.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT colour.o -MD 
-MP -MF .deps/colour.Tpo -c -o colour.o `test -f 
'backend/colour/colour.cpp' || echo './'`backend/colour/colour.cpp
mv -f .deps/colour.Tpo .deps/colour.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT spectral.o 
-MD -MP -MF .deps/spectral.Tpo -c -o spectral.o `test -f 
'backend/colour/spectral.cpp' || echo './'`backend/colour/spectral.cpp
mv -f .deps/spectral.Tpo .deps/spectral.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT colutils.o 
-MD -MP -MF .deps/colutils.Tpo -c -o colutils.o `test -f 
'backend/colour/colutils.cpp' || echo './'`backend/colour/colutils.cpp
mv -f .deps/colutils.Tpo .deps/colutils.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT polysolv.o 
-MD -MP -MF .deps/polysolv.Tpo -c -o polysolv.o `test -f 
'backend/math/polysolv.cpp' || echo './'`backend/math/polysolv.cpp
mv -f .deps/polysolv.Tpo .deps/polysolv.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT splines.o -MD 
-MP -MF .deps/splines.Tpo -c -o splines.o `test -f 
'backend/math/splines.cpp' || echo './'`backend/math/splines.cpp
mv -f .deps/splines.Tpo .deps/splines.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT chi2.o -MD 
-MP -MF .deps/chi2.Tpo -c -o chi2.o `test -f 'backend/math/chi2.cpp' || 
echo './'`backend/math/chi2.cpp
mv -f .deps/chi2.Tpo .deps/chi2.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT quatern.o -MD 
-MP -MF .deps/quatern.Tpo -c -o quatern.o `test -f 
'backend/math/quatern.cpp' || echo './'`backend/math/quatern.cpp
mv -f .deps/quatern.Tpo .deps/quatern.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT mathutil.o 
-MD -MP -MF .deps/mathutil.Tpo -c -o mathutil.o `test -f 
'backend/math/mathutil.cpp' || echo './'`backend/math/mathutil.cpp
mv -f .deps/mathutil.Tpo .deps/mathutil.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT hcmplx.o -MD 
-MP -MF .deps/hcmplx.Tpo -c -o hcmplx.o `test -f 
'backend/math/hcmplx.cpp' || echo './'`backend/math/hcmplx.cpp
mv -f .deps/hcmplx.Tpo .deps/hcmplx.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT matrices.o 
-MD -MP -MF .deps/matrices.Tpo -c -o matrices.o `test -f 
'backend/math/matrices.cpp' || echo './'`backend/math/matrices.cpp
mv -f .deps/matrices.Tpo .deps/matrices.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT povray.o -MD 
-MP -MF .deps/povray.Tpo -c -o povray.o `test -f 'backend/povray.cpp' || 
echo './'`backend/povray.cpp
mv -f .deps/povray.Tpo .deps/povray.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
renderbackend.o -MD -MP -MF .deps/renderbackend.Tpo -c -o 
renderbackend.o `test -f 'backend/control/renderbackend.cpp' || echo 
'./'`backend/control/renderbackend.cpp
mv -f .deps/renderbackend.Tpo .deps/renderbackend.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT benchmark.o 
-MD -MP -MF .deps/benchmark.Tpo -c -o benchmark.o `test -f 
'backend/control/benchmark.cpp' || echo './'`backend/control/benchmark.cpp
mv -f .deps/benchmark.Tpo .deps/benchmark.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
messagefactory.o -MD -MP -MF .deps/messagefactory.Tpo -c -o 
messagefactory.o `test -f 'backend/control/messagefactory.cpp' || echo 
'./'`backend/control/messagefactory.cpp
mv -f .deps/messagefactory.Tpo .deps/messagefactory.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT fncode.o -MD 
-MP -MF .deps/fncode.Tpo -c -o fncode.o `test -f 'backend/vm/fncode.cpp' 
|| echo './'`backend/vm/fncode.cpp
mv -f .deps/fncode.Tpo .deps/fncode.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT fnpovfpu.o 
-MD -MP -MF .deps/fnpovfpu.Tpo -c -o fnpovfpu.o `test -f 
'backend/vm/fnpovfpu.cpp' || echo './'`backend/vm/fnpovfpu.cpp
mv -f .deps/fnpovfpu.Tpo .deps/fnpovfpu.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT fnintern.o 
-MD -MP -MF .deps/fnintern.Tpo -c -o fnintern.o `test -f 
'backend/vm/fnintern.cpp' || echo './'`backend/vm/fnintern.cpp
mv -f .deps/fnintern.Tpo .deps/fnintern.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT normal.o -MD 
-MP -MF .deps/normal.Tpo -c -o normal.o `test -f 
'backend/texture/normal.cpp' || echo './'`backend/texture/normal.cpp
mv -f .deps/normal.Tpo .deps/normal.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT pigment.o -MD 
-MP -MF .deps/pigment.Tpo -c -o pigment.o `test -f 
'backend/texture/pigment.cpp' || echo './'`backend/texture/pigment.cpp
mv -f .deps/pigment.Tpo .deps/pigment.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT texture.o -MD 
-MP -MF .deps/texture.Tpo -c -o texture.o `test -f 
'backend/texture/texture.cpp' || echo './'`backend/texture/texture.cpp
mv -f .deps/texture.Tpo .deps/texture.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT interior.o 
-MD -MP -MF .deps/interior.Tpo -c -o interior.o `test -f 
'backend/interior/interior.cpp' || echo './'`backend/interior/interior.cpp
mv -f .deps/interior.Tpo .deps/interior.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT media.o -MD 
-MP -MF .deps/media.Tpo -c -o media.o `test -f 
'backend/interior/media.cpp' || echo './'`backend/interior/media.cpp
mv -f .deps/media.Tpo .deps/media.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT ray.o -MD -MP 
-MF .deps/ray.Tpo -c -o ray.o `test -f 'backend/render/ray.cpp' || echo 
'./'`backend/render/ray.cpp
mv -f .deps/ray.Tpo .deps/ray.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT tracetask.o 
-MD -MP -MF .deps/tracetask.Tpo -c -o tracetask.o `test -f 
'backend/render/tracetask.cpp' || echo './'`backend/render/tracetask.cpp
mv -f .deps/tracetask.Tpo .deps/tracetask.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
radiositytask.o -MD -MP -MF .deps/radiositytask.Tpo -c -o 
radiositytask.o `test -f 'backend/render/radiositytask.cpp' || echo 
'./'`backend/render/radiositytask.cpp
mv -f .deps/radiositytask.Tpo .deps/radiositytask.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT tracepixel.o 
-MD -MP -MF .deps/tracepixel.Tpo -c -o tracepixel.o `test -f 
'backend/render/tracepixel.cpp' || echo './'`backend/render/tracepixel.cpp
mv -f .deps/tracepixel.Tpo .deps/tracepixel.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT trace.o -MD 
-MP -MF .deps/trace.Tpo -c -o trace.o `test -f 
'backend/render/trace.cpp' || echo './'`backend/render/trace.cpp
mv -f .deps/trace.Tpo .deps/trace.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT rendertask.o 
-MD -MP -MF .deps/rendertask.Tpo -c -o rendertask.o `test -f 
'backend/render/rendertask.cpp' || echo './'`backend/render/rendertask.cpp
mv -f .deps/rendertask.Tpo .deps/rendertask.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
boundingtask.o -MD -MP -MF .deps/boundingtask.Tpo -c -o boundingtask.o 
`test -f 'backend/bounding/boundingtask.cpp' || echo 
'./'`backend/bounding/boundingtask.cpp
mv -f .deps/boundingtask.Tpo .deps/boundingtask.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT bcyl.o -MD 
-MP -MF .deps/bcyl.Tpo -c -o bcyl.o `test -f 'backend/bounding/bcyl.cpp' 
|| echo './'`backend/bounding/bcyl.cpp
mv -f .deps/bcyl.Tpo .deps/bcyl.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT bsphere.o -MD 
-MP -MF .deps/bsphere.Tpo -c -o bsphere.o `test -f 
'backend/bounding/bsphere.cpp' || echo './'`backend/bounding/bsphere.cpp
mv -f .deps/bsphere.Tpo .deps/bsphere.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT bbox.o -MD 
-MP -MF .deps/bbox.Tpo -c -o bbox.o `test -f 'backend/bounding/bbox.cpp' 
|| echo './'`backend/bounding/bbox.cpp
mv -f .deps/bbox.Tpo .deps/bbox.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT view.o -MD 
-MP -MF .deps/view.Tpo -c -o view.o `test -f 'backend/scene/view.cpp' || 
echo './'`backend/scene/view.cpp
mv -f .deps/view.Tpo .deps/view.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT threaddata.o 
-MD -MP -MF .deps/threaddata.Tpo -c -o threaddata.o `test -f 
'backend/scene/threaddata.cpp' || echo './'`backend/scene/threaddata.cpp
mv -f .deps/threaddata.Tpo .deps/threaddata.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT scene.o -MD 
-MP -MF .deps/scene.Tpo -c -o scene.o `test -f 'backend/scene/scene.cpp' 
|| echo './'`backend/scene/scene.cpp
mv -f .deps/scene.Tpo .deps/scene.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT atmosph.o -MD 
-MP -MF .deps/atmosph.Tpo -c -o atmosph.o `test -f 
'backend/scene/atmosph.cpp' || echo './'`backend/scene/atmosph.cpp
mv -f .deps/atmosph.Tpo .deps/atmosph.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT objects.o -MD 
-MP -MF .deps/objects.Tpo -c -o objects.o `test -f 
'backend/scene/objects.cpp' || echo './'`backend/scene/objects.cpp
mv -f .deps/objects.Tpo .deps/objects.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT camera.o -MD 
-MP -MF .deps/camera.Tpo -c -o camera.o `test -f 
'backend/scene/camera.cpp' || echo './'`backend/scene/camera.cpp
mv -f .deps/camera.Tpo .deps/camera.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
photonshootingtask.o -MD -MP -MF .deps/photonshootingtask.Tpo -c -o 
photonshootingtask.o `test -f 'backend/lighting/photonshootingtask.cpp' 
|| echo './'`backend/lighting/photonshootingtask.cpp
mv -f .deps/photonshootingtask.Tpo .deps/photonshootingtask.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT rad_data.o 
-MD -MP -MF .deps/rad_data.Tpo -c -o rad_data.o `test -f 
'backend/lighting/rad_data.cpp' || echo './'`backend/lighting/rad_data.cpp
mv -f .deps/rad_data.Tpo .deps/rad_data.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT point.o -MD 
-MP -MF .deps/point.Tpo -c -o point.o `test -f 
'backend/lighting/point.cpp' || echo './'`backend/lighting/point.cpp
mv -f .deps/point.Tpo .deps/point.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT subsurface.o 
-MD -MP -MF .deps/subsurface.Tpo -c -o subsurface.o `test -f 
'backend/lighting/subsurface.cpp' || echo 
'./'`backend/lighting/subsurface.cpp
mv -f .deps/subsurface.Tpo .deps/subsurface.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
photonsortingtask.o -MD -MP -MF .deps/photonsortingtask.Tpo -c -o 
photonsortingtask.o `test -f 'backend/lighting/photonsortingtask.cpp' || 
echo './'`backend/lighting/photonsortingtask.cpp
mv -f .deps/photonsortingtask.Tpo .deps/photonsortingtask.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
photonshootingstrategy.o -MD -MP -MF .deps/photonshootingstrategy.Tpo -c 
-o photonshootingstrategy.o `test -f 
'backend/lighting/photonshootingstrategy.cpp' || echo 
'./'`backend/lighting/photonshootingstrategy.cpp
mv -f .deps/photonshootingstrategy.Tpo .deps/photonshootingstrategy.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
photonstrategytask.o -MD -MP -MF .deps/photonstrategytask.Tpo -c -o 
photonstrategytask.o `test -f 'backend/lighting/photonstrategytask.cpp' 
|| echo './'`backend/lighting/photonstrategytask.cpp
mv -f .deps/photonstrategytask.Tpo .deps/photonstrategytask.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT photons.o -MD 
-MP -MF .deps/photons.Tpo -c -o photons.o `test -f 
'backend/lighting/photons.cpp' || echo './'`backend/lighting/photons.cpp
mv -f .deps/photons.Tpo .deps/photons.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT radiosity.o 
-MD -MP -MF .deps/radiosity.Tpo -c -o radiosity.o `test -f 
'backend/lighting/radiosity.cpp' || echo './'`backend/lighting/radiosity.cpp
mv -f .deps/radiosity.Tpo .deps/radiosity.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
photonestimationtask.o -MD -MP -MF .deps/photonestimationtask.Tpo -c -o 
photonestimationtask.o `test -f 
'backend/lighting/photonestimationtask.cpp' || echo 
'./'`backend/lighting/photonestimationtask.cpp
mv -f .deps/photonestimationtask.Tpo .deps/photonestimationtask.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT reswords.o 
-MD -MP -MF .deps/reswords.Tpo -c -o reswords.o `test -f 
'backend/parser/reswords.cpp' || echo './'`backend/parser/reswords.cpp
mv -f .deps/reswords.Tpo .deps/reswords.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT parsestr.o 
-MD -MP -MF .deps/parsestr.Tpo -c -o parsestr.o `test -f 
'backend/parser/parsestr.cpp' || echo './'`backend/parser/parsestr.cpp
mv -f .deps/parsestr.Tpo .deps/parsestr.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT function.o 
-MD -MP -MF .deps/function.Tpo -c -o function.o `test -f 
'backend/parser/function.cpp' || echo './'`backend/parser/function.cpp
mv -f .deps/function.Tpo .deps/function.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT express.o -MD 
-MP -MF .deps/express.Tpo -c -o express.o `test -f 
'backend/parser/express.cpp' || echo './'`backend/parser/express.cpp
mv -f .deps/express.Tpo .deps/express.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT fnsyntax.o 
-MD -MP -MF .deps/fnsyntax.Tpo -c -o fnsyntax.o `test -f 
'backend/parser/fnsyntax.cpp' || echo './'`backend/parser/fnsyntax.cpp
mv -f .deps/fnsyntax.Tpo .deps/fnsyntax.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT parse.o -MD 
-MP -MF .deps/parse.Tpo -c -o parse.o `test -f 
'backend/parser/parse.cpp' || echo './'`backend/parser/parse.cpp
mv -f .deps/parse.Tpo .deps/parse.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT tokenize.o 
-MD -MP -MF .deps/tokenize.Tpo -c -o tokenize.o `test -f 
'backend/parser/tokenize.cpp' || echo './'`backend/parser/tokenize.cpp
mv -f .deps/tokenize.Tpo .deps/tokenize.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT parstxtr.o 
-MD -MP -MF .deps/parstxtr.Tpo -c -o parstxtr.o `test -f 
'backend/parser/parstxtr.cpp' || echo './'`backend/parser/parstxtr.cpp
mv -f .deps/parstxtr.Tpo .deps/parstxtr.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT pattern.o -MD 
-MP -MF .deps/pattern.Tpo -c -o pattern.o `test -f 
'backend/pattern/pattern.cpp' || echo './'`backend/pattern/pattern.cpp
mv -f .deps/pattern.Tpo .deps/pattern.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT warps.o -MD 
-MP -MF .deps/warps.Tpo -c -o warps.o `test -f 
'backend/pattern/warps.cpp' || echo './'`backend/pattern/warps.cpp
mv -f .deps/warps.Tpo .deps/warps.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT csg.o -MD -MP 
-MF .deps/csg.Tpo -c -o csg.o `test -f 'backend/shape/csg.cpp' || echo 
'./'`backend/shape/csg.cpp
mv -f .deps/csg.Tpo .deps/csg.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT isosurf.o -MD 
-MP -MF .deps/isosurf.Tpo -c -o isosurf.o `test -f 
'backend/shape/isosurf.cpp' || echo './'`backend/shape/isosurf.cpp
mv -f .deps/isosurf.Tpo .deps/isosurf.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT quadrics.o 
-MD -MP -MF .deps/quadrics.Tpo -c -o quadrics.o `test -f 
'backend/shape/quadrics.cpp' || echo './'`backend/shape/quadrics.cpp
mv -f .deps/quadrics.Tpo .deps/quadrics.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT discs.o -MD 
-MP -MF .deps/discs.Tpo -c -o discs.o `test -f 'backend/shape/discs.cpp' 
|| echo './'`backend/shape/discs.cpp
mv -f .deps/discs.Tpo .deps/discs.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT mesh.o -MD 
-MP -MF .deps/mesh.Tpo -c -o mesh.o `test -f 'backend/shape/mesh.cpp' || 
echo './'`backend/shape/mesh.cpp
mv -f .deps/mesh.Tpo .deps/mesh.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT lathe.o -MD 
-MP -MF .deps/lathe.Tpo -c -o lathe.o `test -f 'backend/shape/lathe.cpp' 
|| echo './'`backend/shape/lathe.cpp
mv -f .deps/lathe.Tpo .deps/lathe.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT torus.o -MD 
-MP -MF .deps/torus.Tpo -c -o torus.o `test -f 'backend/shape/torus.cpp' 
|| echo './'`backend/shape/torus.cpp
mv -f .deps/torus.Tpo .deps/torus.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT polygon.o -MD 
-MP -MF .deps/polygon.Tpo -c -o polygon.o `test -f 
'backend/shape/polygon.cpp' || echo './'`backend/shape/polygon.cpp
mv -f .deps/polygon.Tpo .deps/polygon.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT hfield.o -MD 
-MP -MF .deps/hfield.Tpo -c -o hfield.o `test -f 
'backend/shape/hfield.cpp' || echo './'`backend/shape/hfield.cpp
mv -f .deps/hfield.Tpo .deps/hfield.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT fpmetric.o 
-MD -MP -MF .deps/fpmetric.Tpo -c -o fpmetric.o `test -f 
'backend/shape/fpmetric.cpp' || echo './'`backend/shape/fpmetric.cpp
mv -f .deps/fpmetric.Tpo .deps/fpmetric.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT poly.o -MD 
-MP -MF .deps/poly.Tpo -c -o poly.o `test -f 'backend/shape/poly.cpp' || 
echo './'`backend/shape/poly.cpp
mv -f .deps/poly.Tpo .deps/poly.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT sphsweep.o 
-MD -MP -MF .deps/sphsweep.Tpo -c -o sphsweep.o `test -f 
'backend/shape/sphsweep.cpp' || echo './'`backend/shape/sphsweep.cpp
mv -f .deps/sphsweep.Tpo .deps/sphsweep.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT truetype.o 
-MD -MP -MF .deps/truetype.Tpo -c -o truetype.o `test -f 
'backend/shape/truetype.cpp' || echo './'`backend/shape/truetype.cpp
mv -f .deps/truetype.Tpo .deps/truetype.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT super.o -MD 
-MP -MF .deps/super.Tpo -c -o super.o `test -f 'backend/shape/super.cpp' 
|| echo './'`backend/shape/super.cpp
mv -f .deps/super.Tpo .deps/super.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT triangle.o 
-MD -MP -MF .deps/triangle.Tpo -c -o triangle.o `test -f 
'backend/shape/triangle.cpp' || echo './'`backend/shape/triangle.cpp
mv -f .deps/triangle.Tpo .deps/triangle.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT prism.o -MD 
-MP -MF .deps/prism.Tpo -c -o prism.o `test -f 'backend/shape/prism.cpp' 
|| echo './'`backend/shape/prism.cpp
mv -f .deps/prism.Tpo .deps/prism.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT blob.o -MD 
-MP -MF .deps/blob.Tpo -c -o blob.o `test -f 'backend/shape/blob.cpp' || 
echo './'`backend/shape/blob.cpp
mv -f .deps/blob.Tpo .deps/blob.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT boxes.o -MD 
-MP -MF .deps/boxes.Tpo -c -o boxes.o `test -f 'backend/shape/boxes.cpp' 
|| echo './'`backend/shape/boxes.cpp
mv -f .deps/boxes.Tpo .deps/boxes.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT cones.o -MD 
-MP -MF .deps/cones.Tpo -c -o cones.o `test -f 'backend/shape/cones.cpp' 
|| echo './'`backend/shape/cones.cpp
mv -f .deps/cones.Tpo .deps/cones.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT ovus.o -MD 
-MP -MF .deps/ovus.Tpo -c -o ovus.o `test -f 'backend/shape/ovus.cpp' || 
echo './'`backend/shape/ovus.cpp
mv -f .deps/ovus.Tpo .deps/ovus.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT bezier.o -MD 
-MP -MF .deps/bezier.Tpo -c -o bezier.o `test -f 
'backend/shape/bezier.cpp' || echo './'`backend/shape/bezier.cpp
mv -f .deps/bezier.Tpo .deps/bezier.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT sor.o -MD -MP 
-MF .deps/sor.Tpo -c -o sor.o `test -f 'backend/shape/sor.cpp' || echo 
'./'`backend/shape/sor.cpp
mv -f .deps/sor.Tpo .deps/sor.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT spheres.o -MD 
-MP -MF .deps/spheres.Tpo -c -o spheres.o `test -f 
'backend/shape/spheres.cpp' || echo './'`backend/shape/spheres.cpp
mv -f .deps/spheres.Tpo .deps/spheres.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT fractal.o -MD 
-MP -MF .deps/fractal.Tpo -c -o fractal.o `test -f 
'backend/shape/fractal.cpp' || echo './'`backend/shape/fractal.cpp
mv -f .deps/fractal.Tpo .deps/fractal.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT planes.o -MD 
-MP -MF .deps/planes.Tpo -c -o planes.o `test -f 
'backend/shape/planes.cpp' || echo './'`backend/shape/planes.cpp
mv -f .deps/planes.Tpo .deps/planes.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT jitter.o -MD 
-MP -MF .deps/jitter.Tpo -c -o jitter.o `test -f 
'backend/support/jitter.cpp' || echo './'`backend/support/jitter.cpp
mv -f .deps/jitter.Tpo .deps/jitter.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT msgutil.o -MD 
-MP -MF .deps/msgutil.Tpo -c -o msgutil.o `test -f 
'backend/support/msgutil.cpp' || echo './'`backend/support/msgutil.cpp
mv -f .deps/msgutil.Tpo .deps/msgutil.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT statistics.o 
-MD -MP -MF .deps/statistics.Tpo -c -o statistics.o `test -f 
'backend/support/statistics.cpp' || echo './'`backend/support/statistics.cpp
mv -f .deps/statistics.Tpo .deps/statistics.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT task.o -MD 
-MP -MF .deps/task.Tpo -c -o task.o `test -f 'backend/support/task.cpp' 
|| echo './'`backend/support/task.cpp
mv -f .deps/task.Tpo .deps/task.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
randomsequences.o -MD -MP -MF .deps/randomsequences.Tpo -c -o 
randomsequences.o `test -f 'backend/support/randomsequences.cpp' || echo 
'./'`backend/support/randomsequences.cpp
mv -f .deps/randomsequences.Tpo .deps/randomsequences.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT imageutil.o 
-MD -MP -MF .deps/imageutil.Tpo -c -o imageutil.o `test -f 
'backend/support/imageutil.cpp' || echo './'`backend/support/imageutil.cpp
mv -f .deps/imageutil.Tpo .deps/imageutil.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT octree.o -MD 
-MP -MF .deps/octree.Tpo -c -o octree.o `test -f 
'backend/support/octree.cpp' || echo './'`backend/support/octree.cpp
mv -f .deps/octree.Tpo .deps/octree.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT taskqueue.o 
-MD -MP -MF .deps/taskqueue.Tpo -c -o taskqueue.o `test -f 
'backend/support/taskqueue.cpp' || echo './'`backend/support/taskqueue.cpp
mv -f .deps/taskqueue.Tpo .deps/taskqueue.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT fileutil.o 
-MD -MP -MF .deps/fileutil.Tpo -c -o fileutil.o `test -f 
'backend/support/fileutil.cpp' || echo './'`backend/support/fileutil.cpp
mv -f .deps/fileutil.Tpo .deps/fileutil.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT bsptree.o -MD 
-MP -MF .deps/bsptree.Tpo -c -o bsptree.o `test -f 
'backend/support/bsptree.cpp' || echo './'`backend/support/bsptree.cpp
mv -f .deps/bsptree.Tpo .deps/bsptree.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
renderfrontend.o -MD -MP -MF .deps/renderfrontend.Tpo -c -o 
renderfrontend.o `test -f 'frontend/renderfrontend.cpp' || echo 
'./'`frontend/renderfrontend.cpp
frontend/renderfrontend.cpp: In member function ‘void 
pov_frontend::RenderFrontendBase::NewBackup(POVMS_Object&, 
pov_frontend::ViewData&, const pov_base::Path&)’:
frontend/renderfrontend.cpp:617:50: warning: converting ‘false’ to 
pointer type ‘const void*’ [-Wconversion-null]
frontend/renderfrontend.cpp: In member function ‘void 
pov_frontend::RenderFrontendBase::ContinueBackup(POVMS_Object&, 
pov_frontend::ViewData&, pov_frontend::RenderFrontendBase::ViewId, int&, 
std::vector<int>&, const pov_base::Path&)’:
frontend/renderfrontend.cpp:670:47: warning: converting ‘false’ to 
pointer type ‘const void*’ [-Wconversion-null]
mv -f .deps/renderfrontend.Tpo .deps/renderfrontend.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT console.o -MD 
-MP -MF .deps/console.Tpo -c -o console.o `test -f 
'frontend/console.cpp' || echo './'`frontend/console.cpp
mv -f .deps/console.Tpo .deps/console.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
shelloutprocessing.o -MD -MP -MF .deps/shelloutprocessing.Tpo -c -o 
shelloutprocessing.o `test -f 'frontend/shelloutprocessing.cpp' || echo 
'./'`frontend/shelloutprocessing.cpp
mv -f .deps/shelloutprocessing.Tpo .deps/shelloutprocessing.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
imagemessagehandler.o -MD -MP -MF .deps/imagemessagehandler.Tpo -c -o 
imagemessagehandler.o `test -f 'frontend/imagemessagehandler.cpp' || 
echo './'`frontend/imagemessagehandler.cpp
mv -f .deps/imagemessagehandler.Tpo .deps/imagemessagehandler.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
processrenderoptions.o -MD -MP -MF .deps/processrenderoptions.Tpo -c -o 
processrenderoptions.o `test -f 'frontend/processrenderoptions.cpp' || 
echo './'`frontend/processrenderoptions.cpp
mv -f .deps/processrenderoptions.Tpo .deps/processrenderoptions.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
filemessagehandler.o -MD -MP -MF .deps/filemessagehandler.Tpo -c -o 
filemessagehandler.o `test -f 'frontend/filemessagehandler.cpp' || echo 
'./'`frontend/filemessagehandler.cpp
mv -f .deps/filemessagehandler.Tpo .deps/filemessagehandler.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT display.o -MD 
-MP -MF .deps/display.Tpo -c -o display.o `test -f 
'frontend/display.cpp' || echo './'`frontend/display.cpp
mv -f .deps/display.Tpo .deps/display.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
parsermessagehandler.o -MD -MP -MF .deps/parsermessagehandler.Tpo -c -o 
parsermessagehandler.o `test -f 'frontend/parsermessagehandler.cpp' || 
echo './'`frontend/parsermessagehandler.cpp
mv -f .deps/parsermessagehandler.Tpo .deps/parsermessagehandler.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
animationprocessing.o -MD -MP -MF .deps/animationprocessing.Tpo -c -o 
animationprocessing.o `test -f 'frontend/animationprocessing.cpp' || 
echo './'`frontend/animationprocessing.cpp
mv -f .deps/animationprocessing.Tpo .deps/animationprocessing.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
rendermessagehandler.o -MD -MP -MF .deps/rendermessagehandler.Tpo -c -o 
rendermessagehandler.o `test -f 'frontend/rendermessagehandler.cpp' || 
echo './'`frontend/rendermessagehandler.cpp
mv -f .deps/rendermessagehandler.Tpo .deps/rendermessagehandler.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
imageprocessing.o -MD -MP -MF .deps/imageprocessing.Tpo -c -o 
imageprocessing.o `test -f 'frontend/imageprocessing.cpp' || echo 
'./'`frontend/imageprocessing.cpp
mv -f .deps/imageprocessing.Tpo .deps/imageprocessing.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
defaultplatformbase.o -MD -MP -MF .deps/defaultplatformbase.Tpo -c -o 
defaultplatformbase.o `test -f 'frontend/defaultplatformbase.cpp' || 
echo './'`frontend/defaultplatformbase.cpp
mv -f .deps/defaultplatformbase.Tpo .deps/defaultplatformbase.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
stringutilities.o -MD -MP -MF .deps/stringutilities.Tpo -c -o 
stringutilities.o `test -f 'base/stringutilities.cpp' || echo 
'./'`base/stringutilities.cpp
mv -f .deps/stringutilities.Tpo .deps/stringutilities.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT timer.o -MD 
-MP -MF .deps/timer.Tpo -c -o timer.o `test -f 'base/timer.cpp' || echo 
'./'`base/timer.cpp
mv -f .deps/timer.Tpo .deps/timer.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT pov_err.o -MD 
-MP -MF .deps/pov_err.Tpo -c -o pov_err.o `test -f 'base/pov_err.cpp' || 
echo './'`base/pov_err.cpp
mv -f .deps/pov_err.Tpo .deps/pov_err.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT iff.o -MD -MP 
-MF .deps/iff.Tpo -c -o iff.o `test -f 'base/image/iff.cpp' || echo 
'./'`base/image/iff.cpp
mv -f .deps/iff.Tpo .deps/iff.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT tiff.o -MD 
-MP -MF .deps/tiff.Tpo -c -o tiff.o `test -f 'base/image/tiff.cpp' || 
echo './'`base/image/tiff.cpp
mv -f .deps/tiff.Tpo .deps/tiff.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT jpeg.o -MD 
-MP -MF .deps/jpeg.Tpo -c -o jpeg.o `test -f 'base/image/jpeg.cpp' || 
echo './'`base/image/jpeg.cpp
mv -f .deps/jpeg.Tpo .deps/jpeg.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT encoding.o 
-MD -MP -MF .deps/encoding.Tpo -c -o encoding.o `test -f 
'base/image/encoding.cpp' || echo './'`base/image/encoding.cpp
mv -f .deps/encoding.Tpo .deps/encoding.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT ppm.o -MD -MP 
-MF .deps/ppm.Tpo -c -o ppm.o `test -f 'base/image/ppm.cpp' || echo 
'./'`base/image/ppm.cpp
mv -f .deps/ppm.Tpo .deps/ppm.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT openexr.o -MD 
-MP -MF .deps/openexr.Tpo -c -o openexr.o `test -f 
'base/image/openexr.cpp' || echo './'`base/image/openexr.cpp
mv -f .deps/openexr.Tpo .deps/openexr.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT targa.o -MD 
-MP -MF .deps/targa.Tpo -c -o targa.o `test -f 'base/image/targa.cpp' || 
echo './'`base/image/targa.cpp
mv -f .deps/targa.Tpo .deps/targa.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT png.o -MD -MP 
-MF .deps/png.Tpo -c -o png.o `test -f 'base/image/png.cpp' || echo 
'./'`base/image/png.cpp
mv -f .deps/png.Tpo .deps/png.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT bmp.o -MD -MP 
-MF .deps/bmp.Tpo -c -o bmp.o `test -f 'base/image/bmp.cpp' || echo 
'./'`base/image/bmp.cpp
mv -f .deps/bmp.Tpo .deps/bmp.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT image.o -MD 
-MP -MF .deps/image.Tpo -c -o image.o `test -f 'base/image/image.cpp' || 
echo './'`base/image/image.cpp
mv -f .deps/image.Tpo .deps/image.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT colourspace.o 
-MD -MP -MF .deps/colourspace.Tpo -c -o colourspace.o `test -f 
'base/image/colourspace.cpp' || echo './'`base/image/colourspace.cpp
mv -f .deps/colourspace.Tpo .deps/colourspace.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT hdr.o -MD -MP 
-MF .deps/hdr.Tpo -c -o hdr.o `test -f 'base/image/hdr.cpp' || echo 
'./'`base/image/hdr.cpp
base/image/hdr.cpp: In function ‘void 
pov_base::HDR::ReadOldLine(unsigned char*, int, pov_base::IStream*)’:
base/image/hdr.cpp:147:15: warning: converting ‘false’ to pointer type 
‘const void*’ [-Wconversion-null]
base/image/hdr.cpp: In function ‘pov_base::Image* 
pov_base::HDR::Read(pov_base::IStream*, const 
pov_base::Image::ReadOptions&)’:
base/image/hdr.cpp:202:44: warning: converting ‘false’ to pointer type 
‘const void*’ [-Wconversion-null]
base/image/hdr.cpp:236:28: warning: converting ‘false’ to pointer type 
‘const void*’ [-Wconversion-null]
base/image/hdr.cpp:251:28: warning: converting ‘false’ to pointer type 
‘const void*’ [-Wconversion-null]
base/image/hdr.cpp:271:30: warning: converting ‘false’ to pointer type 
‘const void*’ [-Wconversion-null]
base/image/hdr.cpp:279:33: warning: converting ‘false’ to pointer type 
‘const void*’ [-Wconversion-null]
base/image/hdr.cpp:289:34: warning: converting ‘false’ to pointer type 
‘const void*’ [-Wconversion-null]
base/image/hdr.cpp: In function ‘void 
pov_base::HDR::Write(pov_base::OStream*, const pov_base::Image*, const 
pov_base::Image::WriteOptions&)’:
base/image/hdr.cpp:341:44: warning: converting ‘false’ to pointer type 
‘const void*’ [-Wconversion-null]
base/image/hdr.cpp:386:50: warning: converting ‘false’ to pointer type 
‘const void*’ [-Wconversion-null]
base/image/hdr.cpp:404:51: warning: converting ‘false’ to pointer type 
‘const void*’ [-Wconversion-null]
base/image/hdr.cpp:413:48: warning: converting ‘false’ to pointer type 
‘const void*’ [-Wconversion-null]
mv -f .deps/hdr.Tpo .deps/hdr.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT pgm.o -MD -MP 
-MF .deps/pgm.Tpo -c -o pgm.o `test -f 'base/image/pgm.cpp' || echo 
'./'`base/image/pgm.cpp
mv -f .deps/pgm.Tpo .deps/pgm.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT gif.o -MD -MP 
-MF .deps/gif.Tpo -c -o gif.o `test -f 'base/image/gif.cpp' || echo 
'./'`base/image/gif.cpp
mv -f .deps/gif.Tpo .deps/gif.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT gifdecod.o 
-MD -MP -MF .deps/gifdecod.Tpo -c -o gifdecod.o `test -f 
'base/image/gifdecod.cpp' || echo './'`base/image/gifdecod.cpp
mv -f .deps/gifdecod.Tpo .deps/gifdecod.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT povmscpp.o 
-MD -MP -MF .deps/povmscpp.Tpo -c -o povmscpp.o `test -f 
'base/povmscpp.cpp' || echo './'`base/povmscpp.cpp
mv -f .deps/povmscpp.Tpo .deps/povmscpp.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT moov.o -MD 
-MP -MF .deps/moov.Tpo -c -o moov.o `test -f 'base/animation/moov.cpp' 
|| echo './'`base/animation/moov.cpp
mv -f .deps/moov.Tpo .deps/moov.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT animation.o 
-MD -MP -MF .deps/animation.Tpo -c -o animation.o `test -f 
'base/animation/animation.cpp' || echo './'`base/animation/animation.cpp
mv -f .deps/animation.Tpo .deps/animation.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT textstream.o 
-MD -MP -MF .deps/textstream.Tpo -c -o textstream.o `test -f 
'base/textstream.cpp' || echo './'`base/textstream.cpp
mv -f .deps/textstream.Tpo .deps/textstream.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
textstreambuffer.o -MD -MP -MF .deps/textstreambuffer.Tpo -c -o 
textstreambuffer.o `test -f 'base/textstreambuffer.cpp' || echo 
'./'`base/textstreambuffer.cpp
mv -f .deps/textstreambuffer.Tpo .deps/textstreambuffer.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
processoptions.o -MD -MP -MF .deps/processoptions.Tpo -c -o 
processoptions.o `test -f 'base/processoptions.cpp' || echo 
'./'`base/processoptions.cpp
mv -f .deps/processoptions.Tpo .deps/processoptions.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT path.o -MD 
-MP -MF .deps/path.Tpo -c -o path.o `test -f 'base/path.cpp' || echo 
'./'`base/path.cpp
mv -f .deps/path.Tpo .deps/path.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
fileinputoutput.o -MD -MP -MF .deps/fileinputoutput.Tpo -c -o 
fileinputoutput.o `test -f 'base/fileinputoutput.cpp' || echo 
'./'`base/fileinputoutput.cpp
mv -f .deps/fileinputoutput.Tpo .deps/fileinputoutput.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source/backend -I../source/base 
-I../source/frontend -I../unix -I../vfe -I../vfe/unix -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT povms.o -MD 
-MP -MF .deps/povms.Tpo -c -o povms.o `test -f 'base/povms.cpp' || echo 
'./'`base/povms.cpp
base/povms.cpp:245:3: warning: anonymous type with no linkage used to 
declare variable ‘<anonymous struct> POVMSStreamOrderTables’ with 
linkage [enabled by default]
mv -f .deps/povms.Tpo .deps/povms.Po
rm -f libpovray.a
ar cru libpovray.a precomp.o pov_mem.o optout.o lightgrp.o colour.o 
spectral.o colutils.o polysolv.o splines.o chi2.o quatern.o mathutil.o 
hcmplx.o matrices.o povray.o renderbackend.o benchmark.o 
messagefactory.o fncode.o fnpovfpu.o fnintern.o normal.o pigment.o 
texture.o interior.o media.o ray.o tracetask.o radiositytask.o 
tracepixel.o trace.o rendertask.o boundingtask.o bcyl.o bsphere.o bbox.o 
view.o threaddata.o scene.o atmosph.o objects.o camera.o 
photonshootingtask.o rad_data.o point.o subsurface.o photonsortingtask.o 
photonshootingstrategy.o photonstrategytask.o photons.o radiosity.o 
photonestimationtask.o reswords.o parsestr.o function.o express.o 
fnsyntax.o parse.o tokenize.o parstxtr.o pattern.o warps.o csg.o 
isosurf.o quadrics.o discs.o mesh.o lathe.o torus.o polygon.o hfield.o 
fpmetric.o poly.o sphsweep.o truetype.o super.o triangle.o prism.o 
blob.o boxes.o cones.o ovus.o bezier.o sor.o spheres.o fractal.o 
planes.o jitter.o msgutil.o statistics.o task.o randomsequences.o 
imageutil.o octree.o taskqueue.o fileutil.o bsptree.o renderfrontend.o 
console.o shelloutprocessing.o imagemessagehandler.o 
processrenderoptions.o filemessagehandler.o display.o 
parsermessagehandler.o animationprocessing.o rendermessagehandler.o 
imageprocessing.o defaultplatformbase.o stringutilities.o timer.o 
pov_err.o iff.o tiff.o jpeg.o encoding.o ppm.o openexr.o targa.o png.o 
bmp.o image.o colourspace.o hdr.o pgm.o gif.o gifdecod.o povmscpp.o 
moov.o animation.o textstream.o timrom.o crystal.o cyrvetic.o povlogo.o 
textstreambuffer.o processoptions.o path.o fileinputoutput.o povms.o
ranlib libpovray.a
make[2]: Leaving directory `/media/Raytracing/povray-3.7-stable/source'
Making all in vfe
make[2]: Entering directory `/media/Raytracing/povray-3.7-stable/vfe'
g++ -DHAVE_CONFIG_H -DPOVLIBDIR=\"/usr/local/share/povray-3.7\" 
-DPOVCONFDIR=\"/usr/local/etc/povray/3.7\" 
-DPOVCONFDIR_BACKWARD=\"/usr/local/etc\" -I. -I..  -I../vfe/unix 
-I../unix -I../source -I../source/base -I../source/backend -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT vfecontrol.o 
-MD -MP -MF .deps/vfecontrol.Tpo -c -o vfecontrol.o vfecontrol.cpp
mv -f .deps/vfecontrol.Tpo .deps/vfecontrol.Po
g++ -DHAVE_CONFIG_H -DPOVLIBDIR=\"/usr/local/share/povray-3.7\" 
-DPOVCONFDIR=\"/usr/local/etc/povray/3.7\" 
-DPOVCONFDIR_BACKWARD=\"/usr/local/etc\" -I. -I..  -I../vfe/unix 
-I../unix -I../source -I../source/base -I../source/backend -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT vfedisplay.o 
-MD -MP -MF .deps/vfedisplay.Tpo -c -o vfedisplay.o vfedisplay.cpp
mv -f .deps/vfedisplay.Tpo .deps/vfedisplay.Po
g++ -DHAVE_CONFIG_H -DPOVLIBDIR=\"/usr/local/share/povray-3.7\" 
-DPOVCONFDIR=\"/usr/local/etc/povray/3.7\" 
-DPOVCONFDIR_BACKWARD=\"/usr/local/etc\" -I. -I..  -I../vfe/unix 
-I../unix -I../source -I../source/base -I../source/backend -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT vfe.o -MD -MP 
-MF .deps/vfe.Tpo -c -o vfe.o vfe.cpp
mv -f .deps/vfe.Tpo .deps/vfe.Po
g++ -DHAVE_CONFIG_H -DPOVLIBDIR=\"/usr/local/share/povray-3.7\" 
-DPOVCONFDIR=\"/usr/local/etc/povray/3.7\" 
-DPOVCONFDIR_BACKWARD=\"/usr/local/etc\" -I. -I..  -I../vfe/unix 
-I../unix -I../source -I../source/base -I../source/backend -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT vfepovms.o 
-MD -MP -MF .deps/vfepovms.Tpo -c -o vfepovms.o vfepovms.cpp
mv -f .deps/vfepovms.Tpo .deps/vfepovms.Po
g++ -DHAVE_CONFIG_H -DPOVLIBDIR=\"/usr/local/share/povray-3.7\" 
-DPOVCONFDIR=\"/usr/local/etc/povray/3.7\" 
-DPOVCONFDIR_BACKWARD=\"/usr/local/etc\" -I. -I..  -I../vfe/unix 
-I../unix -I../source -I../source/base -I../source/backend -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT vfesession.o 
-MD -MP -MF .deps/vfesession.Tpo -c -o vfesession.o vfesession.cpp
mv -f .deps/vfesession.Tpo .deps/vfesession.Po
g++ -DHAVE_CONFIG_H -DPOVLIBDIR=\"/usr/local/share/povray-3.7\" 
-DPOVCONFDIR=\"/usr/local/etc/povray/3.7\" 
-DPOVCONFDIR_BACKWARD=\"/usr/local/etc\" -I. -I..  -I../vfe/unix 
-I../unix -I../source -I../source/base -I../source/backend -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT vfeplatform.o 
-MD -MP -MF .deps/vfeplatform.Tpo -c -o vfeplatform.o `test -f 
'unix/vfeplatform.cpp' || echo './'`unix/vfeplatform.cpp
mv -f .deps/vfeplatform.Tpo .deps/vfeplatform.Po
g++ -DHAVE_CONFIG_H -DPOVLIBDIR=\"/usr/local/share/povray-3.7\" 
-DPOVCONFDIR=\"/usr/local/etc/povray/3.7\" 
-DPOVCONFDIR_BACKWARD=\"/usr/local/etc\" -I. -I..  -I../vfe/unix 
-I../unix -I../source -I../source/base -I../source/backend -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT unixconsole.o 
-MD -MP -MF .deps/unixconsole.Tpo -c -o unixconsole.o `test -f 
'unix/unixconsole.cpp' || echo './'`unix/unixconsole.cpp
mv -f .deps/unixconsole.Tpo .deps/unixconsole.Po
g++ -DHAVE_CONFIG_H -DPOVLIBDIR=\"/usr/local/share/povray-3.7\" 
-DPOVCONFDIR=\"/usr/local/etc/povray/3.7\" 
-DPOVCONFDIR_BACKWARD=\"/usr/local/etc\" -I. -I..  -I../vfe/unix 
-I../unix -I../source -I../source/base -I../source/backend -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT unixoptions.o 
-MD -MP -MF .deps/unixoptions.Tpo -c -o unixoptions.o `test -f 
'unix/unixoptions.cpp' || echo './'`unix/unixoptions.cpp
mv -f .deps/unixoptions.Tpo .deps/unixoptions.Po
g++ -DHAVE_CONFIG_H -DPOVLIBDIR=\"/usr/local/share/povray-3.7\" 
-DPOVCONFDIR=\"/usr/local/etc/povray/3.7\" 
-DPOVCONFDIR_BACKWARD=\"/usr/local/etc\" -I. -I..  -I../vfe/unix 
-I../unix -I../source -I../source/base -I../source/backend -pthread 
-I/usr/include  -pipe -Wno-multichar -Wno-write-strings 
-fno-enforce-eh-specs -s -O3 -ffast-math -march=native -MT 
platformbase.o -MD -MP -MF .deps/platformbase.Tpo -c -o platformbase.o 
`test -f 'unix/platformbase.cpp' || echo './'`unix/platformbase.cpp
mv -f .deps/platformbase.Tpo .deps/platformbase.Po
rm -f libvfe.a
ar cru libvfe.a vfecontrol.o vfedisplay.o vfe.o vfeprecomp.o vfepovms.o 
vfesession.o vfeplatform.o unixconsole.o unixoptions.o platformbase.o
ranlib libvfe.a
make[2]: Leaving directory `/media/Raytracing/povray-3.7-stable/vfe'
Making all in unix
make[2]: Entering directory `/media/Raytracing/povray-3.7-stable/unix'
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source -I../source 
-I../source/backend -I../source/base -I../source/frontend -I../vfe 
-I../vfe/unix -pthread -I/usr/include  -pipe -Wno-multichar 
-Wno-write-strings -fno-enforce-eh-specs -s -O3 -ffast-math 
-march=native -MT disp_sdl.o -MD -MP -MF .deps/disp_sdl.Tpo -c -o 
disp_sdl.o disp_sdl.cpp
mv -f .deps/disp_sdl.Tpo .deps/disp_sdl.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I.. -I../source -I../source 
-I../source/backend -I../source/base -I../source/frontend -I../vfe 
-I../vfe/unix -pthread -I/usr/include  -pipe -Wno-multichar 
-Wno-write-strings -fno-enforce-eh-specs -s -O3 -ffast-math 
-march=native -MT disp_text.o -MD -MP -MF .deps/disp_text.Tpo -c -o 
disp_text.o disp_text.cpp
mv -f .deps/disp_text.Tpo .deps/disp_text.Po
g++  -pipe -Wno-multichar -Wno-write-strings -fno-enforce-eh-specs -s 
-O3 -ffast-math -march=native  -L/usr/lib -o povray disp_sdl.o 
disp_text.o ../vfe/libvfe.a ../source/libpovray.a -ltiff -ljpeg -lpng 
-lz -lrt -lm -lboost_thread -lboost_system -lboost_thread
make[2]: Leaving directory `/media/Raytracing/povray-3.7-stable/unix'
make[2]: Entering directory `/media/Raytracing/povray-3.7-stable'
cat ./povray.ini.in | sed 
"s,__POVLIBDIR__,/usr/local/share/povray-3.7,g" > ./povray.ini
make[2]: Leaving directory `/media/Raytracing/povray-3.7-stable'
make[1]: Leaving directory `/media/Raytracing/povray-3.7-stable'

// end messages

Almost perfect - except for a few warnings!

Finally installing - make install:

// begin messages

Making install in source
make[1]: Entering directory `/media/Raytracing/povray-3.7-stable/source'
make[2]: Entering directory `/media/Raytracing/povray-3.7-stable/source'
make[2]: Für das Ziel »install-exec-am« ist nichts zu tun.
make[2]: Für das Ziel »install-data-am« ist nichts zu tun.
make[2]: Leaving directory `/media/Raytracing/povray-3.7-stable/source'
make[1]: Leaving directory `/media/Raytracing/povray-3.7-stable/source'
Making install in vfe
make[1]: Entering directory `/media/Raytracing/povray-3.7-stable/vfe'
make[2]: Entering directory `/media/Raytracing/povray-3.7-stable/vfe'
make[2]: Für das Ziel »install-exec-am« ist nichts zu tun.
make[2]: Für das Ziel »install-data-am« ist nichts zu tun.
make[2]: Leaving directory `/media/Raytracing/povray-3.7-stable/vfe'
make[1]: Leaving directory `/media/Raytracing/povray-3.7-stable/vfe'
Making install in unix
make[1]: Entering directory `/media/Raytracing/povray-3.7-stable/unix'
make[2]: Entering directory `/media/Raytracing/povray-3.7-stable/unix'
  /bin/mkdir -p '/usr/local/bin'
   /usr/bin/install -c povray '/usr/local/bin'
make[2]: Für das Ziel »install-data-am« ist nichts zu tun.
make[2]: Leaving directory `/media/Raytracing/povray-3.7-stable/unix'
make[1]: Leaving directory `/media/Raytracing/povray-3.7-stable/unix'
make[1]: Entering directory `/media/Raytracing/povray-3.7-stable'
make[2]: Entering directory `/media/Raytracing/povray-3.7-stable'
make[2]: Für das Ziel »install-exec-am« ist nichts zu tun.
cat /dev/null > ./install.log;
Creating data directories...
Copying data files...
Creating documentation directories...
Copying documentation files...
Creating user directories...
Copying user configuration and INI files...
  /bin/mkdir -p '/usr/local/etc/povray/3.7'
  /usr/bin/install -c -m 644 povray.conf '/usr/local/etc/povray/3.7'
  /bin/mkdir -p '/usr/local/share/man/man1'
  /usr/bin/install -c -m 644 povray.1 '/usr/local/share/man/man1'
  /bin/mkdir -p '/usr/local/share/povray-3.7'
  /bin/mkdir -p '/usr/local/share/povray-3.7/scripts/'
  /usr/bin/install -c scripts/rerunpov.sh scripts/portfolio.sh 
scripts/allscene.sh scripts/render_anim.sh scripts/allanim.sh 
scripts/render_scene.sh scripts/runpov.sh 
'/usr/local/share/povray-3.7/scripts/'
  /bin/mkdir -p '/usr/local/etc/povray/3.7'
  /usr/bin/install -c -m 644 povray.ini '/usr/local/etc/povray/3.7'
  /bin/mkdir -p '/usr/local/share/doc/povray-3.7'
  /usr/bin/install -c -m 644 AUTHORS ChangeLog NEWS 
'/usr/local/share/doc/povray-3.7'
make[2]: Leaving directory `/media/Raytracing/povray-3.7-stable'
make[1]: Leaving directory `/media/Raytracing/povray-3.7-stable'

// end messages

Also worked fine!

Now the final test:

povray

// begin messages

povray: cannot open the user configuration file 
/home/yadgar/.povray/3.7/povray.conf: No such file or directory

Problem with option setting
povray
No input file provided

// end messages

According to unix/README.md, povray expects povray.conf to be stored 
also in /home/yadgar/.povray/3.7 - so I will have to copy it from 
/usr/local/etc/povray/3.7 !

Doing a test render:

povray +imandel.pov +omandel.png +fn

IT WORKS!!! THANK YOU ALL FOR ASSISTING ME!!! And be prepared to find 
some streets named after you when one day you might come to Khyberspace 
(Afghatopia 2050 mode) and stroll along Kabul's glittering boulevards...

See you in Khyberspace!

Yadgar

Now playing: Arizona Sky (China Crisis)


Post a reply to this message

<<< Previous 10 Messages Goto Initial 10 Messages

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