-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
104 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
TIMESTAMP = 1685775042 | ||
SHA256 (pdal-2.5.4-src.tar.bz2) = db9231cfe3d5199075aca6e479a3b9fced1d090a300bddc938717398d3e58c4b | ||
SIZE (pdal-2.5.4-src.tar.bz2) = 102720071 | ||
TIMESTAMP = 1724912712 | ||
SHA256 (pdal-2.7.2-src.tar.bz2) = f6ae0f3dc012b19c70dde2361799ecac0cdcbeb9cad5cfd96313c9fdc8608f32 | ||
SIZE (pdal-2.7.2-src.tar.bz2) = 87431434 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- CMakeLists.txt.orig 2024-08-29 07:07:08 UTC | ||
+++ CMakeLists.txt | ||
@@ -356,7 +356,7 @@ install(DIRECTORY ${PDAL_FILTERS_DIR}/ | ||
# PATTERN "private" EXCLUDE | ||
) | ||
|
||
-install(FILES ${DIMENSION_OUTFILE} ${pdal_features_hpp}/ | ||
+install(FILES ${DIMENSION_OUTFILE} ${pdal_features_hpp} | ||
DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/pdal" | ||
PERMISSIONS | ||
GROUP_EXECUTE WORLD_EXECUTE OWNER_EXECUTE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
--- apps/CMakeLists.txt.orig 2018-05-22 16:03:21 UTC | ||
--- apps/CMakeLists.txt.orig 2024-01-31 13:44:27 UTC | ||
+++ apps/CMakeLists.txt | ||
@@ -67,7 +67,7 @@ file(MAKE_DIRECTORY "${PDAL_OUTPUT_LIB_D | ||
@@ -62,7 +62,7 @@ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/pdal.pc | ||
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/pdal.pc.in | ||
${CMAKE_CURRENT_BINARY_DIR}/pdal.pc @ONLY) | ||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/pdal.pc | ||
- DESTINATION "${PDAL_LIB_INSTALL_DIR}/pkgconfig/" | ||
+ DESTINATION "${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig/" | ||
PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ) | ||
|
||
if(UNIX OR APPLE) | ||
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/pdal-config.in" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- vendor/kazhdan/Ply.h.orig 2024-06-29 01:37:43 UTC | ||
+++ vendor/kazhdan/Ply.h | ||
@@ -317,7 +317,7 @@ class PlyOrientedVertex (public) | ||
PlyOrientedVertex( void ) { ; } | ||
PlyOrientedVertex( Point3D< Real > p , Point3D< Real > n ) : point(p) , normal(n) { ; } | ||
PlyOrientedVertex operator + ( PlyOrientedVertex p ) const { return PlyOrientedVertex( point+p.point , normal+p.normal ); } | ||
- PlyOrientedVertex operator - ( PlyOrientedVertex p ) const { return PlyOrientedVertex( point-p.value , normal-p.normal ); } | ||
+ PlyOrientedVertex operator - ( PlyOrientedVertex p ) const { return PlyOrientedVertex( point-p.point , normal-p.normal ); } | ||
template< class _Real > PlyOrientedVertex operator * ( _Real s ) const { return PlyOrientedVertex( point*s , normal*s ); } | ||
template< class _Real > PlyOrientedVertex operator / ( _Real s ) const { return PlyOrientedVertex( point/s , normal/s ); } | ||
PlyOrientedVertex& operator += ( PlyOrientedVertex p ) { point += p.point , normal += p.normal ; return *this; } | ||
@@ -363,7 +363,7 @@ class PlyColorVertex (public) | ||
} | ||
|
||
_PlyColorVertex operator + ( _PlyColorVertex p ) const { return _PlyColorVertex( point+p.point , color+p.color ); } | ||
- _PlyColorVertex operator - ( _PlyColorVertex p ) const { return _PlyColorVertex( point-p.value , color-p.color ); } | ||
+ _PlyColorVertex operator - ( _PlyColorVertex p ) const { return _PlyColorVertex( point-p.point , color-p.color ); } | ||
template< class _Real > _PlyColorVertex operator * ( _Real s ) const { return _PlyColorVertex( point*s , color*s ); } | ||
template< class _Real > _PlyColorVertex operator / ( _Real s ) const { return _PlyColorVertex( point/s , color/s ); } | ||
_PlyColorVertex& operator += ( _PlyColorVertex p ) { point += p.point , color += p.color ; return *this; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- vendor/kazhdan/SparseMatrix.h.orig 2024-06-29 01:37:43 UTC | ||
+++ vendor/kazhdan/SparseMatrix.h | ||
@@ -67,8 +67,6 @@ template<class T> class SparseMatrix (public) | ||
SparseMatrix( const SparseMatrix& M ); | ||
~SparseMatrix(); | ||
|
||
- void SetZero(); | ||
- | ||
SparseMatrix<T>& operator = (const SparseMatrix<T>& M); | ||
|
||
SparseMatrix<T> operator * (const T& V) const; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- vendor/kazhdan/SparseMatrix.inl.orig 2024-06-29 01:37:43 UTC | ||
+++ vendor/kazhdan/SparseMatrix.inl | ||
@@ -188,13 +188,6 @@ void SparseMatrix< T >::SetRowSize( int row , int coun | ||
} | ||
} | ||
|
||
- | ||
-template<class T> | ||
-void SparseMatrix<T>::SetZero() | ||
-{ | ||
- Resize(this->m_N, this->m_M); | ||
-} | ||
- | ||
template<class T> | ||
SparseMatrix<T> SparseMatrix<T>::operator * (const T& V) const | ||
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters