vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| On Tue, 15 Jul 2003 BJ wrote: [Ignore my previous msg] >It is a little complicated because I do not have access to root, but I >have made a directory $HOME/usr which I have been installing all my >software... so the libraries for the dependencies are in $HOME/usr/lib >and $HOME/usr/include ect. > >To get the gtk compile script to recognize everything I have created >the following enviroment variables: > >LD_LIBRARY_PATH=/home/s03bpa/usr/lib:/usr/lib:/usr/kerberos/lib:/usr/X11R6/lib:/usr/lib/sane >C_INCLUDE_PATH=/home/s03bpa/usr/include >CPLUS_INCLUDE_PATH=/home/s03bpa/usr/include >LDFLAGS=-L /home/s03bpa/usr/lib Probably your LDFLAGS is not correct, give it double quotes LDFLAGS="-L /home/s03bpa/usr/lib" Coz see below, there should be a space after '-L' and two // appear. >-L/home/s03bpa/usr/src/gtk/gtk+-2.2.2/gdk-pixbuf/pixops >../.libs/libpixops.a -L/home/s03bpa/usr//lib So it's not able to find the file. The path is passed wrong. V >/home/s03bpa/usr//lib/libgobject-2.0.so >/home/s03bpa/usr//lib/libgmodule-2.0.so -ldl >/home/s03bpa/usr//lib/libgthread-2.0.so -lpthread >/home/s03bpa/usr//lib/libglib-2.0.so -lm -Wl,--rpath >-Wl,/home/s03bpa/usr//lib -Wl,--rpath -Wl,/home/s03bpa/usr//lib >/home/s03bpa/usr/lib: file not recognized: Is a directory > > |