wrote:
> Hello all,
>
> I am doing my first steps in linux-c++ programming and have an
> installation problem.
As such it's not really on-topic here...
> My problem:
> The project I am trying to compile. needs an external library and i
> don`t know how to manage the makefile finds the .h file of the library
> - this file lies not in the standard directory, because I only admin
> rights for those directories. I want to compile my project with
> automake.
I don't know about automake, but the C compiler (or C++) usually takes
an argument -I/path/to/your/headers to look for header files. Read the
fine manual for more information.
> What I have done is to insert the LD_LIBRARY_PATH to the .bashrc, do I
> need to set another systemvariable in the .bashrc for the
> include-files?
The lib-path is only for the system to find libraries (.so) when you
start an executable program. AFAIK it's not important for compilation.
There you want the -L and -l flags of your compiler (if it's gcc at
least).
> or do I need to manipulate the automake./configure.h- files.
>
> Thanks in advance,
> Mx
>