1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

emulators/rpcs3: drop unused patch after r533716

This commit is contained in:
Jan Beich 2020-09-12 00:37:47 +00:00
parent 18db69ada7
commit f5b50499c9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=548267

View File

@ -1,18 +0,0 @@
-std=gnu++2a works fine with old Clang if libc++ is new enough
CMake Error at CMakeLists.txt:11 (message):
RPCS3 requires at least clang-9.0.
--- CMakeLists.txt.orig 2020-02-28 18:59:56 UTC
+++ CMakeLists.txt
@@ -7,8 +7,8 @@ if(CMAKE_COMPILER_IS_GNUCXX)
message(FATAL_ERROR "RPCS3 requires at least gcc-9.")
endif()
elseif(${CMAKE_CXX_COMPILER_ID} MATCHES "Clang")
- if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 9.0)
- message(FATAL_ERROR "RPCS3 requires at least clang-9.0.")
+ if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 8.0)
+ message(FATAL_ERROR "RPCS3 requires at least clang-8.0.")
endif()
endif()