FreeBSD Bugzilla – Attachment 169932 Details for
Bug 209236
graphics/osgearth: Update to 2.7
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch to update graphics/osgearth to 2.7
osgearth.diff (text/plain), 20.14 KB, created by
Ben Woods
on 2016-05-03 16:09:05 UTC
(
hide
)
Description:
Patch to update graphics/osgearth to 2.7
Filename:
MIME Type:
Creator:
Ben Woods
Created:
2016-05-03 16:09:05 UTC
Size:
20.14 KB
patch
obsolete
>Index: graphics/osgearth/Makefile >=================================================================== >--- graphics/osgearth/Makefile (revision 414484) >+++ graphics/osgearth/Makefile (working copy) >@@ -2,9 +2,7 @@ > # $FreeBSD$ > > PORTNAME= osgearth >-PORTVERSION= 2.5 >-DISTVERSIONPREFIX= ${PORTNAME}- >-PORTREVISION= 6 >+PORTVERSION= 2.7 > CATEGORIES= graphics geography > > MAINTAINER= coder@tuxfamily.org >@@ -22,7 +20,7 @@ > > USE_LDCONFIG= YES > USES= cmake gmake pkgconfig sqlite >-PLIST_SUB= OSGVERSION=3.2.1 >+PLIST_SUB= OSGVERSION=3.4.0 > > CMAKE_ARGS+= -DCMAKE_INCLUDE_PATH:PATH=${LOCALBASE}/include \ > -DMINIZIP_INCLUDE_DIR=${LOCALBASE}/include/minizip \ >Index: graphics/osgearth/distinfo >=================================================================== >--- graphics/osgearth/distinfo (revision 414484) >+++ graphics/osgearth/distinfo (working copy) >@@ -1,2 +1,2 @@ >-SHA256 (gwaldron-osgearth-osgearth-2.5_GH0.tar.gz) = 73d730fdf615318ef876179b21ff77f508efa20e4dcd8640b999a8235a811616 >-SIZE (gwaldron-osgearth-osgearth-2.5_GH0.tar.gz) = 49670415 >+SHA256 (gwaldron-osgearth-2.7_GH0.tar.gz) = d5fa9ac116646e0d73a3cdf4455ae4914c5c9964093572abaf348817b169e26c >+SIZE (gwaldron-osgearth-2.7_GH0.tar.gz) = 77479152 >Index: graphics/osgearth/files/patch-src-osgEarth-ThreadingUtils.cpp >=================================================================== >--- graphics/osgearth/files/patch-src-osgEarth-ThreadingUtils.cpp (revision 414484) >+++ graphics/osgearth/files/patch-src-osgEarth-ThreadingUtils.cpp (nonexistent) >@@ -1,21 +0,0 @@ >---- src/osgEarth/ThreadingUtils.cpp.orig 2013-05-16 20:29:30.000000000 +0200 >-+++ src/osgEarth/ThreadingUtils.cpp 2013-05-16 20:28:01.000000000 +0200 >-@@ -23,6 +23,7 @@ >- #else >- # include <unistd.h> >- # include <sys/syscall.h> >-+# include <sys/thr.h> >- #endif >- >- using namespace osgEarth::Threading; >-@@ -38,6 +39,10 @@ >- return (unsigned)::GetCurrentThreadId(); >- #elif __APPLE__ >- return ::syscall(SYS_thread_selfid); >-+#elif __FreeBSD__ >-+ long lwpid; >-+ thr_self(&lwpid); >-+ return lwpid; >- #else >- return (unsigned)::syscall(SYS_gettid); >- #endif > >Property changes on: graphics/osgearth/files/patch-src-osgEarth-ThreadingUtils.cpp >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: graphics/osgearth/files/patch-src_applications_osgearth__skyview_osgearth__skyview.cpp >=================================================================== >--- graphics/osgearth/files/patch-src_applications_osgearth__skyview_osgearth__skyview.cpp (nonexistent) >+++ graphics/osgearth/files/patch-src_applications_osgearth__skyview_osgearth__skyview.cpp (working copy) >@@ -0,0 +1,10 @@ >+--- src/applications/osgearth_skyview/osgearth_skyview.cpp.orig 2016-05-02 22:28:45 UTC >++++ src/applications/osgearth_skyview/osgearth_skyview.cpp >+@@ -25,7 +25,6 @@ >+ #include <osgEarth/Notify> >+ #include <osgEarthUtil/ExampleResources> >+ #include "SkyManipulator" >+-#include "osgGA\FirstPersonManipulator" >+ >+ >+ #define LC "[viewer] " > >Property changes on: graphics/osgearth/files/patch-src_applications_osgearth__skyview_osgearth__skyview.cpp >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: graphics/osgearth/files/patch-src_osgEarth_ThreadingUtils.cpp >=================================================================== >--- graphics/osgearth/files/patch-src_osgEarth_ThreadingUtils.cpp (nonexistent) >+++ graphics/osgearth/files/patch-src_osgEarth_ThreadingUtils.cpp (working copy) >@@ -0,0 +1,21 @@ >+--- src/osgEarth/ThreadingUtils.cpp.orig 2016-02-10 18:21:28 UTC >++++ src/osgEarth/ThreadingUtils.cpp >+@@ -23,6 +23,7 @@ >+ #else >+ # include <unistd.h> >+ # include <sys/syscall.h> >++# include <sys/thr.h> >+ #endif >+ >+ using namespace osgEarth::Threading; >+@@ -40,6 +41,10 @@ unsigned osgEarth::Threading::getCurrent >+ return ::syscall(SYS_thread_selfid); >+ #elif __ANDROID__ >+ return gettid(); >++#elif __FreeBSD__ >++ long lwpid; >++ thr_self(&lwpid); >++ return lwpid; >+ #else >+ return (unsigned)::syscall(SYS_gettid); >+ #endif > >Property changes on: graphics/osgearth/files/patch-src_osgEarth_ThreadingUtils.cpp >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: graphics/osgearth/pkg-plist >=================================================================== >--- graphics/osgearth/pkg-plist (revision 414484) >+++ graphics/osgearth/pkg-plist (working copy) >@@ -1,18 +1,24 @@ > bin/osgearth_annotation >+bin/osgearth_atlas > bin/osgearth_backfill > bin/osgearth_boundarygen > bin/osgearth_cache >+bin/osgearth_cache_test > bin/osgearth_city > bin/osgearth_clamp >+bin/osgearth_clipplane > bin/osgearth_colorfilter >+bin/osgearth_computerangecallback > bin/osgearth_controls >+bin/osgearth_conv >+bin/osgearth_createtile > bin/osgearth_elevation > bin/osgearth_featureeditor > bin/osgearth_featurefilter > bin/osgearth_featureinfo >-bin/osgearth_featuremanip > bin/osgearth_featurequery > bin/osgearth_features >+bin/osgearth_fog > bin/osgearth_graticule > bin/osgearth_imageoverlay > bin/osgearth_los >@@ -20,14 +26,16 @@ > bin/osgearth_map > bin/osgearth_measure > bin/osgearth_minimap >+bin/osgearth_mrt > bin/osgearth_occlusionculling > bin/osgearth_overlayviewer > bin/osgearth_package >+bin/osgearth_pick > bin/osgearth_sequencecontrol > bin/osgearth_shadercomp >-bin/osgearth_shadow >+bin/osgearth_shadergen > bin/osgearth_sharedlayer >-bin/osgearth_terraineffects >+bin/osgearth_skyview > bin/osgearth_terrainprofile > bin/osgearth_tfs > bin/osgearth_tileindex >@@ -34,6 +42,7 @@ > bin/osgearth_tilesource > bin/osgearth_toc > bin/osgearth_tracks >+bin/osgearth_transform > bin/osgearth_version > bin/osgearth_viewer > include/osgEarth/AlphaEffect >@@ -46,6 +55,7 @@ > include/osgEarth/CacheSeed > include/osgEarth/Capabilities > include/osgEarth/ClampableNode >+include/osgEarth/Clamping > include/osgEarth/ClampingTechnique > include/osgEarth/ColorFilter > include/osgEarth/Common >@@ -58,28 +68,32 @@ > include/osgEarth/DateTime > include/osgEarth/Decluttering > include/osgEarth/DepthOffset >-include/osgEarth/Draggers > include/osgEarth/DrapeableNode > include/osgEarth/DrapingTechnique > include/osgEarth/DrawInstanced > include/osgEarth/ECEF >+include/osgEarth/ElevationField > include/osgEarth/ElevationLOD > include/osgEarth/ElevationLayer > include/osgEarth/ElevationQuery > include/osgEarth/Export >+include/osgEarth/Extension > include/osgEarth/FadeEffect > include/osgEarth/FileUtils > include/osgEarth/GeoCommon > include/osgEarth/GeoData > include/osgEarth/GeoMath >+include/osgEarth/GeoTransform > include/osgEarth/Geoid > include/osgEarth/HTTPClient > include/osgEarth/HeightFieldUtils >+include/osgEarth/Horizon > include/osgEarth/IOTypes > include/osgEarth/ImageLayer > include/osgEarth/ImageMosaic > include/osgEarth/ImageToHeightFieldConverter > include/osgEarth/ImageUtils >+include/osgEarth/IntersectionPicker > include/osgEarth/JsonUtils > include/osgEarth/Layer > include/osgEarth/LineFunctor >@@ -100,13 +114,17 @@ > include/osgEarth/MemCache > include/osgEarth/ModelLayer > include/osgEarth/ModelSource >+include/osgEarth/NativeProgramAdapter > include/osgEarth/NodeUtils > include/osgEarth/Notify >+include/osgEarth/ObjectIndex > include/osgEarth/OverlayDecorator > include/osgEarth/OverlayNode >-include/osgEarth/Pickers >+include/osgEarth/PhongLightingEffect >+include/osgEarth/Picker > include/osgEarth/PrimitiveIntersector > include/osgEarth/Profile >+include/osgEarth/Profiler > include/osgEarth/Progress > include/osgEarth/Random > include/osgEarth/Registry >@@ -113,10 +131,13 @@ > include/osgEarth/Revisioning > include/osgEarth/ShaderFactory > include/osgEarth/ShaderGenerator >+include/osgEarth/ShaderLoader > include/osgEarth/ShaderUtils >-include/osgEarth/SparseTexture2DArray >+include/osgEarth/Shaders >+include/osgEarth/SharedSARepo > include/osgEarth/SpatialReference > include/osgEarth/StateSetCache >+include/osgEarth/StateSetLOD > include/osgEarth/StringUtils > include/osgEarth/TaskService > include/osgEarth/Terrain >@@ -124,12 +145,14 @@ > include/osgEarth/TerrainEngineNode > include/osgEarth/TerrainLayer > include/osgEarth/TerrainOptions >+include/osgEarth/TerrainTileNode >+include/osgEarth/Tessellator > include/osgEarth/TextureCompositor >-include/osgEarth/TextureCompositorMulti >-include/osgEarth/TextureCompositorTexArray > include/osgEarth/ThreadingUtils >+include/osgEarth/TileHandler > include/osgEarth/TileKey > include/osgEarth/TileSource >+include/osgEarth/TileVisitor > include/osgEarth/TimeControl > include/osgEarth/TraversalData > include/osgEarth/URI >@@ -152,6 +175,7 @@ > include/osgEarthAnnotation/CircleNode > include/osgEarthAnnotation/Common > include/osgEarthAnnotation/Decoration >+include/osgEarthAnnotation/Draggers > include/osgEarthAnnotation/EllipseNode > include/osgEarthAnnotation/Export > include/osgEarthAnnotation/FeatureEditing >@@ -179,8 +203,10 @@ > include/osgEarthDrivers/engine_mp/Common > include/osgEarthDrivers/engine_mp/DynamicLODScaleCallback > include/osgEarthDrivers/engine_mp/FileLocationCallback >+include/osgEarthDrivers/engine_mp/HeightFieldCache > include/osgEarthDrivers/engine_mp/KeyNodeFactory > include/osgEarthDrivers/engine_mp/MPGeometry >+include/osgEarthDrivers/engine_mp/MPShaders > include/osgEarthDrivers/engine_mp/MPTerrainEngineNode > include/osgEarthDrivers/engine_mp/MPTerrainEngineOptions > include/osgEarthDrivers/engine_mp/QuickReleaseGLObjects >@@ -193,43 +219,10 @@ > include/osgEarthDrivers/engine_mp/TileNode > include/osgEarthDrivers/engine_mp/TileNodeRegistry > include/osgEarthDrivers/engine_mp/TilePagedLOD >-include/osgEarthDrivers/engine_osgterrain/Common >-include/osgEarthDrivers/engine_osgterrain/CustomTerrainTechnique >-include/osgEarthDrivers/engine_osgterrain/DynamicLODScaleCallback >-include/osgEarthDrivers/engine_osgterrain/FileLocationCallback >-include/osgEarthDrivers/engine_osgterrain/KeyNodeFactory >-include/osgEarthDrivers/engine_osgterrain/LODFactorCallback >-include/osgEarthDrivers/engine_osgterrain/MultiPassTerrainTechnique >-include/osgEarthDrivers/engine_osgterrain/OSGTerrainEngineNode >-include/osgEarthDrivers/engine_osgterrain/OSGTerrainOptions >-include/osgEarthDrivers/engine_osgterrain/OSGTileFactory >-include/osgEarthDrivers/engine_osgterrain/ParallelKeyNodeFactory >-include/osgEarthDrivers/engine_osgterrain/SerialKeyNodeFactory >-include/osgEarthDrivers/engine_osgterrain/SinglePassTerrainTechnique >-include/osgEarthDrivers/engine_osgterrain/StreamingTerrainNode >-include/osgEarthDrivers/engine_osgterrain/StreamingTile >-include/osgEarthDrivers/engine_osgterrain/TerrainNode >-include/osgEarthDrivers/engine_osgterrain/Tile >-include/osgEarthDrivers/engine_osgterrain/TileBuilder >-include/osgEarthDrivers/engine_osgterrain/TransparentLayer >-include/osgEarthDrivers/engine_quadtree/Common >-include/osgEarthDrivers/engine_quadtree/CustomPagedLOD >-include/osgEarthDrivers/engine_quadtree/DynamicLODScaleCallback >-include/osgEarthDrivers/engine_quadtree/FileLocationCallback >-include/osgEarthDrivers/engine_quadtree/KeyNodeFactory >-include/osgEarthDrivers/engine_quadtree/LODFactorCallback >-include/osgEarthDrivers/engine_quadtree/QuadTreeTerrainEngineNode >-include/osgEarthDrivers/engine_quadtree/QuadTreeTerrainEngineOptions >-include/osgEarthDrivers/engine_quadtree/QuickReleaseGLObjects >-include/osgEarthDrivers/engine_quadtree/SerialKeyNodeFactory >-include/osgEarthDrivers/engine_quadtree/TerrainNode >-include/osgEarthDrivers/engine_quadtree/TileModel >-include/osgEarthDrivers/engine_quadtree/TileModelCompiler >-include/osgEarthDrivers/engine_quadtree/TileModelFactory >-include/osgEarthDrivers/engine_quadtree/TileNode >-include/osgEarthDrivers/engine_quadtree/TileNodeRegistry >+include/osgEarthDrivers/feature_elevation/FeatureElevationOptions > include/osgEarthDrivers/feature_ogr/FeatureCursorOGR > include/osgEarthDrivers/feature_ogr/OGRFeatureOptions >+include/osgEarthDrivers/feature_raster/RasterFeatureOptions > include/osgEarthDrivers/feature_tfs/TFSFeatureOptions > include/osgEarthDrivers/feature_wfs/WFSFeatureOptions > include/osgEarthDrivers/gdal/GDALOptions >@@ -240,9 +233,19 @@ > include/osgEarthDrivers/model_feature_geom/FeatureGeomModelOptions > include/osgEarthDrivers/model_feature_stencil/FeatureStencilModelOptions > include/osgEarthDrivers/model_simple/SimpleModelOptions >-include/osgEarthDrivers/ocean_surface/OceanSurface >+include/osgEarthDrivers/ocean_simple/SimpleOceanOptions >+include/osgEarthDrivers/osg/ColorRampOptions > include/osgEarthDrivers/osg/OSGOptions >+include/osgEarthDrivers/quadkey/QuadKeyOptions > include/osgEarthDrivers/refresh/RefreshOptions >+include/osgEarthDrivers/scriptengine_javascript/DuktapeEngine >+include/osgEarthDrivers/scriptengine_javascript/JSGeometry >+include/osgEarthDrivers/scriptengine_javascript/duktape.h >+include/osgEarthDrivers/sky_gl/GLSkyOptions >+include/osgEarthDrivers/sky_simple/SimpleSkyOptions >+include/osgEarthDrivers/skyview/SkyViewOptions >+include/osgEarthDrivers/splat_mask/SplatMaskOptions >+include/osgEarthDrivers/template_matclass/TemplateMatClassOptions > include/osgEarthDrivers/tilecache/TileCacheOptions > include/osgEarthDrivers/tileindex/TileIndexOptions > include/osgEarthDrivers/tileservice/TileServiceOptions >@@ -267,6 +270,7 @@ > include/osgEarthFeatures/FeatureCursor > include/osgEarthFeatures/FeatureDisplayLayout > include/osgEarthFeatures/FeatureDrawSet >+include/osgEarthFeatures/FeatureIndex > include/osgEarthFeatures/FeatureListSource > include/osgEarthFeatures/FeatureModelGraph > include/osgEarthFeatures/FeatureModelSource >@@ -297,6 +301,7 @@ > include/osgEarthSymbology/AltitudeSymbol > include/osgEarthSymbology/Color > include/osgEarthSymbology/Common >+include/osgEarthSymbology/CoverageSymbol > include/osgEarthSymbology/CssUtils > include/osgEarthSymbology/Expression > include/osgEarthSymbology/ExtrusionSymbol >@@ -313,6 +318,7 @@ > include/osgEarthSymbology/MarkerResource > include/osgEarthSymbology/MarkerSymbol > include/osgEarthSymbology/MeshConsolidator >+include/osgEarthSymbology/MeshFlattener > include/osgEarthSymbology/MeshSubdivider > include/osgEarthSymbology/ModelResource > include/osgEarthSymbology/ModelSymbol >@@ -332,8 +338,10 @@ > include/osgEarthSymbology/Symbol > include/osgEarthSymbology/Tags > include/osgEarthSymbology/TextSymbol >+include/osgEarthUtil/ActivityMonitorTool > include/osgEarthUtil/AnnotationEvents > include/osgEarthUtil/ArcGIS >+include/osgEarthUtil/AtlasBuilder > include/osgEarthUtil/AutoClipPlaneHandler > include/osgEarthUtil/BrightnessContrastColorFilter > include/osgEarthUtil/CMYKColorFilter >@@ -343,17 +351,20 @@ > include/osgEarthUtil/ContourMap > include/osgEarthUtil/Controls > include/osgEarthUtil/DataScanner >-include/osgEarthUtil/DateTime >-include/osgEarthUtil/DetailTexture > include/osgEarthUtil/EarthManipulator >+include/osgEarthUtil/Ephemeris > include/osgEarthUtil/ExampleResources > include/osgEarthUtil/Export >-include/osgEarthUtil/FeatureManipTool > include/osgEarthUtil/FeatureQueryTool >+include/osgEarthUtil/Fog > include/osgEarthUtil/Formatter > include/osgEarthUtil/GLSLColorFilter > include/osgEarthUtil/GammaColorFilter > include/osgEarthUtil/GeodeticGraticule >+include/osgEarthUtil/GraticuleExtension >+include/osgEarthUtil/GraticuleNode >+include/osgEarthUtil/GraticuleOptions >+include/osgEarthUtil/GraticuleTerrainEffect > include/osgEarthUtil/HSLColorFilter > include/osgEarthUtil/HTM > include/osgEarthUtil/LODBlending >@@ -360,17 +371,22 @@ > include/osgEarthUtil/LatLongFormatter > include/osgEarthUtil/LineOfSight > include/osgEarthUtil/LinearLineOfSight >+include/osgEarthUtil/LogarithmicDepthBuffer > include/osgEarthUtil/MGRSFormatter > include/osgEarthUtil/MGRSGraticule > include/osgEarthUtil/MeasureTool > include/osgEarthUtil/MouseCoordsTool >-include/osgEarthUtil/NormalMap >+include/osgEarthUtil/NightColorFilter > include/osgEarthUtil/ObjectLocator >+include/osgEarthUtil/Ocean > include/osgEarthUtil/PolyhedralLineOfSight > include/osgEarthUtil/RGBColorFilter >+include/osgEarthUtil/RTTPicker > include/osgEarthUtil/RadialLineOfSight >-include/osgEarthUtil/ShadowUtils >-include/osgEarthUtil/SkyNode >+include/osgEarthUtil/Shaders >+include/osgEarthUtil/Shadowing >+include/osgEarthUtil/SimplexNoise >+include/osgEarthUtil/Sky > include/osgEarthUtil/SpatialData > include/osgEarthUtil/StarData > include/osgEarthUtil/TFS >@@ -387,45 +403,59 @@ > include/osgEarthUtil/WMS > lib/libosgEarth.so > lib/libosgEarth.so.0 >-lib/libosgEarth.so.2.5.0 >+lib/libosgEarth.so.2.6.0 > lib/libosgEarthAnnotation.so > lib/libosgEarthAnnotation.so.0 >-lib/libosgEarthAnnotation.so.2.5.0 >+lib/libosgEarthAnnotation.so.2.6.0 > lib/libosgEarthFeatures.so > lib/libosgEarthFeatures.so.0 >-lib/libosgEarthFeatures.so.2.5.0 >+lib/libosgEarthFeatures.so.2.6.0 > lib/libosgEarthSymbology.so > lib/libosgEarthSymbology.so.0 >-lib/libosgEarthSymbology.so.2.5.0 >+lib/libosgEarthSymbology.so.2.6.0 > lib/libosgEarthUtil.so > lib/libosgEarthUtil.so.0 >-lib/libosgEarthUtil.so.2.5.0 >+lib/libosgEarthUtil.so.2.6.0 > lib/osgPlugins-%%OSGVERSION%%/osgdb_earth.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_kml.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_agglite.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_arcgis.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_arcgis_map_cache.so >+lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_billboard.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_bing.so >+lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_bumpmap.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_cache_filesystem.so >+lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_colorramp.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_debug.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_engine_byo.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_engine_mp.so >-lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_engine_osgterrain.so >-lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_engine_quadtree.so >+lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_feature_elevation.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_feature_ogr.so >+lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_feature_raster.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_feature_tfs.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_feature_wfs.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_gdal.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_label_annotation.so >-lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_label_overlay.so >+lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_mapinspector.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_mask_feature.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_mbtiles.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_model_feature_geom.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_model_feature_stencil.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_model_simple.so >-lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_ocean_surface.so >+lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_noise.so >+lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_normalmap.so >+lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_ocean_simple.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_osg.so >+lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_quadkey.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_refresh.so >+lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_scriptengine_javascript.so >+lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_sky_gl.so >+lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_sky_simple.so >+lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_skyview.so >+lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_splat.so >+lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_splat_mask.so >+lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_template_matclass.so >+lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_terrainshader.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_tilecache.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_tileindex.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_tileservice.so >@@ -433,6 +463,7 @@ > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_vdatum_egm2008.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_vdatum_egm84.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_vdatum_egm96.so >+lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_viewpoints.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_vpb.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_wcs.so > lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_wms.so
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
woodsb02
:
maintainer-approval+
Actions:
View
|
Diff
Attachments on
bug 209236
: 169932 |
169934
|
169952