diff options
author | danger <danger@FreeBSD.org> | 2012-01-10 04:59:12 +0800 |
---|---|---|
committer | danger <danger@FreeBSD.org> | 2012-01-10 04:59:12 +0800 |
commit | 9ebb4a755bf0714cbe76dca1efe5bae296a12ec5 (patch) | |
tree | 867a372c804efdeefb9f559366933a574572df13 | |
parent | 0b7f7b91f6225abc4021c3da669c936860600972 (diff) | |
download | freebsd-ports-gnome-9ebb4a755bf0714cbe76dca1efe5bae296a12ec5.tar.gz freebsd-ports-gnome-9ebb4a755bf0714cbe76dca1efe5bae296a12ec5.tar.zst freebsd-ports-gnome-9ebb4a755bf0714cbe76dca1efe5bae296a12ec5.zip |
- update to 1.0.1
- unbreak build on 9.x [1]
Submitted by: Maxim Khitrov <max@mxcrypt.com> [1]
-rw-r--r-- | www/uwsgi/Makefile | 2 | ||||
-rw-r--r-- | www/uwsgi/distinfo | 4 | ||||
-rw-r--r-- | www/uwsgi/files/patch-uwsgiconfig.py | 11 |
3 files changed, 14 insertions, 3 deletions
diff --git a/www/uwsgi/Makefile b/www/uwsgi/Makefile index c8b8197c7783..c08842eb762e 100644 --- a/www/uwsgi/Makefile +++ b/www/uwsgi/Makefile @@ -6,7 +6,7 @@ # PORTNAME= uwsgi -PORTVERSION= 1.0 +PORTVERSION= 1.0.1 CATEGORIES= www python MASTER_SITES= http://projects.unbit.it/downloads/ diff --git a/www/uwsgi/distinfo b/www/uwsgi/distinfo index 68038a79edc1..1cfd3bb311cc 100644 --- a/www/uwsgi/distinfo +++ b/www/uwsgi/distinfo @@ -1,2 +1,2 @@ -SHA256 (uwsgi-1.0.tar.gz) = ed08043e4cfa0763545fc282b6c59f80edc09d65ee6d4369944cb8a91496958b -SIZE (uwsgi-1.0.tar.gz) = 465303 +SHA256 (uwsgi-1.0.1.tar.gz) = 09c63e5c254668390bbe0780ae429bd90de44240e7f0aad65a60191b53800e04 +SIZE (uwsgi-1.0.1.tar.gz) = 465362 diff --git a/www/uwsgi/files/patch-uwsgiconfig.py b/www/uwsgi/files/patch-uwsgiconfig.py new file mode 100644 index 000000000000..212005b5ec96 --- /dev/null +++ b/www/uwsgi/files/patch-uwsgiconfig.py @@ -0,0 +1,11 @@ +--- uwsgiconfig.py~ 2012-01-03 17:12:16.000000000 +0100 ++++ uwsgiconfig.py 2012-01-09 21:51:45.286212946 +0100 +@@ -531,7 +531,7 @@ + self.gcc_list.append('regexp') + self.cflags.append("-DUWSGI_PCRE") + +- if self.has_include('sys/capability.h'): ++ if uwsgi_os != 'FreeBSD' and self.has_include('sys/capability.h'): + self.cflags.append("-DUWSGI_CAP") + self.libs.append('-lcap') + |