mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
libftdi1: fix python build with cmake < 3.7
Fixes: - http://autobuild.buildroot.org/results/1091872e2b77d789e361d1ddefd235c738933c55 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
0c4d8c0783
commit
8252e54710
@ -10,6 +10,9 @@ Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
|
|||||||
[Mark: patch retrieved and updated from
|
[Mark: patch retrieved and updated from
|
||||||
http://developer.intra2net.com/git/?p=libftdi;a=commit;h=fcda9c6a208d3a7fe651ef661b2eb6e462a89c17]
|
http://developer.intra2net.com/git/?p=libftdi;a=commit;h=fcda9c6a208d3a7fe651ef661b2eb6e462a89c17]
|
||||||
Signed-off-by: Mark Corbin <mark.corbin@embecosm.com>
|
Signed-off-by: Mark Corbin <mark.corbin@embecosm.com>
|
||||||
|
[Update patch to make it work with cmake < 3.7:
|
||||||
|
http://developer.intra2net.com/mailarchive/html/libftdi/2019/msg00009.html]
|
||||||
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||||
---
|
---
|
||||||
diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt
|
diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt
|
||||||
index 31ef1c6..eefc344 100644
|
index 31ef1c6..eefc344 100644
|
||||||
@ -20,7 +23,7 @@ index 31ef1c6..eefc344 100644
|
|||||||
if ( PYTHON_BINDINGS )
|
if ( PYTHON_BINDINGS )
|
||||||
# workaround for cmake bug #0013449
|
# workaround for cmake bug #0013449
|
||||||
- if ( NOT DEFINED CMAKE_FIND_ROOT_PATH )
|
- if ( NOT DEFINED CMAKE_FIND_ROOT_PATH )
|
||||||
+ if ( NOT DEFINED CMAKE_FIND_ROOT_PATH OR CMAKE_VERSION VERSION_GREATER_EQUAL 3.0.0 )
|
+ if ( NOT DEFINED CMAKE_FIND_ROOT_PATH OR NOT CMAKE_VERSION VERSION_LESS 3.0.0 )
|
||||||
find_package ( SWIG )
|
find_package ( SWIG )
|
||||||
else ()
|
else ()
|
||||||
find_program ( SWIG_EXECUTABLE NAMES swig2.0 swig )
|
find_program ( SWIG_EXECUTABLE NAMES swig2.0 swig )
|
||||||
|
Loading…
x
Reference in New Issue
Block a user