Skip to content

Commit

Permalink
obexftp: Fixing the DEPENDS to use the proper switches for cmake. The…
Browse files Browse the repository at this point in the history
… CONFIGURE

isn't needed and a minor tweak in the BUILD. For now if you say yes to python it
will take a big crap with;

-- Fuse not found.
-- Found SWIG: /usr/bin/swig (found version "2.0.10")
-- Found Perl: /usr/bin/perl (found version "5.18.0")
-- Found PerlLibs: /usr/lib64/perl5/5.18.0/x86_64-linux-thread-multi/CORE/libperl.so (found version "5.18.0")
-- Found PythonLibs: /usr/lib64/libpython3.3m.so (found version "3.3.0")
-- Found PythonInterp: /usr/bin/python (found version "2.7.5")
CMake Error at swig/python/CMakeLists.txt:7 (message):
  Version mismatch between python interpreter and libraries

-- Configuring incomplete, errors occurred!

So in the mean time just say no to Python till a work around is commited.
  • Loading branch information
stumbles committed Aug 17, 2013
1 parent a2340e3 commit 3056a67
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
3 changes: 0 additions & 3 deletions utils/obexftp/BUILD
@@ -1,5 +1,2 @@
(

default_cmake_build

) > $C_FIFO 2>&1
1 change: 0 additions & 1 deletion utils/obexftp/CONFIGURE

This file was deleted.

12 changes: 6 additions & 6 deletions utils/obexftp/DEPENDS
@@ -1,7 +1,7 @@
depends openobex
depends swig
depends openobex

optional_depends "swig" "--enable-swig" "--disable-swig" "for swig bindings support"
optional_depends "perl" "--enable-perl" "--disable-perl" "for perl bindings support"
optional_depends "Python" "--enable-python" "--disable-python" "for python bindings support"
optional_depends "ruby" "--enable-ruby" "--disable-ruby" "for ruby bindings support"
optional_depends "tcl" "--enable-tcl" "--disable-tcl" "for tcl bindings support"
optional_depends "perl" "-DENABLE_PERL=YES" "-DENABLE_PERL=NO" "for perl bindings support"
optional_depends "Python" "-DENABLE_PYTHON=YES" "-DENABLE_PYTHON=NO" "for python bindings support"
optional_depends "ruby" "-DENABLE_RUBY=YES" "-DENABLE_RUBY=NO" "for ruby bindings support"
optional_depends "tcl" "-DENABLE_TCL=YES" "-DENABLE_TCL=NO" "for tcl support"

0 comments on commit 3056a67

Please sign in to comment.