Quoting Andrej Ricnik-Bay <[EMAIL PROTECTED]>: > Hi, > > I just installed mod_fastcgi under apache2 (on Slackware 12.1) and then > tried to install witty - but witty doesn't seem to be aware of the module, > it comes back saying: > > ** Enabling multi threading. > ** Disabling FastCGI. > ** Enabling built-in httpd. > -- ** hangman example needs mysql++-2.x library... Skipping. > -- ** Wt/Qt interopability example (wtwithqt) needs Qt4... Skipping. > -- Configuring done > -- Generating done > -- Build files have been written to: /home/andrej/source/wt-2.1.4/build > > > How do I fix that - what steps do I need to take to make witty > aware of the presence of the module?
You need to install the development files for FCGI ( http://fastcgi.coremail.cn/ ) or FastCGI ( http://www.fastcgi.com/ ), then invoke CMake like this: cmake -DCONNECTOR_FCGI:BOOL=ON For instance, this is what I use to build the Debian/Ubuntu packages: cmake -DCONNECTOR_FCGI:BOOL=ON -DCMAKE_INSTALL_PREFIX:PATH=$(CURDIR)/debian/tmp/usr/ -DCONFIGDIR:PATH=$(CURDIR)/debian/tmp/etc/wt/ -DWT_CMAKE_FINDER_INSTALL_DIR:PATH=/share/cmake-2.4/Modules -DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo -D CMAKE_SKIP_RPATH:BOOL=true -DWEBUSER:STRING=www-data -DWEBGROUP:STRING=www-data .. -- Pau Garcia i Quiles http://www.elpauer.org (Due to my workload, I may need 10 days to answer) ------------------------------------------------------------------------- Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! Studies have shown that voting for your favorite open source project, along with a healthy diet, reduces your potential for chronic lameness and boredom. Vote Now at http://www.sourceforge.net/community/cca08 _______________________________________________ witty-interest mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/witty-interest
