POV-Ray : Newsgroups : povray.general : GFI Server Time
12 Aug 2024 07:20:59 EDT (-0400)
  GFI (Message 1 to 10 of 10)  
From: povray org admin team
Subject: GFI
Date: 26 Mar 1999 09:41:59
Message: <36fb9db2.17594375@news.povray.org>
Go for it.


Post a reply to this message

From: Ken
Subject: Re: GFI
Date: 26 Mar 1999 09:53:12
Message: <36FB9E5B.A0960721@pacbell.net>
povray.org admin team wrote:
> 
> Go for it.

 Thank you I am right now.

-- 
Ken Tyler

mailto://tylereng@pacbell.net


Post a reply to this message

From: Marc Schimmler
Subject: Re: GFI
Date: 26 Mar 1999 09:59:44
Message: <36FBA0D3.A956F1C0@ica.uni-stuttgart.de>
povray.org admin team wrote:
> 
> Go for it.

Hey !!!!

This one icludes LINUX!!!!!!!!!!

Thank you Pov Team! Thank you Pov Team! Thank you Pov Team! Thank you
Pov Team!
Thank you Pov Team! Thank you Pov Team! Thank you Pov Team! Thank you
PovTeam! Thank you Pov Team! Thank you Pov Team!

That's like x-mas and easter happen at the same day!

Marc

-- 
Marc Schimmler


Post a reply to this message

From: Nieminen Mika
Subject: Re: GFI
Date: 26 Mar 1999 10:08:17
Message: <36fba2e1.0@news.povray.org>
Marc Schimmler <sch### [at] icauni-stuttgartde> wrote:
: This one icludes LINUX!!!!!!!!!!

  And apparently general UNIX too. Cool.

-- 
main(i,_){for(_?--i,main(i+2,"FhhQHFIJD|FQTITFN]zRFHhhTBFHhhTBFysdB"[i]
):5;i&&_>1;printf("%s",_-70?_&1?"[]":" ":(_=0,"\n")),_/=2);} /*- Warp -*/


Post a reply to this message

From: Nieminen Mika
Subject: Compiling 3.1e for UNIX (Was: GFI)
Date: 26 Mar 1999 11:17:06
Message: <36fbb302.0@news.povray.org>
I just compiled the brand new povray 3.1e on this SparcStation 5 with
SunOS and it seems to work fine.
  However, I had some problems with the makefile:

  1. The line:

X11 = /usr/openwin

had extra whitespaces at the end causing problems with the compilation.
This was caused because the line:

XLIBINC = -I$(X11)/include

expanded to "-I/usr/openwin     /include" instead of "-I/usr/openwin/include".
  Removing the spaces fixed the problem.

  2. The CFLAGS variable has the flag '-c' as it should but the compilation
is made this way:

$(ODIR)/atmosph$(OBJ)  : $(atmosphDEP)
	$(CC) $(CFLAGS) $(SRCDIR)/atmosph.c -o $@

  The gcc compiler (egcs-2.91.60) does not allow specifying both '-c' and
'-o' flags. Removing all the "-o $@" at the end of those lines fixed the
problem.

  Besides that, it seems to work fine.

  Some system information about this computer:

% uname -a
SunOS vuoritiainen 5.5.1 Generic_103640-24 sun4m sparc SUNW,SPARCstation-5
% gcc -v
gcc version egcs-2.91.60 19981201 (egcs-1.1.1 release)


-- 
main(i,_){for(_?--i,main(i+2,"FhhQHFIJD|FQTITFN]zRFHhhTBFHhhTBFysdB"[i]
):5;i&&_>1;printf("%s",_-70?_&1?"[]":" ":(_=0,"\n")),_/=2);} /*- Warp -*/


Post a reply to this message

From: Juha Leppälä
Subject: Re: GFI
Date: 26 Mar 1999 11:56:07
Message: <36FBBC3D.1006D610@kolumbus.fi>
"povray.org admin team" wrote:
> 
> Go for it.

