Forum OpenACS Q&A: Re: OpenACS 5.5.0 install Debian 6 64bits - When trying to install OpenACS I get "Not Found"

I think I just answered my own question by rebuilding tDOM. I was pointing to the right directory, "/usr/local/lib":

root@debian:/usr/local/src/tDOM-0.8.3/unix# make clean
test -z "libtdom0.8.3.so libtdomstub0.8.3.a" || rm -f libtdom0.8.3.so libtdomstub0.8.3.a
rm -f *.o core *.core
test -z "pkgIndex.tcl tcldomsh" || rm -f pkgIndex.tcl tcldomsh
root@debian:/usr/local/src/tDOM-0.8.3/unix# ../configure --enable-threads --disable-tdomalloc \

--prefix=/usr/local/aolserver --with-tcl=/usr/local/bin
checking for correct TEA configuration... ok (TEA 3.6)
checking for Tcl configuration... configure: error: /usr/local/bin directory doesn't contain tclConfig.sh
root@debian:/usr/local/src/tDOM-0.8.3/unix#
root@debian:/usr/local/src/tDOM-0.8.3/unix#
root@debian:/usr/local/src/tDOM-0.8.3/unix# ../configure --enable-threads --disable-tdomalloc --prefix=/usr/local/aolserver --with-tcl=/usr/local/
checking for correct TEA configuration... ok (TEA 3.6)
checking for Tcl configuration... configure: error: /usr/local/ directory doesn't contain tclConfig.sh
root@debian:/usr/local/src/tDOM-0.8.3/unix#
root@debian:/usr/local/src/tDOM-0.8.3/unix#
root@debian:/usr/local/src/tDOM-0.8.3/unix# ../configure --enable-threads --disable-tdomalloc --prefix=/usr/local/aolserver --with-tcl=/usr/local/lib
checking for correct TEA configuration... ok (TEA 3.6)
checking for Tcl configuration... found /usr/local/lib/tclConfig.sh
checking for existence of /usr/local/lib/tclConfig.sh... loading
configure: --exec-prefix defaulting to TCL_EXEC_PREFIX /usr/local
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking how to run the C preprocessor... gcc -E
checking for a BSD-compatible install... /usr/bin/install -c
checking whether make sets $(MAKE)... yes
checking for ranlib... ranlib
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking if the compiler understands -pipe... yes
checking whether byte ordering is bigendian... no
checking for sin... no
checking for main in -lieee... yes
checking for main in -linet... no
checking net/errno.h usability... no
checking net/errno.h presence... no
checking for net/errno.h... no
checking for connect... yes
checking for gethostbyname... yes
checking dirent.h... yes
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking float.h usability... yes
checking float.h presence... yes
checking for float.h... yes
checking values.h usability... yes
checking values.h presence... yes
checking for values.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking sys/wait.h usability... yes
checking sys/wait.h presence... yes
checking for sys/wait.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking for memmove... yes
checking for bcopy... yes
checking for AOLserver configuration... none found
checking for Tcl public headers... /usr/local/aolserver/include
checking for pthread_mutex_init in -lpthread... yes
checking for building with threads... yes (default)
checking how to build libraries... shared
checking if 64bit support is requested... no
checking if 64bit Sparc VIS support is requested... no
checking system version... Linux-2.6.32-5-amd64
checking for dlopen in -ldl... yes
checking for ar... ar
checking for required early compiler flags... _LARGEFILE64_SOURCE
checking for 64-bit integer type... using long
checking for build with symbols... no
checking for tclsh... /usr/local/bin/tclsh8.4
checking whether to enable dtd support... yes
checking whether to enable namespace support... yes
checking whether to enable built-in unknown command... no
checking whether to enable tDOMs block allocator... no
configure: creating ./config.status
config.status: creating Makefile
config.status: creating tdomConfig.sh
root@debian:/usr/local/src/tDOM-0.8.3/unix#
FINALLY... I got to fix the XML issue. I did 2 things..

I got tdom from

And build (the same as I was doing before):

./configure --enable-threads --disable-tdomalloc --prefix=/usr/local/aolserver --exec-prefix=/usr/local/aolserver --with-aolserver=/usr/local/aolserver --with-tcl=/usr/local/lib
make
make install

Then I installed xotcl 1.6.0 which I was missing... and I think THIS WAS MY REAL PROBLEM...

wget http://media.wu-wien.ac.at/download/xotcl-1.6.0.tar.gz
tar xvfz xotcl-1.6.0.tar.gz
cd xotcl-1.6.0/
export CC=gcc
./configure --enable-threads --enable-symbols --prefix=/usr/local/aolserver --exec-prefix=/user/local/aolserver --with-tcl=/usr/local/lib
make
make install

And then I got rid of the XML error.

THANKS JIM ET ALL (until my next problem...but next one is going to be a new post)