From 809199f98f5208e9e33252ba0056949a90b9cbbc Mon Sep 17 00:00:00 2001 From: mOo Date: Sat, 1 Oct 2005 12:35:55 +0000 Subject: scons fixes, and built/test on cygwin git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@771 152afb58-edef-0310-8abb-c4023f1b3aa9 --- tests/SConscript | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tests/SConscript') diff --git a/tests/SConscript b/tests/SConscript index 6d69c6f2..6d035e26 100644 --- a/tests/SConscript +++ b/tests/SConscript @@ -36,4 +36,10 @@ t = env.Command('foo1', 'prepare.sh', '(cd ./tests/; ./prepare.sh; cd ..)') t += env.Command('foo2', 'run-tests.pl', '( cd ./tests/; SHELL=/bin/sh ./run-tests.pl; cd ..)') t += env.Command('foo3', 'cleanup.sh', '(cd ./tests/; ./cleanup.sh; cd ..)') +if env['LIBFCGI']: + fcgis = [] + fcgis += env.Program("fcgi-auth", "fcgi-auth.c", LIBS=env['LIBFCGI']) + fcgis += env.Program("fcgi-responder", "fcgi-responder.c", LIBS=env['LIBFCGI']) + env.Depends(t, fcgis) + env.Alias('check', t ) -- cgit v1.2.1