Cool, though I'm having problems getting the bugger downloaded, maybe
it's just temporary



Post a reply to this message

From: Matthew Bennett
Subject: Re: Compiling 3.1e for UNIX (Was: GFI)
Date: 26 Mar 1999 11:59:29
Message: <36fbbcf1.0@news.povray.org>
>% gcc -v
>gcc version egcs-2.91.60 19981201 (egcs-1.1.1 release)


FYI egcs-1.1.2 is out now ;)


Matt


Post a reply to this message

From: Thomas Willhalm
Subject: Re: Compiling 3.1e for UNIX (Was: GFI)
Date: 29 Mar 1999 11:05:19
Message: <qqmlngg1dtt.fsf@goldach.fmi.uni-konstanz.de>
Nieminen Mika <war### [at] cctutfi> writes:

>   I just compiled the brand new povray 3.1e on this SparcStation 5 with
> SunOS and it seems to work fine.
>   However, I had some problems with the makefile:
> 
>   1. The line:
> 
> X11 = /usr/openwin
> 
> had extra whitespaces at the end causing problems with the compilation.
> This was caused because the line:
> 
> XLIBINC = -I$(X11)/include
> 
> expanded to "-I/usr/openwin     /include" instead of 
> "-I/usr/openwin/include".
>   Removing the spaces fixed the problem.

The same is true for me.


>   2. The CFLAGS variable has the flag '-c' as it should but the compilation
> is made this way:
> 
> $(ODIR)/atmosph$(OBJ)  : $(atmosphDEP)
> 	$(CC) $(CFLAGS) $(SRCDIR)/atmosph.c -o $@
> 
>   The gcc compiler (egcs-2.91.60) does not allow specifying both '-c' and
> '-o' flags. Removing all the "-o $@" at the end of those lines fixed the
> problem.

Are you sure that this was the problem? I use "-c" and "-o" together 
without any problems. In particular, I didn't have to change the lines. 
Perhaps you've had some LF/CR problems due to incorrect unpacking. 

Thomas

-- 
http://www.fmi.uni-konstanz.de/~willhalm


Post a reply to this message

From: Nieminen Mika
Subject: Re: Compiling 3.1e for UNIX (Was: GFI)
Date: 29 Mar 1999 12:58:39
Message: <36ffbf4f.0@news.povray.org>
Thomas Willhalm <Tho### [at] uni-konstanzde> wrote:
: Are you sure that this was the problem? I use "-c" and "-o" together 
: without any problems. In particular, I didn't have to change the lines. 

  Its very strange. I tried to compile again, and now it works.
  I don't know what I messed up the last time.

: Perhaps you've had some LF/CR problems due to incorrect unpacking. 

  No, I'm sure this wasn't the problem.

-- 
main(i,_){for(_?--i,main(i+2,"FhhQHFIJD|FQTITFN]zRFHhhTBFHhhTBFysdB"[i]
):5;i&&_>1;printf("%s",_-70?_&1?"[]":" ":(_=0,"\n")),_/=2);} /*- Warp -*/


Post a reply to this message

From: Thomas Willhalm
Subject: Re: Compiling 3.1e for UNIX (Was: GFI)
Date: 31 Mar 1999 08:23:10
Message: <qqmd81p3iai.fsf@goldach.fmi.uni-konstanz.de>
Nieminen Mika <war### [at] cctutfi> writes:
>
> Thomas Willhalm <Tho### [at] uni-konstanzde> wrote:
> : Are you sure that this was the problem? I use "-c" and "-o" together 
> : without any problems. In particular, I didn't have to change the lines. 
> 
>   Its very strange. I tried to compile again, and now it works.
>   I don't know what I messed up the last time.

I know this kind of problems. Strange things happen and one will never
know the reason. See it pragmatically: Who cares when it works now?

Thomas

-- 
http://www.fmi.uni-konstanz.de/~willhalm


Post a reply to this message

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