• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

linux: help, compile problems!

smp

Diamond Member
I'm sorry to do this .... but I have posted this problem in-depth over at ars (they have a whole forum dedicated to linux) .. so please go check it out.
Thanks.


 
Do you have the termcap library installed? It should be under the /lib or /usr/lib directory. Look for libtermcap.so.X, where X is the version number.
If it is installed, then your configure script probably cannot find it because it is under a non standard location. In that case you have to:

1. Add the path where libtermcap is located to /etc/ld.so.conf, and then run ldconfig, before running configure. (Do this as root). Or,
2. Set the path in the system environment variable LD_LIBRARY_PATH in the shell you are trying to run configure. Then run configure from that same termianl where you set it.

Another quick way to be able to tell configure the location of where the termcap library is located is by setting the LDFLAGS compiler variable and passing it to configure like this:

# LDFLAGS=-L<location_of_termcap_lib> ./configure <your_configure_options>

Hope this helps.

If I am off, let me know, 'cause I had trouble finguring out what your problem realy was.

P.S. you may also have to find out what pieces of software are need to properly configure the software you are trying to compile, because sometimes incompatible versions of compiling tools can cause problems.

/edit: Added P.S.
 
Thanks a lot LNXman .. I'm going to sleep now cause it's really late, but I'll get to this asap tomorrow.
I'll let you know.
Thank you.
 
Back
Top