summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/grib-api/enable_only_jasper.patch
blob: 06e9790f59d289980954a88309ed1f215192790c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -106,18 +106,7 @@ set( HAVE_LIBOPENJPEG 0 )
 
 if( ENABLE_JPG )
 
-    # Note: This is a deprecated feature but we need it to find Jasper at ECMWF.
-    #       ecbuild_add_extra_search_paths modifies CMAKE_PREFIX_PATH
-    #       which can affect future package discovery if not undone by the caller.
-    #       The current CMAKE_PREFIX_PATH is backed up as _CMAKE_PREFIX_PATH
-    #
-    set(CMAKE_WARN_DEPRECATED OFF) # Suppress deprecation message
-    ecbuild_add_extra_search_paths( jasper )
     find_package( Jasper )
-    set(CMAKE_PREFIX_PATH ${_CMAKE_PREFIX_PATH})    # Restore CMAKE_PREFIX_PATH
-    set(CMAKE_WARN_DEPRECATED ON)  # Remove suppression
-
-    find_package( OpenJPEG )
 
     if( JASPER_FOUND )
         list( APPEND GRIB_API_TPLS Jasper )
@@ -125,12 +114,6 @@ if( ENABLE_JPG )
         set( HAVE_LIBJASPER 1 )
     endif()
 
-    if( OPENJPEG_FOUND )
-        list( APPEND GRIB_API_TPLS OpenJPEG )
-        set( HAVE_JPEG 1 )
-        set( HAVE_LIBOPENJPEG 1 )
-    endif()
-
 endif()