install peacock, during ./configure missing libraries, but they are actually
During ./configure
I obtained this error:
configure: error: Library requirements (libgnomeui-2.0 >= 2.2.0 libbonoboui-2.0 >= 2.2.0 libglade-2.0 >= 2.0.1 gtksourceview-1.0 >= 0.5.0) not met;
consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.
Which I do not understand. I listed my packages using: /sbin/ldconfig -p
and from many of them I have:
libbonoboui-2.so.0 (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libbonoboui-2.so.0
libbonoboui-2.so (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libbonoboui-2.so
libgnomeui-2.so.0 (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libgnomeui-2.so.0
libgnomeui-2.so (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libgnomeui-2.so
Ideas?
linux configure
add a comment |
During ./configure
I obtained this error:
configure: error: Library requirements (libgnomeui-2.0 >= 2.2.0 libbonoboui-2.0 >= 2.2.0 libglade-2.0 >= 2.0.1 gtksourceview-1.0 >= 0.5.0) not met;
consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.
Which I do not understand. I listed my packages using: /sbin/ldconfig -p
and from many of them I have:
libbonoboui-2.so.0 (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libbonoboui-2.so.0
libbonoboui-2.so (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libbonoboui-2.so
libgnomeui-2.so.0 (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libgnomeui-2.so.0
libgnomeui-2.so (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libgnomeui-2.so
Ideas?
linux configure
For libgnomeui and libbonoboui, it requires greater than or equal to 2.2.0 whereas you have 2.0. Also, do you have libgblade and gtksourceview?
– Nasir Riley
Feb 27 at 15:12
add a comment |
During ./configure
I obtained this error:
configure: error: Library requirements (libgnomeui-2.0 >= 2.2.0 libbonoboui-2.0 >= 2.2.0 libglade-2.0 >= 2.0.1 gtksourceview-1.0 >= 0.5.0) not met;
consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.
Which I do not understand. I listed my packages using: /sbin/ldconfig -p
and from many of them I have:
libbonoboui-2.so.0 (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libbonoboui-2.so.0
libbonoboui-2.so (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libbonoboui-2.so
libgnomeui-2.so.0 (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libgnomeui-2.so.0
libgnomeui-2.so (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libgnomeui-2.so
Ideas?
linux configure
During ./configure
I obtained this error:
configure: error: Library requirements (libgnomeui-2.0 >= 2.2.0 libbonoboui-2.0 >= 2.2.0 libglade-2.0 >= 2.0.1 gtksourceview-1.0 >= 0.5.0) not met;
consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.
Which I do not understand. I listed my packages using: /sbin/ldconfig -p
and from many of them I have:
libbonoboui-2.so.0 (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libbonoboui-2.so.0
libbonoboui-2.so (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libbonoboui-2.so
libgnomeui-2.so.0 (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libgnomeui-2.so.0
libgnomeui-2.so (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libgnomeui-2.so
Ideas?
linux configure
linux configure
edited Feb 27 at 15:07
filbranden
10.6k21646
10.6k21646
asked Feb 27 at 11:09
Tomasz HanusekTomasz Hanusek
61
61
For libgnomeui and libbonoboui, it requires greater than or equal to 2.2.0 whereas you have 2.0. Also, do you have libgblade and gtksourceview?
– Nasir Riley
Feb 27 at 15:12
add a comment |
For libgnomeui and libbonoboui, it requires greater than or equal to 2.2.0 whereas you have 2.0. Also, do you have libgblade and gtksourceview?
– Nasir Riley
Feb 27 at 15:12
For libgnomeui and libbonoboui, it requires greater than or equal to 2.2.0 whereas you have 2.0. Also, do you have libgblade and gtksourceview?
– Nasir Riley
Feb 27 at 15:12
For libgnomeui and libbonoboui, it requires greater than or equal to 2.2.0 whereas you have 2.0. Also, do you have libgblade and gtksourceview?
– Nasir Riley
Feb 27 at 15:12
add a comment |
1 Answer
1
active
oldest
votes
It looks like the configure script is complaining that you need all of those libraries installed, while you only have some of them.
Specifically, you already satisfy these two dependencies:
- libgnomeui-2.0 >= 2.2.0
- libbonoboui-2.0 >= 2.2.0
While it seems you still can't satisfy these two:
- libglade-2.0 >= 2.0.1
- gtksourceview-1.0 >= 0.5.0
Try installing the last two and trying that ./configure
command to see if it stops complaining about missing libraries.
If it doesn't, take a look at config.log
(warning: it's a big and long file and many times it's hard to understand it unless you know a lot about autoconf!) to try to understand which checks the configure script is using that are failing to detect the installed libraries.
1
He actually hasn't satisfied the requirement for the first two. They both need later versions than what he has.
– Nasir Riley
Feb 27 at 15:14
@NasirRiley It's hard to tell whether that's the case, many times the actual version is not really fully encoded in the library filename. Would need to see inside the pkgconfig for those to be sure. But yeah, it's quite possibly not a high enough version for those either!
– filbranden
Feb 27 at 15:17
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f503307%2finstall-peacock-during-configure-missing-libraries-but-they-are-actually%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
It looks like the configure script is complaining that you need all of those libraries installed, while you only have some of them.
Specifically, you already satisfy these two dependencies:
- libgnomeui-2.0 >= 2.2.0
- libbonoboui-2.0 >= 2.2.0
While it seems you still can't satisfy these two:
- libglade-2.0 >= 2.0.1
- gtksourceview-1.0 >= 0.5.0
Try installing the last two and trying that ./configure
command to see if it stops complaining about missing libraries.
If it doesn't, take a look at config.log
(warning: it's a big and long file and many times it's hard to understand it unless you know a lot about autoconf!) to try to understand which checks the configure script is using that are failing to detect the installed libraries.
1
He actually hasn't satisfied the requirement for the first two. They both need later versions than what he has.
– Nasir Riley
Feb 27 at 15:14
@NasirRiley It's hard to tell whether that's the case, many times the actual version is not really fully encoded in the library filename. Would need to see inside the pkgconfig for those to be sure. But yeah, it's quite possibly not a high enough version for those either!
– filbranden
Feb 27 at 15:17
add a comment |
It looks like the configure script is complaining that you need all of those libraries installed, while you only have some of them.
Specifically, you already satisfy these two dependencies:
- libgnomeui-2.0 >= 2.2.0
- libbonoboui-2.0 >= 2.2.0
While it seems you still can't satisfy these two:
- libglade-2.0 >= 2.0.1
- gtksourceview-1.0 >= 0.5.0
Try installing the last two and trying that ./configure
command to see if it stops complaining about missing libraries.
If it doesn't, take a look at config.log
(warning: it's a big and long file and many times it's hard to understand it unless you know a lot about autoconf!) to try to understand which checks the configure script is using that are failing to detect the installed libraries.
1
He actually hasn't satisfied the requirement for the first two. They both need later versions than what he has.
– Nasir Riley
Feb 27 at 15:14
@NasirRiley It's hard to tell whether that's the case, many times the actual version is not really fully encoded in the library filename. Would need to see inside the pkgconfig for those to be sure. But yeah, it's quite possibly not a high enough version for those either!
– filbranden
Feb 27 at 15:17
add a comment |
It looks like the configure script is complaining that you need all of those libraries installed, while you only have some of them.
Specifically, you already satisfy these two dependencies:
- libgnomeui-2.0 >= 2.2.0
- libbonoboui-2.0 >= 2.2.0
While it seems you still can't satisfy these two:
- libglade-2.0 >= 2.0.1
- gtksourceview-1.0 >= 0.5.0
Try installing the last two and trying that ./configure
command to see if it stops complaining about missing libraries.
If it doesn't, take a look at config.log
(warning: it's a big and long file and many times it's hard to understand it unless you know a lot about autoconf!) to try to understand which checks the configure script is using that are failing to detect the installed libraries.
It looks like the configure script is complaining that you need all of those libraries installed, while you only have some of them.
Specifically, you already satisfy these two dependencies:
- libgnomeui-2.0 >= 2.2.0
- libbonoboui-2.0 >= 2.2.0
While it seems you still can't satisfy these two:
- libglade-2.0 >= 2.0.1
- gtksourceview-1.0 >= 0.5.0
Try installing the last two and trying that ./configure
command to see if it stops complaining about missing libraries.
If it doesn't, take a look at config.log
(warning: it's a big and long file and many times it's hard to understand it unless you know a lot about autoconf!) to try to understand which checks the configure script is using that are failing to detect the installed libraries.
answered Feb 27 at 15:11
filbrandenfilbranden
10.6k21646
10.6k21646
1
He actually hasn't satisfied the requirement for the first two. They both need later versions than what he has.
– Nasir Riley
Feb 27 at 15:14
@NasirRiley It's hard to tell whether that's the case, many times the actual version is not really fully encoded in the library filename. Would need to see inside the pkgconfig for those to be sure. But yeah, it's quite possibly not a high enough version for those either!
– filbranden
Feb 27 at 15:17
add a comment |
1
He actually hasn't satisfied the requirement for the first two. They both need later versions than what he has.
– Nasir Riley
Feb 27 at 15:14
@NasirRiley It's hard to tell whether that's the case, many times the actual version is not really fully encoded in the library filename. Would need to see inside the pkgconfig for those to be sure. But yeah, it's quite possibly not a high enough version for those either!
– filbranden
Feb 27 at 15:17
1
1
He actually hasn't satisfied the requirement for the first two. They both need later versions than what he has.
– Nasir Riley
Feb 27 at 15:14
He actually hasn't satisfied the requirement for the first two. They both need later versions than what he has.
– Nasir Riley
Feb 27 at 15:14
@NasirRiley It's hard to tell whether that's the case, many times the actual version is not really fully encoded in the library filename. Would need to see inside the pkgconfig for those to be sure. But yeah, it's quite possibly not a high enough version for those either!
– filbranden
Feb 27 at 15:17
@NasirRiley It's hard to tell whether that's the case, many times the actual version is not really fully encoded in the library filename. Would need to see inside the pkgconfig for those to be sure. But yeah, it's quite possibly not a high enough version for those either!
– filbranden
Feb 27 at 15:17
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f503307%2finstall-peacock-during-configure-missing-libraries-but-they-are-actually%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
For libgnomeui and libbonoboui, it requires greater than or equal to 2.2.0 whereas you have 2.0. Also, do you have libgblade and gtksourceview?
– Nasir Riley
Feb 27 at 15:12