diff options
author | wxs <wxs@FreeBSD.org> | 2009-10-12 20:57:18 +0800 |
---|---|---|
committer | wxs <wxs@FreeBSD.org> | 2009-10-12 20:57:18 +0800 |
commit | 812c29b98e3c6c13b293f836816d20555cb6e061 (patch) | |
tree | 7e5147aee408eb7c7b8f10f03567dc1f24b0e932 /audio/murmur | |
parent | 798781cb2f503e003c18ac7d8677b4d5c27ead94 (diff) | |
download | freebsd-ports-gnome-812c29b98e3c6c13b293f836816d20555cb6e061.tar.gz freebsd-ports-gnome-812c29b98e3c6c13b293f836816d20555cb6e061.tar.zst freebsd-ports-gnome-812c29b98e3c6c13b293f836816d20555cb6e061.zip |
- Add a patch to fix 64bit runtime issues.
- While here fix a typo in the name of a patch.
- Bump PORTREVISION.
PR: ports/139384
Submitted by: Richard Tector <richard@tector.org.uk>
Approved by: Ayumi Mitsui <ayu@commun.jp> (maintainer)
Diffstat (limited to 'audio/murmur')
-rw-r--r-- | audio/murmur/Makefile | 1 | ||||
-rw-r--r-- | audio/murmur/files/patch-compiler.pri (renamed from audio/murmur/files/patch-comipler.pri) | 4 | ||||
-rw-r--r-- | audio/murmur/files/patch-src__CryptState.cpp | 11 |
3 files changed, 14 insertions, 2 deletions
diff --git a/audio/murmur/Makefile b/audio/murmur/Makefile index 2c77f8fe2893..ece82e1f427a 100644 --- a/audio/murmur/Makefile +++ b/audio/murmur/Makefile @@ -7,6 +7,7 @@ PORTNAME= murmur PORTVERSION= 1.1.8 +PORTREVISION= 1 CATEGORIES= audio net MASTER_SITES= SF/mumble/Mumble/${PORTVERSION} DISTNAME= mumble-${PORTVERSION} diff --git a/audio/murmur/files/patch-comipler.pri b/audio/murmur/files/patch-compiler.pri index 9466c7528826..7689d548a70c 100644 --- a/audio/murmur/files/patch-comipler.pri +++ b/audio/murmur/files/patch-compiler.pri @@ -1,5 +1,5 @@ ---- compiler.pri.orig 2009-08-21 10:24:26.000000000 +0900 -+++ compiler.pri 2009-08-21 10:25:03.000000000 +0900 +--- compiler.pri.orig 2009-10-11 19:53:12.543346333 -0400 ++++ compiler.pri 2009-10-11 19:53:37.105373152 -0400 @@ -46,8 +46,8 @@ QMAKE_LINK = /opt/gcc/bin/g++
}
diff --git a/audio/murmur/files/patch-src__CryptState.cpp b/audio/murmur/files/patch-src__CryptState.cpp new file mode 100644 index 000000000000..dea58d81df24 --- /dev/null +++ b/audio/murmur/files/patch-src__CryptState.cpp @@ -0,0 +1,11 @@ +--- src/CryptState.cpp.orig 2009-10-11 19:53:49.525380171 -0400 ++++ src/CryptState.cpp 2009-10-11 19:54:36.401622290 -0400 +@@ -187,7 +187,7 @@ + #define SHIFTBITS 63 + typedef quint64 subblock; + +-#if __BYTE_ORDER == __BIG_ENDIAN ++#if Q_BYTE_ORDER == Q_BIG_ENDIAN + #define SWAPPED(x) (x) + #else + #ifdef __x86_64__ |