On Wed, Mar 25, 2009 at 5:13 AM, SAMEER KUMAR <[email protected]> wrote: > I am new to APR. I am going to use it for developing a Apache like hybrid > architecture for OpenSIPS [www.opensips.org], which an open source SIP[RFC > 3261] server. > > I have downloaded APR and installed it on my Fedora 9 machine using the > configure and make commands. I tested the installation with testall. But I > am not able to use this in my programs and not able to link to the header > files in APR. > > I am using a cat1.c program to run, in which I am using functions of APR > module. I have tried these gcc commands: > > gcc -l lapr-1 /cat1.c > > gcc /cat1.c -L. -lapr-1 > > my working directory is > > /usr/local/apr/lib > > I am getting following set of errors: > > /cat1.c:1:23: error: apr_pools.h: No such file or directory
You're not finding the installed APR headers. Try adding apr-1-config --includes to your compiler flags. (you might need to find where apr-1-config was installed when you built apr) -- Eric Covener [email protected]
