From 54922d61afd5d165a5d322ca700ce747a898de33 Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Wed, 25 Nov 2020 10:25:30 -0500 Subject: [PATCH] [mod_fastcgi] move src/fastcgi.h into src/compat/ --- src/Makefile.am | 5 +++-- src/{ => compat}/fastcgi.h | 0 src/mod_fastcgi.c | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) rename src/{ => compat}/fastcgi.h (100%) diff --git a/src/Makefile.am b/src/Makefile.am index 780fd15a..204fecdd 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -454,7 +454,7 @@ mod_wstunnel_la_LIBADD = $(common_libadd) $(CRYPTO_LIB) hdr = base64.h buffer.h burl.h network.h log.h http_kv.h keyvalue.h \ - response.h request.h reqpool.h fastcgi.h chunk.h h2.h \ + response.h request.h reqpool.h chunk.h h2.h \ first.h http_chunk.h \ algo_md.h algo_md5.h algo_sha1.h algo_splaytree.h algo_xxhash.h \ http_auth.h http_header.h http_vhostdb.h stream.h \ @@ -472,7 +472,8 @@ hdr = base64.h buffer.h burl.h network.h log.h http_kv.h keyvalue.h \ mod_magnet_cache.h \ ls-hpack/lshpack.h \ ls-hpack/lsxpack_header.h \ - ls-hpack/huff-tables.h + ls-hpack/huff-tables.h \ + compat/fastcgi.h DEFS= @DEFS@ -DHAVE_VERSIONSTAMP_H -DLIBRARY_DIR="\"$(libdir)\"" -DSBIN_DIR="\"$(sbindir)\"" diff --git a/src/fastcgi.h b/src/compat/fastcgi.h similarity index 100% rename from src/fastcgi.h rename to src/compat/fastcgi.h diff --git a/src/mod_fastcgi.c b/src/mod_fastcgi.c index 4a45d9e8..bd45f6fe 100644 --- a/src/mod_fastcgi.c +++ b/src/mod_fastcgi.c @@ -22,7 +22,7 @@ typedef gw_handler_ctx handler_ctx; # ifdef HAVE_FASTCGI_H # include # else -# include "fastcgi.h" +# include "compat/fastcgi.h" # endif #endif /* HAVE_FASTCGI_FASTCGI_H */