Greetings,

I'm trying to make use of the Pulseaudio APIs under Fedora Core 12. To do a simple recording client, you're supposed to include these headers:

#include <pulse/simple.h>
#include <pulse/error.h>
#include <pulse/gccmacro.h>

However, I don't know where these files are under a stock FC12 installation. Any help would be appreciated.

Thanks, FM

link|improve this question

40% accept rate
Header file names didnt post well... include <pulse/simple.h> include <pulse/error.h> include <pulse/gccmacro.h> – Frank Miller Dec 30 '09 at 22:58
feedback

2 Answers

up vote 0 down vote accepted
$ yum whatprovides '*/pulse/simple.h'
pulseaudio-libs-devel-0.9.19-2.fc12.i686 : Headers and libraries for PulseAudio
                                         : client development
Repo        : fedora
Matched from:
Filename    : /usr/include/pulse/simple.h

Once you yum install pulseaudio-libs-devel (or the same using the package mangler of your choice), you should be all set.

Keep in mind that you should use something like CFLAGS+=$(pkg-config --cflags libpulse-simple) LDLIBS+=$(pkg-config --libs libpulse-simple) for portability.

link|improve this answer
Very kewl. I was unaware of the "whatprovides" functionality. Thanks, FM – Frank Miller Dec 31 '09 at 18:21
feedback

According to the spec file, they're in the pulseaudio-libs-devel package (line 407).

link|improve this answer
the following command seems to work: # yum install pulseaudio-libs-devel Thanks! – Frank Miller Dec 31 '09 at 2:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.