Update to 0.5.2

Changes: This is a bug fix release, only
  needed after upgrading GTK+ to GTK+-1.2.3
(hi Tron! :-)
This commit is contained in:
hubertf 1999-05-15 03:49:13 +00:00
parent c2eae54d56
commit fc09d5aed4
4 changed files with 11 additions and 11 deletions

View file

@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.1.1.1 1999/05/13 00:01:58 hubertf Exp $
# $NetBSD: Makefile,v 1.2 1999/05/15 03:49:13 hubertf Exp $
# FreeBSD Id: Makefile,v 1.6 1998/12/28 01:02:05 vanilla Exp
#
DISTNAME= gqmpeg-0.5.1
DISTNAME= gqmpeg-0.5.2
CATEGORIES= audio
MASTER_SITES= http://www.geocities.com/SiliconValley/Haven/5235/
EXTRACT_SUFX= .src.tgz

View file

@ -1,3 +1,3 @@
$NetBSD: md5,v 1.1.1.1 1999/05/13 00:01:58 hubertf Exp $
$NetBSD: md5,v 1.2 1999/05/15 03:49:14 hubertf Exp $
MD5 (gqmpeg-0.5.1.src.tgz) = 9649e5366da9298df19c216791fb9b14
MD5 (gqmpeg-0.5.2.src.tgz) = 2e1be28d9aaac1af8da6236f656a12c3

View file

@ -1,7 +1,7 @@
$NetBSD: patch-aa,v 1.1.1.1 1999/05/13 00:01:58 hubertf Exp $
$NetBSD: patch-aa,v 1.2 1999/05/15 03:49:14 hubertf Exp $
--- Makefile.orig Thu May 6 20:01:06 1999
+++ Makefile Thu May 6 20:24:58 1999
--- Makefile.BAK Sat May 15 05:28:13 1999
+++ Makefile Sat May 15 05:28:41 1999
@@ -1,11 +1,10 @@
-PREFIX=/usr/local
@ -11,7 +11,7 @@ $NetBSD: patch-aa,v 1.1.1.1 1999/05/13 00:01:58 hubertf Exp $
IMLIB_INCLUDE = `imlib-config --cflags-gdk`
IMLIB_LIB = `imlib-config --libs-gdk`
-CFLAGS = $(GTK_INCLUDE) $(IMLIB_INCLUDE)
+CFLAGS += $(GTK_INCLUDE) $(IMLIB_INCLUDE) -Dnetbsd
+CFLAGS += $(GTK_INCLUDE) $(IMLIB_INCLUDE)
LDFLAGS = $(GTK_LIB) $(IMLIB_LIB)
CC = gcc -Wall $(CFLAGS)

View file

@ -1,4 +1,4 @@
$NetBSD: patch-ab,v 1.1.1.1 1999/05/13 00:01:58 hubertf Exp $
$NetBSD: patch-ab,v 1.2 1999/05/15 03:49:14 hubertf Exp $
--- mixer.c.orig Thu May 6 20:04:04 1999
+++ mixer.c Thu May 6 20:10:47 1999
@ -6,7 +6,7 @@ $NetBSD: patch-ab,v 1.1.1.1 1999/05/13 00:01:58 hubertf Exp $
#include <machine/soundcard.h>
#endif
+#ifdef netbsd
+#ifdef __NetBSD__
+#include <soundcard.h>
+#undef _POSIX_SOURCE
+#endif
@ -19,7 +19,7 @@ $NetBSD: patch-ab,v 1.1.1.1 1999/05/13 00:01:58 hubertf Exp $
static DeviceData *current_device = NULL;
-#if defined (linux) || defined (__FreeBSD__)
+#if defined (linux) || defined (__FreeBSD__) || defined (netbsd)
+#if defined (linux) || defined (__FreeBSD__) || defined (__NetBSD__)
void mixer_init(gint init_device_id)
{
char *device_names[] = SOUND_DEVICE_NAMES;