vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| On Tue, 15 Jul 2003 BJ wrote: >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 > >I use ./configure --prefix=$HOME/usr/local --exec-prefix=$HOME/usr >and the configure script executes fine, but then when I type make, it >goes into the gtk+-2.2.2/gdk-pixbuf/pixops directory, and the make >program stopps with the following output: > [..snip..] > >/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 > [..snip..] > Why is there double slash // ? I guess you are adding a slash when you pass the prefix, you are doing something like ../configure --prefix=$HOME/usr/ When it should be ../configure --prefix=$HOME/usr I maybe wrong. V. |