Update of /cvsroot/pvmpov/pvmpov_3_5/src In directory sc8-pr-cvs1:/tmp/cvs-serv18616/src Modified Files: Makefile.am atmosph.cpp atmosph.h bbox.cpp bbox.h bcyl.cpp bcyl.h benchmark.cpp bezier.cpp bezier.h blob.cpp blob.h boxes.cpp boxes.h bsphere.cpp bsphere.h camera.cpp camera.h chi2.cpp chi2.h colour.cpp colour.h colutils.cpp colutils.h cones.cpp cones.h csg.cpp csg.h discs.cpp discs.h express.cpp express.h file_pov.cpp file_pov.h fncode.cpp fncode.h fnintern.cpp fnintern.h fnpovfpu.cpp fnpovfpu.h fnsyntax.cpp fnsyntax.h fpmetric.cpp fpmetric.h fractal.cpp fractal.h frame.h function.cpp function.h gif.cpp gif.h gifdecod.cpp gifdecod.h hcmplx.cpp hcmplx.h hfield.cpp hfield.h histogra.cpp histogra.h iff.cpp iff.h image.cpp image.h interior.cpp interior.h isosurf.cpp isosurf.h jpeg_pov.cpp jpeg_pov.h lathe.cpp lathe.h lbuffer.cpp lbuffer.h lightgrp.cpp lightgrp.h lighting.cpp lighting.h matrices.cpp matrices.h media.cpp media.h mesh.cpp mesh.h normal.cpp normal.h objects.cpp objects.h octree.cpp octree.h optin.cpp optin.h optout.cpp optout.h parse.cpp parse.h parsestr.cpp parsestr.h parstxtr.cpp parstxtr.h pattern.cpp pattern.h pgm.cpp pgm.h photons.cpp photons.h pigment.cpp pigment.h planes.cpp planes.h png_pov.cpp png_pov.h point.cpp point.h poly.cpp poly.h polygon.cpp polygon.h polysolv.cpp polysolv.h pov_mem.cpp pov_mem.h pov_util.cpp pov_util.h povms.cpp povms.h povmscpp.cpp povmscpp.h povmsend.cpp povmsend.h povmsgid.h povmsrec.cpp povmsrec.h povproto.h povray.cpp povray.h ppm.cpp ppm.h prism.cpp prism.h pvm.cpp pvm.h quadrics.cpp quadrics.h quatern.cpp quatern.h rad_data.cpp radiosit.cpp radiosit.h ray.cpp ray.h render.cpp render.h renderio.cpp renderio.h sor.cpp sor.h spheres.cpp spheres.h sphsweep.cpp sphsweep.h splines.cpp splines.h statspov.cpp statspov.h super.cpp super.h targa.cpp targa.h texture.cpp texture.h tiff_pov.cpp tiff_pov.h tokenize.cpp tokenize.h torus.cpp torus.h triangle.cpp triangle.h truetype.cpp truetype.h txttest.cpp txttest.h unix.cpp userdisp.cpp userdisp.h userio.cpp userio.h vbuffer.cpp vbuffer.h vector.h vlbuffer.cpp vlbuffer.h warps.cpp warps.h Log Message: Import of the latest sources of POV-Ray version 3.5c and MG's PVM patch (revision 2). Added some command line options to the configure script: --enable/disable-pvm, --with-pvm-incs=DIR, --with-pvm-arch=ARCH, --with-pvm-libs=DIR, --with-pvm-auxlibs=LDFLAGS. Index: Makefile.am =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile.am 5 Oct 2002 15:09:43 -0000 1.2 --- Makefile.am 30 Dec 2002 19:33:40 -0000 1.3 *************** *** 30,34 **** NOMULTICHAR = `if [ "X$(CC)" = "Xgcc" ]; then echo "-Wno-multichar"; fi ` LDADD = @X_LIBS@ ! CXXFLAGS = $(NOMULTICHAR) -O3 ! LDFLAGS = @X_CFLAGS@ EXTRA_DIST = xpovicon.xbm xpovmask.xbm xpovicon.xpm --- 30,34 ---- NOMULTICHAR = `if [ "X$(CC)" = "Xgcc" ]; then echo "-Wno-multichar"; fi ` LDADD = @X_LIBS@ ! CXXFLAGS = $(PVM_CFLAGS) $(NOMULTICHAR) -O3 ! LDFLAGS = $(PVM_LDFLAGS) @X_CFLAGS@ EXTRA_DIST = xpovicon.xbm xpovmask.xbm xpovicon.xpm Index: atmosph.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/atmosph.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** atmosph.cpp 5 Oct 2002 10:20:25 -0000 1.1.1.1 --- atmosph.cpp 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:20:25 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: atmosph.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/atmosph.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** atmosph.h 5 Oct 2002 10:23:41 -0000 1.1.1.1 --- atmosph.h 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:41 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: bbox.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/bbox.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** bbox.cpp 5 Oct 2002 10:20:27 -0000 1.1.1.1 --- bbox.cpp 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 34,39 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:20:27 flierl ! * Initial import. * * --- 34,47 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * *************** *** 546,550 **** high = numOfFiniteObjects; ! Do_Cooperate(0); } --- 554,558 ---- high = numOfFiniteObjects; ! Do_Cooperate_0; // MG Do_Cooperate(0); } *************** *** 1800,1804 **** } ! Do_Cooperate(1); /* --- 1808,1812 ---- } ! Do_Cooperate_1; // MG Do_Cooperate(1); /* Index: bbox.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/bbox.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** bbox.h 5 Oct 2002 10:23:41 -0000 1.1.1.1 --- bbox.h 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:41 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: bcyl.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/bcyl.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** bcyl.cpp 5 Oct 2002 10:20:28 -0000 1.1.1.1 --- bcyl.cpp 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 27,32 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:20:28 flierl ! * Initial import. * * --- 27,40 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: bcyl.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/bcyl.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** bcyl.h 5 Oct 2002 10:23:41 -0000 1.1.1.1 --- bcyl.h 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:41 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: benchmark.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/benchmark.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** benchmark.cpp 5 Oct 2002 10:20:30 -0000 1.1.1.1 --- benchmark.cpp 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 27,32 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:20:30 flierl ! * Initial import. * * --- 27,40 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: bezier.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/bezier.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** bezier.cpp 5 Oct 2002 10:20:33 -0000 1.1.1.1 --- bezier.cpp 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 29,34 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:20:33 flierl ! * Initial import. * * --- 29,42 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: bezier.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/bezier.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** bezier.h 5 Oct 2002 10:23:41 -0000 1.1.1.1 --- bezier.h 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:41 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: blob.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/blob.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** blob.cpp 5 Oct 2002 10:20:37 -0000 1.1.1.1 --- blob.cpp 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 31,36 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:20:37 flierl ! * Initial import. * * --- 31,44 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: blob.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/blob.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** blob.h 5 Oct 2002 10:23:42 -0000 1.1.1.1 --- blob.h 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:42 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: boxes.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/boxes.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** boxes.cpp 5 Oct 2002 10:20:38 -0000 1.1.1.1 --- boxes.cpp 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 28,33 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:20:38 flierl ! * Initial import. * * --- 28,41 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: boxes.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/boxes.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** boxes.h 5 Oct 2002 10:23:42 -0000 1.1.1.1 --- boxes.h 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:42 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: bsphere.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/bsphere.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** bsphere.cpp 5 Oct 2002 10:20:39 -0000 1.1.1.1 --- bsphere.cpp 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:20:39 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * *************** *** 440,444 **** } ! Do_Cooperate(1); /* --- 448,452 ---- } ! Do_Cooperate_1; // MG Do_Cooperate(1); /* *************** *** 604,608 **** high = nElem; ! Do_Cooperate(0); } } --- 612,616 ---- high = nElem; ! Do_Cooperate_0; // MG Do_Cooperate(0); } } Index: bsphere.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/bsphere.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** bsphere.h 5 Oct 2002 10:23:42 -0000 1.1.1.1 --- bsphere.h 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:42 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: camera.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/camera.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** camera.cpp 5 Oct 2002 10:20:39 -0000 1.1.1.1 --- camera.cpp 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:20:39 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: camera.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/camera.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** camera.h 5 Oct 2002 10:23:42 -0000 1.1.1.1 --- camera.h 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:42 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: chi2.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/chi2.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** chi2.cpp 5 Oct 2002 10:20:40 -0000 1.1.1.1 --- chi2.cpp 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 32,37 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:20:40 flierl ! * Initial import. * * --- 32,45 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: chi2.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/chi2.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** chi2.h 5 Oct 2002 10:23:42 -0000 1.1.1.1 --- chi2.h 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:42 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: colour.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/colour.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** colour.cpp 5 Oct 2002 10:20:41 -0000 1.1.1.1 --- colour.cpp 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:20:41 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: colour.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/colour.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** colour.h 5 Oct 2002 10:23:43 -0000 1.1.1.1 --- colour.h 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:43 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: colutils.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/colutils.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** colutils.cpp 5 Oct 2002 10:20:42 -0000 1.1.1.1 --- colutils.cpp 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:20:42 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: colutils.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/colutils.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** colutils.h 5 Oct 2002 10:23:43 -0000 1.1.1.1 --- colutils.h 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:43 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: cones.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/cones.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** cones.cpp 5 Oct 2002 10:20:43 -0000 1.1.1.1 --- cones.cpp 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 28,33 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:20:43 flierl ! * Initial import. * * --- 28,41 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: cones.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/cones.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** cones.h 5 Oct 2002 10:23:43 -0000 1.1.1.1 --- cones.h 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:43 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: csg.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/csg.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** csg.cpp 5 Oct 2002 10:20:44 -0000 1.1.1.1 --- csg.cpp 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:20:44 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: csg.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/csg.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** csg.h 5 Oct 2002 10:23:43 -0000 1.1.1.1 --- csg.h 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:43 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: discs.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/discs.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** discs.cpp 5 Oct 2002 10:20:45 -0000 1.1.1.1 --- discs.cpp 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 28,33 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:20:45 flierl ! * Initial import. * * --- 28,41 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: discs.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/discs.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** discs.h 5 Oct 2002 10:23:43 -0000 1.1.1.1 --- discs.h 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:43 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: express.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/express.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** express.cpp 5 Oct 2002 10:20:49 -0000 1.1.1.1 --- express.cpp 30 Dec 2002 19:33:40 -0000 1.2 *************** *** 27,32 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:20:49 flierl ! * Initial import. * * --- 27,40 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:40 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: express.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/express.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** express.h 5 Oct 2002 10:23:43 -0000 1.1.1.1 --- express.h 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:43 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: file_pov.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/file_pov.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** file_pov.cpp 5 Oct 2002 10:20:50 -0000 1.1.1.1 --- file_pov.cpp 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:20:50 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: file_pov.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/file_pov.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** file_pov.h 5 Oct 2002 10:23:44 -0000 1.1.1.1 --- file_pov.h 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:44 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: fncode.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/fncode.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fncode.cpp 5 Oct 2002 10:20:54 -0000 1.1.1.1 --- fncode.cpp 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 29,34 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:20:54 flierl ! * Initial import. * * --- 29,42 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: fncode.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/fncode.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fncode.h 5 Oct 2002 10:23:44 -0000 1.1.1.1 --- fncode.h 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 28,33 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:44 flierl ! * Initial import. * * --- 28,41 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: fnintern.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/fnintern.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fnintern.cpp 5 Oct 2002 10:20:56 -0000 1.1.1.1 --- fnintern.cpp 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 31,36 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:20:56 flierl ! * Initial import. * * --- 31,44 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: fnintern.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/fnintern.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fnintern.h 5 Oct 2002 10:23:44 -0000 1.1.1.1 --- fnintern.h 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 30,35 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:44 flierl ! * Initial import. * * --- 30,43 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: fnpovfpu.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/fnpovfpu.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fnpovfpu.cpp 5 Oct 2002 10:20:58 -0000 1.1.1.1 --- fnpovfpu.cpp 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 29,34 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:20:58 flierl ! * Initial import. * * --- 29,42 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: fnpovfpu.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/fnpovfpu.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fnpovfpu.h 5 Oct 2002 10:23:45 -0000 1.1.1.1 --- fnpovfpu.h 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 28,33 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:45 flierl ! * Initial import. * * --- 28,41 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: fnsyntax.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/fnsyntax.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fnsyntax.cpp 5 Oct 2002 10:21:00 -0000 1.1.1.1 --- fnsyntax.cpp 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 29,34 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:21:00 flierl ! * Initial import. * * --- 29,42 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: fnsyntax.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/fnsyntax.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fnsyntax.h 5 Oct 2002 10:23:45 -0000 1.1.1.1 --- fnsyntax.h 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 28,33 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:45 flierl ! * Initial import. * * --- 28,41 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: fpmetric.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/fpmetric.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fpmetric.cpp 5 Oct 2002 10:21:02 -0000 1.1.1.1 --- fpmetric.cpp 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 29,34 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:21:02 flierl ! * Initial import. * * --- 29,42 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * *************** *** 923,927 **** if(depth == PrecompLastDepth / 2) ! Do_Cooperate(1); if(depth >= PrecompLastDepth) --- 931,935 ---- if(depth == PrecompLastDepth / 2) ! Do_Cooperate_1; // MG Do_Cooperate(1); if(depth >= PrecompLastDepth) Index: fpmetric.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/fpmetric.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fpmetric.h 5 Oct 2002 10:23:45 -0000 1.1.1.1 --- fpmetric.h 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 29,34 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:45 flierl ! * Initial import. * * --- 29,42 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: fractal.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/fractal.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fractal.cpp 5 Oct 2002 10:21:03 -0000 1.1.1.1 --- fractal.cpp 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 28,33 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:21:03 flierl ! * Initial import. * * --- 28,41 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: fractal.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/fractal.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fractal.h 5 Oct 2002 10:23:45 -0000 1.1.1.1 --- fractal.h 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:45 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: frame.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/frame.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** frame.h 5 Oct 2002 10:23:48 -0000 1.1.1.1 --- frame.h 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 29,34 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:48 flierl ! * Initial import. * * --- 29,42 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * *************** *** 493,496 **** --- 501,519 ---- #define COOPERATE_2 #endif + + + // Matthew Grove + // We can skip the Do_Cooperate calls if DONT_USE_POVMS + // is defined. + #ifdef DONT_USE_POVMS + #define Do_Cooperate_0 + #define Do_Cooperate_1 + #define Do_Cooperate_2 + #else + #define Do_Cooperate_0 Do_Cooperate(0); + #define Do_Cooperate_1 Do_Cooperate(1); + #define Do_Cooperate_2 Do_Cooperate(2); + #endif + Index: function.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/function.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** function.cpp 5 Oct 2002 10:21:03 -0000 1.1.1.1 --- function.cpp 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 29,34 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:21:03 flierl ! * Initial import. * * --- 29,42 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: function.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/function.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** function.h 5 Oct 2002 10:23:48 -0000 1.1.1.1 --- function.h 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 28,33 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:48 flierl ! * Initial import. * * --- 28,41 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: gif.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/gif.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** gif.cpp 5 Oct 2002 10:21:03 -0000 1.1.1.1 --- gif.cpp 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 29,34 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:21:03 flierl ! * Initial import. * * --- 29,42 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: gif.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/gif.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** gif.h 5 Oct 2002 10:23:48 -0000 1.1.1.1 --- gif.h 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:48 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: gifdecod.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/gifdecod.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** gifdecod.cpp 5 Oct 2002 10:21:04 -0000 1.1.1.1 --- gifdecod.cpp 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 29,34 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:21:04 flierl ! * Initial import. * * --- 29,42 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: gifdecod.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/gifdecod.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** gifdecod.h 5 Oct 2002 10:23:48 -0000 1.1.1.1 --- gifdecod.h 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:48 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: hcmplx.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/hcmplx.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** hcmplx.cpp 5 Oct 2002 10:21:06 -0000 1.1.1.1 --- hcmplx.cpp 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 28,33 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:21:06 flierl ! * Initial import. * * --- 28,41 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: hcmplx.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/hcmplx.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** hcmplx.h 5 Oct 2002 10:23:48 -0000 1.1.1.1 --- hcmplx.h 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:48 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: hfield.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/hfield.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** hfield.cpp 5 Oct 2002 10:21:09 -0000 1.1.1.1 --- hfield.cpp 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 35,40 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:21:09 flierl ! * Initial import. * * --- 35,48 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: hfield.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/hfield.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** hfield.h 5 Oct 2002 10:23:48 -0000 1.1.1.1 --- hfield.h 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:48 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: histogra.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/histogra.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** histogra.cpp 5 Oct 2002 10:21:09 -0000 1.1.1.1 --- histogra.cpp 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:21:09 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: histogra.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/histogra.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** histogra.h 5 Oct 2002 10:23:49 -0000 1.1.1.1 --- histogra.h 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:49 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: iff.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/iff.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** iff.cpp 5 Oct 2002 10:21:10 -0000 1.1.1.1 --- iff.cpp 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:21:10 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: iff.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/iff.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** iff.h 5 Oct 2002 10:23:49 -0000 1.1.1.1 --- iff.h 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:49 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: image.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/image.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** image.cpp 5 Oct 2002 10:21:12 -0000 1.1.1.1 --- image.cpp 30 Dec 2002 19:33:41 -0000 1.2 *************** *** 27,32 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:21:12 flierl ! * Initial import. * * --- 27,40 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:41 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: image.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/image.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** image.h 5 Oct 2002 10:23:49 -0000 1.1.1.1 --- image.h 30 Dec 2002 19:33:42 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:49 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:42 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: interior.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/interior.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** interior.cpp 5 Oct 2002 10:21:13 -0000 1.1.1.1 --- interior.cpp 30 Dec 2002 19:33:42 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:21:13 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:42 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: interior.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/interior.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** interior.h 5 Oct 2002 10:23:49 -0000 1.1.1.1 --- interior.h 30 Dec 2002 19:33:42 -0000 1.2 *************** *** 26,31 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:49 flierl ! * Initial import. * * --- 26,39 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:42 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: isosurf.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/isosurf.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** isosurf.cpp 5 Oct 2002 10:21:14 -0000 1.1.1.1 --- isosurf.cpp 30 Dec 2002 19:33:42 -0000 1.2 *************** *** 29,34 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:21:14 flierl ! * Initial import. * * --- 29,42 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:42 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: isosurf.h =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/isosurf.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** isosurf.h 5 Oct 2002 10:23:49 -0000 1.1.1.1 --- isosurf.h 30 Dec 2002 19:33:42 -0000 1.2 *************** *** 29,34 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:23:49 flierl ! * Initial import. * * --- 29,42 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:42 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: jpeg_pov.cpp =================================================================== RCS file: /cvsroot/pvmpov/pvmpov_3_5/src/jpeg_pov.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** jpeg_pov.cpp 5 Oct 2002 10:21:15 -0000 1.1.1.1 --- jpeg_pov.cpp 30 Dec 2002 19:33:42 -0000 1.2 *************** *** 28,33 **** * $Author$ * $Log$ ! * Revision 1.1.1.1 2002/10/05 10:21:15 flierl ! * Initial import. * * --- 28,41 ---- * $Author$ * $Log$ ! * Revision 1.2 2002/12/30 19:33:42 flierl ! * Import of the latest sources of POV-Ray version 3.5c and MG's PVM ! * patch (revision 2). ! * ! * Added some command line options to the configure script: ! * --enable/disable-pvm, ! * --with-pvm-incs=DIR, ! * --with-pvm-arch=ARCH, ! * --with-pvm-libs=DIR, ! * --with-pvm-auxlibs=LDFLAGS. * * Index: jpeg_pov.h =================================================================== ... [truncated message content] |