diff options
| author | Sam James <sam@gentoo.org> | 2022-10-17 03:35:37 +0100 |
|---|---|---|
| committer | Sam James <sam@gentoo.org> | 2022-10-17 04:15:32 +0100 |
| commit | a156afdffa7547a43e7c93c445e3b8cd30cf5d79 (patch) | |
| tree | eab17663b07999e29ee155f51819c50469cb8799 /www-apache/mod_fastcgi_handler/mod_fastcgi_handler-0.6-r3.ebuild | |
| parent | c7465d7977aabd921032f087a3823525e592c6e7 (diff) | |
| download | gentoo-a156afdffa7547a43e7c93c445e3b8cd30cf5d79.tar.gz gentoo-a156afdffa7547a43e7c93c445e3b8cd30cf5d79.tar.bz2 gentoo-a156afdffa7547a43e7c93c445e3b8cd30cf5d79.zip | |
www-apache/mod_fastcgi_handler: fix build w/ Clang 16
Closes: https://bugs.gentoo.org/875701
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'www-apache/mod_fastcgi_handler/mod_fastcgi_handler-0.6-r3.ebuild')
| -rw-r--r-- | www-apache/mod_fastcgi_handler/mod_fastcgi_handler-0.6-r3.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/www-apache/mod_fastcgi_handler/mod_fastcgi_handler-0.6-r3.ebuild b/www-apache/mod_fastcgi_handler/mod_fastcgi_handler-0.6-r3.ebuild new file mode 100644 index 000000000000..2f1bc9162ce7 --- /dev/null +++ b/www-apache/mod_fastcgi_handler/mod_fastcgi_handler-0.6-r3.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit apache-module + +DESCRIPTION="A simple FastCGI handler module" +HOMEPAGE="https://github.com/hollow/mod_fastcgi_handler" +SRC_URI="https://github.com/hollow/mod_fastcgi_handler/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +APACHE2_MOD_CONF="20_${PN}" +APACHE2_MOD_DEFINE="FASTCGI_HANDLER" + +APXS2_ARGS="-o ${PN}.so -c *.c" + +PATCHES=( + "${FILESDIR}"/${PN}-0.6-implicit-function-decl.patch +) + +need_apache2 + +pkg_setup() { + # bug #653606 + # but true cause seems to be bug #616612 + _init_apache2 + _init_apache2_late +} |
