Unverified Commit 8d1df45c authored by acpaquette's avatar acpaquette Committed by GitHub
Browse files

Revert "Geos 3.12 (#5350)" (#5359)

This reverts commit 1d928a9c.
parent 1d928a9c
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -47,7 +47,6 @@ print.prt
*/tsts/*/output/*
*/build/
build/
*build*/
install/

# Unignore the documentation build
+27 −29
Original line number Diff line number Diff line
@@ -3,41 +3,40 @@ channels:
  - defaults

dependencies:
  - ale>=0.9.1, <1
  - kalasiris 
  - ale=0.9.1
  - armadillo
  - boost>=1.72.0, <2
  - boost-cpp>=1.72.0, <2
  - boost=1.72
  - boost-cpp=1.72
  - blas
  - usgs-astrogeology::bullet
  - bz2file
  - bzip2
  - cmake >=3.15, <4
  - cmake >=3.15
  - cspice=67
  - csm>=3.0.3,<3.0.4
  - curl>=8.3.0,<9.0a0
  - cxx-compiler>=1.1.2
  - curl
  - cxx-compiler=1.1.2
  - doxygen
  - eigen>=3, <4
  - eigen < 3.4
  - embree>=2.17,<3
  - ffmpeg
  - geos>=3.12.1, <4
  - geos =3.11.1
  - geotiff
  - gmp
  - graphviz
  - gsl>=2.6
  - hdf5>=1.14.2,<1.14.3.0a0
  - hdf5
  - icu
  - inja
  - jama
  - jpeg
  - usgs-astrogeology::kakadu==1
  - kalasiris
  - krb5
  - libboost>=1.72.0, <2
  - libgdal >=3.7.2,<3.8.0a0
  - libopencv>=4.5.2, <5
  - libpng>=1.6.34, <2
  - libprotobuf
  - libtiff>=4.0, <5
  - libopencv>=4.5.2
  - libpng>=1.6.34
  - libprotobuf<3.20
  - libtiff>=4.0
  - libxml2
  - make
  - mesalib
@@ -45,21 +44,20 @@ dependencies:
  - mysql-connector-c
  - nanoflann<1.4
  - nlohmann_json
  - ninja>=1.7.2, <2
  - ninja==1.7.2
  - nn
  - opencv>=4.5.2, <5
  - openssl>=3.1.2,<4.0a0
  - pcl >=1.10, <2
  - opencv>=4.5.2
  - openssl>=1.1.1k
  - pcl >= 1.10.0
  - plio
  - protobuf
  - python=3.12
  - python_abi=3.12
  - protobuf<3.20
  - python>=3.7.11
  - pytest
  - rclone
  - qhull
  - qt-main
  - qt>=5.9.6,<5.15.0
  - qwt
  - rclone
  - sqlite>=3.43.0,<4.0a0
  - sqlite
  - suitesparse
  - superlu
  - swig
@@ -67,10 +65,10 @@ dependencies:
  - tnt
  - x264
  - xalan-c
  - xerces-c>=3.2.4,<3.3.0a0
  - xerces-c=3
  - xorg-kbproto
  - xorg-libice
  - xorg-libsm
  - xorg-libx11
  - xorg-libxi
  - zlib>=1.2.13,<1.3.0a0
  - zlib
Compare b10fad38 to 703bd9ca
Original line number Diff line number Diff line
Subproject commit b10fad38c4026a29ea6561ab15fc4818170d1c10
Subproject commit 703bd9caab50b139428cea1aaff9974ebee5742e
+6 −6
Original line number Diff line number Diff line
@@ -161,7 +161,7 @@ endif()
# sometimes third parties do not set their rpaths correctly
set(thirdPartyCppFlags -Wall
                       -fPIC
                       -std=c++17
                       -std=c++14
                       -DISIS_LITTLE_ENDIAN=1
                       -Wno-unused-parameter
                       -Wno-overloaded-virtual
@@ -171,7 +171,7 @@ set(thirdPartyCppFlags -Wall
                       -DENABLEJP2K=${JP2KFLAG}
                     )

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD 14)

# Append CPP flags set in the third party lib file to the string set in this file.
string(REPLACE ";" " " FLAGS_STR "${thirdPartyCppFlags}")
@@ -279,7 +279,7 @@ find_package(Jama 125 REQUIRED)
find_package(NN                REQUIRED)
find_package(OpenCV    3.1.0   REQUIRED)
find_package(PCL               REQUIRED)
find_package(protobuf          REQUIRED CONFIG)
find_package(Protobuf  2.6.1   REQUIRED)
find_package(Qwt       6       REQUIRED)
find_package(SuperLU   4.3     REQUIRED)
find_package(TIFF      4.0.0   REQUIRED)
@@ -352,7 +352,7 @@ foreach (_variableName ${_variableNames})
endforeach()

# add target based linkages to ALLLIBS variable
list(APPEND ALLLIBS pantor::inja sensorutilities protobuf::libprotobuf)
list(APPEND ALLLIBS pantor::inja sensorutilities)

# Sometimes we add the same lib more than once (especially with LIBDIRS)
list(REMOVE_DUPLICATES ALLLIBDIRS)
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
#   GEOS_LIBRARY

find_path(GEOS_INCLUDE_DIR
  NAMES geos.h geos_c.h
  NAMES geos.h
  PATH_SUFFIXES "geos/geos${Geos_FIND_VERSION}" "geos"
)

Loading