From owner-svn-ports-all@FreeBSD.ORG Sun Aug 12 08:53:28 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 14BA3106564A; Sun, 12 Aug 2012 08:53:28 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DAC9A8FC08; Sun, 12 Aug 2012 08:53:27 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q7C8rRAi058857; Sun, 12 Aug 2012 08:53:27 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q7C8rRwf058853; Sun, 12 Aug 2012 08:53:27 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201208120853.q7C8rRwf058853@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Sun, 12 Aug 2012 08:53:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r302428 - in head/audio/ctronome: . files X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Aug 2012 08:53:28 -0000 Author: rm Date: Sun Aug 12 08:53:27 2012 New Revision: 302428 URL: http://svn.freebsd.org/changeset/ports/302428 Log: - add patch to fix runtime on amd64 I also got an response from upstream maintainer that this change will be included into the next release. PR: 170207 Submitted by: Dmitry Kazarov Approved by: maintainer timeout (>2 weeks) Added: head/audio/ctronome/files/patch-ctronome.h (contents, props changed) Modified: head/audio/ctronome/Makefile head/audio/ctronome/pkg-descr Modified: head/audio/ctronome/Makefile ============================================================================== --- head/audio/ctronome/Makefile Sun Aug 12 08:33:10 2012 (r302427) +++ head/audio/ctronome/Makefile Sun Aug 12 08:53:27 2012 (r302428) @@ -7,6 +7,7 @@ PORTNAME= ctronome PORTVERSION= 0.5.3 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://ctronome.kign.org/source/ Added: head/audio/ctronome/files/patch-ctronome.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/ctronome/files/patch-ctronome.h Sun Aug 12 08:53:27 2012 (r302428) @@ -0,0 +1,22 @@ +--- ctronome.h.orig 2012-07-22 15:14:52.000000000 +0400 ++++ ctronome.h 2012-07-22 15:15:31.000000000 +0400 +@@ -1,4 +1,6 @@ + #include ++#include ++ + #define MYNAME "ctronome" + #define VERSION "0.5.3" + #define CREDITS "homepage: http://ctronome.kign.org/\n" +@@ -28,9 +30,9 @@ + for defaults/limits and required WAV format see README\n" + + /* my lazy type definitions */ +-typedef unsigned long int DWORD; +-typedef unsigned short int WORD; +-typedef unsigned char BYTE; ++typedef uint32_t DWORD; ++typedef uint16_t WORD; ++typedef uint8_t BYTE; + typedef DWORD dword; + typedef WORD word; + typedef BYTE byte; Modified: head/audio/ctronome/pkg-descr ============================================================================== --- head/audio/ctronome/pkg-descr Sun Aug 12 08:33:10 2012 (r302427) +++ head/audio/ctronome/pkg-descr Sun Aug 12 08:53:27 2012 (r302428) @@ -1,3 +1,3 @@ A very simple yet powerful programmable console metronome. -WWW: http://ctronome.kign.org/ +WWW: http://ctronome.kign.org/