diff options
Diffstat (limited to 'extra/fcgi')
-rw-r--r-- | extra/fcgi/PKGBUILD | 31 | ||||
-rw-r--r-- | extra/fcgi/gcc44-fix-include.patch | 17 |
2 files changed, 48 insertions, 0 deletions
diff --git a/extra/fcgi/PKGBUILD b/extra/fcgi/PKGBUILD new file mode 100644 index 000000000..d6024ec72 --- /dev/null +++ b/extra/fcgi/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 87808 2010-08-18 10:56:40Z jgc $ +# Maintainer: tobias <tobias@justdreams.de> +# Modified by: eliott <eliott@cactuswax.net> +# Original by Benjamin Andresen, klapmuetz [at] gmail [dot] com + +pkgname=fcgi +pkgver=2.4.0 +pkgrel=6 +depends=('gcc-libs') +pkgdesc="FASTCgi(fcgi) islanguage independent, high performant extension to CGI" +arch=(i686 x86_64) +license=('custom') +options=('!libtool' '!makeflags') +url="http://www.fastcgi.com" +source=(http://www.fastcgi.com/dist/${pkgname}-${pkgver}.tar.gz + gcc44-fix-include.patch) +md5sums=('d15060a813b91383a9f3c66faf84867e' + 'a8028462163755f3ce457a5c641f237b') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + patch -Np1 -i "${srcdir}/gcc44-fix-include.patch" + libtoolize --force + aclocal + autoconf + automake --foreign + ./configure --prefix=/usr + make + make DESTDIR="${pkgdir}" install + install -Dm644 LICENSE.TERMS "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} diff --git a/extra/fcgi/gcc44-fix-include.patch b/extra/fcgi/gcc44-fix-include.patch new file mode 100644 index 000000000..7999e1be5 --- /dev/null +++ b/extra/fcgi/gcc44-fix-include.patch @@ -0,0 +1,17 @@ +Author: Tatsuki Sugiura <sugi@nemui.org> +Origin: vendor, http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=504963 +Bug-Debian: http://bugs.debian.org/504963 +Forwarded: no +Last-Update: 2010-02-08 + +Index: libfcgi/libfcgi/fcgio.cpp +=================================================================== +--- libfcgi.orig/libfcgi/fcgio.cpp 2010-01-23 19:13:53.000000000 +0900 ++++ libfcgi/libfcgi/fcgio.cpp 2010-01-23 19:13:55.000000000 +0900 +@@ -22,6 +22,7 @@ + #define DLLAPI __declspec(dllexport) + #endif + ++#include <cstdio> + #include <limits.h> + #include "fcgio.h" |