I put my tarball of stuff up on google code for anyone else that might be interested: http://code.google.com/p/modskeleton/
The goal is to have something that sets you up for mutliple source files, a utils directory for other binary tools/scripts, etc. As the name suggests, it is just a skeleton. Very happy to add people to the project, accept patches and/or ideas, etc. Josh On 5/1/07, Graham Dumpleton <[EMAIL PROTECTED]> wrote:
On 01/05/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I use a little hack to find the appropriate apxs, you need csh for tha though, but that is installed on almost any unix: > > APXS := $(wildcard $(shell csh -c "which apxs2" 2>/dev/null)) > APXS := $(if $(APXS),$(APXS),$(wildcard $(shell csh -c "which apxs" 2>/dev/null))) For a 'configure' based solution which can work out whether you have apxs2 or apxs, and which can also select alternate makefiles dependent on whether Apache 1.3 or Apache 2.X is being used, have a look at mod_wsgi. The mod_wsgi stuff also does other things related to Python, but easy enough to drop that stuff out. Files can be viewed at: http://modwsgi.googlecode.com/svn/trunk/ Graham
