diff options
-rw-r--r-- | meta/recipes-support/gpgme/gpgme_1.8.0.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-support/gpgme/gpgme_1.8.0.bb b/meta/recipes-support/gpgme/gpgme_1.8.0.bb index d3e7880a47..2756ef815d 100644 --- a/meta/recipes-support/gpgme/gpgme_1.8.0.bb +++ b/meta/recipes-support/gpgme/gpgme_1.8.0.bb | |||
@@ -34,7 +34,11 @@ PACKAGECONFIG[python3] = ",,python3 swig-native," | |||
34 | # Supported: "cl cpp python python2 python3 qt" | 34 | # Supported: "cl cpp python python2 python3 qt" |
35 | # python says 'search and find python2 or python3' | 35 | # python says 'search and find python2 or python3' |
36 | 36 | ||
37 | LANGUAGES ?= "cpp" | 37 | # Building the C++ bindings for native requires a C++ compiler with C++11 |
38 | # support. Since these bindings are currently not needed, we can disable them. | ||
39 | DEFAULT_LANGUAGES = "" | ||
40 | DEFAULT_LANGUAGES_class-target = "cpp" | ||
41 | LANGUAGES ?= "${DEFAULT_LANGUAGES}" | ||
38 | LANGUAGES .= "${@bb.utils.contains('PACKAGECONFIG', 'python2', ' python2', '', d)}" | 42 | LANGUAGES .= "${@bb.utils.contains('PACKAGECONFIG', 'python2', ' python2', '', d)}" |
39 | LANGUAGES .= "${@bb.utils.contains('PACKAGECONFIG', 'python3', ' python3', '', d)}" | 43 | LANGUAGES .= "${@bb.utils.contains('PACKAGECONFIG', 'python3', ' python3', '', d)}" |
40 | 44 | ||