- Update to 1.2.4

PR:		ports/60618
Submitted by:	Ports Fury
This commit is contained in:
Pav Lucistnik 2003-12-27 14:46:45 +00:00
parent ab40d3c7a1
commit 7664565a22
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=96688
4 changed files with 14 additions and 16 deletions

View File

@ -7,7 +7,7 @@
#
PORTNAME= mhwaveedit
PORTVERSION= 1.2.3
PORTVERSION= 1.2.4
CATEGORIES= audio
MASTER_SITES= http://www.mtek.chalmers.se/~hjormagn/

View File

@ -1 +1 @@
MD5 (mhwaveedit-1.2.3.tar.gz) = 25fb4d7c03f52acda4dd523b7ce7662e
MD5 (mhwaveedit-1.2.4.tar.gz) = 136507e084ef715481129e6c241b2d32

View File

@ -0,0 +1,12 @@
--- src/datasource.c.orig Tue Dec 23 07:06:26 2003
+++ src/datasource.c Sat Dec 27 00:59:02 2003
@@ -212,8 +212,8 @@
Datasource *datasource_byteswap(Datasource *source)
{
- if (source == NULL) return NULL;
Datasource *ds;
+ if (source == NULL) return NULL;
ds = gtk_type_new(datasource_get_type());
ds->type = DATASOURCE_BYTESWAP;
memcpy(&(ds->format),&(source->format),sizeof(Dataformat));

View File

@ -1,14 +0,0 @@
--- src/viewcache.c.orig Wed Jun 4 15:23:06 2003
+++ src/viewcache.c Wed Jun 4 15:23:45 2003
@@ -24,6 +24,11 @@
#include "inifile.h"
#include "main.h"
+#ifndef HAVE_CEILL
+# define ceill(x) ceil((double)(x))
+# define HAVE_CEILL
+#endif
+
/* How many columns to update (max) for each call to view_cache_update */
#define PIXELS_PER_UPDATE 10
#define GUINT32(x) ((guint32)x)