maltes
committed
on 04 Mar 07
Added check for aolserver 4.5
openacs-4/etc/config.tcl (+3 -0)
627 627 #    ns_param   nsperm             ${bindir}/nsperm.so
628 628 #    ns_param   nscgi              ${bindir}/nscgi.so
629 629 #    ns_param   nsjava             ${bindir}/libnsjava.so
630 630 #    ns_param   nsrewrite          ${bindir}/nsrewrite.so
631 631
632 632     if { [ns_info version] >= 4 } {
633 633         # Required for AOLserver 4.x
634 634         ns_param   nsdb               ${bindir}/nsdb.so
635 635     } else {
636 636         # Required for AOLserver 3.x
637 637         ns_param   libtdom            ${bindir}/libtdom.so
638 638     }
639 639
640 640     # nsthread library which should become standard in 5.3
641 641     if {[file exists ${homedir}/lib/thread2.6.4/libthread2.6.4[info sharedlibextension]]} {
642 642         ns_param libthread ${homedir}/lib/thread2.6.4/libthread2.6.4[info sharedlibextension]
643 643     }
644 644
645 645 ns_log notice "nsd.tcl: using threadsafe tcl: [info exists tcl_platform(threaded)]"
646 646 ns_log notice "nsd.tcl: finished reading config file."
  647 if {[ns_info version] >= 4.5} {
  648     ns_limits set default -maxupload [ns_config ns/server/cognovis/module/nssock maxinput]
  649 }