view src/cgal-1-fixes.patch @ 6396:d5e6775fb3bc release

Add uninstall options to remove local packages and settings (Bug #62352) * src/default-octave.mk, src/release-octave.mk, src/stable-octave.mk: save api version to file * tools/makeinst-script.sh.in: add uninstall options, and on set, remove specified files from appdata/octave (grafted from 8fe292548edfeb8a82e64f0e2b5da1a65e35d835)
author John Donoghue <john.donoghue@ieee.org>
date Wed, 31 Aug 2022 08:09:19 -0400
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})