You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(128) |
Dec
(65) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(48) |
Feb
(132) |
Mar
(95) |
Apr
(47) |
May
(54) |
Jun
(2) |
Jul
(57) |
Aug
(109) |
Sep
(131) |
Oct
(186) |
Nov
(105) |
Dec
(78) |
2007 |
Jan
(125) |
Feb
(105) |
Mar
(52) |
Apr
(104) |
May
(63) |
Jun
(116) |
Jul
(76) |
Aug
|
Sep
(18) |
Oct
(93) |
Nov
(110) |
Dec
(169) |
2008 |
Jan
(90) |
Feb
(64) |
Mar
(41) |
Apr
(23) |
May
(6) |
Jun
(18) |
Jul
(10) |
Aug
(61) |
Sep
(139) |
Oct
(50) |
Nov
(55) |
Dec
(2) |
2009 |
Jan
|
Feb
(1) |
Mar
(62) |
Apr
(22) |
May
(17) |
Jun
(19) |
Jul
(40) |
Aug
(21) |
Sep
|
Oct
(40) |
Nov
(23) |
Dec
|
2010 |
Jan
(14) |
Feb
(40) |
Mar
(9) |
Apr
(11) |
May
(19) |
Jun
(4) |
Jul
(10) |
Aug
(22) |
Sep
(15) |
Oct
|
Nov
(2) |
Dec
|
2011 |
Jan
(13) |
Feb
(10) |
Mar
|
Apr
(13) |
May
|
Jun
|
Jul
(2) |
Aug
(4) |
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
(33) |
May
(20) |
Jun
|
Jul
(8) |
Aug
(7) |
Sep
(2) |
Oct
|
Nov
|
Dec
|
From: Braden M. <br...@us...> - 2006-11-03 05:38:20
|
Update of /cvsroot/openvrml/openvrml/lib/antlr/antlr In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv2200/antlr Modified Files: config.hpp Removed Files: Makefile Log Message: Committed changes from Antlr 2.7.4 to Antlr 2.7.6. Index: config.hpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/lib/antlr/antlr/config.hpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** config.hpp 8 Nov 2004 21:14:30 -0000 1.5 --- config.hpp 3 Nov 2006 05:38:18 -0000 1.6 *************** *** 42,46 **** // _MSC_VER == 1200 for Microsoft Visual C++ 6.0 // _MSC_VER == 1300 for Microsoft Visual C++ 7.0 ! #if defined(_MSC_VER) && !defined(__ICL) // This warning really gets on my nerves. --- 42,52 ---- // _MSC_VER == 1200 for Microsoft Visual C++ 6.0 // _MSC_VER == 1300 for Microsoft Visual C++ 7.0 ! #if defined(_MSC_VER) ! ! # if _MSC_VER < 1300 ! # define NOMINMAX ! # pragma warning(disable : 4786) ! # define min _cpp_min ! # endif // This warning really gets on my nerves. *************** *** 48,51 **** --- 54,59 ---- // all the time with STL. # pragma warning( disable : 4786 4231 ) + // this shuts up some DLL interface warnings for STL + # pragma warning( disable : 4251 ) # ifdef ANTLR_CXX_USE_STLPORT *************** *** 72,75 **** --- 80,89 ---- # endif + # if ( _MSC_VER < 1200 ) + // supposedly only for MSVC5 and before... + // Using vector<XXX> requires operator<(X,X) to be defined + # define NEEDS_OPERATOR_LESS_THAN + # endif + // VC6 # if ( _MSC_VER == 1200 ) *************** *** 77,91 **** # endif ! // These should be verified for newer MSVC's // Not allowed to put 'static const int XXX=20;' in a class definition ! # define NO_STATIC_CONSTS ! // Using vector<XXX> requires operator<(X,X) to be defined ! # define NEEDS_OPERATOR_LESS_THAN ! // No strcasecmp or stricmp in the C library ! # define ANTLR_REALLY_NO_STRCASECMP ! # undef ANTLR_CCTYPE_NEEDS_STD ! // needed for CharScannerLiteralsLess ! # define NO_TEMPLATE_PARTS #endif // End of Microsoft Visual C++ --- 91,105 ---- # endif ! # if ( _MSC_VER < 1310 ) ! // Supposedly only for MSVC7 and before... // Not allowed to put 'static const int XXX=20;' in a class definition ! # define NO_STATIC_CONSTS ! # define NO_TEMPLATE_PARTS ! # endif ! // No strcasecmp in the C library (so use stricmp instead) ! // - Anyone know which is in which standard? ! # define NO_STRCASECMP ! # undef ANTLR_CCTYPE_NEEDS_STD #endif // End of Microsoft Visual C++ *************** *** 93,113 **** /*}}}*/ /******************************************************************************/ - - // RK: belongs to what compiler? - #if defined(__ICL) - # define NO_STRCASECMP - #endif - - /*****************************************************************************/ - /*{{{ Irix Compiler - *****************************************************************************/ - #if defined(__sgi) && !defined(__GNUC__) - #define HAS_NOT_CASSERT_H - #define HAS_NOT_CCTYPE_H - #define HAS_NOT_CSTRING_H - #define HAS_NOT_CSTDIO_H - #endif - - /*****************************************************************************/ /*{{{ SunPro Compiler (Using OBJECTSPACE STL) *****************************************************************************/ --- 107,110 ---- *************** *** 188,193 **** --- 185,194 ---- // No strcasecmp in the C library (so use stricmp instead) // - Anyone know which is in which standard? + #if (defined(_AIX) && (__IBMCPP__ >= 600)) + # define NO_STATIC_CONSTS + #else # define NO_STRCASECMP # undef ANTLR_CCTYPE_NEEDS_STD + #endif #endif // end IBM VisualAge C++ *************** *** 265,268 **** --- 266,278 ---- /*}}}*/ /*****************************************************************************/ + #ifdef __BORLANDC__ + # if __BORLANDC__ >= 560 + # include <ctype> + # include <stdlib> + # define ANTLR_CCTYPE_NEEDS_STD + # else + # error "sorry, compiler is too old - consider an update." + # endif + #endif // Redefine these for backwards compatability.. --- Makefile DELETED --- |
From: Braden M. <br...@us...> - 2006-10-31 03:43:10
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml-gl/openvrml/gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17911/src/libopenvrml-gl/openvrml/gl Modified Files: viewer.cpp viewer.h Log Message: Applied nonvirtual interface pattern to openvrml::viewer. Index: viewer.h =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml-gl/openvrml/gl/viewer.h,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** viewer.h 19 May 2006 21:52:43 -0000 1.14 --- viewer.h 31 Oct 2006 03:43:07 -0000 1.15 *************** *** 133,143 **** double render_time1; - // Window system specific methods - - virtual void post_redraw() = 0; - virtual void set_cursor(cursor_style c) = 0; - virtual void swap_buffers() = 0; - virtual void set_timer(double interval) = 0; - // Initialize OpenGL state void initialize(); --- 133,136 ---- *************** *** 161,322 **** virtual ~viewer() OPENVRML_NOTHROW; ! virtual rendering_mode mode(); ! virtual double frame_rate(); ! virtual void reset_user_navigation(); // Scope dirlights, open/close display lists ! virtual object_t begin_object(const char * id, bool retain); ! virtual void end_object(); // Insert objects into the display list virtual object_t ! insert_background(const std::vector<float> & groundAngle, ! const std::vector<color> & groundColor, ! const std::vector<float> & skyAngle, ! const std::vector<color> & skyColor, ! const image & front, ! const image & back, ! const image & left, ! const image & right, ! const image & top, ! const image & bottom); ! virtual object_t insert_box(const vec3f & size); ! virtual object_t insert_cone(float height, float radius, ! bool bottom, bool side); ! virtual object_t insert_cylinder(float height, float radius, ! bool bottom, bool side, bool top); virtual object_t ! insert_elevation_grid(unsigned int mask, ! const std::vector<float> & height, ! int32 xDimension, ! int32 zDimension, ! float xSpacing, ! float zSpacing, ! const std::vector<color> & color, ! const std::vector<vec3f> & normal, ! const std::vector<vec2f> & texCoord); virtual object_t ! insert_extrusion( ! unsigned int mask, ! const std::vector<vec3f> & spine, ! const std::vector<vec2f> & crossSection, ! const std::vector<openvrml::rotation> & orientation, ! const std::vector<vec2f> & scale); virtual object_t ! insert_line_set(const std::vector<vec3f> & coord, ! const std::vector<int32> & coordIndex, ! bool colorPerVertex, ! const std::vector<color> & color, ! const std::vector<int32> & colorIndex); virtual object_t ! insert_point_set(const std::vector<vec3f> & coord, ! const std::vector<color> & color); virtual object_t ! insert_shell(unsigned int mask, ! const std::vector<vec3f> & coord, ! const std::vector<int32> & coordIndex, ! const std::vector<color> & color, ! const std::vector<int32> & colorIndex, ! const std::vector<vec3f> & normal, ! const std::vector<int32> & normalIndex, ! const std::vector<vec2f> & texCoord, ! const std::vector<int32> & texCoordIndex); ! virtual object_t insert_sphere(float radius); // Lights ! virtual object_t insert_dir_light(float ambientIntensity, ! float intensity, ! const color & color, ! const vec3f & direction); ! virtual object_t insert_point_light(float ambientIntensity, ! const vec3f & attenuation, ! const color & color, ! float intensity, ! const vec3f & location, ! float radius); ! virtual object_t insert_spot_light(float ambientIntensity, ! const vec3f & attenuation, ! float beamWidth, ! const color & color, ! float cutOffAngle, ! const vec3f & direction, ! float intensity, ! const vec3f & location, ! float radius); ! virtual object_t insert_reference(object_t existing_object); ! virtual void remove_object(object_t ref); ! virtual void enable_lighting(bool); // Set attributes ! virtual void set_color(const color & rgb, float a = 1.0); ! virtual void set_fog(const color & color, ! float visibilityRange, ! const char * type); ! virtual void set_material(float ambientIntensity, ! const color & diffuseColor, ! const color & emissiveColor, ! float shininess, ! const color & specularColor, ! float transparency); ! virtual void set_material_mode(size_t tex_components, ! bool geometry_color); ! virtual void set_sensitive(node * object); ! virtual texture_object_t insert_texture(const image & img, ! bool repeat_s, ! bool repeat_t, ! bool retainHint = false); // Reference/remove a texture object ! virtual void insert_texture_reference(texture_object_t ref, ! size_t components); ! virtual void remove_texture_object(texture_object_t); ! virtual void set_texture_transform(const vec2f & center, ! float rotation, ! const vec2f & scale, ! const vec2f & translation); ! virtual void set_viewpoint(const vec3f & position, ! const openvrml::rotation & orientation, ! float fieldOfView, ! float avatarSize, ! float visibilityLimit); ! virtual void transform(const mat4f & mat); ! virtual void transform_points(size_t nPoints, vec3f * point) const; virtual void ! draw_bounding_sphere(const bounding_sphere & bs, ! bounding_volume::intersection intersection); ! ! ! ! // ! // Viewer callbacks (not for public consumption) ! ! // Update the model. ! void update( double time = 0.0 ); ! ! // Redraw the screen. ! virtual void redraw(); ! void resize(size_t width, size_t height); ! // user interaction ! void input(event_info * e); }; } --- 154,325 ---- virtual ~viewer() OPENVRML_NOTHROW; ! // ! // Viewer callbacks (not for public consumption) ! // Update the model. ! void update( double time = 0.0 ); ! ! // Redraw the screen. ! virtual void redraw(); ! void resize(size_t width, size_t height); ! ! // user interaction ! ! void input(event_info * e); ! ! private: ! virtual rendering_mode do_mode(); ! virtual double do_frame_rate(); ! ! virtual void do_reset_user_navigation(); // Scope dirlights, open/close display lists ! virtual object_t do_begin_object(const char * id, bool retain); ! virtual void do_end_object(); // Insert objects into the display list virtual object_t ! do_insert_background(const std::vector<float> & groundAngle, ! const std::vector<color> & groundColor, ! const std::vector<float> & skyAngle, ! const std::vector<color> & skyColor, ! const image & front, ! const image & back, ! const image & left, ! const image & right, ! const image & top, ! const image & bottom); ! virtual object_t do_insert_box(const vec3f & size); ! virtual object_t do_insert_cone(float height, float radius, ! bool bottom, bool side); ! virtual object_t do_insert_cylinder(float height, float radius, ! bool bottom, bool side, ! bool top); virtual object_t ! do_insert_elevation_grid(unsigned int mask, ! const std::vector<float> & height, ! int32 xDimension, ! int32 zDimension, ! float xSpacing, ! float zSpacing, ! const std::vector<color> & color, ! const std::vector<vec3f> & normal, ! const std::vector<vec2f> & texCoord); virtual object_t ! do_insert_extrusion( ! unsigned int mask, ! const std::vector<vec3f> & spine, ! const std::vector<vec2f> & crossSection, ! const std::vector<openvrml::rotation> & orientation, ! const std::vector<vec2f> & scale); virtual object_t ! do_insert_line_set(const std::vector<vec3f> & coord, ! const std::vector<int32> & coordIndex, ! bool colorPerVertex, ! const std::vector<color> & color, ! const std::vector<int32> & colorIndex); virtual object_t ! do_insert_point_set(const std::vector<vec3f> & coord, ! const std::vector<color> & color); virtual object_t ! do_insert_shell(unsigned int mask, ! const std::vector<vec3f> & coord, ! const std::vector<int32> & coordIndex, ! const std::vector<color> & color, ! const std::vector<int32> & colorIndex, ! const std::vector<vec3f> & normal, ! const std::vector<int32> & normalIndex, ! const std::vector<vec2f> & texCoord, ! const std::vector<int32> & texCoordIndex); ! virtual object_t do_insert_sphere(float radius); // Lights ! virtual object_t do_insert_dir_light(float ambientIntensity, ! float intensity, ! const color & color, ! const vec3f & direction); ! virtual object_t do_insert_point_light(float ambientIntensity, ! const vec3f & attenuation, ! const color & color, ! float intensity, ! const vec3f & location, ! float radius); ! virtual object_t do_insert_spot_light(float ambientIntensity, ! const vec3f & attenuation, ! float beamWidth, ! const color & color, ! float cutOffAngle, ! const vec3f & direction, ! float intensity, ! const vec3f & location, ! float radius); ! virtual object_t do_insert_reference(object_t existing_object); ! virtual void do_remove_object(object_t ref); ! virtual void do_enable_lighting(bool); // Set attributes ! virtual void do_set_color(const color & rgb, float a = 1.0); ! virtual void do_set_fog(const color & color, ! float visibilityRange, ! const char * type); ! virtual void do_set_material(float ambientIntensity, ! const color & diffuseColor, ! const color & emissiveColor, ! float shininess, ! const color & specularColor, ! float transparency); ! virtual void do_set_material_mode(size_t tex_components, ! bool geometry_color); ! virtual void do_set_sensitive(node * object); ! virtual texture_object_t ! do_insert_texture(const image & img, ! bool repeat_s, ! bool repeat_t, ! bool retainHint = false); // Reference/remove a texture object ! virtual void do_insert_texture_reference(texture_object_t ref, ! size_t components); ! virtual void do_remove_texture_object(texture_object_t); ! virtual void do_set_texture_transform(const vec2f & center, ! float rotation, ! const vec2f & scale, ! const vec2f & translation); ! virtual void do_set_viewpoint(const vec3f & position, ! const openvrml::rotation & orientation, ! float fieldOfView, ! float avatarSize, ! float visibilityLimit); ! virtual void do_transform(const mat4f & mat); ! virtual void do_transform_points(size_t nPoints, ! vec3f * point) const; virtual void ! do_draw_bounding_sphere( ! const bounding_sphere & bs, ! bounding_volume::intersection intersection); ! // Window system specific methods ! virtual void post_redraw() = 0; ! virtual void set_cursor(cursor_style c) = 0; ! virtual void swap_buffers() = 0; ! virtual void set_timer(double interval) = 0; }; } Index: viewer.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml-gl/openvrml/gl/viewer.cpp,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** viewer.cpp 18 Oct 2006 05:56:59 -0000 1.48 --- viewer.cpp 31 Oct 2006 03:43:07 -0000 1.49 *************** *** 1038,1042 **** */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::begin_object(const char *, bool) { // Finish setup stuff before first object --- 1038,1042 ---- */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::do_begin_object(const char *, bool) { // Finish setup stuff before first object *************** *** 1062,1066 **** * @brief End of group scope. */ ! void openvrml::gl::viewer::end_object() { // Decrement nesting level for group-scoped lights and get rid --- 1062,1066 ---- * @brief End of group scope. */ ! void openvrml::gl::viewer::do_end_object() { // Decrement nesting level for group-scoped lights and get rid *************** *** 1122,1126 **** * @return the rendering_mode. */ ! openvrml::gl::viewer::rendering_mode openvrml::gl::viewer::mode() { return this->select_mode --- 1122,1126 ---- * @return the rendering_mode. */ ! openvrml::gl::viewer::rendering_mode openvrml::gl::viewer::do_mode() { return this->select_mode *************** *** 1134,1138 **** * @return the frame rate. */ ! double openvrml::gl::viewer::frame_rate() { return 1.0 / this->render_time; --- 1134,1138 ---- * @return the frame rate. */ ! double openvrml::gl::viewer::do_frame_rate() { return 1.0 / this->render_time; *************** *** 1143,1147 **** * bound Viewpoint node. */ ! void openvrml::gl::viewer::reset_user_navigation() { assert(this->browser()); --- 1143,1147 ---- * bound Viewpoint node. */ ! void openvrml::gl::viewer::do_reset_user_navigation() { assert(this->browser()); *************** *** 1167,1180 **** */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::insert_background(const std::vector<float> & groundAngle, ! const std::vector<color> & groundColor, ! const std::vector<float> & skyAngle, ! const std::vector<color> & skyColor, ! const image & front, ! const image & back, ! const image & left, ! const image & right, ! const image & top, ! const image & bottom) { using std::vector; --- 1167,1181 ---- */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer:: ! do_insert_background(const std::vector<float> & groundAngle, ! const std::vector<color> & groundColor, ! const std::vector<float> & skyAngle, ! const std::vector<color> & skyColor, ! const image & front, ! const image & back, ! const image & left, ! const image & right, ! const image & top, ! const image & bottom) { using std::vector; *************** *** 1438,1442 **** */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::insert_box(const vec3f & size) { GLuint glid = 0; --- 1439,1443 ---- */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::do_insert_box(const vec3f & size) { GLuint glid = 0; *************** *** 1581,1588 **** */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::insert_cone(const float height, ! const float radius, ! const bool bottom, ! const bool side) { GLuint glid = 0; --- 1582,1589 ---- */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::do_insert_cone(const float height, ! const float radius, ! const bool bottom, ! const bool side) { GLuint glid = 0; *************** *** 1667,1675 **** */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::insert_cylinder(const float height, ! const float radius, ! const bool bottom, ! const bool side, ! const bool top) { GLuint glid = 0; --- 1668,1676 ---- */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::do_insert_cylinder(const float height, ! const float radius, ! const bool bottom, ! const bool side, ! const bool top) { GLuint glid = 0; *************** *** 1813,1825 **** */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::insert_elevation_grid(const unsigned int mask, ! const std::vector<float> & height, ! const int32 xDimension, ! const int32 zDimension, ! const float xSpacing, ! const float zSpacing, ! const std::vector<color> & color, ! const std::vector<vec3f> & normal, ! const std::vector<vec2f> & texCoord) { int32 i, j; --- 1814,1827 ---- */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer:: ! do_insert_elevation_grid(const unsigned int mask, ! const std::vector<float> & height, ! const int32 xDimension, ! const int32 zDimension, ! const float xSpacing, ! const float zSpacing, ! const std::vector<color> & color, ! const std::vector<vec3f> & normal, ! const std::vector<vec2f> & texCoord) { int32 i, j; *************** *** 2387,2396 **** */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::insert_extrusion( ! unsigned int mask, ! const std::vector<vec3f> & spine, ! const std::vector<vec2f> & crossSection, ! const std::vector<openvrml::rotation> & orientation, ! const std::vector<vec2f> & scale) { using std::vector; --- 2389,2398 ---- */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer:: ! do_insert_extrusion(unsigned int mask, ! const std::vector<vec3f> & spine, ! const std::vector<vec2f> & crossSection, ! const std::vector<openvrml::rotation> & orientation, ! const std::vector<vec2f> & scale) { using std::vector; *************** *** 2462,2470 **** */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::insert_line_set(const std::vector<vec3f> & coord, ! const std::vector<int32> & coordIndex, ! bool colorPerVertex, ! const std::vector<color> & color, ! const std::vector<int32> & colorIndex) { GLuint glid = 0; --- 2464,2472 ---- */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::do_insert_line_set(const std::vector<vec3f> & coord, ! const std::vector<int32> & coordIndex, ! bool colorPerVertex, ! const std::vector<color> & color, ! const std::vector<int32> & colorIndex) { GLuint glid = 0; *************** *** 2540,2545 **** */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::insert_point_set(const std::vector<vec3f> & coord, ! const std::vector<color> & color) { GLuint glid = 0; --- 2542,2547 ---- */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::do_insert_point_set(const std::vector<vec3f> & coord, ! const std::vector<color> & color) { GLuint glid = 0; *************** *** 2823,2835 **** */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::insert_shell(unsigned int mask, ! const std::vector<vec3f> & coord, ! const std::vector<int32> & coord_index, ! const std::vector<color> & color, ! const std::vector<int32> & color_index, ! const std::vector<vec3f> & normal, ! const std::vector<int32> & normal_index, ! const std::vector<vec2f> & tex_coord, ! const std::vector<int32> & tex_coord_index) { using std::vector; --- 2825,2838 ---- */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer:: ! do_insert_shell(unsigned int mask, ! const std::vector<vec3f> & coord, ! const std::vector<int32> & coord_index, ! const std::vector<color> & color, ! const std::vector<int32> & color_index, ! const std::vector<vec3f> & normal, ! const std::vector<int32> & normal_index, ! const std::vector<vec2f> & tex_coord, ! const std::vector<int32> & tex_coord_index) { using std::vector; *************** *** 3020,3024 **** */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::insert_sphere(const float radius) { GLuint glid = 0; --- 3023,3027 ---- */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::do_insert_sphere(const float radius) { GLuint glid = 0; *************** *** 3083,3090 **** */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::insert_dir_light(const float ambientIntensity, ! const float intensity, ! const color & color, ! const vec3f & direction) { float amb[4] = { ambientIntensity * color.r(), --- 3086,3093 ---- */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::do_insert_dir_light(const float ambientIntensity, ! const float intensity, ! const color & color, ! const vec3f & direction) { float amb[4] = { ambientIntensity * color.r(), *************** *** 3143,3152 **** */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::insert_point_light(const float ambientIntensity, ! const vec3f & attenuation, ! const color & color, ! const float intensity, ! const vec3f & location, ! const float radius) { float amb[4] = { ambientIntensity * color.r(), --- 3146,3155 ---- */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::do_insert_point_light(const float ambientIntensity, ! const vec3f & attenuation, ! const color & color, ! const float intensity, ! const vec3f & location, ! const float radius) { float amb[4] = { ambientIntensity * color.r(), *************** *** 3208,3220 **** */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::insert_spot_light(const float ambientIntensity, ! const vec3f & attenuation, ! const float beamWidth, ! const color & color, ! const float cutOffAngle, ! const vec3f & direction, ! const float intensity, ! const vec3f & location, ! const float radius) { float amb[4] = { ambientIntensity * color.r(), --- 3211,3223 ---- */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::do_insert_spot_light(const float ambientIntensity, ! const vec3f & attenuation, ! const float beamWidth, ! const color & color, ! const float cutOffAngle, ! const vec3f & direction, ! const float intensity, ! const vec3f & location, ! const float radius) { float amb[4] = { ambientIntensity * color.r(), *************** *** 3267,3271 **** */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::insert_reference(const object_t existing_object) { glCallList(GLuint(existing_object)); --- 3270,3274 ---- */ openvrml::gl::viewer::object_t ! openvrml::gl::viewer::do_insert_reference(const object_t existing_object) { glCallList(GLuint(existing_object)); *************** *** 3278,3282 **** * @param[in] ref object handle. */ ! void openvrml::gl::viewer::remove_object(const object_t ref) { glDeleteLists(GLuint(ref), 1); --- 3281,3285 ---- * @param[in] ref object handle. */ ! void openvrml::gl::viewer::do_remove_object(const object_t ref) { glDeleteLists(GLuint(ref), 1); *************** *** 3288,3292 **** * @param[in] val whether lighting should be enabled. */ ! void openvrml::gl::viewer::enable_lighting(const bool val) { if (val) { --- 3291,3295 ---- * @param[in] val whether lighting should be enabled. */ ! void openvrml::gl::viewer::do_enable_lighting(const bool val) { if (val) { *************** *** 3305,3309 **** * @param[in] a alpha (transparency) component. */ ! void openvrml::gl::viewer::set_color(const color & rgb, const float a) { glColor4f(rgb.r(), rgb.g(), rgb.b(), a); --- 3308,3312 ---- * @param[in] a alpha (transparency) component. */ ! void openvrml::gl::viewer::do_set_color(const color & rgb, const float a) { glColor4f(rgb.r(), rgb.g(), rgb.b(), a); *************** *** 3318,3324 **** * @param[in] type fog type. */ ! void openvrml::gl::viewer::set_fog(const color & color, ! const float visibilityRange, ! const char * const type) { static const std::string exponential("EXPONENTIAL"); --- 3321,3327 ---- * @param[in] type fog type. */ ! void openvrml::gl::viewer::do_set_fog(const color & color, ! const float visibilityRange, ! const char * const type) { static const std::string exponential("EXPONENTIAL"); *************** *** 3345,3354 **** * @param[in] transparency transparency. */ ! void openvrml::gl::viewer::set_material(const float ambientIntensity, ! const color & diffuseColor, ! const color & emissiveColor, ! const float shininess, ! const color & specularColor, ! const float transparency) { const float alpha = 1.0f - transparency; --- 3348,3357 ---- * @param[in] transparency transparency. */ ! void openvrml::gl::viewer::do_set_material(const float ambientIntensity, ! const color & diffuseColor, ! const color & emissiveColor, ! const float shininess, ! const color & specularColor, ! const float transparency) { const float alpha = 1.0f - transparency; *************** *** 3399,3404 **** * @param[in] geometry_color geometry color. */ ! void openvrml::gl::viewer::set_material_mode(const size_t tex_components, ! const bool geometry_color) { if (tex_components && this->texture && !this->wireframe) { --- 3402,3407 ---- * @param[in] geometry_color geometry color. */ ! void openvrml::gl::viewer::do_set_material_mode(const size_t tex_components, ! const bool geometry_color) { if (tex_components && this->texture && !this->wireframe) { *************** *** 3429,3433 **** * @param[in] object a node. */ ! void openvrml::gl::viewer::set_sensitive(node * object) { if (object) { --- 3432,3436 ---- * @param[in] object a node. */ ! void openvrml::gl::viewer::do_set_sensitive(node * object) { if (object) { *************** *** 3466,3473 **** */ openvrml::gl::viewer::texture_object_t ! openvrml::gl::viewer::insert_texture(const image & img, ! bool repeat_s, ! bool repeat_t, ! bool retainHint) { using std::vector; --- 3469,3476 ---- */ openvrml::gl::viewer::texture_object_t ! openvrml::gl::viewer::do_insert_texture(const image & img, ! bool repeat_s, ! bool repeat_t, ! bool retainHint) { using std::vector; *************** *** 3576,3581 **** * @param[in] components number of components. */ ! void openvrml::gl::viewer::insert_texture_reference(const texture_object_t ref, ! const size_t components) { #if USE_TEXTURE_DISPLAY_LISTS --- 3579,3585 ---- * @param[in] components number of components. */ ! void ! openvrml::gl::viewer::do_insert_texture_reference(const texture_object_t ref, ! const size_t components) { #if USE_TEXTURE_DISPLAY_LISTS *************** *** 3594,3598 **** * @param[in] ref texture handle. */ ! void openvrml::gl::viewer::remove_texture_object(const texture_object_t ref) { #if USE_TEXTURE_DISPLAY_LISTS --- 3598,3602 ---- * @param[in] ref texture handle. */ ! void openvrml::gl::viewer::do_remove_texture_object(const texture_object_t ref) { #if USE_TEXTURE_DISPLAY_LISTS *************** *** 3613,3620 **** * @param[in] translation translation. */ ! void openvrml::gl::viewer::set_texture_transform(const vec2f & center, ! float rotation, ! const vec2f & scale, ! const vec2f & translation) { glMatrixMode(GL_TEXTURE); --- 3617,3624 ---- * @param[in] translation translation. */ ! void openvrml::gl::viewer::do_set_texture_transform(const vec2f & center, ! float rotation, ! const vec2f & scale, ! const vec2f & translation) { glMatrixMode(GL_TEXTURE); *************** *** 3678,3686 **** * @param[in] visibilityLimit visiblity limit. */ ! void openvrml::gl::viewer::set_viewpoint(const vec3f & position, ! const openvrml::rotation & orientation, ! const float fieldOfView, ! const float avatarSize, ! const float visibilityLimit) { glMatrixMode( GL_PROJECTION ); --- 3682,3691 ---- * @param[in] visibilityLimit visiblity limit. */ ! void ! openvrml::gl::viewer::do_set_viewpoint(const vec3f & position, ! const openvrml::rotation & orientation, ! const float fieldOfView, ! const float avatarSize, ! const float visibilityLimit) { glMatrixMode( GL_PROJECTION ); *************** *** 3719,3724 **** * @param[in] point pointer to the first point in an array. */ ! void openvrml::gl::viewer::transform_points(const size_t nPoints, ! vec3f * point) const { mat4f m; --- 3724,3729 ---- * @param[in] point pointer to the first point in an array. */ ! void openvrml::gl::viewer::do_transform_points(const size_t nPoints, ! vec3f * point) const { mat4f m; *************** *** 3733,3737 **** * @param[in] mat a matrix. */ ! void openvrml::gl::viewer::transform(const mat4f & mat) { glMultMatrixf(&mat[0][0]); --- 3738,3742 ---- * @param[in] mat a matrix. */ ! void openvrml::gl::viewer::do_transform(const mat4f & mat) { glMultMatrixf(&mat[0][0]); *************** *** 4417,4421 **** */ void ! openvrml::gl::viewer::draw_bounding_sphere( const bounding_sphere & bs, const bounding_volume::intersection intersection) --- 4422,4426 ---- */ void ! openvrml::gl::viewer::do_draw_bounding_sphere( const bounding_sphere & bs, const bounding_volume::intersection intersection) |
From: Braden M. <br...@us...> - 2006-10-31 03:43:09
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17911/src/libopenvrml/openvrml Modified Files: viewer.cpp viewer.h Log Message: Applied nonvirtual interface pattern to openvrml::viewer. Index: viewer.h =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/viewer.h,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** viewer.h 12 Feb 2006 09:40:17 -0000 1.12 --- viewer.h 31 Oct 2006 03:43:06 -0000 1.13 *************** *** 67,195 **** openvrml::browser * browser() const OPENVRML_NOTHROW; ! virtual rendering_mode mode() = 0; ! virtual double frame_rate() = 0; ! virtual void reset_user_navigation() = 0; ! virtual object_t begin_object(const char * id, ! bool retain = false) = 0; ! virtual void end_object() = 0; ! virtual object_t ! insert_background(const std::vector<float> & ground_angle, ! const std::vector<color> & ground_color, ! const std::vector<float> & sky_angle, ! const std::vector<color> & sky_color, ! const image & front, ! const image & back, ! const image & left, ! const image & right, ! const image & top, ! const image & bottom) = 0; ! virtual object_t insert_box(const vec3f & size) = 0; ! virtual object_t insert_cone(float height, float radius, bool bottom, ! bool side) = 0; ! virtual object_t ! insert_cylinder(float height, float radius, bool bottom, bool side, ! bool top) = 0; ! virtual object_t ! insert_elevation_grid(unsigned int mask, ! const std::vector<float> & height, ! int32 x_dimension, int32 z_dimension, ! float x_spacing, float z_spacing, const std::vector<color> & color, const std::vector<vec3f> & normal, ! const std::vector<vec2f> & tex_coord) = 0; ! virtual object_t ! insert_extrusion(unsigned int mask, ! const std::vector<vec3f> & spine, ! const std::vector<vec2f> & cross_section, ! const std::vector<rotation> & orientation, ! const std::vector<vec2f> & scale) = 0; ! virtual object_t ! insert_line_set(const std::vector<vec3f> & coord, ! const std::vector<int32> & coord_index, ! bool color_per_vertex, ! const std::vector<color> & color, ! const std::vector<int32> & color_index) = 0; ! virtual object_t ! insert_point_set(const std::vector<vec3f> & coord, ! const std::vector<color> & color) = 0; ! virtual object_t ! insert_shell(unsigned int mask, ! const std::vector<vec3f> & coord, ! const std::vector<int32> & coord_index, ! const std::vector<color> & color, ! const std::vector<int32> & color_index, ! const std::vector<vec3f> & normal, ! const std::vector<int32> & normal_index, ! const std::vector<vec2f> & tex_coord, ! const std::vector<int32> & tex_coord_index) = 0; ! virtual object_t insert_sphere(float radius) = 0; ! virtual object_t insert_dir_light(float ambient_intensity, ! float intensity, ! const color & color, ! const vec3f & direction) = 0; ! virtual object_t insert_point_light(float ambient_intensity, ! const vec3f & attenuation, ! const color & color, ! float intensity, ! const vec3f & location, ! float radius) = 0; ! virtual object_t insert_spot_light(float ambient_intensity, ! const vec3f & attenuation, ! float beam_width, ! const color & color, ! float cut_off_angle, ! const vec3f & direction, ! float intensity, ! const vec3f & location, ! float radius) = 0; ! virtual object_t insert_reference(object_t existing_object) = 0; ! virtual void remove_object(object_t ref) = 0; ! virtual void enable_lighting(bool val) = 0; ! virtual void set_fog(const color & color, float visibility_range, ! const char * type) = 0; ! virtual void set_color(const color & rgb, float a = 1.0) = 0; ! virtual void set_material(float ambient_intensity, ! const color & diffuse_color, ! const color & emissive_color, ! float shininess, ! const color & specular_color, ! float transparency) = 0; ! virtual void set_material_mode(size_t tex_components, ! bool geometry_color) = 0; ! virtual void set_sensitive(node * object) = 0; ! virtual texture_object_t insert_texture(const image & img, ! bool repeat_s, ! bool repeat_t, ! bool retainHint = false) = 0; ! virtual void insert_texture_reference(texture_object_t ref, ! size_t components) = 0; ! virtual void remove_texture_object(texture_object_t ref) = 0; ! virtual void set_texture_transform(const vec2f & center, ! float rotation, ! const vec2f & scale, ! const vec2f & translation) = 0; ! virtual void set_viewpoint(const vec3f & position, ! const rotation & orientation, ! float field_of_view, ! float avatar_size, ! float visibility_limit) = 0; ! virtual void transform(const mat4f & mat) = 0; ! virtual void transform_points(size_t nPoints, vec3f * point) const = 0; // still working on some navigation api issues, so don't depend on --- 67,187 ---- openvrml::browser * browser() const OPENVRML_NOTHROW; ! rendering_mode mode(); ! double frame_rate(); ! void reset_user_navigation(); ! object_t begin_object(const char * id, bool retain = false); ! void end_object(); ! object_t insert_background(const std::vector<float> & ground_angle, ! const std::vector<color> & ground_color, ! const std::vector<float> & sky_angle, ! const std::vector<color> & sky_color, ! const image & front, ! const image & back, ! const image & left, ! const image & right, ! const image & top, ! const image & bottom); ! object_t insert_box(const vec3f & size); ! object_t insert_cone(float height, float radius, bool bottom, ! bool side); ! object_t insert_cylinder(float height, float radius, bool bottom, ! bool side, bool top); ! object_t insert_elevation_grid(unsigned int mask, ! const std::vector<float> & height, ! int32 x_dimension, int32 z_dimension, ! float x_spacing, float z_spacing, ! const std::vector<color> & color, ! const std::vector<vec3f> & normal, ! const std::vector<vec2f> & tex_coord); ! object_t insert_extrusion(unsigned int mask, ! const std::vector<vec3f> & spine, ! const std::vector<vec2f> & cross_section, ! const std::vector<rotation> & orientation, ! const std::vector<vec2f> & scale); ! object_t insert_line_set(const std::vector<vec3f> & coord, ! const std::vector<int32> & coord_index, ! bool color_per_vertex, ! const std::vector<color> & color, ! const std::vector<int32> & color_index); ! object_t insert_point_set(const std::vector<vec3f> & coord, ! const std::vector<color> & color); ! object_t insert_shell(unsigned int mask, ! const std::vector<vec3f> & coord, ! const std::vector<int32> & coord_index, const std::vector<color> & color, + const std::vector<int32> & color_index, const std::vector<vec3f> & normal, ! const std::vector<int32> & normal_index, ! const std::vector<vec2f> & tex_coord, ! const std::vector<int32> & tex_coord_index); ! object_t insert_sphere(float radius); ! object_t insert_dir_light(float ambient_intensity, ! float intensity, ! const color & color, ! const vec3f & direction); ! object_t insert_point_light(float ambient_intensity, ! const vec3f & attenuation, ! const color & color, ! float intensity, ! const vec3f & location, ! float radius); ! object_t insert_spot_light(float ambient_intensity, ! const vec3f & attenuation, ! float beam_width, ! const color & color, ! float cut_off_angle, ! const vec3f & direction, ! float intensity, ! const vec3f & location, ! float radius); ! object_t insert_reference(object_t existing_object); ! void remove_object(object_t ref); ! void enable_lighting(bool val); ! void set_fog(const color & color, float visibility_range, ! const char * type); ! void set_color(const color & rgb, float a = 1.0); ! void set_material(float ambient_intensity, ! const color & diffuse_color, ! const color & emissive_color, ! float shininess, ! const color & specular_color, ! float transparency); ! void set_material_mode(size_t tex_components, ! bool geometry_color); ! void set_sensitive(node * object); ! texture_object_t insert_texture(const image & img, ! bool repeat_s, ! bool repeat_t, ! bool retainHint = false); ! void insert_texture_reference(texture_object_t ref, ! size_t components); ! void remove_texture_object(texture_object_t ref); ! void set_texture_transform(const vec2f & center, ! float rotation, ! const vec2f & scale, ! const vec2f & translation); ! void set_viewpoint(const vec3f & position, ! const rotation & orientation, ! float field_of_view, ! float avatar_size, ! float visibility_limit); ! void transform(const mat4f & mat); ! void transform_points(size_t nPoints, vec3f * point) const; // still working on some navigation api issues, so don't depend on *************** *** 197,212 **** // shouldn't have to worry about it. // ! virtual const openvrml::frustum& frustum() const; ! virtual void frustum(const openvrml::frustum & f); ! virtual bounding_volume::intersection ! intersect_view_volume(const bounding_volume & bvolume) const; ! virtual void ! draw_bounding_sphere(const bounding_sphere & bs, ! bounding_volume::intersection intersection) = 0; protected: viewer() OPENVRML_NOTHROW; }; } --- 189,342 ---- // shouldn't have to worry about it. // ! const openvrml::frustum& frustum() const; ! void frustum(const openvrml::frustum & f); ! bounding_volume::intersection ! intersect_view_volume(const bounding_volume & bvolume) const; ! void draw_bounding_sphere(const bounding_sphere & bs, ! bounding_volume::intersection intersection); protected: viewer() OPENVRML_NOTHROW; + + virtual bounding_volume::intersection + do_intersect_view_volume(const bounding_volume & bvolume) const; + + virtual const openvrml::frustum& do_frustum() const; + virtual void do_frustum(const openvrml::frustum & f); + + private: + virtual rendering_mode do_mode() = 0; + virtual double do_frame_rate() = 0; + virtual void do_reset_user_navigation() = 0; + + virtual object_t do_begin_object(const char * id, + bool retain = false) = 0; + virtual void do_end_object() = 0; + + virtual object_t + do_insert_background(const std::vector<float> & ground_angle, + const std::vector<color> & ground_color, + const std::vector<float> & sky_angle, + const std::vector<color> & sky_color, + const image & front, + const image & back, + const image & left, + const image & right, + const image & top, + const image & bottom) = 0; + + virtual object_t do_insert_box(const vec3f & size) = 0; + virtual object_t do_insert_cone(float height, float radius, bool bottom, + bool side) = 0; + virtual object_t + do_insert_cylinder(float height, float radius, bool bottom, bool side, + bool top) = 0; + virtual object_t + do_insert_elevation_grid(unsigned int mask, + const std::vector<float> & height, + int32 x_dimension, int32 z_dimension, + float x_spacing, float z_spacing, + const std::vector<color> & color, + const std::vector<vec3f> & normal, + const std::vector<vec2f> & tex_coord) = 0; + virtual object_t + do_insert_extrusion(unsigned int mask, + const std::vector<vec3f> & spine, + const std::vector<vec2f> & cross_section, + const std::vector<rotation> & orientation, + const std::vector<vec2f> & scale) = 0; + virtual object_t + do_insert_line_set(const std::vector<vec3f> & coord, + const std::vector<int32> & coord_index, + bool color_per_vertex, + const std::vector<color> & color, + const std::vector<int32> & color_index) = 0; + virtual object_t + do_insert_point_set(const std::vector<vec3f> & coord, + const std::vector<color> & color) = 0; + virtual object_t + do_insert_shell(unsigned int mask, + const std::vector<vec3f> & coord, + const std::vector<int32> & coord_index, + const std::vector<color> & color, + const std::vector<int32> & color_index, + const std::vector<vec3f> & normal, + const std::vector<int32> & normal_index, + const std::vector<vec2f> & tex_coord, + const std::vector<int32> & tex_coord_index) = 0; + virtual object_t do_insert_sphere(float radius) = 0; + virtual object_t do_insert_dir_light(float ambient_intensity, + float intensity, + const color & color, + const vec3f & direction) = 0; + virtual object_t do_insert_point_light(float ambient_intensity, + const vec3f & attenuation, + const color & color, + float intensity, + const vec3f & location, + float radius) = 0; + virtual object_t do_insert_spot_light(float ambient_intensity, + const vec3f & attenuation, + float beam_width, + const color & color, + float cut_off_angle, + const vec3f & direction, + float intensity, + const vec3f & location, + float radius) = 0; + virtual object_t do_insert_reference(object_t existing_object) = 0; + + virtual void do_remove_object(object_t ref) = 0; + + virtual void do_enable_lighting(bool val) = 0; + + virtual void do_set_fog(const color & color, float visibility_range, + const char * type) = 0; + + virtual void do_set_color(const color & rgb, float a = 1.0) = 0; + + virtual void do_set_material(float ambient_intensity, + const color & diffuse_color, + const color & emissive_color, + float shininess, + const color & specular_color, + float transparency) = 0; + + virtual void do_set_material_mode(size_t tex_components, + bool geometry_color) = 0; + + virtual void do_set_sensitive(node * object) = 0; + + virtual texture_object_t do_insert_texture(const image & img, + bool repeat_s, + bool repeat_t, + bool retainHint = false) = 0; + + virtual void do_insert_texture_reference(texture_object_t ref, + size_t components) = 0; + virtual void do_remove_texture_object(texture_object_t ref) = 0; + + virtual void do_set_texture_transform(const vec2f & center, + float rotation, + const vec2f & scale, + const vec2f & translation) = 0; + + virtual void do_set_viewpoint(const vec3f & position, + const rotation & orientation, + float field_of_view, + float avatar_size, + float visibility_limit) = 0; + + virtual void do_transform(const mat4f & mat) = 0; + + virtual void do_transform_points(size_t nPoints, + vec3f * point) const = 0; + + virtual void + do_draw_bounding_sphere( + const bounding_sphere & bs, + bounding_volume::intersection intersection) = 0; }; } Index: viewer.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/viewer.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** viewer.cpp 25 Feb 2006 08:37:27 -0000 1.13 --- viewer.cpp 31 Oct 2006 03:43:06 -0000 1.14 *************** *** 1,3 **** ! // -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 4; -*- // // OpenVRML --- 1,3 ---- ! // -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 78 -*- // // OpenVRML *************** *** 40,45 **** * @var openvrml::browser * openvrml::viewer::browser_ [...1212 lines suppressed...] * + * This function delegates to + * <code>viewer::do_frustum(const openvrml::frustum &)<code>. + * * @param[in] f new frustum value. */ void openvrml::viewer::frustum(const openvrml::frustum & f) { + this->do_frustum(f); + } + + /** + * @brief Set the frustum. + * + * @param[in] f new frustum value. + */ + void openvrml::viewer::do_frustum(const openvrml::frustum & f) + { this->frustum_ = f; } |
From: Braden M. <br...@us...> - 2006-10-31 03:43:09
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17911 Modified Files: ChangeLog Log Message: Applied nonvirtual interface pattern to openvrml::viewer. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1366 retrieving revision 1.1367 diff -C2 -d -r1.1366 -r1.1367 *** ChangeLog 28 Oct 2006 07:08:58 -0000 1.1366 --- ChangeLog 31 Oct 2006 03:43:06 -0000 1.1367 *************** *** 1,2 **** --- 1,11 ---- + 2006-10-30 Braden McDaniel <br...@en...> + + Applied nonvirtual interface pattern to openvrml::viewer. + + * src/libopenvrml/openvrml/viewer.cpp + * src/libopenvrml/openvrml/viewer.h + * src/libopenvrml-gl/openvrml/gl/viewer.cpp + * src/libopenvrml-gl/openvrml/gl/viewer.h + 2006-10-28 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2006-10-28 07:16:55
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv3597 Modified Files: NEWS Log Message: Fixed date. Index: NEWS =================================================================== RCS file: /cvsroot/openvrml/openvrml/NEWS,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** NEWS 28 Oct 2006 07:08:58 -0000 1.39 --- NEWS 28 Oct 2006 07:16:51 -0000 1.40 *************** *** 1,3 **** ! Changes new in version 0.16.1, 12 October, 2006 ======================================================================== --- 1,3 ---- ! Changes new in version 0.16.1, 28 October, 2006 ======================================================================== |
From: Braden M. <br...@us...> - 2006-10-28 07:16:44
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv3582 Modified Files: Tag: OpenVRML-0_16-BRANCH NEWS Log Message: Fixed date. Index: NEWS =================================================================== RCS file: /cvsroot/openvrml/openvrml/NEWS,v retrieving revision 1.38.2.1 retrieving revision 1.38.2.2 diff -C2 -d -r1.38.2.1 -r1.38.2.2 *** NEWS 28 Oct 2006 07:08:43 -0000 1.38.2.1 --- NEWS 28 Oct 2006 07:16:41 -0000 1.38.2.2 *************** *** 1,3 **** ! Changes new in version 0.16.1, 12 October, 2006 ======================================================================== --- 1,3 ---- ! Changes new in version 0.16.1, 28 October, 2006 ======================================================================== |
From: Braden M. <br...@us...> - 2006-10-28 07:09:01
|
Update of /cvsroot/openvrml/openvrml/mozilla-plugin In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32600/mozilla-plugin Modified Files: configure.ac Log Message: Updates for the 0.16.1 release. Index: configure.ac =================================================================== RCS file: /cvsroot/openvrml/openvrml/mozilla-plugin/configure.ac,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** configure.ac 25 Oct 2006 19:15:31 -0000 1.17 --- configure.ac 28 Oct 2006 07:08:59 -0000 1.18 *************** *** 1,4 **** AC_PREREQ([2.53]) ! AC_INIT([OpenVRML Mozilla Plugin], [0.16.0], [ope...@li...]) AC_COPYRIGHT([Portions copyright 2004, 2005, 2006 Braden McDaniel]) --- 1,4 ---- AC_PREREQ([2.53]) ! AC_INIT([OpenVRML Mozilla Plugin], [0.16.1], [ope...@li...]) AC_COPYRIGHT([Portions copyright 2004, 2005, 2006 Braden McDaniel]) |
From: Braden M. <br...@us...> - 2006-10-28 07:09:01
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32600 Modified Files: ChangeLog NEWS README configure.ac Log Message: Updates for the 0.16.1 release. Index: README =================================================================== RCS file: /cvsroot/openvrml/openvrml/README,v retrieving revision 1.70 retrieving revision 1.71 diff -C2 -d -r1.70 -r1.71 *** README 25 Oct 2006 19:41:55 -0000 1.70 --- README 28 Oct 2006 07:08:58 -0000 1.71 *************** *** 1,3 **** ! OpenVRML library version 0.16.0 Copyright 1998, 1999, 2000 Chris Morley <cm...@ve...> Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006 --- 1,3 ---- ! OpenVRML library version 0.16.1 Copyright 1998, 1999, 2000 Chris Morley <cm...@ve...> Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006 Index: NEWS =================================================================== RCS file: /cvsroot/openvrml/openvrml/NEWS,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** NEWS 12 Aug 2006 05:14:58 -0000 1.38 --- NEWS 28 Oct 2006 07:08:58 -0000 1.39 *************** *** 1,2 **** --- 1,26 ---- + Changes new in version 0.16.1, 12 October, 2006 + ======================================================================== + + - Replaced the Mozilla plug-in's openvrml-player helper program with + openvrml-gtkplug, a reusable out-of-process GTK+ VRML browser + component. + + - Removed use of XPCOM from the Mozilla plug-in. This should allow + the plug-in to work in any browser that supports NPAPI and XEmbed + plug-ins. + + - Added basic rendering of Text nodes on Windows. Font selection + remains unimplemented. + + - Fixed problem where GtkGLExt was built even when not needed. + + - Fixed problem locating the Rez resource compiler when building on + Mac OS X. + + - Fixed problems building with Cygwin X11 OpenGL. + + - Support building with FreeType 2.2. + + Changes new in version 0.16.0, 12 August, 2006 ======================================================================== Index: configure.ac =================================================================== RCS file: /cvsroot/openvrml/openvrml/configure.ac,v retrieving revision 1.98 retrieving revision 1.99 diff -C2 -d -r1.98 -r1.99 *** configure.ac 25 Oct 2006 19:15:31 -0000 1.98 --- configure.ac 28 Oct 2006 07:08:58 -0000 1.99 *************** *** 1,3 **** ! AC_INIT([OpenVRML], [0.16.0], [ope...@li...]) AC_PREREQ([2.53]) AC_COPYRIGHT([Portions copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006 Braden McDaniel]) --- 1,3 ---- ! AC_INIT([OpenVRML], [0.16.1], [ope...@li...]) AC_PREREQ([2.53]) AC_COPYRIGHT([Portions copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006 Braden McDaniel]) Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1365 retrieving revision 1.1366 diff -C2 -d -r1.1365 -r1.1366 *** ChangeLog 28 Oct 2006 07:01:06 -0000 1.1365 --- ChangeLog 28 Oct 2006 07:08:58 -0000 1.1366 *************** *** 1,4 **** --- 1,24 ---- 2006-10-28 Braden McDaniel <br...@en...> + Updates for the 0.16.1 release. + + * NEWS: Updated for 0.16.1 release. + * README: Updated for 0.16.1 release. + * configure.ac: Updated for 0.16.1 release. + * doc/Doxyfile: Updated for 0.16.1 release. + * ide-projects/Windows/VisualC8_0/OpenVRML/openvrml/openvrml.rc: + Updated for 0.16.1 release. + * ide-projects/Windows/VisualC8_0/OpenVRML/openvrml/openvrml.vcproj: + Updated for 0.16.1 release. + * ide-projects/Windows/VisualC8_0/OpenVRML/openvrml-gl/openvrml-gl.rc: + Updated for 0.16.1 release. + * mozilla-plugin/configure.ac: Updated for 0.16.1 release. + * src/libopenvrml/Makefile.am: Updated libtool library version to + 7:0:1. + * src/libopenvrml-gl/Makefile.am: Updated libtool library version + to 6:3:0. + + 2006-10-28 Braden McDaniel <br...@en...> + * openvrml.spec.in: Improvements for conformance to Fedora Extras packaging guidelines. |
From: Braden M. <br...@us...> - 2006-10-28 07:09:01
|
Update of /cvsroot/openvrml/openvrml/doc In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32600/doc Modified Files: Doxyfile Log Message: Updates for the 0.16.1 release. Index: Doxyfile =================================================================== RCS file: /cvsroot/openvrml/openvrml/doc/Doxyfile,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** Doxyfile 12 Aug 2006 05:14:58 -0000 1.23 --- Doxyfile 28 Oct 2006 07:08:58 -0000 1.24 *************** *** 5,9 **** #--------------------------------------------------------------------------- PROJECT_NAME = OpenVRML ! PROJECT_NUMBER = 0.16.0 OUTPUT_DIRECTORY = CREATE_SUBDIRS = NO --- 5,9 ---- #--------------------------------------------------------------------------- PROJECT_NAME = OpenVRML ! PROJECT_NUMBER = 0.16.1 OUTPUT_DIRECTORY = CREATE_SUBDIRS = NO |
From: Braden M. <br...@us...> - 2006-10-28 07:09:01
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32600/src/libopenvrml Modified Files: Makefile.am Log Message: Updates for the 0.16.1 release. Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/Makefile.am,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** Makefile.am 10 Aug 2006 06:32:11 -0000 1.37 --- Makefile.am 28 Oct 2006 07:08:59 -0000 1.38 *************** *** 63,67 **** $(X3DVRMLPARSER_BUILT_SOURCEFILES) ! LIBRARY_VERSION = 6:0:0 # | | | # +------+ | +---+ --- 63,67 ---- $(X3DVRMLPARSER_BUILT_SOURCEFILES) ! LIBRARY_VERSION = 7:0:1 # | | | # +------+ | +---+ |
From: Braden M. <br...@us...> - 2006-10-28 07:09:01
|
Update of /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml-gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32600/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml-gl Modified Files: openvrml-gl.rc Log Message: Updates for the 0.16.1 release. Index: openvrml-gl.rc =================================================================== RCS file: /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml-gl/openvrml-gl.rc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openvrml-gl.rc 28 Aug 2006 20:15:42 -0000 1.2 --- openvrml-gl.rc 28 Oct 2006 07:08:58 -0000 1.3 *************** *** 54,59 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 6,2,0,0 ! PRODUCTVERSION 0,16,0,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG --- 54,59 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 6,3,0,0 ! PRODUCTVERSION 0,16,1,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG *************** *** 71,80 **** BEGIN VALUE "FileDescription", "OpenVRML OpenGL Renderer Library" ! VALUE "FileVersion", "6, 2, 0, 0" VALUE "InternalName", "openvrml-gl" VALUE "LegalCopyright", "Copyright (C) 2006" VALUE "OriginalFilename", "openvrml-gl.dll" VALUE "ProductName", "OpenVRML Library" ! VALUE "ProductVersion", "0, 16, 0, 0" END END --- 71,80 ---- BEGIN VALUE "FileDescription", "OpenVRML OpenGL Renderer Library" ! VALUE "FileVersion", "6, 3, 0, 0" VALUE "InternalName", "openvrml-gl" VALUE "LegalCopyright", "Copyright (C) 2006" VALUE "OriginalFilename", "openvrml-gl.dll" VALUE "ProductName", "OpenVRML Library" ! VALUE "ProductVersion", "0.16.1" END END |
From: Braden M. <br...@us...> - 2006-10-28 07:09:01
|
Update of /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32600/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml Modified Files: openvrml.rc openvrml.vcproj Log Message: Updates for the 0.16.1 release. Index: openvrml.vcproj =================================================================== RCS file: /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml/openvrml.vcproj,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** openvrml.vcproj 26 Sep 2006 15:42:51 -0000 1.7 --- openvrml.vcproj 28 Oct 2006 07:08:58 -0000 1.8 *************** *** 43,47 **** Optimization="0" AdditionalIncludeDirectories=".;..\..\..\..\..\src\libopenvrml;..\..\..\..\..\lib\antlr" ! PreprocessorDefinitions="WIN32;NOMINMAX;BOOST_SPIRIT_THREADSAFE;PACKAGE_VERSION=\"0.15.99\";BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS;BOOST_MPL_LIMIT_VECTOR_SIZE=30;OPENVRML_BUILD_DLL" MinimalRebuild="true" BasicRuntimeChecks="0" --- 43,47 ---- Optimization="0" AdditionalIncludeDirectories=".;..\..\..\..\..\src\libopenvrml;..\..\..\..\..\lib\antlr" ! PreprocessorDefinitions="WIN32;NOMINMAX;BOOST_SPIRIT_THREADSAFE;PACKAGE_VERSION=\"0.16.1\";BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS;BOOST_MPL_LIMIT_VECTOR_SIZE=30;OPENVRML_BUILD_DLL" MinimalRebuild="true" BasicRuntimeChecks="0" *************** *** 127,131 **** WholeProgramOptimization="true" AdditionalIncludeDirectories=".;..\..\..\..\..\src\libopenvrml;..\..\..\..\..\lib\antlr" ! PreprocessorDefinitions="WIN32;NOMINMAX;BOOST_SPIRIT_THREADSAFE;NDEBUG;PACKAGE_VERSION=\"0.15.99\";BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS;BOOST_MPL_LIMIT_VECTOR_SIZE=30;OPENVRML_BUILD_DLL" StringPooling="true" RuntimeLibrary="2" --- 127,131 ---- WholeProgramOptimization="true" AdditionalIncludeDirectories=".;..\..\..\..\..\src\libopenvrml;..\..\..\..\..\lib\antlr" ! PreprocessorDefinitions="WIN32;NOMINMAX;BOOST_SPIRIT_THREADSAFE;NDEBUG;PACKAGE_VERSION=\"0.16.1\";BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS;BOOST_MPL_LIMIT_VECTOR_SIZE=30;OPENVRML_BUILD_DLL" StringPooling="true" RuntimeLibrary="2" Index: openvrml.rc =================================================================== RCS file: /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml/openvrml.rc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openvrml.rc 28 Aug 2006 20:15:42 -0000 1.2 --- openvrml.rc 28 Oct 2006 07:08:58 -0000 1.3 *************** *** 54,59 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 6,0,0,0 ! PRODUCTVERSION 0,16,0,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG --- 54,59 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 7,0,1,0 ! PRODUCTVERSION 0,16,1,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG *************** *** 71,80 **** BEGIN VALUE "FileDescription", "OpenVRML Library" ! VALUE "FileVersion", "6, 0, 0, 0" VALUE "InternalName", "openvrml" VALUE "LegalCopyright", "Copyright (C) 2006" VALUE "OriginalFilename", "openvrml.dll" VALUE "ProductName", "OpenVRML Library" ! VALUE "ProductVersion", "0.16.0" END END --- 71,80 ---- BEGIN VALUE "FileDescription", "OpenVRML Library" ! VALUE "FileVersion", "7, 0, 1, 0" VALUE "InternalName", "openvrml" VALUE "LegalCopyright", "Copyright (C) 2006" VALUE "OriginalFilename", "openvrml.dll" VALUE "ProductName", "OpenVRML Library" ! VALUE "ProductVersion", "0.16.1" END END |
From: Braden M. <br...@us...> - 2006-10-28 07:09:01
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml-gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32600/src/libopenvrml-gl Modified Files: Makefile.am Log Message: Updates for the 0.16.1 release. Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml-gl/Makefile.am,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Makefile.am 9 Aug 2006 03:07:39 -0000 1.6 --- Makefile.am 28 Oct 2006 07:08:59 -0000 1.7 *************** *** 1,3 **** ! LIBRARY_VERSION = 6:2:0 # | | | # +------+ | +---+ --- 1,3 ---- ! LIBRARY_VERSION = 6:3:0 # | | | # +------+ | +---+ |
From: Braden M. <br...@us...> - 2006-10-28 07:08:50
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32547/src/libopenvrml Modified Files: Tag: OpenVRML-0_16-BRANCH Makefile.am Log Message: Updates for the 0.16.1 release. Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/Makefile.am,v retrieving revision 1.37 retrieving revision 1.37.2.1 diff -C2 -d -r1.37 -r1.37.2.1 *** Makefile.am 10 Aug 2006 06:32:11 -0000 1.37 --- Makefile.am 28 Oct 2006 07:08:43 -0000 1.37.2.1 *************** *** 63,67 **** $(X3DVRMLPARSER_BUILT_SOURCEFILES) ! LIBRARY_VERSION = 6:0:0 # | | | # +------+ | +---+ --- 63,67 ---- $(X3DVRMLPARSER_BUILT_SOURCEFILES) ! LIBRARY_VERSION = 7:0:1 # | | | # +------+ | +---+ |
From: Braden M. <br...@us...> - 2006-10-28 07:08:50
|
Update of /cvsroot/openvrml/openvrml/mozilla-plugin In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32547/mozilla-plugin Modified Files: Tag: OpenVRML-0_16-BRANCH configure.ac Log Message: Updates for the 0.16.1 release. Index: configure.ac =================================================================== RCS file: /cvsroot/openvrml/openvrml/mozilla-plugin/configure.ac,v retrieving revision 1.14.2.3 retrieving revision 1.14.2.4 diff -C2 -d -r1.14.2.3 -r1.14.2.4 *** configure.ac 25 Oct 2006 19:15:17 -0000 1.14.2.3 --- configure.ac 28 Oct 2006 07:08:43 -0000 1.14.2.4 *************** *** 1,4 **** AC_PREREQ([2.53]) ! AC_INIT([OpenVRML Mozilla Plugin], [0.16.0], [ope...@li...]) AC_COPYRIGHT([Portions copyright 2004, 2005, 2006 Braden McDaniel]) --- 1,4 ---- AC_PREREQ([2.53]) ! AC_INIT([OpenVRML Mozilla Plugin], [0.16.1], [ope...@li...]) AC_COPYRIGHT([Portions copyright 2004, 2005, 2006 Braden McDaniel]) |
From: Braden M. <br...@us...> - 2006-10-28 07:08:50
|
Update of /cvsroot/openvrml/openvrml/doc In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32547/doc Modified Files: Tag: OpenVRML-0_16-BRANCH Doxyfile Log Message: Updates for the 0.16.1 release. Index: Doxyfile =================================================================== RCS file: /cvsroot/openvrml/openvrml/doc/Doxyfile,v retrieving revision 1.23 retrieving revision 1.23.2.1 diff -C2 -d -r1.23 -r1.23.2.1 *** Doxyfile 12 Aug 2006 05:14:58 -0000 1.23 --- Doxyfile 28 Oct 2006 07:08:43 -0000 1.23.2.1 *************** *** 5,9 **** #--------------------------------------------------------------------------- PROJECT_NAME = OpenVRML ! PROJECT_NUMBER = 0.16.0 OUTPUT_DIRECTORY = CREATE_SUBDIRS = NO --- 5,9 ---- #--------------------------------------------------------------------------- PROJECT_NAME = OpenVRML ! PROJECT_NUMBER = 0.16.1 OUTPUT_DIRECTORY = CREATE_SUBDIRS = NO |
From: Braden M. <br...@us...> - 2006-10-28 07:08:45
|
Update of /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml-gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32547/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml-gl Modified Files: Tag: OpenVRML-0_16-BRANCH openvrml-gl.rc Log Message: Updates for the 0.16.1 release. Index: openvrml-gl.rc =================================================================== RCS file: /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml-gl/openvrml-gl.rc,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** openvrml-gl.rc 28 Aug 2006 20:04:35 -0000 1.1.2.1 --- openvrml-gl.rc 28 Oct 2006 07:08:43 -0000 1.1.2.2 *************** *** 54,59 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 6,2,0,0 ! PRODUCTVERSION 0,16,0,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG --- 54,59 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 6,3,0,0 ! PRODUCTVERSION 0,16,1,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG *************** *** 71,80 **** BEGIN VALUE "FileDescription", "OpenVRML OpenGL Renderer Library" ! VALUE "FileVersion", "6, 2, 0, 0" VALUE "InternalName", "openvrml-gl" VALUE "LegalCopyright", "Copyright (C) 2006" VALUE "OriginalFilename", "openvrml-gl.dll" VALUE "ProductName", "OpenVRML Library" ! VALUE "ProductVersion", "0, 16, 0, 0" END END --- 71,80 ---- BEGIN VALUE "FileDescription", "OpenVRML OpenGL Renderer Library" ! VALUE "FileVersion", "6, 3, 0, 0" VALUE "InternalName", "openvrml-gl" VALUE "LegalCopyright", "Copyright (C) 2006" VALUE "OriginalFilename", "openvrml-gl.dll" VALUE "ProductName", "OpenVRML Library" ! VALUE "ProductVersion", "0.16.1" END END |
From: Braden M. <br...@us...> - 2006-10-28 07:08:45
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml-gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32547/src/libopenvrml-gl Modified Files: Tag: OpenVRML-0_16-BRANCH Makefile.am Log Message: Updates for the 0.16.1 release. Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml-gl/Makefile.am,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -d -r1.6 -r1.6.2.1 *** Makefile.am 9 Aug 2006 03:07:39 -0000 1.6 --- Makefile.am 28 Oct 2006 07:08:44 -0000 1.6.2.1 *************** *** 1,3 **** ! LIBRARY_VERSION = 6:2:0 # | | | # +------+ | +---+ --- 1,3 ---- ! LIBRARY_VERSION = 6:3:0 # | | | # +------+ | +---+ |
From: Braden M. <br...@us...> - 2006-10-28 07:08:45
|
Update of /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32547/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml Modified Files: Tag: OpenVRML-0_16-BRANCH openvrml.rc openvrml.vcproj Log Message: Updates for the 0.16.1 release. Index: openvrml.vcproj =================================================================== RCS file: /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml/openvrml.vcproj,v retrieving revision 1.4.2.3 retrieving revision 1.4.2.4 diff -C2 -d -r1.4.2.3 -r1.4.2.4 *** openvrml.vcproj 26 Sep 2006 15:42:35 -0000 1.4.2.3 --- openvrml.vcproj 28 Oct 2006 07:08:43 -0000 1.4.2.4 *************** *** 43,47 **** Optimization="0" AdditionalIncludeDirectories=".;..\..\..\..\..\src\libopenvrml;..\..\..\..\..\lib\antlr" ! PreprocessorDefinitions="WIN32;NOMINMAX;BOOST_SPIRIT_THREADSAFE;PACKAGE_VERSION=\"0.15.99\";BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS;BOOST_MPL_LIMIT_VECTOR_SIZE=30;OPENVRML_BUILD_DLL" MinimalRebuild="true" BasicRuntimeChecks="0" --- 43,47 ---- Optimization="0" AdditionalIncludeDirectories=".;..\..\..\..\..\src\libopenvrml;..\..\..\..\..\lib\antlr" ! PreprocessorDefinitions="WIN32;NOMINMAX;BOOST_SPIRIT_THREADSAFE;PACKAGE_VERSION=\"0.16.1\";BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS;BOOST_MPL_LIMIT_VECTOR_SIZE=30;OPENVRML_BUILD_DLL" MinimalRebuild="true" BasicRuntimeChecks="0" *************** *** 127,131 **** WholeProgramOptimization="true" AdditionalIncludeDirectories=".;..\..\..\..\..\src\libopenvrml;..\..\..\..\..\lib\antlr" ! PreprocessorDefinitions="WIN32;NOMINMAX;BOOST_SPIRIT_THREADSAFE;NDEBUG;PACKAGE_VERSION=\"0.15.99\";BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS;BOOST_MPL_LIMIT_VECTOR_SIZE=30;OPENVRML_BUILD_DLL" StringPooling="true" RuntimeLibrary="2" --- 127,131 ---- WholeProgramOptimization="true" AdditionalIncludeDirectories=".;..\..\..\..\..\src\libopenvrml;..\..\..\..\..\lib\antlr" ! PreprocessorDefinitions="WIN32;NOMINMAX;BOOST_SPIRIT_THREADSAFE;NDEBUG;PACKAGE_VERSION=\"0.16.1\";BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS;BOOST_MPL_LIMIT_VECTOR_SIZE=30;OPENVRML_BUILD_DLL" StringPooling="true" RuntimeLibrary="2" Index: openvrml.rc =================================================================== RCS file: /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml/openvrml.rc,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** openvrml.rc 28 Aug 2006 20:04:34 -0000 1.1.2.1 --- openvrml.rc 28 Oct 2006 07:08:43 -0000 1.1.2.2 *************** *** 54,59 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 6,0,0,0 ! PRODUCTVERSION 0,16,0,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG --- 54,59 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 7,0,1,0 ! PRODUCTVERSION 0,16,1,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG *************** *** 71,80 **** BEGIN VALUE "FileDescription", "OpenVRML Library" ! VALUE "FileVersion", "6, 0, 0, 0" VALUE "InternalName", "openvrml" VALUE "LegalCopyright", "Copyright (C) 2006" VALUE "OriginalFilename", "openvrml.dll" VALUE "ProductName", "OpenVRML Library" ! VALUE "ProductVersion", "0.16.0" END END --- 71,80 ---- BEGIN VALUE "FileDescription", "OpenVRML Library" ! VALUE "FileVersion", "7, 0, 1, 0" VALUE "InternalName", "openvrml" VALUE "LegalCopyright", "Copyright (C) 2006" VALUE "OriginalFilename", "openvrml.dll" VALUE "ProductName", "OpenVRML Library" ! VALUE "ProductVersion", "0.16.1" END END |
From: Braden M. <br...@us...> - 2006-10-28 07:08:45
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32547 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog NEWS README configure.ac Log Message: Updates for the 0.16.1 release. Index: README =================================================================== RCS file: /cvsroot/openvrml/openvrml/README,v retrieving revision 1.65.2.5 retrieving revision 1.65.2.6 diff -C2 -d -r1.65.2.5 -r1.65.2.6 *** README 25 Oct 2006 19:41:36 -0000 1.65.2.5 --- README 28 Oct 2006 07:08:43 -0000 1.65.2.6 *************** *** 1,3 **** ! OpenVRML library version 0.16.0 Copyright 1998, 1999, 2000 Chris Morley <cm...@ve...> Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006 --- 1,3 ---- ! OpenVRML library version 0.16.1 Copyright 1998, 1999, 2000 Chris Morley <cm...@ve...> Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006 Index: NEWS =================================================================== RCS file: /cvsroot/openvrml/openvrml/NEWS,v retrieving revision 1.38 retrieving revision 1.38.2.1 diff -C2 -d -r1.38 -r1.38.2.1 *** NEWS 12 Aug 2006 05:14:58 -0000 1.38 --- NEWS 28 Oct 2006 07:08:43 -0000 1.38.2.1 *************** *** 1,2 **** --- 1,26 ---- + Changes new in version 0.16.1, 12 October, 2006 + ======================================================================== + + - Replaced the Mozilla plug-in's openvrml-player helper program with + openvrml-gtkplug, a reusable out-of-process GTK+ VRML browser + component. + + - Removed use of XPCOM from the Mozilla plug-in. This should allow + the plug-in to work in any browser that supports NPAPI and XEmbed + plug-ins. + + - Added basic rendering of Text nodes on Windows. Font selection + remains unimplemented. + + - Fixed problem where GtkGLExt was built even when not needed. + + - Fixed problem locating the Rez resource compiler when building on + Mac OS X. + + - Fixed problems building with Cygwin X11 OpenGL. + + - Support building with FreeType 2.2. + + Changes new in version 0.16.0, 12 August, 2006 ======================================================================== Index: configure.ac =================================================================== RCS file: /cvsroot/openvrml/openvrml/configure.ac,v retrieving revision 1.92.2.6 retrieving revision 1.92.2.7 diff -C2 -d -r1.92.2.6 -r1.92.2.7 *** configure.ac 25 Oct 2006 19:15:17 -0000 1.92.2.6 --- configure.ac 28 Oct 2006 07:08:43 -0000 1.92.2.7 *************** *** 1,3 **** ! AC_INIT([OpenVRML], [0.16.0], [ope...@li...]) AC_PREREQ([2.53]) AC_COPYRIGHT([Portions copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006 Braden McDaniel]) --- 1,3 ---- ! AC_INIT([OpenVRML], [0.16.1], [ope...@li...]) AC_PREREQ([2.53]) AC_COPYRIGHT([Portions copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006 Braden McDaniel]) Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.49 retrieving revision 1.1310.2.50 diff -C2 -d -r1.1310.2.49 -r1.1310.2.50 *** ChangeLog 28 Oct 2006 07:00:54 -0000 1.1310.2.49 --- ChangeLog 28 Oct 2006 07:08:43 -0000 1.1310.2.50 *************** *** 1,4 **** --- 1,24 ---- 2006-10-28 Braden McDaniel <br...@en...> + Updates for the 0.16.1 release. + + * NEWS: Updated for 0.16.1 release. + * README: Updated for 0.16.1 release. + * configure.ac: Updated for 0.16.1 release. + * doc/Doxyfile: Updated for 0.16.1 release. + * ide-projects/Windows/VisualC8_0/OpenVRML/openvrml/openvrml.rc: + Updated for 0.16.1 release. + * ide-projects/Windows/VisualC8_0/OpenVRML/openvrml/openvrml.vcproj: + Updated for 0.16.1 release. + * ide-projects/Windows/VisualC8_0/OpenVRML/openvrml-gl/openvrml-gl.rc: + Updated for 0.16.1 release. + * mozilla-plugin/configure.ac: Updated for 0.16.1 release. + * src/libopenvrml/Makefile.am: Updated libtool library version to + 7:0:1. + * src/libopenvrml-gl/Makefile.am: Updated libtool library version + to 6:3:0. + + 2006-10-28 Braden McDaniel <br...@en...> + * openvrml.spec.in: Improvements for conformance to Fedora Extras packaging guidelines. |
From: Braden M. <br...@us...> - 2006-10-28 07:01:09
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv29713 Modified Files: ChangeLog openvrml.spec.in Log Message: Improvements for conformance to Fedora Extras packaging guidelines. Index: openvrml.spec.in =================================================================== RCS file: /cvsroot/openvrml/openvrml/openvrml.spec.in,v retrieving revision 1.58 retrieving revision 1.59 diff -C2 -d -r1.58 -r1.59 *** openvrml.spec.in 27 Oct 2006 18:12:28 -0000 1.58 --- openvrml.spec.in 28 Oct 2006 07:01:06 -0000 1.59 *************** *** 3,7 **** Version: @PACKAGE_VERSION@ Release: 1 ! Summary: VRML97 runtime library. License: LGPL Group: System Environment/Libraries --- 3,7 ---- Version: @PACKAGE_VERSION@ Release: 1 ! Summary: VRML/X3D runtime library License: LGPL Group: System Environment/Libraries *************** *** 9,16 **** Source: http://prdownloads.sf.net/openvrml/%{name}-%{version}.tar.gz URL: http://openvrml.org ! BuildRoot: %{_tmppath}/%{name}-root BuildRequires: pkgconfig >= 0.12.0 BuildRequires: boost-devel >= 1.33.1 - BuildRequires: zlib-devel >= 1.1.3 BuildRequires: libpng-devel >= 1.0.12 BuildRequires: libjpeg-devel >= 6b --- 9,15 ---- Source: http://prdownloads.sf.net/openvrml/%{name}-%{version}.tar.gz URL: http://openvrml.org ! BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: pkgconfig >= 0.12.0 BuildRequires: boost-devel >= 1.33.1 BuildRequires: libpng-devel >= 1.0.12 BuildRequires: libjpeg-devel >= 6b *************** *** 21,34 **** BuildRequires: libXmu-devel BuildRequires: gtk2-devel - Requires: zlib >= 1.1.3 - Requires: libpng >= 1.0.12 - Requires: libjpeg >= 6b - Requires: fontconfig >= 2.0 - Requires: freetype >= 2.1.2 Requires: firefox %description ! OpenVRML is a VRML support library, including a runtime and facilities for ! reading and writing VRML models. --- 20,28 ---- BuildRequires: libXmu-devel BuildRequires: gtk2-devel Requires: firefox %description ! OpenVRML is a VRML/X3D support library, including a runtime and facilities ! for reading and displaying VRML and X3D models. *************** *** 82,94 **** %build ! %configure --disable-exception-specs --disable-examples --disable-script-node-java CPPFLAGS="-DNDEBUG" %{__make} %{?_smp_mflags} %install ! %makeinstall ! %{__rm} $RPM_BUILD_ROOT%{_libdir}/mozilla/plugins/openvrml.la %clean ! %{__rm} -rf $RPM_BUILD_ROOT %files --- 76,93 ---- %build ! %configure --disable-static --disable-exception-specs --disable-examples --disable-script-node-java CPPFLAGS="-DNDEBUG" %{__make} %{?_smp_mflags} %install ! make DESTDIR=%{buildroot} install ! %{__rm} %{buildroot}%{_libdir}/*.la ! %{__rm} %{buildroot}%{_libdir}/mozilla/plugins/openvrml.la %clean ! %{__rm} -rf %{buildroot} ! ! %post -p /sbin/ldconfig ! ! %postun -p /sbin/ldconfig %files *************** *** 102,107 **** %{_includedir}/%{name}/openvrml-config.h %{_includedir}/%{name}/openvrml/*.h - %{_libdir}/libopenvrml.la - %{_libdir}/libopenvrml.a %{_libdir}/libopenvrml.so %{_libdir}/pkgconfig/openvrml.pc --- 101,104 ---- *************** *** 116,121 **** %{_includedir}/%{name}/openvrml-gl-config.h %{_includedir}/%{name}/openvrml/gl - %{_libdir}/libopenvrml-gl.la - %{_libdir}/libopenvrml-gl.a %{_libdir}/libopenvrml-gl.so %{_libdir}/pkgconfig/openvrml-gl.pc --- 113,116 ---- *************** *** 132,135 **** --- 127,143 ---- %changelog + * Sat Oct 28 2006 Braden McDaniel <br...@en...> + - Run ldconfig in %post and %postun. + - Updated summary and description. + - Removed BuildRequires for zlib-devel. + - Removed Requires for zlib. + - Removed Requires for libpng. + - Removed Requires for libjpeg. + - Removed Requires for fontconfig. + - Removed Requires for freetype. + - Avoid packaging libtool .la files. + - Do not build static libraries. + - Do not use %makeinstall. + * Fri Oct 27 2006 Braden McDaniel <br...@en...> - Removed obsolete references to openvrml.xpt and openvrml.idl by the Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1364 retrieving revision 1.1365 diff -C2 -d -r1.1364 -r1.1365 *** ChangeLog 28 Oct 2006 02:28:42 -0000 1.1364 --- ChangeLog 28 Oct 2006 07:01:06 -0000 1.1365 *************** *** 1,2 **** --- 1,7 ---- + 2006-10-28 Braden McDaniel <br...@en...> + + * openvrml.spec.in: Improvements for conformance to Fedora Extras + packaging guidelines. + 2006-10-27 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2006-10-28 07:00:58
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv29472 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog openvrml.spec.in Log Message: Improvements for conformance to Fedora Extras packaging guidelines. Index: openvrml.spec.in =================================================================== RCS file: /cvsroot/openvrml/openvrml/openvrml.spec.in,v retrieving revision 1.52.2.6 retrieving revision 1.52.2.7 diff -C2 -d -r1.52.2.6 -r1.52.2.7 *** openvrml.spec.in 27 Oct 2006 18:12:18 -0000 1.52.2.6 --- openvrml.spec.in 28 Oct 2006 07:00:54 -0000 1.52.2.7 *************** *** 3,7 **** Version: @PACKAGE_VERSION@ Release: 1 ! Summary: VRML97 runtime library. License: LGPL Group: System Environment/Libraries --- 3,7 ---- Version: @PACKAGE_VERSION@ Release: 1 ! Summary: VRML/X3D runtime library License: LGPL Group: System Environment/Libraries *************** *** 9,16 **** Source: http://prdownloads.sf.net/openvrml/%{name}-%{version}.tar.gz URL: http://openvrml.org ! BuildRoot: %{_tmppath}/%{name}-root BuildRequires: pkgconfig >= 0.12.0 BuildRequires: boost-devel >= 1.33.1 - BuildRequires: zlib-devel >= 1.1.3 BuildRequires: libpng-devel >= 1.0.12 BuildRequires: libjpeg-devel >= 6b --- 9,15 ---- Source: http://prdownloads.sf.net/openvrml/%{name}-%{version}.tar.gz URL: http://openvrml.org ! BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: pkgconfig >= 0.12.0 BuildRequires: boost-devel >= 1.33.1 BuildRequires: libpng-devel >= 1.0.12 BuildRequires: libjpeg-devel >= 6b *************** *** 21,34 **** BuildRequires: libXmu-devel BuildRequires: gtk2-devel - Requires: zlib >= 1.1.3 - Requires: libpng >= 1.0.12 - Requires: libjpeg >= 6b - Requires: fontconfig >= 2.0 - Requires: freetype >= 2.1.2 Requires: firefox %description ! OpenVRML is a VRML support library, including a runtime and facilities for ! reading and writing VRML models. --- 20,28 ---- BuildRequires: libXmu-devel BuildRequires: gtk2-devel Requires: firefox %description ! OpenVRML is a VRML/X3D support library, including a runtime and facilities ! for reading and displaying VRML and X3D models. *************** *** 82,94 **** %build ! %configure --disable-exception-specs --disable-examples --disable-script-node-java CPPFLAGS="-DNDEBUG" %{__make} %{?_smp_mflags} %install ! %makeinstall ! %{__rm} $RPM_BUILD_ROOT%{_libdir}/mozilla/plugins/openvrml.la %clean ! %{__rm} -rf $RPM_BUILD_ROOT %files --- 76,93 ---- %build ! %configure --disable-static --disable-exception-specs --disable-examples --disable-script-node-java CPPFLAGS="-DNDEBUG" %{__make} %{?_smp_mflags} %install ! make DESTDIR=%{buildroot} install ! %{__rm} %{buildroot}%{_libdir}/*.la ! %{__rm} %{buildroot}%{_libdir}/mozilla/plugins/openvrml.la %clean ! %{__rm} -rf %{buildroot} ! ! %post -p /sbin/ldconfig ! ! %postun -p /sbin/ldconfig %files *************** *** 102,107 **** %{_includedir}/%{name}/openvrml-config.h %{_includedir}/%{name}/openvrml/*.h - %{_libdir}/libopenvrml.la - %{_libdir}/libopenvrml.a %{_libdir}/libopenvrml.so %{_libdir}/pkgconfig/openvrml.pc --- 101,104 ---- *************** *** 116,121 **** %{_includedir}/%{name}/openvrml-gl-config.h %{_includedir}/%{name}/openvrml/gl - %{_libdir}/libopenvrml-gl.la - %{_libdir}/libopenvrml-gl.a %{_libdir}/libopenvrml-gl.so %{_libdir}/pkgconfig/openvrml-gl.pc --- 113,116 ---- *************** *** 132,135 **** --- 127,143 ---- %changelog + * Sat Oct 28 2006 Braden McDaniel <br...@en...> + - Run ldconfig in %post and %postun. + - Updated summary and description. + - Removed BuildRequires for zlib-devel. + - Removed Requires for zlib. + - Removed Requires for libpng. + - Removed Requires for libjpeg. + - Removed Requires for fontconfig. + - Removed Requires for freetype. + - Avoid packaging libtool .la files. + - Do not build static libraries. + - Do not use %makeinstall. + * Fri Oct 27 2006 Braden McDaniel <br...@en...> - Removed obsolete references to openvrml.xpt and openvrml.idl by the Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.48 retrieving revision 1.1310.2.49 diff -C2 -d -r1.1310.2.48 -r1.1310.2.49 *** ChangeLog 28 Oct 2006 02:28:34 -0000 1.1310.2.48 --- ChangeLog 28 Oct 2006 07:00:54 -0000 1.1310.2.49 *************** *** 1,2 **** --- 1,7 ---- + 2006-10-28 Braden McDaniel <br...@en...> + + * openvrml.spec.in: Improvements for conformance to Fedora Extras + packaging guidelines. + 2006-10-27 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2006-10-28 02:41:58
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv22947 Modified Files: configure-gcc-dbg Log Message: Compile with -Wno-attributes to quell a bunch of visibility-related noise from Fedora Core 6's gcc 4.1.1. Index: configure-gcc-dbg =================================================================== RCS file: /cvsroot/openvrml/openvrml/configure-gcc-dbg,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** configure-gcc-dbg 9 Oct 2006 03:09:55 -0000 1.3 --- configure-gcc-dbg 28 Oct 2006 02:41:56 -0000 1.4 *************** *** 1,3 **** #!/bin/bash ! ./$(dirname $0)/configure -C --disable-static --enable-gtk-doc CXXFLAGS='-g -O0 -Wall -Wextra -Wno-missing-braces -Wno-missing-field-initializers' $* --- 1,3 ---- #!/bin/bash ! ./$(dirname $0)/configure -C --disable-static --enable-gtk-doc CXXFLAGS='-g -O0 -Wall -Wextra -Wno-missing-braces -Wno-missing-field-initializers -Wno-attributes' $* |
From: Braden M. <br...@us...> - 2006-10-28 02:41:13
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv22894 Modified Files: Tag: OpenVRML-0_16-BRANCH configure-gcc-dbg Log Message: Compile with -Wno-attributes to quell a bunch of visibility-related noise from Fedora Core 6's gcc 4.1.1. Index: configure-gcc-dbg =================================================================== RCS file: /cvsroot/openvrml/openvrml/configure-gcc-dbg,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -d -r1.1.2.2 -r1.1.2.3 *** configure-gcc-dbg 9 Oct 2006 03:09:02 -0000 1.1.2.2 --- configure-gcc-dbg 28 Oct 2006 02:41:11 -0000 1.1.2.3 *************** *** 1,3 **** #!/bin/bash ! ./$(dirname $0)/configure -C --disable-static --enable-gtk-doc CXXFLAGS='-g -O0 -Wall -Wextra -Wno-missing-braces -Wno-missing-field-initializers' $* --- 1,3 ---- #!/bin/bash ! ./$(dirname $0)/configure -C --disable-static --enable-gtk-doc CXXFLAGS='-g -O0 -Wall -Wextra -Wno-missing-braces -Wno-missing-field-initializers -Wno-attributes' $* |
From: Braden M. <br...@us...> - 2006-10-28 02:28:49
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17615 Modified Files: ChangeLog Makefile.am Log Message: Pass --enable-gtk-doc in DISTCHECK_CONFIGURE_FLAGS so that distcheck will succeed. Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/Makefile.am,v retrieving revision 1.51 retrieving revision 1.52 diff -C2 -d -r1.51 -r1.52 *** Makefile.am 20 Apr 2005 20:23:27 -0000 1.51 --- Makefile.am 28 Oct 2006 02:28:42 -0000 1.52 *************** *** 17,18 **** --- 17,20 ---- dist-hook: openvrml.spec cp openvrml.spec $(distdir) + + DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1363 retrieving revision 1.1364 diff -C2 -d -r1.1363 -r1.1364 *** ChangeLog 27 Oct 2006 18:12:28 -0000 1.1363 --- ChangeLog 28 Oct 2006 02:28:42 -0000 1.1364 *************** *** 1,4 **** --- 1,9 ---- 2006-10-27 Braden McDaniel <br...@en...> + * Makefile.am: Pass --enable-gtk-doc in DISTCHECK_CONFIGURE_FLAGS + so that distcheck will succeed. + + 2006-10-27 Braden McDaniel <br...@en...> + * openvrml.spec.in: Fixed file name for openvrml-gtkplug texinfo. |