Hello,
I want to compile the CVS version (23.0.60.1) of GNU Emacs on an OpenSUSE 10.2 machine that I don't have root access to. I am interested in font rendering support for the Devanagari script. Emacs requires the otf and m17n-flt libraries for that.
Since I do not have root access to my system, I installed these libraries in $HOME/lib. (The header files went into $HOME/include.) But while compiling Emacs, I found that configure does not detect these libraries, I have tried the following:
- export LD_LIBRARY_PATH=$HOME/lib
- LDFLAGS='-L$HOME/lib' CPPFLAGS='-I$HOME/include' ./configure --enable-font-backend --prefix=$HOME --with-otf --with-m17n-flt
- ./configure --enable-font-backend --prefix=$HOME --with-otf --with-m17n-flt --libdir=$HOME/lib
How can I make configure see these library files?
Thanks,
Girish.