hack-handler-fastcgi 0.0.0 → 0.0.1
raw patch · 3 files changed
+15/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- configure +9/−0
- fastcgi.buildinfo.in +3/−0
- hack-handler-fastcgi.cabal +3/−2
+ configure view
@@ -0,0 +1,9 @@+#!/bin/sh+#++# subst standard header path variables+if test -n "$CPPFLAGS" ; then+ echo "Found CPPFLAGS in environment: '$CPPFLAGS'"+ sed 's,@CPPFLAGS@,'"$CPPFLAGS"',g;s,@LDFLAGS@,'"$LDFLAGS"',g' \+ < fastcgi.buildinfo.in > fastcgi.buildinfo+fi
+ fastcgi.buildinfo.in view
@@ -0,0 +1,3 @@+ghc-options: -optc@CPPFLAGS@+cc-options: @CPPFLAGS@+ld-options: @LDFLAGS@
hack-handler-fastcgi.cabal view
@@ -1,5 +1,5 @@ name: hack-handler-fastcgi-version: 0.0.0+version: 0.0.1 license: BSD3 license-file: LICENSE author: Michael Snoyman <michael@snoyman.com>@@ -8,7 +8,8 @@ category: Web stability: stable cabal-version: >= 1.2-build-type: Simple+build-type: Configure+extra-source-files: configure fastcgi.buildinfo.in homepage: http://github.com/snoyberg/hack-handler-fastcgi/tree/master library