vote up 5 vote down star
1

I'm building my first autoconf managed package.

However I can't find any simple examples anywhere of how to specify a required library, and find that library where it might be in various different places.

I've currently got:

AC_CHECK_LIB(['event'], ['event_init'])

but:

  1. It doesn't find the version installed in /opt/local/lib
  2. It doesn't complain if the library isn't actually found
  3. I need to set the include path to /opt/local/include too

any help, or links to decent tutorials much appreciated...

flag

4 Answers

vote up 2 vote down check

You need to manually set CFLAGS, CXXFLAGS and LDFLAGS if you want gcc/g++ to look in non-standard locations.

So, before calling AC_CHECK_LIB(), do something like

CFLAGS="$CFLAGS -I/opt/local/include"
CXXFLAGS="$CXXFLAGS -I/opt/local/include"
LDFLAGS="$LDFLAGS -L/opt/local/lib"

You don't need CXXFLAGS if you're only using gcc throughout your configure script.

link|flag
I presume that first line should be CPPFLAGS, not CFLAGS? – Alnitak Feb 6 at 9:05
I did mean CFLAGS in the first line, however as far as include headers go, CPPFLAGS should also do the trick. – codelogic Feb 6 at 9:27
vote up 2 vote down

If the library ships a .pc file, consider using the PKG_CHECK_MODULES() macro which does the things you want. If it's your own library, just ship a .pc file into /usr/lib/pkgconfig, it'll make it much easier for other developers to depend/use it.

link|flag
vote up 0 vote down

*AC_CHECK_LIB* creates and compiles a simple temporary program that calls the function, passing the library in on the link line. If the program compiles successfully, *AC_CHECK_LIB* knows that the function exists in that library. If compilation fails, it knows that the function doesn't exist there, even though it might be somewhere else on the system.

Which means that it is a pretty dumb tool. You have to either provide the necessary flags to the environment (set them in the autoconf script before testing for the library based for example on *AC_ARG_WITH* or provide them externally before invoking configure script).

Personally I had enough of fun with autotools and moved to CMake.

link|flag
vote up 0 vote down

Does this Documentation on AC_CHECK_LIB help at all?

link|flag

Your Answer

Get an OpenID
or

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