Your message dated Mon, 1 Aug 2005 17:50:04 +0100 with message-id <[EMAIL PROTECTED]> and subject line Removed has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -------------------------------------- Received: (at submit) by bugs.debian.org; 30 Dec 2004 20:12:51 +0000 >From [EMAIL PROTECTED] Thu Dec 30 12:12:51 2004 Return-path: <[EMAIL PROTECTED]> Received: from d020125.adsl.hansenet.de (localhost.localdomain) [80.171.20.125] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1Ck6fC-0004L1-00; Thu, 30 Dec 2004 12:12:50 -0800 Received: from aj by localhost.localdomain with local (Exim 4.34) id 1Ck6kT-0000ao-LU; Thu, 30 Dec 2004 21:18:17 +0100 To: Debian Bug Tracking System <[EMAIL PROTECTED]> From: Andreas Jochens <[EMAIL PROTECTED]> Subject: panorama: FTBFS (amd64/gcc-4.0): within this context Message-Id: <[EMAIL PROTECTED]> Date: Thu, 30 Dec 2004 21:18:17 +0100 Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-5.1 required=4.0 tests=BAYES_44,HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2004_03_25 X-Spam-Level: Package: panorama Severity: normal Tags: patch When building 'panorama' on amd64 with gcc-4.0, I get the following error: ../llapi/matrix.h:445: error: within this context ../llapi/matrix.h:37: error: 'TScalar TBaseMatrix<TScalar>::atElement [4][4]' is protected ../llapi/matrix.h:445: error: within this context ../llapi/matrix.h:37: error: 'TScalar TBaseMatrix<TScalar>::atElement [4][4]' is protected ../llapi/matrix.h:445: error: within this context ../llapi/matrix.h: In function 'TBaseMatrix<TItem> operator*(const TBaseMatrix<TItem>&, const TBaseMatrix<TItem>&) [with TItem = TScalar]': aggregate.cpp:35: instantiated from here ../llapi/matrix.h:37: error: 'TScalar TBaseMatrix<TScalar>::atElement [4][4]' is protected ../llapi/matrix.h:417: error: within this context ../llapi/matrix.h:37: error: 'TScalar TBaseMatrix<TScalar>::atElement [4][4]' is protected ../llapi/matrix.h:420: error: within this context ../llapi/matrix.h:37: error: 'TScalar TBaseMatrix<TScalar>::atElement [4][4]' is protected ../llapi/matrix.h:420: error: within this context ../llapi/matrix.h:37: error: 'TScalar TBaseMatrix<TScalar>::atElement [4][4]' is protected ../llapi/matrix.h:420: error: within this context make[2]: *** [aggregate.o] Error 1 make[2]: Leaving directory `/panorama-0.13.2/hlapi' make[1]: *** [all] Error 2 make[1]: Leaving directory `/panorama-0.13.2' make: *** [build-stamp] Error 2 With the attached patch 'panorama' can be compiled on amd64 using gcc-4.0. Regards Andreas Jochens diff -urN ../tmp-orig/panorama-0.13.2/llapi/frame.h ./llapi/frame.h --- ../tmp-orig/panorama-0.13.2/llapi/frame.h 1998-10-30 22:48:25.000000000 +0100 +++ ./llapi/frame.h 2004-12-30 20:53:30.015238088 +0100 @@ -120,12 +120,12 @@ void TFrame<TItem>::printDebug (void) const { - cerr << TDebug::_indent() << "[_Frame_]" << endl; + std::cerr << TDebug::_indent() << "[_Frame_]" << std::endl; TDebug::_push(); - cerr << TDebug::_indent() << "Height : " << zHeight << endl; - cerr << TDebug::_indent() << "Width : " << zWidth << endl; + std::cerr << TDebug::_indent() << "Height : " << zHeight << std::endl; + std::cerr << TDebug::_indent() << "Width : " << zWidth << std::endl; TDebug::_pop(); diff -urN ../tmp-orig/panorama-0.13.2/llapi/interval.h ./llapi/interval.h --- ../tmp-orig/panorama-0.13.2/llapi/interval.h 2004-12-30 21:02:41.539393672 +0100 +++ ./llapi/interval.h 2004-12-30 20:53:30.016237936 +0100 @@ -137,11 +137,11 @@ if ( gEmpty ) { - cerr << "Interval [ empty ]" << endl; + std::cerr << "Interval [ empty ]" << std::endl; } else { - cerr << "Interval [" << tMin << ", " << tMax << "]" << endl; + std::cerr << "Interval [" << tMin << ", " << tMax << "]" << std::endl; } } /* printDebug() */ diff -urN ../tmp-orig/panorama-0.13.2/llapi/matrix.h ./llapi/matrix.h --- ../tmp-orig/panorama-0.13.2/llapi/matrix.h 1999-04-08 20:21:50.000000000 +0200 +++ ./llapi/matrix.h 2004-12-30 20:53:30.016237936 +0100 @@ -29,10 +29,10 @@ friend class TVector3D<TItem>; - friend TBaseMatrix<TItem> operator *<TItem> (const TBaseMatrix<TItem>& rktMAT1, const TBaseMatrix<TItem>& rktMAT2); - friend TVector3D<TItem> operator *<TItem> (const TBaseMatrix<TItem>& rktMAT, const TVector3D<TItem>& rktVECTOR); +// friend TBaseMatrix<TItem> operator *<TItem> (const TBaseMatrix<TItem>& rktMAT1, const TBaseMatrix<TItem>& rktMAT2); +// friend TVector3D<TItem> operator *<TItem> (const TBaseMatrix<TItem>& rktMAT, const TVector3D<TItem>& rktVECTOR); - protected: + public: TItem atElement[4][4]; @@ -396,9 +396,9 @@ { for (Byte J = 0; ( J < 4 ) ;J++) { - cerr << atElement[I][J]; cerr << " | "; + std::cerr << atElement[I][J]; std::cerr << " | "; } - cerr << endl; + std::cerr << std::endl; } } /* printDebug() */ diff -urN ../tmp-orig/panorama-0.13.2/llapi/priority_queue.h ./llapi/priority_queue.h --- ../tmp-orig/panorama-0.13.2/llapi/priority_queue.h 1999-08-21 14:37:55.000000000 +0200 +++ ./llapi/priority_queue.h 2004-12-30 20:53:30.016237936 +0100 @@ -194,17 +194,16 @@ void TPriorityQueue<TItem>::printDebug (void) const { - cerr << TDebug::indent() << "[_TPriorityQueue_]" << endl; + std::cerr << TDebug::_indent() << "[_TPriorityQueue_]" << std::endl; - TDebug::push(); + TDebug::_push(); for (size_t J = 1; ( J <= zSize ) ;J++) { - tString << atData[J] + ", " << afPriority[J]; - cerr << TDebug::indent() << tString << endl; + std::cerr << TDebug::_indent() << atData[J] << ", " << afPriority[J] << std::endl; } - TDebug::pop(); + TDebug::_pop(); } /* printDebug() */ diff -urN ../tmp-orig/panorama-0.13.2/llapi/vector2d.h ./llapi/vector2d.h --- ../tmp-orig/panorama-0.13.2/llapi/vector2d.h 1999-08-21 14:42:56.000000000 +0200 +++ ./llapi/vector2d.h 2004-12-30 20:53:30.017237784 +0100 @@ -117,7 +117,7 @@ inline void TVector2D<TItem>::printDebug (void) const { - cerr << "TVector2D <" << vx << ", " << vy << ">" << endl; + std::cerr << "TVector2D <" << vx << ", " << vy << ">" << std::endl; } /* printDebug() */ diff -urN ../tmp-orig/panorama-0.13.2/plugins/atm_object/atm_const/atm_const.cpp ./plugins/atm_object/atm_const/atm_const.cpp --- ../tmp-orig/panorama-0.13.2/plugins/atm_object/atm_const/atm_const.cpp 2004-12-30 21:02:41.548392304 +0100 +++ ./plugins/atm_object/atm_const/atm_const.cpp 2004-12-30 20:53:30.022237024 +0100 @@ -18,7 +18,7 @@ #include "atm_const.h" -DEFINE_PLUGIN ("AtmConst", FX_ATM_OBJECT_CLASS, TAtmConst); +DEFINE_PLUGIN ("AtmConst", FX_ATM_OBJECT_CLASS, TAtmConst) TAtmConst::TAtmConst (void) : TAtmosphericObject() diff -urN ../tmp-orig/panorama-0.13.2/plugins/bsdf/cook_torrance/bsdf_cook_torrance.cpp ./plugins/bsdf/cook_torrance/bsdf_cook_torrance.cpp --- ../tmp-orig/panorama-0.13.2/plugins/bsdf/cook_torrance/bsdf_cook_torrance.cpp 2004-12-30 21:02:41.549392152 +0100 +++ ./plugins/bsdf/cook_torrance/bsdf_cook_torrance.cpp 2004-12-30 20:53:30.023236872 +0100 @@ -21,7 +21,7 @@ #include "llapi/material.h" #include "bsdf_cook_torrance.h" -DEFINE_PLUGIN ("BsdfCookTorrance", FX_BSDF_CLASS, TBsdfCookTorrance); +DEFINE_PLUGIN ("BsdfCookTorrance", FX_BSDF_CLASS, TBsdfCookTorrance) TBsdfCookTorrance::TBsdfCookTorrance (void) : tStandardDeviation (1.0f) diff -urN ../tmp-orig/panorama-0.13.2/plugins/bsdf/cook_torrance/bsdf_cook_torrance.h ./plugins/bsdf/cook_torrance/bsdf_cook_torrance.h --- ../tmp-orig/panorama-0.13.2/plugins/bsdf/cook_torrance/bsdf_cook_torrance.h 2004-12-30 21:02:41.549392152 +0100 +++ ./plugins/bsdf/cook_torrance/bsdf_cook_torrance.h 2004-12-30 20:56:37.000000000 +0100 @@ -89,15 +89,15 @@ tNgreen = (1.0 + sqrt (tREFLECTION.green())) / (1.0 - sqrt (tREFLECTION.green())); tNblue = (1.0 + sqrt (tREFLECTION.blue())) / (1.0 - sqrt (tREFLECTION.blue())); - if ( tNred == HUGE_VAL ) + if ( tNred == 0x1p1023 ) { tNred = 1e6; } - if ( tNgreen == HUGE_VAL ) + if ( tNgreen == 0x1p1023 ) { tNgreen = 1e6; } - if ( tNblue == HUGE_VAL ) + if ( tNblue == 0x1p1023 ) { tNblue = 1e6; } diff -urN ../tmp-orig/panorama-0.13.2/plugins/bsdf/lambertian/bsdf_lambertian.cpp ./plugins/bsdf/lambertian/bsdf_lambertian.cpp --- ../tmp-orig/panorama-0.13.2/plugins/bsdf/lambertian/bsdf_lambertian.cpp 1998-10-11 00:46:49.000000000 +0200 +++ ./plugins/bsdf/lambertian/bsdf_lambertian.cpp 2004-12-30 20:53:30.023236872 +0100 @@ -20,4 +20,4 @@ #include "llapi/material.h" #include "bsdf_lambertian.h" -DEFINE_PLUGIN ("BsdfLambertian", FX_BSDF_CLASS, TBsdfLambertian); +DEFINE_PLUGIN ("BsdfLambertian", FX_BSDF_CLASS, TBsdfLambertian) diff -urN ../tmp-orig/panorama-0.13.2/plugins/bsdf/phong/bsdf_phong.cpp ./plugins/bsdf/phong/bsdf_phong.cpp --- ../tmp-orig/panorama-0.13.2/plugins/bsdf/phong/bsdf_phong.cpp 2004-12-30 21:02:41.550392000 +0100 +++ ./plugins/bsdf/phong/bsdf_phong.cpp 2004-12-30 20:53:30.023236872 +0100 @@ -21,7 +21,7 @@ #include "llapi/material.h" #include "bsdf_phong.h" -DEFINE_PLUGIN ("BsdfPhong", FX_BSDF_CLASS, TBsdfPhong); +DEFINE_PLUGIN ("BsdfPhong", FX_BSDF_CLASS, TBsdfPhong) int TBsdfPhong::setAttribute (const std::string& rktNAME, NAttribute nVALUE, EAttribType eTYPE) { diff -urN ../tmp-orig/panorama-0.13.2/plugins/bsdf/schlick/bsdf_schlick.cpp ./plugins/bsdf/schlick/bsdf_schlick.cpp --- ../tmp-orig/panorama-0.13.2/plugins/bsdf/schlick/bsdf_schlick.cpp 2004-12-30 21:02:41.551391848 +0100 +++ ./plugins/bsdf/schlick/bsdf_schlick.cpp 2004-12-30 20:53:30.024236720 +0100 @@ -21,7 +21,7 @@ #include "llapi/material.h" #include "bsdf_schlick.h" -DEFINE_PLUGIN ("BsdfSchlick", FX_BSDF_CLASS, TBsdfSchlick); +DEFINE_PLUGIN ("BsdfSchlick", FX_BSDF_CLASS, TBsdfSchlick) TBsdfSchlick::TBsdfSchlick (void) : tRoughness (0.3f), diff -urN ../tmp-orig/panorama-0.13.2/plugins/bsdf/schlick_double/bsdf_schlick_double.cpp ./plugins/bsdf/schlick_double/bsdf_schlick_double.cpp --- ../tmp-orig/panorama-0.13.2/plugins/bsdf/schlick_double/bsdf_schlick_double.cpp 2004-12-30 21:02:41.551391848 +0100 +++ ./plugins/bsdf/schlick_double/bsdf_schlick_double.cpp 2004-12-30 20:53:30.024236720 +0100 @@ -21,7 +21,7 @@ #include "llapi/material.h" #include "bsdf_schlick_double.h" -DEFINE_PLUGIN ("BsdfSchlickDouble", FX_BSDF_CLASS, TBsdfSchlickDouble); +DEFINE_PLUGIN ("BsdfSchlickDouble", FX_BSDF_CLASS, TBsdfSchlickDouble) TBsdfSchlickDouble::TBsdfSchlickDouble (void) { diff -urN ../tmp-orig/panorama-0.13.2/plugins/bsdf/ward/bsdf_ward.cpp ./plugins/bsdf/ward/bsdf_ward.cpp --- ../tmp-orig/panorama-0.13.2/plugins/bsdf/ward/bsdf_ward.cpp 2004-12-30 21:02:41.552391696 +0100 +++ ./plugins/bsdf/ward/bsdf_ward.cpp 2004-12-30 20:53:30.024236720 +0100 @@ -21,7 +21,7 @@ #include "llapi/material.h" #include "bsdf_ward.h" -DEFINE_PLUGIN ("BsdfWard", FX_BSDF_CLASS, TBsdfWard); +DEFINE_PLUGIN ("BsdfWard", FX_BSDF_CLASS, TBsdfWard) TBsdfWard::TBsdfWard (void) : tStandardDeviation_x (0.3f), diff -urN ../tmp-orig/panorama-0.13.2/plugins/camera/pinhole/pinhole.cpp ./plugins/camera/pinhole/pinhole.cpp --- ../tmp-orig/panorama-0.13.2/plugins/camera/pinhole/pinhole.cpp 2004-12-30 21:02:41.553391544 +0100 +++ ./plugins/camera/pinhole/pinhole.cpp 2004-12-30 20:53:30.024236720 +0100 @@ -18,7 +18,7 @@ #include "pinhole.h" -DEFINE_PLUGIN ("PinholeCamera", FX_CAMERA_CLASS, TPinholeCamera); +DEFINE_PLUGIN ("PinholeCamera", FX_CAMERA_CLASS, TPinholeCamera) int TPinholeCamera::setAttribute (const std::string& rktNAME, NAttribute nVALUE, EAttribType eTYPE) { diff -urN ../tmp-orig/panorama-0.13.2/plugins/image_filter/cartoon/if_cartoon.cpp ./plugins/image_filter/cartoon/if_cartoon.cpp --- ../tmp-orig/panorama-0.13.2/plugins/image_filter/cartoon/if_cartoon.cpp 2004-12-30 21:02:41.554391392 +0100 +++ ./plugins/image_filter/cartoon/if_cartoon.cpp 2004-12-30 20:53:30.025236568 +0100 @@ -20,7 +20,7 @@ #include "llapi/scene.h" #include "if_cartoon.h" -DEFINE_PLUGIN ("IF_Cartoon", FX_IMAGE_FILTER_CLASS, TIF_Cartoon); +DEFINE_PLUGIN ("IF_Cartoon", FX_IMAGE_FILTER_CLASS, TIF_Cartoon) #define FX_MAX_Z (SCALAR_MAX / 2) diff -urN ../tmp-orig/panorama-0.13.2/plugins/image_filter/convert_to_grey/if_convert_to_grey.cpp ./plugins/image_filter/convert_to_grey/if_convert_to_grey.cpp --- ../tmp-orig/panorama-0.13.2/plugins/image_filter/convert_to_grey/if_convert_to_grey.cpp 1998-10-11 00:46:49.000000000 +0200 +++ ./plugins/image_filter/convert_to_grey/if_convert_to_grey.cpp 2004-12-30 20:53:30.025236568 +0100 @@ -19,7 +19,7 @@ #include "llapi/scene.h" #include "if_convert_to_grey.h" -DEFINE_PLUGIN ("IF_ConvertToGrey", FX_IMAGE_FILTER_CLASS, TIF_ConvertToGrey); +DEFINE_PLUGIN ("IF_ConvertToGrey", FX_IMAGE_FILTER_CLASS, TIF_ConvertToGrey) void TIF_ConvertToGrey::filter (SBuffers& rsBUFFERS) { diff -urN ../tmp-orig/panorama-0.13.2/plugins/image_filter/fog/if_fog.cpp ./plugins/image_filter/fog/if_fog.cpp --- ../tmp-orig/panorama-0.13.2/plugins/image_filter/fog/if_fog.cpp 2004-12-30 21:02:41.555391240 +0100 +++ ./plugins/image_filter/fog/if_fog.cpp 2004-12-30 20:53:30.025236568 +0100 @@ -21,7 +21,7 @@ #define FX_MAX_Z (SCALAR_MAX / 2) -DEFINE_PLUGIN ("IF_Fog", FX_IMAGE_FILTER_CLASS, TIF_Fog); +DEFINE_PLUGIN ("IF_Fog", FX_IMAGE_FILTER_CLASS, TIF_Fog) TIF_Fog::TIF_Fog (void) : TImageFilter(), diff -urN ../tmp-orig/panorama-0.13.2/plugins/image_filter/lens_flare/if_lens_flare.cpp ./plugins/image_filter/lens_flare/if_lens_flare.cpp --- ../tmp-orig/panorama-0.13.2/plugins/image_filter/lens_flare/if_lens_flare.cpp 2004-12-30 21:02:41.557390936 +0100 +++ ./plugins/image_filter/lens_flare/if_lens_flare.cpp 2004-12-30 20:53:30.026236416 +0100 @@ -27,7 +27,7 @@ #include "flare_halo.h" #include "flare_streaks.h" -DEFINE_PLUGIN ("IF_Lens_Flare", FX_IMAGE_FILTER_CLASS, TIF_Lens_Flare); +DEFINE_PLUGIN ("IF_Lens_Flare", FX_IMAGE_FILTER_CLASS, TIF_Lens_Flare) TIF_Lens_Flare::TIF_Lens_Flare (void) : TImageFilter(), diff -urN ../tmp-orig/panorama-0.13.2/plugins/image_filter/text/if_text.cpp ./plugins/image_filter/text/if_text.cpp --- ../tmp-orig/panorama-0.13.2/plugins/image_filter/text/if_text.cpp 2004-12-30 21:02:41.558390784 +0100 +++ ./plugins/image_filter/text/if_text.cpp 2004-12-30 20:53:30.026236416 +0100 @@ -25,7 +25,7 @@ extern std::multimap<std::string, std::string> tConfigData; -DEFINE_PLUGIN ("IF_Text", FX_IMAGE_FILTER_CLASS, TIF_Text); +DEFINE_PLUGIN ("IF_Text", FX_IMAGE_FILTER_CLASS, TIF_Text) TIF_Text::TIF_Text (void) : TImageFilter(), diff -urN ../tmp-orig/panorama-0.13.2/plugins/image_io/gif/gif_io.cpp ./plugins/image_io/gif/gif_io.cpp --- ../tmp-orig/panorama-0.13.2/plugins/image_io/gif/gif_io.cpp 2004-12-30 21:02:41.559390632 +0100 +++ ./plugins/image_io/gif/gif_io.cpp 2004-12-30 20:53:30.026236416 +0100 @@ -21,7 +21,7 @@ #include "hlapi/image_manager.h" #include "gif_io.h" -DEFINE_IMAGE_IO_PLUGIN ("gif", TImageGif); +DEFINE_IMAGE_IO_PLUGIN ("gif", TImageGif) extern "C" { /* Remember to configure libungif without X Windows support */ diff -urN ../tmp-orig/panorama-0.13.2/plugins/image_io/jpeg/jpeg_io.cpp ./plugins/image_io/jpeg/jpeg_io.cpp --- ../tmp-orig/panorama-0.13.2/plugins/image_io/jpeg/jpeg_io.cpp 2004-12-30 21:02:41.560390480 +0100 +++ ./plugins/image_io/jpeg/jpeg_io.cpp 2004-12-30 20:53:30.027236264 +0100 @@ -25,7 +25,7 @@ } #include "jpeg_io.h" -DEFINE_IMAGE_IO_PLUGIN ("jpeg", TImageJpeg); +DEFINE_IMAGE_IO_PLUGIN ("jpeg", TImageJpeg) int TImageJpeg::save (const TImage* pktIMAGE) { diff -urN ../tmp-orig/panorama-0.13.2/plugins/image_io/png/png_io.cpp ./plugins/image_io/png/png_io.cpp --- ../tmp-orig/panorama-0.13.2/plugins/image_io/png/png_io.cpp 2004-12-30 21:02:41.561390328 +0100 +++ ./plugins/image_io/png/png_io.cpp 2004-12-30 20:53:30.027236264 +0100 @@ -20,7 +20,7 @@ #include "hlapi/image_manager.h" #include "png_io.h" -DEFINE_IMAGE_IO_PLUGIN ("png", TImagePng); +DEFINE_IMAGE_IO_PLUGIN ("png", TImagePng) extern "C" { #include <png.h> diff -urN ../tmp-orig/panorama-0.13.2/plugins/image_io/tga/tga_io.cpp ./plugins/image_io/tga/tga_io.cpp --- ../tmp-orig/panorama-0.13.2/plugins/image_io/tga/tga_io.cpp 2004-12-30 21:02:41.562390176 +0100 +++ ./plugins/image_io/tga/tga_io.cpp 2004-12-30 20:53:30.027236264 +0100 @@ -21,7 +21,7 @@ #include "hlapi/image_manager.h" #include "tga_io.h" -DEFINE_IMAGE_IO_PLUGIN ("tga", TImageTga); +DEFINE_IMAGE_IO_PLUGIN ("tga", TImageTga) int TImageTga::save (const TImage* pktIMAGE) { diff -urN ../tmp-orig/panorama-0.13.2/plugins/light/point_light/point_light.cpp ./plugins/light/point_light/point_light.cpp --- ../tmp-orig/panorama-0.13.2/plugins/light/point_light/point_light.cpp 2004-12-30 21:02:41.563390024 +0100 +++ ./plugins/light/point_light/point_light.cpp 2004-12-30 20:53:30.028236112 +0100 @@ -18,7 +18,7 @@ #include "point_light.h" -DEFINE_PLUGIN ("PointLight", FX_LIGHT_CLASS, TPointLight); +DEFINE_PLUGIN ("PointLight", FX_LIGHT_CLASS, TPointLight) bool TPointLight::visible (const TVector& rktPOINT) const { diff -urN ../tmp-orig/panorama-0.13.2/plugins/light/projector/projector.cpp ./plugins/light/projector/projector.cpp --- ../tmp-orig/panorama-0.13.2/plugins/light/projector/projector.cpp 2004-12-30 21:02:41.564389872 +0100 +++ ./plugins/light/projector/projector.cpp 2004-12-30 20:53:30.028236112 +0100 @@ -20,7 +20,7 @@ #include "hlapi/image_manager.h" #include "projector.h" -DEFINE_PLUGIN ("Projector", FX_LIGHT_CLASS, TProjector); +DEFINE_PLUGIN ("Projector", FX_LIGHT_CLASS, TProjector) TProjector::TProjector (void) : TPointLight(), diff -urN ../tmp-orig/panorama-0.13.2/plugins/light/warn_light/warn_light.cpp ./plugins/light/warn_light/warn_light.cpp --- ../tmp-orig/panorama-0.13.2/plugins/light/warn_light/warn_light.cpp 2004-12-30 21:02:41.565389720 +0100 +++ ./plugins/light/warn_light/warn_light.cpp 2004-12-30 20:53:30.028236112 +0100 @@ -18,7 +18,7 @@ #include "warn_light.h" -DEFINE_PLUGIN ("WarnLight", FX_LIGHT_CLASS, TWarnLight); +DEFINE_PLUGIN ("WarnLight", FX_LIGHT_CLASS, TWarnLight) TScalar TWarnLight::attenuation (const TVector& rktPOINT) const { diff -urN ../tmp-orig/panorama-0.13.2/plugins/material/brick/mat_brick.cpp ./plugins/material/brick/mat_brick.cpp --- ../tmp-orig/panorama-0.13.2/plugins/material/brick/mat_brick.cpp 2004-12-30 21:02:41.566389568 +0100 +++ ./plugins/material/brick/mat_brick.cpp 2004-12-30 20:53:30.029235960 +0100 @@ -21,7 +21,7 @@ #include <time.h> #include "mat_brick.h" -DEFINE_PLUGIN ("MaterialBrick", FX_MATERIAL_CLASS, TMaterialBrick); +DEFINE_PLUGIN ("MaterialBrick", FX_MATERIAL_CLASS, TMaterialBrick) inline TScalar TMaterialBrick::step (TScalar a, TScalar x) const { diff -urN ../tmp-orig/panorama-0.13.2/plugins/material/checker/mat_checker.cpp ./plugins/material/checker/mat_checker.cpp --- ../tmp-orig/panorama-0.13.2/plugins/material/checker/mat_checker.cpp 2004-12-30 21:02:41.567389416 +0100 +++ ./plugins/material/checker/mat_checker.cpp 2004-12-30 20:53:30.029235960 +0100 @@ -18,7 +18,7 @@ #include "mat_checker.h" -DEFINE_PLUGIN ("MaterialChecker", FX_MATERIAL_CLASS, TMaterialChecker); +DEFINE_PLUGIN ("MaterialChecker", FX_MATERIAL_CLASS, TMaterialChecker) int TMaterialChecker::setAttribute (const std::string& rktNAME, NAttribute nVALUE, EAttribType eTYPE) { diff -urN ../tmp-orig/panorama-0.13.2/plugins/material/crackle/mat_crackle.cpp ./plugins/material/crackle/mat_crackle.cpp --- ../tmp-orig/panorama-0.13.2/plugins/material/crackle/mat_crackle.cpp 2004-12-30 21:02:41.568389264 +0100 +++ ./plugins/material/crackle/mat_crackle.cpp 2004-12-30 20:53:30.029235960 +0100 @@ -24,7 +24,7 @@ #include <time.h> #include "mat_crackle.h" -DEFINE_PLUGIN ("MaterialCrackle", FX_MATERIAL_CLASS, TMaterialCrackle); +DEFINE_PLUGIN ("MaterialCrackle", FX_MATERIAL_CLASS, TMaterialCrackle) TVoronoi::TVoronoi() { diff -urN ../tmp-orig/panorama-0.13.2/plugins/material/leopard/mat_leopard.cpp ./plugins/material/leopard/mat_leopard.cpp --- ../tmp-orig/panorama-0.13.2/plugins/material/leopard/mat_leopard.cpp 2004-12-30 21:02:41.568389264 +0100 +++ ./plugins/material/leopard/mat_leopard.cpp 2004-12-30 20:53:30.029235960 +0100 @@ -20,7 +20,7 @@ #include <cmath> #include "mat_leopard.h" -DEFINE_PLUGIN ("MaterialLeopard", FX_MATERIAL_CLASS, TMaterialLeopard); +DEFINE_PLUGIN ("MaterialLeopard", FX_MATERIAL_CLASS, TMaterialLeopard) int TMaterialLeopard::setAttribute (const std::string& rktNAME, NAttribute nVALUE, EAttribType eTYPE) { diff -urN ../tmp-orig/panorama-0.13.2/plugins/material/marble/mat_marble.cpp ./plugins/material/marble/mat_marble.cpp --- ../tmp-orig/panorama-0.13.2/plugins/material/marble/mat_marble.cpp 2004-12-30 21:02:41.569389112 +0100 +++ ./plugins/material/marble/mat_marble.cpp 2004-12-30 20:53:30.030235808 +0100 @@ -19,7 +19,7 @@ #include <cmath> #include "mat_marble.h" -DEFINE_PLUGIN ("MaterialMarble", FX_MATERIAL_CLASS, TMaterialMarble); +DEFINE_PLUGIN ("MaterialMarble", FX_MATERIAL_CLASS, TMaterialMarble) diff -urN ../tmp-orig/panorama-0.13.2/plugins/material/noise/mat_noise.cpp ./plugins/material/noise/mat_noise.cpp --- ../tmp-orig/panorama-0.13.2/plugins/material/noise/mat_noise.cpp 2004-12-30 21:02:41.570388960 +0100 +++ ./plugins/material/noise/mat_noise.cpp 2004-12-30 20:53:30.030235808 +0100 @@ -19,7 +19,7 @@ #include <cmath> #include "mat_noise.h" -DEFINE_PLUGIN ("MaterialNoise", FX_MATERIAL_CLASS, TMaterialNoise); +DEFINE_PLUGIN ("MaterialNoise", FX_MATERIAL_CLASS, TMaterialNoise) int TMaterialNoise::setAttribute (const std::string& rktNAME, NAttribute nVALUE, EAttribType eTYPE) { diff -urN ../tmp-orig/panorama-0.13.2/plugins/material/parquet/mat_parquet.cpp ./plugins/material/parquet/mat_parquet.cpp --- ../tmp-orig/panorama-0.13.2/plugins/material/parquet/mat_parquet.cpp 2004-12-30 21:02:41.571388808 +0100 +++ ./plugins/material/parquet/mat_parquet.cpp 2004-12-30 20:53:30.030235808 +0100 @@ -19,7 +19,7 @@ #include "mat_parquet.h" -DEFINE_PLUGIN ("MaterialParquet", FX_MATERIAL_CLASS, TMaterialParquet); +DEFINE_PLUGIN ("MaterialParquet", FX_MATERIAL_CLASS, TMaterialParquet) const int akiLookup[8][8] = { diff -urN ../tmp-orig/panorama-0.13.2/plugins/material/wood/mat_wood.cpp ./plugins/material/wood/mat_wood.cpp --- ../tmp-orig/panorama-0.13.2/plugins/material/wood/mat_wood.cpp 2004-12-30 21:02:41.572388656 +0100 +++ ./plugins/material/wood/mat_wood.cpp 2004-12-30 20:53:30.030235808 +0100 @@ -19,7 +19,7 @@ #include "mat_wood.h" -DEFINE_PLUGIN ("MaterialWood", FX_MATERIAL_CLASS, TMaterialWood); +DEFINE_PLUGIN ("MaterialWood", FX_MATERIAL_CLASS, TMaterialWood) inline TColor TMaterialWood::evaluate (const TVector& rktPOINT) const diff -urN ../tmp-orig/panorama-0.13.2/plugins/material/worley/mat_worley.cpp ./plugins/material/worley/mat_worley.cpp --- ../tmp-orig/panorama-0.13.2/plugins/material/worley/mat_worley.cpp 2004-12-30 21:02:41.573388504 +0100 +++ ./plugins/material/worley/mat_worley.cpp 2004-12-30 20:53:30.031235656 +0100 @@ -19,7 +19,7 @@ #include <cmath> #include "mat_worley.h" -DEFINE_PLUGIN ("MaterialWorley", FX_MATERIAL_CLASS, TMaterialWorley); +DEFINE_PLUGIN ("MaterialWorley", FX_MATERIAL_CLASS, TMaterialWorley) int TMaterialWorley::setAttribute (const std::string& rktNAME, NAttribute nVALUE, EAttribType eTYPE) { diff -urN ../tmp-orig/panorama-0.13.2/plugins/object/abvh/abvh.cpp ./plugins/object/abvh/abvh.cpp --- ../tmp-orig/panorama-0.13.2/plugins/object/abvh/abvh.cpp 2004-12-30 21:02:41.573388504 +0100 +++ ./plugins/object/abvh/abvh.cpp 2004-12-30 20:53:30.031235656 +0100 @@ -18,7 +18,7 @@ #include "abvh.h" -DEFINE_PLUGIN ("ABVH", FX_OBJECT_CLASS, TABVH); +DEFINE_PLUGIN ("ABVH", FX_OBJECT_CLASS, TABVH) float TABVH::costByMethod1 (TNode* ptTREE, TObject* ptOBJ) { diff -urN ../tmp-orig/panorama-0.13.2/plugins/object/bezier/bezier.cpp ./plugins/object/bezier/bezier.cpp --- ../tmp-orig/panorama-0.13.2/plugins/object/bezier/bezier.cpp 2004-12-30 21:02:41.574388352 +0100 +++ ./plugins/object/bezier/bezier.cpp 2004-12-30 20:53:30.031235656 +0100 @@ -20,7 +20,7 @@ #include "bezier.h" #include "beziersub.h" -DEFINE_PLUGIN ("BezierSurface", FX_OBJECT_CLASS, TBezierSurface); +DEFINE_PLUGIN ("BezierSurface", FX_OBJECT_CLASS, TBezierSurface) TBezierSurface::TBezierSurface (void) { diff -urN ../tmp-orig/panorama-0.13.2/plugins/object/height_field/height_field.cpp ./plugins/object/height_field/height_field.cpp --- ../tmp-orig/panorama-0.13.2/plugins/object/height_field/height_field.cpp 2004-12-30 21:02:41.575388200 +0100 +++ ./plugins/object/height_field/height_field.cpp 2004-12-30 20:53:30.032235504 +0100 @@ -22,7 +22,7 @@ #include "hlapi/image_manager.h" #include "height_field.h" -DEFINE_PLUGIN ("HeightField", FX_OBJECT_CLASS, THeightField); +DEFINE_PLUGIN ("HeightField", FX_OBJECT_CLASS, THeightField) inline TScalar THeightField::getHeight (size_t I, size_t J) const { diff -urN ../tmp-orig/panorama-0.13.2/plugins/object/lwo/lwo.cpp ./plugins/object/lwo/lwo.cpp --- ../tmp-orig/panorama-0.13.2/plugins/object/lwo/lwo.cpp 2004-12-30 21:02:41.577387896 +0100 +++ ./plugins/object/lwo/lwo.cpp 2004-12-30 20:53:30.032235504 +0100 @@ -21,7 +21,7 @@ #include "llapi/file.h" #include "llapi/material.h" -DEFINE_PLUGIN ("ObjectLW", FX_OBJECT_CLASS, TLightWaveObject); +DEFINE_PLUGIN ("ObjectLW", FX_OBJECT_CLASS, TLightWaveObject) int TLightWaveObject::parseObject (void) { diff -urN ../tmp-orig/panorama-0.13.2/plugins/object/polyhedron/polyhedron.cpp ./plugins/object/polyhedron/polyhedron.cpp --- ../tmp-orig/panorama-0.13.2/plugins/object/polyhedron/polyhedron.cpp 2004-12-30 21:02:41.580387440 +0100 +++ ./plugins/object/polyhedron/polyhedron.cpp 2004-12-30 20:53:30.032235504 +0100 @@ -22,7 +22,7 @@ bool TPolyhedron::_gClassInitialized = false; std::list<TPlaneData> TPolyhedron::_atPlaneDataList[5]; -DEFINE_PLUGIN ("Polyhedron", FX_OBJECT_CLASS, TPolyhedron); +DEFINE_PLUGIN ("Polyhedron", FX_OBJECT_CLASS, TPolyhedron) void TPolyhedron::_initializeClass (void) { diff -urN ../tmp-orig/panorama-0.13.2/plugins/object/subdiv/subdiv.cpp ./plugins/object/subdiv/subdiv.cpp --- ../tmp-orig/panorama-0.13.2/plugins/object/subdiv/subdiv.cpp 2004-12-30 21:02:41.580387440 +0100 +++ ./plugins/object/subdiv/subdiv.cpp 2004-12-30 20:53:30.032235504 +0100 @@ -23,7 +23,7 @@ #include "subdivedge.h" #include "subdivface.h" -DEFINE_PLUGIN ("SubdivisionSurface", FX_OBJECT_CLASS, TSubdiv); +DEFINE_PLUGIN ("SubdivisionSurface", FX_OBJECT_CLASS, TSubdiv) TSubdiv::TSubdiv (void) { diff -urN ../tmp-orig/panorama-0.13.2/plugins/object_filter/cartoon/of_cartoon.cpp ./plugins/object_filter/cartoon/of_cartoon.cpp --- ../tmp-orig/panorama-0.13.2/plugins/object_filter/cartoon/of_cartoon.cpp 2004-12-30 21:02:41.583386984 +0100 +++ ./plugins/object_filter/cartoon/of_cartoon.cpp 2004-12-30 20:53:30.033235352 +0100 @@ -18,7 +18,7 @@ #include "of_cartoon.h" -DEFINE_PLUGIN ("OF_Cartoon", FX_OBJECT_FILTER_CLASS, TOF_Cartoon); +DEFINE_PLUGIN ("OF_Cartoon", FX_OBJECT_FILTER_CLASS, TOF_Cartoon) TColor TOF_Cartoon::filterRadiance (TSurfaceData& rtDATA, const TColor& rktRAD) const { diff -urN ../tmp-orig/panorama-0.13.2/plugins/object_filter/convert_to_grey/of_convert_to_grey.cpp ./plugins/object_filter/convert_to_grey/of_convert_to_grey.cpp --- ../tmp-orig/panorama-0.13.2/plugins/object_filter/convert_to_grey/of_convert_to_grey.cpp 1999-05-23 22:19:42.000000000 +0200 +++ ./plugins/object_filter/convert_to_grey/of_convert_to_grey.cpp 2004-12-30 20:53:30.033235352 +0100 @@ -18,4 +18,4 @@ #include "of_convert_to_grey.h" -DEFINE_PLUGIN ("OF_ConvertToGrey", FX_OBJECT_FILTER_CLASS, TOF_ConvertToGrey); +DEFINE_PLUGIN ("OF_ConvertToGrey", FX_OBJECT_FILTER_CLASS, TOF_ConvertToGrey) diff -urN ../tmp-orig/panorama-0.13.2/plugins/renderer/raytracer/raytracer.cpp ./plugins/renderer/raytracer/raytracer.cpp --- ../tmp-orig/panorama-0.13.2/plugins/renderer/raytracer/raytracer.cpp 2004-12-30 21:02:41.584386832 +0100 +++ ./plugins/renderer/raytracer/raytracer.cpp 2004-12-30 20:53:30.033235352 +0100 @@ -25,7 +25,7 @@ #include "llapi/bsdf.h" #include "raytracer.h" -DEFINE_PLUGIN ("Raytracer", FX_RENDERER_CLASS, TRaytracer); +DEFINE_PLUGIN ("Raytracer", FX_RENDERER_CLASS, TRaytracer) /* * traceRay() diff -urN ../tmp-orig/panorama-0.13.2/plugins/renderer/zbuffer/zbuffer.cpp ./plugins/renderer/zbuffer/zbuffer.cpp --- ../tmp-orig/panorama-0.13.2/plugins/renderer/zbuffer/zbuffer.cpp 2004-12-30 21:02:41.585386680 +0100 +++ ./plugins/renderer/zbuffer/zbuffer.cpp 2004-12-30 20:53:30.034235200 +0100 @@ -21,7 +21,7 @@ #include "llapi/material.h" #include "zbuffer.h" -DEFINE_PLUGIN ("ZBufferRenderer", FX_RENDERER_CLASS, TZBufferRenderer); +DEFINE_PLUGIN ("ZBufferRenderer", FX_RENDERER_CLASS, TZBufferRenderer) void TZBufferRenderer::initialize (TScene& rtSCENE) { diff -urN ../tmp-orig/panorama-0.13.2/plugins/scene_io/rt/rt_io.cpp ./plugins/scene_io/rt/rt_io.cpp --- ../tmp-orig/panorama-0.13.2/plugins/scene_io/rt/rt_io.cpp 2004-12-30 21:02:41.589386072 +0100 +++ ./plugins/scene_io/rt/rt_io.cpp 2004-12-30 20:53:30.034235200 +0100 @@ -20,7 +20,7 @@ #include "parser_defs.h" #include "rt_io.h" -DEFINE_SCENE_IO_PLUGIN ("rt", TSceneRT); +DEFINE_SCENE_IO_PLUGIN ("rt", TSceneRT) std::string TSceneRT::_tInputFileName = ""; DWord TSceneRT::_dwLineNumber = 1L; --------------------------------------- Received: (at 287901-done) by bugs.debian.org; 1 Aug 2005 16:50:18 +0000 >From [EMAIL PROTECTED] Mon Aug 01 09:50:18 2005 Return-path: <[EMAIL PROTECTED]> Received: from sorrow.cyrius.com [65.19.161.204] by spohr.debian.org with esmtp (Exim 3.36 1 (Debian)) id 1DzdUY-0006Yq-00; Mon, 01 Aug 2005 09:50:18 -0700 Received: by sorrow.cyrius.com (Postfix, from userid 10) id 6036E64D54; Mon, 1 Aug 2005 16:50:13 +0000 (UTC) Received: by deprecation.cyrius.com (Postfix, from userid 1000) id 8760F802A; Mon, 1 Aug 2005 17:50:04 +0100 (BST) Date: Mon, 1 Aug 2005 17:50:04 +0100 From: Martin Michlmayr <[EMAIL PROTECTED]> To: [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: Removed Message-ID: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.9i Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-1.0 required=4.0 tests=BAYES_00,ONEWORD, SORTED_RECIPS autolearn=no version=2.60-bugs.debian.org_2005_01_02 X-CrossAssassin-Score: 8 This package has been removed from Debian (no longer maintained upstream). -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]