From fc01b820ecf497c0b3bf4dbf82f83852d2c7aefd Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Sun, 20 Dec 2020 21:32:50 -0500 Subject: [tests] remove FastCGI test dependency on libfcgi - rewrite fcgi-responder as standalone app fcgi-responder is now a minimal, standalone FastCGI server for tests - remove dependency on fcgi-devel package - merge fcgi-auth into fcgi-responder --- tests/meson.build | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) (limited to 'tests/meson.build') diff --git a/tests/meson.build b/tests/meson.build index f6c501ac..9ecc9192 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -1,16 +1,7 @@ -if conf_data.get('HAVE_FASTCGI_H') or conf_data.get('HAVE_FASTCGI_FASTCGI_H') - libfcgi = compiler.find_library('fcgi', required: false) - if libfcgi.found() - executable('fcgi-auth', - sources: 'fcgi-auth.c', - dependencies: common_flags + [ libfcgi ], - ) - executable('fcgi-responder', - sources: 'fcgi-responder.c', - dependencies: common_flags + [ libfcgi ], - ) - endif -endif +executable('fcgi-responder', + sources: 'fcgi-responder.c', + dependencies: common_flags, +) executable('scgi-responder', sources: 'scgi-responder.c', -- cgit v1.2.1