summaryrefslogtreecommitdiff
path: root/tests/SConscript
diff options
context:
space:
mode:
authormOo <moo.lighttpd@gmail.com>2005-10-01 12:35:55 +0000
committermOo <moo.lighttpd@gmail.com>2005-10-01 12:35:55 +0000
commit809199f98f5208e9e33252ba0056949a90b9cbbc (patch)
treecb77b787d15039be8b4931d0a0d2f03fd5866eeb /tests/SConscript
parent56e8df101c25b4c98ae35a9bbd804bb87868980c (diff)
downloadlighttpd-git-809199f98f5208e9e33252ba0056949a90b9cbbc.tar.gz
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
Diffstat (limited to 'tests/SConscript')
-rw-r--r--tests/SConscript6
1 files changed, 6 insertions, 0 deletions
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 )