Skip to content

Commit

Permalink
Merge pull request #829 from Princess-of-Sleeping/master
Browse files Browse the repository at this point in the history
Add warning about backward compatible removal for user headers
  • Loading branch information
Princess-of-Sleeping authored Nov 11, 2023
2 parents 80eb823 + 94aef87 commit 312e2e9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions vita.header_warn.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,16 @@ if(${__vitasdk_current_time} LESS ${__vitasdk_expires_kern_cpu_big_fix})
message("")
endif()

math(EXPR __vitasdk_expires_removed_some_user_backwards_compat_20240801 "20240801 + 2 * 100")

if(${__vitasdk_current_time} LESS ${__vitasdk_expires_removed_some_user_backwards_compat_20240801})
message("#")
message("# The backwards compatibility of headers will be removed for the following users on 2024/08/01")
message("# > power.h / paf.h")
message("#")
message("")
endif()

math(EXPR __vitasdk_expires_wrong_libs_module_name "20240101 + 2 * 100")

if(${__vitasdk_current_time} LESS ${__vitasdk_expires_wrong_libs_module_name})
Expand Down

0 comments on commit 312e2e9

Please sign in to comment.