view src/cgal-1-fixes.patch @ 6215:d18a5545df0d release

build-gettext: Don't build emacs bindings. * src/build-gettext.mk: The `emacs` installed on the build system might be incompatible with the STL built by build-gcc. We probably don't need the emacs bindings for the `gettext` build tool anyway. So skip building those bindings.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 07 May 2022 12:01:10 +0200
parents 5b3f762006d3
children
line wrap: on
line source

This file is part of MXE. See LICENSE.md for licensing information.

Contains ad hoc patches for cross building.

From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Tony Theodore <tonyt@logyst.com>
Date: Mon, 20 Nov 2017 10:25:44 +1100
Subject: [PATCH 1/1] fix boost linking errors


diff --git a/src/CGAL/CMakeLists.txt b/src/CGAL/CMakeLists.txt
index 1111111..2222222 100644
--- a/src/CGAL/CMakeLists.txt
+++ b/src/CGAL/CMakeLists.txt
@@ -2,6 +2,14 @@ message("Configuring libCGAL")
 
 use_essential_libs()
 
+# same as src/CGAL_Core/CMakeLists.txt
+if (NOT MSVC)
+  # See the release notes of CGAL-4.10: CGAL_Core now requires
+  # Boost.Thread, with all compilers but MSVC.
+  find_package( Boost 1.48 REQUIRED thread system )
+  cache_set(CGAL_3RD_PARTY_LIBRARIES    ${CGAL_3RD_PARTY_LIBRARIES} ${Boost_LIBRARIES} )
+endif(NOT MSVC)
+
 include_directories (SYSTEM ${CGAL_3RD_PARTY_INCLUDE_DIRS})
 
 add_definitions(${CGAL_3RD_PARTY_DEFINITIONS})