vcpkg/ports/jasper/no_stdc_check.patch
Alexander Neumann 961d5a86b0
[jasper] update to 4.0.0 (#28244)
* [jasper] update to 4.0.0

* remove unused variable

* v db

* add JAS_STDC_VERSION

* v db

* fix devil port

* v db

* patch out the stdc check

* v db

* adjust patch

* v db
2022-12-12 14:46:28 -08:00

26 lines
986 B
Diff

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 840908739..c485b830c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -414,7 +414,7 @@ if((DEFINED JAS_CROSSCOMPILING AND JAS_CROSSCOMPILING) OR
# will need to be set manually from the command line
# (e.g., using -DJAS_STDC_VERSION=YYYYMML) or by changing the line below.
set(JAS_STDC_VERSION "0L" CACHE INTERNAL "The value of __STDC_VERSION__.")
- if (JAS_STDC_VERSION STREQUAL "0L")
+ if (0)
message(FATAL_ERROR
"The value of __STDC_VERSION__ cannot be automatically determined "
"when cross-compiling. Please set JAS_STDC_VERSION to the value "
@@ -423,8 +423,9 @@ if((DEFINED JAS_CROSSCOMPILING AND JAS_CROSSCOMPILING) OR
"appropriately.")
endif()
else()
- jas_get_stdc_version(status JAS_STDC_VERSION)
- if(NOT status)
+ #jas_get_stdc_version(status JAS_STDC_VERSION)
+ set(JAS_STDC_VERSION 0L)
+ if(0)
message(FATAL_ERROR "Cannot determine the value of __STDC_VERSION__.")
endif()
endif()