[Scummvm-cvs-logs] CVS: scummvm/sound fmopl.cpp,1.6,1.7 fmopl.h,1.1,1.2 imuse.h,1.1,1.2 mididrv.h,1.1,1.2 mixer.cpp,1.8,1.9 mixer.h,1.5,1.6
James Brown
ender at users.sourceforge.net
Sun Apr 21 10:47:03 CEST 2002
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/morphos morphos.cpp,1.12,1.13 morphos.h,1.4,1.5 morphos_sound.cpp,1.8,1.9 morphos_start.cpp,1.2,1.3
- Next message: [Scummvm-cvs-logs] CVS: scummvm gfx.cpp,1.75,1.76 main.cpp,1.7,1.8 sdl.cpp,1.98,1.99 smush.h,1.2,1.3 system.h,1.14,1.15
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/scummvm/scummvm/sound
In directory usw-pr-cvs1:/tmp/cvs-serv5116/sound
Modified Files:
fmopl.cpp fmopl.h imuse.h mididrv.h mixer.cpp mixer.h
Log Message:
Add boilerplate license to some files, to satisfy Debian types :)
fmopl.c/fmopl.h are infringing on the GPL at the moment. We either need to
replace these, or get permission to relicense them, before 0.2.0
Index: fmopl.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sound/fmopl.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** fmopl.cpp 11 Apr 2002 17:19:15 -0000 1.6
--- fmopl.cpp 21 Apr 2002 17:46:42 -0000 1.7
***************
*** 7,10 ****
--- 7,12 ----
** Version 0.37a (modified)
**
+ ** ENDER: This file is not GPL. Need to replace or have
+ ** relicensed before 0.2.0 release.
*/
Index: fmopl.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sound/fmopl.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** fmopl.h 1 Dec 2001 17:06:13 -0000 1.1
--- fmopl.h 21 Apr 2002 17:46:42 -0000 1.2
***************
*** 1,2 ****
--- 1,3 ----
+ /* ENDER: Not GPLed. Replace or relicense before 0.2.0 */
#ifndef __FMOPL_H_
Index: imuse.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sound/imuse.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** imuse.h 14 Apr 2002 18:13:08 -0000 1.1
--- imuse.h 21 Apr 2002 17:46:42 -0000 1.2
***************
*** 1,2 ****
--- 1,23 ----
+ /* ScummVM - Scumm Interpreter
+ * Copyright (C) 2001 Ludvig Strigeus
+ * Copyright (C) 2001/2002 The ScummVM project
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
//WARNING: These is only the public interface to the IMUSE class
Index: mididrv.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sound/mididrv.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** mididrv.h 14 Apr 2002 18:13:08 -0000 1.1
--- mididrv.h 21 Apr 2002 17:46:42 -0000 1.2
***************
*** 1,2 ****
--- 1,24 ----
+ /* ScummVM - Scumm Interpreter
+ * Copyright (C) 2001 Ludvig Strigeus
+ * Copyright (C) 2001/2002 The ScummVM project
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+
struct MidiEvent {
uint32 delta;
Index: mixer.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sound/mixer.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** mixer.cpp 19 Apr 2002 15:15:47 -0000 1.8
--- mixer.cpp 21 Apr 2002 17:46:42 -0000 1.9
***************
*** 1,2 ****
--- 1,24 ----
+ /* ScummVM - Scumm Interpreter
+ * Copyright (C) 2001 Ludvig Strigeus
+ * Copyright (C) 2001/2002 The ScummVM project
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+
#include "stdafx.h"
#include "scumm.h"
Index: mixer.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sound/mixer.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** mixer.h 19 Apr 2002 15:02:16 -0000 1.5
--- mixer.h 21 Apr 2002 17:46:42 -0000 1.6
***************
*** 1,2 ****
--- 1,24 ----
+ /* ScummVM - Scumm Interpreter
+ * Copyright (C) 2001 Ludvig Strigeus
+ * Copyright (C) 2001/2002 The ScummVM project
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+
#ifndef _mixer_h_included
#define _mixer_h_included
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/morphos morphos.cpp,1.12,1.13 morphos.h,1.4,1.5 morphos_sound.cpp,1.8,1.9 morphos_start.cpp,1.2,1.3
- Next message: [Scummvm-cvs-logs] CVS: scummvm gfx.cpp,1.75,1.76 main.cpp,1.7,1.8 sdl.cpp,1.98,1.99 smush.h,1.2,1.3 system.h,1.14,1.15
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Scummvm-git-logs
mailing list