17

I am having trouble with compiling one of the open source libraries (libopekele OpenID lib).

The problem is I don't have sudo access on the system where I need to compile this.

Ran the configure. It complained of missing htmltidy lib. Installed the htmltidy at a non-standard path /home/geekgod (as I dont have access to the /usr and /usr/local).

Now the problem is how do I make the configure script of libopekele to pick the the headers from /home/geekgod/include.

Poking into the configure.ac script of libopkele, it is using AC_CHECK_HEADERS to search for tidy.h or tidy/tidy.h. I am pretty sure it is looking for these at standard location (/usr/include). How do I add /home/geekgod to the standard include dir?

pevik
  • 4,523
  • 3
  • 33
  • 44
rajeshnair
  • 1,587
  • 16
  • 32
  • 5
    To answer your question mechanically: `AC_CHECK_HEADERS` compiles a small test program, using the compiler for whichever language is selected by `AC_LANG_PUSH` and `AC_LANG_POP` (C is the default). This sees `CPPFLAGS`, which is how you pass additional search paths to the compiler. – Jack Kelly Feb 11 '11 at 04:57

1 Answers1

23

try this:

./configure CPPFLAGS=-I/home/geekgod/include --prefix=... --etc
zwol
  • 135,547
  • 38
  • 252
  • 361