Dave Plater
a0a55a28b2
- Fix build with CMake 3.11 (deb#897100): * Add kicad-4.0.7-remove-internal-CheckCXXSymbolExists.patch, picked from upstream. - Use %license for license file instead of %doc (boo#1082318). - Use SPDX 3 license identifier. - Don't call empty macros in %post and %postun. OBS-URL: https://build.opensuse.org/request/show/612211 OBS-URL: https://build.opensuse.org/package/show/electronics/kicad?expand=0&rev=39
58 lines
2.5 KiB
Diff
58 lines
2.5 KiB
Diff
From 2e0b75c058d676f427328506bbf3bc10079da117 Mon Sep 17 00:00:00 2001
|
|
From: Seth Hillbrand <hillbrand@ucdavis.edu>
|
|
Date: Fri, 30 Mar 2018 14:47:16 -0700
|
|
Subject: Remove internal CheckCXXSymbolExists
|
|
|
|
Since Cmake 2.8.6, Cmake provides this macro. Our use references
|
|
internal Cmake variables that have changes in Cmake 3.11.
|
|
|
|
diff --git a/CMakeModules/CheckCXXSymbolExists.cmake b/CMakeModules/CheckCXXSymbolExists.cmake
|
|
deleted file mode 100644
|
|
index 2100973..0000000
|
|
--- a/CMakeModules/CheckCXXSymbolExists.cmake
|
|
+++ /dev/null
|
|
@@ -1,42 +0,0 @@
|
|
-# - Check if a symbol exists as a function, variable, or macro in C++
|
|
-# CHECK_CXX_SYMBOL_EXISTS(<symbol> <files> <variable>)
|
|
-#
|
|
-# Check that the <symbol> is available after including given header
|
|
-# <files> and store the result in a <variable>. Specify the list
|
|
-# of files in one argument as a semicolon-separated list.
|
|
-# CHECK_CXX_SYMBOL_EXISTS() can be used to check in C++ files, as opposed
|
|
-# to CHECK_SYMBOL_EXISTS(), which works only for C.
|
|
-#
|
|
-# If the header files define the symbol as a macro it is considered
|
|
-# available and assumed to work. If the header files declare the
|
|
-# symbol as a function or variable then the symbol must also be
|
|
-# available for linking. If the symbol is a type or enum value
|
|
-# it will not be recognized (consider using CheckTypeSize or
|
|
-# CheckCSourceCompiles).
|
|
-#
|
|
-# The following variables may be set before calling this macro to
|
|
-# modify the way the check is run:
|
|
-#
|
|
-# CMAKE_REQUIRED_FLAGS = string of compile command line flags
|
|
-# CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar)
|
|
-# CMAKE_REQUIRED_INCLUDES = list of include directories
|
|
-# CMAKE_REQUIRED_LIBRARIES = list of libraries to link
|
|
-
|
|
-#=============================================================================
|
|
-# Copyright 2003-2011 Kitware, Inc.
|
|
-#
|
|
-# Distributed under the OSI-approved BSD License (the "License");
|
|
-# see accompanying file Copyright.txt for details.
|
|
-#
|
|
-# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
-# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
-# See the License for more information.
|
|
-#=============================================================================
|
|
-# (To distribute this file outside of CMake, substitute the full
|
|
-# License text for the above reference.)
|
|
-
|
|
-include(CheckSymbolExists)
|
|
-
|
|
-macro(CHECK_CXX_SYMBOL_EXISTS SYMBOL FILES VARIABLE)
|
|
- _CHECK_SYMBOL_EXISTS("${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckSymbolExists.cxx" "${SYMBOL}" "${FILES}" "${VARIABLE}" )
|
|
-endmacro()
|
|
--
|
|
cgit v0.10.2
|