diff options
author | wiz <wiz@pkgsrc.org> | 2017-07-13 12:29:09 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2017-07-13 12:29:09 +0000 |
commit | 1705d7d39b183cd4a6480289fb8540b621232154 (patch) | |
tree | bc00faebfae6a32bf67ebbf60b3e64297bcfedf3 /games/monsterz/patches/patch-ab | |
parent | 6850d2cfd77f145eafc08a4b68b436cb838bc338 (diff) | |
download | pkgsrc-1705d7d39b183cd4a6480289fb8540b621232154.tar.gz |
Honor LDFLAGS, fixes RELRO build.
While here, also honor CFLAGS and remove an unnecessary chunk.
Diffstat (limited to 'games/monsterz/patches/patch-ab')
-rw-r--r-- | games/monsterz/patches/patch-ab | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/games/monsterz/patches/patch-ab b/games/monsterz/patches/patch-ab index 9fb234eb519..b13112e1026 100644 --- a/games/monsterz/patches/patch-ab +++ b/games/monsterz/patches/patch-ab @@ -1,4 +1,4 @@ -$NetBSD: patch-ab,v 1.1 2009/02/15 21:53:40 wiz Exp $ +$NetBSD: patch-ab,v 1.2 2017/07/13 12:29:09 wiz Exp $ Fix 64-bit alignment issue with Python 2.5. http://sam.zoy.org/cgi-bin/viewcvs.cgi/monsterz.py?root=monsterz&rev=137&r1=135&r2=137 @@ -8,12 +8,6 @@ http://cvs.fedoraproject.org/viewvc/devel/monsterz/monsterz-0.7.1-blit-crash.pat --- monsterz.py.orig 2007-12-17 22:05:00.000000000 +0000 +++ monsterz.py -@@ -1,4 +1,4 @@ --#!/usr/bin/env python -+#!/usr/pkg/bin/python2.5 - # -*- coding: utf-8 -*- - - """ @@ -108,7 +108,9 @@ def semi_grayscale(surf): M = int(max(r, g, b)) m = int(min(r, g, b)) |