desktop/source/deployment/misc/dp_platform.cxx | 3 +++ 1 file changed, 3 insertions(+)
New commits: commit 7c2edb3a67cf2e156f2134dc8f56fb6aac3045e2 Author: Pedro Giffuni <[email protected]> Date: Wed Nov 25 21:52:49 2015 +0000 i126615 - Allow build on FreeBSD Mac PowerPCG5 These appear to have been missed from earlier effort Brave attempt by: Curtis Hamilton (cherry picked from commit abb9cd92ab4614d606df8ced0d57916dcb04289c) Change-Id: Ia778e090c46220d83388ea1a9485b9009787f191 diff --git a/desktop/source/deployment/misc/dp_platform.cxx b/desktop/source/deployment/misc/dp_platform.cxx index dd8648e..ece6182 100644 --- a/desktop/source/deployment/misc/dp_platform.cxx +++ b/desktop/source/deployment/misc/dp_platform.cxx @@ -55,6 +55,7 @@ #define PLATFORM_SOLARIS_SPARC "solaris_sparc" #define PLATFORM_SOLARIS_SPARC64 "solaris_sparc64" #define PLATFORM_SOLARIS_X86 "solaris_x86" +#define PLATFORM_FREEBSD_POWERPC "freebsd_powerpc" #define PLATFORM_FREEBSD_X86 "freebsd_x86" #define PLATFORM_FREEBSD_X86_64 "freebsd_x86_64" #define PLATFORM_NETBSD_X86 "netbsd_x86" @@ -171,6 +172,8 @@ namespace ret = checkOSandCPU("FreeBSD", "x86"); else if (token == PLATFORM_FREEBSD_X86_64) ret = checkOSandCPU("FreeBSD", "X86_64"); + else if (token == PLATFORM_FREEBSD_POWERPC) + ret = checkOSandCPU("FreeBSD", "PowerPC"); else if (token == PLATFORM_NETBSD_X86) ret = checkOSandCPU("NetBSD", "x86"); else if (token == PLATFORM_NETBSD_X86_64) _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
