File: 0012-Loosen-versioned-dependency-on-Swig.patch

package info (click to toggle)
bornagain 23.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 103,936 kB
  • sloc: cpp: 423,131; python: 40,997; javascript: 11,167; awk: 630; sh: 318; ruby: 173; xml: 130; makefile: 51; ansic: 24
file content (21 lines) | stat: -rw-r--r-- 781 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Roland Mas <lolando@debian.org>
Date: Fri, 3 Jan 2025 18:53:32 +0100
Subject: Loosen versioned dependency on Swig

---
 cmake/multipython/PyDependences.cmake | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmake/multipython/PyDependences.cmake b/cmake/multipython/PyDependences.cmake
index 19df396..fdf9471 100644
--- a/cmake/multipython/PyDependences.cmake
+++ b/cmake/multipython/PyDependences.cmake
@@ -47,7 +47,7 @@ endforeach()
 
 # configure SWIG bindings
 if(CONFIGURE_BINDINGS)
-    find_package(SWIG 4.2 EXACT REQUIRED)
+    find_package(SWIG 4.2 REQUIRED)
     include(${SWIG_USE_FILE})
     message(STATUS "Found SWIG version ${SWIG_VERSION} at ${SWIG_EXECUTABLE} "
         "with flags '${SWIG_FLAGS}'; CMake definitions in ${SWIG_USE_FILE}")