Just a question about compiling with debug info:
I can run the install-ns.sh script to build naviserver but I do not see that it has a -g option? I can see that "make" is run inside the script with --enable-symbols though. Does this mean it has the debug symbols by default?
if [ $with_mongo = "1" ] ; then
echo "------------------------ WITH MONGO"
./configure --enable-threads --enable-symbols \
--prefix=${ns_install_dir} --exec-prefix=${ns_install_dir} --with-tcl=${ns_install_dir}/lib \
--with-nsf=../../ \
--with-mongoc=/usr/local/include/libmongoc-1.0/,/usr/local/lib/ \
--with-bson=/usr/local/include/libbson-1.0,/usr/local/lib/
else
./configure --enable-threads --enable-symbols \
--prefix=${ns_install_dir} --exec-prefix=${ns_install_dir} --with-tcl=${ns_install_dir}/lib
fi
${make}
${make} install
Marty