Tiny Core Linux
Tiny Core Extensions => TCE Talk => Topic started by: averyeng on April 01, 2009, 01:45:27 PM
-
i am trying to compile giblib and need the X11 header files.
where is the best place to download them so i have the right version?
thank you
-
The Xorg-7.4-dev.tce is the extension you need.
-
Thanks
will try it tonight
-
worked.
but I am having a problem with another program loading the shared library
"libgiblib.so.1: cannot open shared object file: No such file or directory"
libgiblib.so.1 is in /usr/local/lib
i added /usr/local/lib to my PATH and recompiled but i still get the same error.
thanks for the time.
-
Perhaps you need:
$ export PKG_CONFIG_PATH=/usr/lib/pkgconfig:/usr/local/lib/pkgconfig
-
i used that from the make tce directions
for both giblib and feh.
-
You could try having a look at the Makefile after running ./configure.
You might see something like:
giblib -L giblib
that you could change to:
giblib -L /usr/local/lib
-
found this in the "Makefile"
GIBLIB_CFLAGS = -I/usr/local/include -I/usr/local/include/giblib
GIBLIB_LIBS = -L/usr/local/lib -lgiblib -L/usr/lib -lImlib2 -lfreetype -lz -L/usr/X11R6/lib -lX11 -lXext -ldl -lm
but it doesn't seem to be used anywhere in the Makefile
-
It's a long shot, but maybe removing "-L/usr/X11R6/lib" might help?
-
Maybe running `ldconfig` will help.
-
Juanito,
removing "-L/usr/X11R6/lib"
worked
thank you
creating tce&tcz will test then post.