pkg-config is computer software that provides a unified interface for querying installed libraries for the purpose of compiling software from its source code.

learn more… | top users | synonyms

0
votes
1answer
8 views

bmake stuck and not progress (upon building pkg-config)

Upon building a component (pkg-config) under pkgsrc directory, I get stuck being told checking for a compliant posix_memalign() implementation... as in the trace below. CPU remains 99% and doesn't ...
0
votes
0answers
12 views

Adding /usr/local/bin (homebrew) to QtCreator search path for pkg-config on Mac OSX

Setup Using Qt Creator on Mac OSX mountain lion. Installed packages in /usr/local using homebrew. /usr/local/bin/pkg-config exists. Want to use pkgconfig through the project file - QT_CONFIG -= ...
0
votes
1answer
33 views

pkg-config: PKG_PROG_PKG_CONFIG: command not found

I get the following error ./configure: line 11162: PKG_PROG_PKG_CONFIG: command not found when this is code is executed in (kivy-ios/tools-build-sdlmixer.sh) if [ ! -f ...
0
votes
1answer
27 views

Compiling a code with mysql_config and pkg-config

recently I've been learning how to program GTK+ applications and MySQL in C programming language. I wanted to try writing a program with both of those libs at once, I've done it but I can't compile ...
0
votes
1answer
28 views

automake and pkg-config conditional building

I want to include two sample programs A and B into the existing library packages. program A depends on libfoo library, and program B depends on libbar library. libfoo and libbar are provided as ...
0
votes
1answer
88 views

JHBUILD install NetworkManager Ubuntu-13.04

I have a problem installing gnome in my ubuntu. JHBUILD try install NetworkManager module but the build show the next error configure: error: Package requirements (libnl-3.0 >= 3.2.7 ...
1
vote
1answer
39 views

Can't get System.Numerics to work with command-line Mono (mcs) on OS X

We're trying to run a simple Mono script on the command line on OS X. Most scripts work fine for us, but as soon as we try to use System.Numerics, we get "error CS0234: The type or namespace name ...
0
votes
0answers
80 views

Merging Mono runtime failed. (Xamarin.Mac), thanks for the help in advance

I am suffering with some configuration issues with my Xamarin/mono project. I am getting an error when building the app, I have searched around for a solution and am currently stuck on this build ...
0
votes
1answer
39 views

Why does pkg-config --libs opencv return library locations and not the libraries themselves?

I am trying to compile a c++ program that incorporates OpenCV. I want to use pkg-config to make the compilation easier. However this does not work due to the fact that pkg-config -libs opencv returns ...
1
vote
0answers
25 views

Any way to link clang related library easier?

I need to compile some cpp files with clang libraries, but what annoys me is that I have to link the libraries explicitly like: -lclang -lclangLex -lclangAST -lclangParse -lclangAnalysis ...
0
votes
1answer
31 views

Generate pkg-config out of Makefile

For a project, which historically uses make I would now like to generate a pkg-config file. However I cannot seem to prevent the substitution of the variables mylib.pc: echo 'prefix='$(PREFIX) ...
0
votes
1answer
46 views

pkg-config doesn't see .pc file, even when containing folder is in PKG_CONFIG_PATH

I'm running gentoo linux, and I'm trying to get pkg-config to find ntk.pc (ntk being the library I'm trying to link to). Here are the premises: Output of echo $PKG_CONFIG_PATH: ...
1
vote
1answer
25 views

pkg-config --version always gives 0.26

So, was reading about pkg-config (I think it's included by default on Debian, which I'm on). But every time I try to find the version for something, it gives me 0.26. santeyio@Amadeus:/$ pkg-config ...
0
votes
1answer
93 views

How can I get pkg-config to work within eclipse juno (Mac OS X)?

I try to get gtkmm running within eclipse. This is my makefile (without the cleaning): all : main.cpp @export PATH+=/opt/local/bin; @echo PATH=$(PATH); g++ -v `pkg-config gtkmm-2.4 --cflags` \ ...
-2
votes
1answer
491 views

Matplotlib Fails To Install On Mac OS X 10.8.3 [closed]

I've been trying for a week to install Matplotlib. This time I tried using python setup.py instead of pip install matplotlib. This gives a much cleaner explanation of what's going on and wrong. I've ...
0
votes
1answer
162 views

Brew warning / pkg-config $PATH

I'm trying to install Ruby by following this guide ( How to install... ) But when I do brew doctor I get this Warning: You have a non-Homebrew 'pkg-config' in your PATH: ...
-1
votes
1answer
138 views

No package 'libusb-1.0' found [closed]

I am trying to install libfprint following these instructions. I have installed libusb using "sudo apt-get install libusb-dev". However, after I enter, ./configure --prefix=/usr I get the ...
4
votes
0answers
1k views

Package opencv was not found in the pkg-config search path

I have installed OpenCV using the instructions in https://help.ubuntu.com/community/OpenCV $ sudo su $ sudo apt-get install build-essential $ sudo apt-get install libavformat-dev $ sudo apt-get ...
1
vote
2answers
243 views

How to build opencv c++ programs in sublime text 2 in linux

I'm trying to build opencv source using sublime text 2 but it seems that there is problem in linking opencv libraries using pkg-config My C++.sublime-build { "cmd": ["g++", "${file}", "-o", ...
1
vote
0answers
226 views

pkg-config can't find opencv

I installed opencv on a lubuntu 12.10 distro. Then when I try to compile a code which is using opencv it says it can't find it. So I try in a terminal : pkg-config --cflags --libs opencv It answers ...
0
votes
1answer
67 views

Debian: ./configure fails because of PKG_CHECK

I want to build a modified version of lighttpd. I follow this tutorial: http://h264.code-shop.com/trac/wiki/Mod-H264-Streaming-Lighttpd-Version2 This is what I've done so far apt get install ...
1
vote
1answer
352 views

How to get Qt5 ./configure to find my cross-compiled OpenSSL libs?

I am attempting to cross-compile Qt5 with Mingw-w64's 32-bit compiler. The host platform is Ubuntu 12.10 64-bit and the target platform is 32-bit Windows. I've managed to cross-compile the OpenSSL ...
0
votes
0answers
43 views

Pkg-config installation error

I am trying to install Pkg-config in Windows 32. I keep encountering the same error on line 37. See below. Any ideas of how to fix this problem? Thank you for your help. CPAN.pm: Building ...
0
votes
0answers
193 views

Installation issue on Mac OSX

I am getting the following errors when trying to install poppler on my Mac. I checked and pkgconfig is in my /usr/lib/ directory. checking for LIBPNG... no checking for FREETYPE... no checking for ...
0
votes
0answers
114 views

PKG_CONFIG_PATH environment variable and packed localisation problems

I installed the library libpackedobjects doing this: git clone git://gitorious.org/libpackedobjects/libpackedobjects.git cd libpackedobjects autoreconf -i ./configure make make check sudo make ...
1
vote
1answer
47 views

Package path error when trying to install lib package in C

I am trying to install libpackedobjects on my fedora 17. The path that I am trying to install it on is home/libpackedobjects. The steps that I am following are: git clone ...
0
votes
0answers
183 views

OpenCV Compilation Error

I recently installed OpenCV on my laptop. After the installation of OpenCV 2.4.2 I tried to run and compile a basic program to Load and display and image. The code is given below. #include ...
0
votes
2answers
77 views

Is there anything like pkg-config for Java?

I have a project where our CLASSPATH is getting out of hand. We have jars that depend on other jars, which in turn depend on even more jars, as well as a large collection of third-party jars. So ...
0
votes
0answers
89 views

Using Qt Package Config Files on Windows?

How do i use qt with package-config on widows? I can't find the folder with the qt package confiles ie QtCore.pc QtGui.pc etc. if they aren't distributed with the vs2010 binaries, how do i generate ...
0
votes
0answers
24 views

How to customize the meaning of the “-l” flag for GCC?

I have problems with GCC and I would like to use the -l flags in a customized way. I would like to specify the search path for the correspondant libfoo specified by -lfoo , I also would like to ...
1
vote
1answer
62 views

Program does not link to library even adding content of “pkg-config --libs” to $CFLAGS or $LDFLAGS

I am trying to compile a program which depends upon GLib's libgthread. The library is installed in my machine (Ubuntu 12.04) and pkg-config finds it: $ pkg-config --libs gthread-2.0 -pthread ...
0
votes
1answer
140 views

pkg-config is looking into /usr/local/lib/pkgconfig even with PKG_CONFIG_PATH set to another location

I'm using pkg-config to cross compile a project to MIPS platform. As usual, I'm setting the PKG_CONFIG_PATH var to the target's platform suitable directory (in this case something like ...
1
vote
1answer
565 views

Install usblib package - Ubuntu

I need the package libusb for another package I am installing. I tried the following which seemed to install the package, sudo apt-get install libusb-dev but when I try to install the other ...
0
votes
0answers
45 views

Can I use pkg-config commands with XCode?

I used to have a compile line like this: g++ opencv_test.cpp `pkg-config --cflags opencv` `pkg-config --libs opencv` However in XCode, I have to set include paths, library paths and the concrete ...
4
votes
3answers
984 views

How do I fix 'brew install pkg-config'?

Warning: Could not link pkg-config. Unlinking... Error: The brew link step did not complete successfully The formula built, but is not symlinked into /usr/local You can try again using `brew link ...
0
votes
1answer
58 views

How to use automake to link two libs, one dynamically and the other statically?

Suppose I want to link the foo application with the bar and baz libs. Both support pkg-config and provide .pc files. The bar lib I want to link dynamically and the baz library I want to link ...
0
votes
0answers
104 views

how should configure use pkg-config to link against a static library?

The question here is...what is the "standard" way to use pkg-config and "detect" or "use" a static only built library? The specific question is, if I install fontconfig with --disable-shared ...
0
votes
2answers
275 views

Find libffi header files with CMake

I require libffi to build my C++ project. The problem is that there exists no premade script to find libffi and ffi.h is located at strange locations depending on the version of the library and the ...
4
votes
2answers
5k views

Linux glib needs pkg-config and pkg-config needs glib?

I try to install udev. And udev gives me an error during the ./configure --exists: command not found configure: error: pkg-config and "glib-2.0 >= 2.16" not found, please set GLIB_CFLAGS and ...
3
votes
1answer
442 views

Find Boost libraries in Makefile

What’s the best practice for including Boost libraries in the built process? To illustrate, assume that our project makes use of Boost’s regular expressions and is compiled as follows: g++ ...
3
votes
1answer
503 views

pkg-config and OSX 10.8, proper PKG_CONFIG_PATH? Missing .pc files?

I installed pkg-config with homebrew in OSX. I'm not sure what I should set my PKG_CONFIG_PATH to? Should it be a combination of /usr/include and /usr/local/include? Even if I use one or the other, ...
0
votes
1answer
171 views

pkg-config doenst show gstreamer-plugins-bad

I am trying to write a program using rtmpsrc plugin which comes under bad plugins of gstreamer . I read article about compiling the gstreamer bad plugin programs using pkg-config tool so i tried to ...
0
votes
1answer
214 views

pkgconfig(alsa) in spec file doesn't recognize already installed alsa, alsa-devel

I'm trying to build qt on CentOS 5.6 but it fails with the reason that the system doesn't have required libraries. I'm trying to build with source and spec file from the Fedora qt source rpm file. $ ...
0
votes
0answers
274 views

Error in with glib / pkg-config: glib_trace.h:33:25: error: glib_probes.h

Throwing an error when I'm trying to install lolcommits. On one hand, yes, trivial gem. On the other hand, there seems to be some other oddities afoot that this trivial endeavor has uncovered. The ...
2
votes
2answers
304 views

Preferred way to build multiple projects with Jenkins, CMake and pkg-config?

I am developing two libraries A and B with B depending on A, both managed in their own Git repositories. The libraries are built with CMake and installed in standard UNIX directories. During ...
1
vote
0answers
64 views

project dependent variables in pkg-config

I'm trying to help the Ruby guys get the code working again on AIX. The Ruby guys are trying to use pkg-config to help users write modules. On AIX, the final link of the module needs to specify the ...
0
votes
0answers
105 views

pkg-config 0.27 on centos 5.6

I want to upgrade the centos pkg-config from 0.21 (default) to 0.27. found the releases here: http://pkgconfig.freedesktop.org/releases/ but I need some guidance on how to "replace" the 0.21 with ...
0
votes
1answer
336 views

pkg-config: include paths for C and C++

Is it possible to specify include paths for C and C++ in a pkg-config file (mylib.pc.in)? I know I have Cflags field where I can pass any compiler flags, but it is generic and autoconf resolves it ...
2
votes
3answers
2k views

pkg-config cannot find .pc files although they are in the path

I am seeing a strange issue with pkg-config on Mac OSX-Lion. When running the python setup for module that I downloaded I receive the following error: aspen:python toddysm$ sudo ./setup.py install ...
0
votes
0answers
232 views

configure script not found error

I'm trying to compile the mplayer2 encoder branch statically (because I am slightly modifying the libav libraries). So I run configure --enable-static. It always ends with this error: Checking for ...

1 2 3