| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/emulators/pcsxr/files/ |
Upload File : |
--- libpcsxcore/CMakeLists.txt.orig 2017-02-18 21:40:07 UTC
+++ libpcsxcore/CMakeLists.txt
@@ -18,6 +18,12 @@ if (USE_LIBARCHIVE)
add_definitions(-DHAVE_LIBARCHIVE)
endif()
+find_package (Intl REQUIRED)
+if(NOT Intl_FOUND)
+ message(FATAL_ERROR "Intl library not found")
+endif(NOT Intl_FOUND)
+include_directories(${Intl_INCLUDE_DIRS})
+
# Architecture detection and arch specific settings
message(${CMAKE_SYSTEM_PROCESSOR})
if (${CMAKE_SYSTEM_PROCESSOR} MATCHES "^powerpc")
@@ -25,6 +31,8 @@ if (${CMAKE_SYSTEM_PROCESSOR} MATCHES "^powerpc")
elseif(${CMAKE_SYSTEM_PROCESSOR} MATCHES "^i.86")
set(_ARCH_32 1)
elseif(${CMAKE_SYSTEM_PROCESSOR} MATCHES "^x86_64")
+ set(_ARCH_64 1)
+elseif(${CMAKE_SYSTEM_PROCESSOR} MATCHES "^amd64")
set(_ARCH_64 1)
else()
message("Unsupported arch. Will not build dynarec")