summaryrefslogtreecommitdiff
path: root/tests/fcgi-responder.c
diff options
context:
space:
mode:
authorMarcus Rückert <darix@opensu.se>2006-10-03 22:22:47 +0000
committerMarcus Rückert <darix@opensu.se>2006-10-03 22:22:47 +0000
commit56de5af1cd26d4d11439667e56dadd6b3a131881 (patch)
tree1d9bd423155e5b26543d6254f139af6da38caa57 /tests/fcgi-responder.c
parentb060b46dc98824f9ab688dca0b6667bbfabb7320 (diff)
downloadlighttpd-git-56de5af1cd26d4d11439667e56dadd6b3a131881.tar.gz
- properly find fastcgi.h in /usr/include/fastcgi
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@1364 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'tests/fcgi-responder.c')
-rw-r--r--tests/fcgi-responder.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/fcgi-responder.c b/tests/fcgi-responder.c
index 7fbaf28c..86b53738 100644
--- a/tests/fcgi-responder.c
+++ b/tests/fcgi-responder.c
@@ -1,4 +1,9 @@
+#include "config.h"
+#ifdef HAVE_FASTCGI_FASTCGI_H
+#include <fastcgi/fcgi_stdio.h>
+#else
#include <fcgi_stdio.h>
+#endif
#include <stdlib.h>
#include <unistd.h>
#include <string.h>