[xmp] Add missing license notice

As pointed out by Jan Engelhardt, many files are missing a license notice.
Add the standard license notice to these files.

Signed-off-by: Claudio Matsuoka <cmatsuoka@gmail.com>
master
Claudio Matsuoka 13 years ago
parent daaa2e265f
commit 60dde651a3
  1. 8
      src/commands.c
  2. 8
      src/info.c
  3. 8
      src/main.c
  4. 8
      src/options.c
  5. 8
      src/read_config.c
  6. 8
      src/sound.c
  7. 4
      src/sound_ahi.c
  8. 8
      src/sound_aix.c
  9. 8
      src/sound_alsa.c
  10. 6
      src/sound_alsa05.c
  11. 8
      src/sound_beos.c
  12. 8
      src/sound_bsd.c
  13. 8
      src/sound_coreaudio.c
  14. 8
      src/sound_dart.c
  15. 8
      src/sound_file.c
  16. 8
      src/sound_hpux.c
  17. 8
      src/sound_netbsd.c
  18. 8
      src/sound_null.c
  19. 8
      src/sound_oss.c
  20. 8
      src/sound_pulseaudio.c
  21. 8
      src/sound_qnx.c
  22. 8
      src/sound_sgi.c
  23. 8
      src/sound_solaris.c
  24. 8
      src/sound_wav.c
  25. 9
      src/sound_win32.c
  26. 8
      src/terminal.c

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
#include <unistd.h>
#ifdef WIN32
#include <conio.h>

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
#include <stdio.h>
#include <string.h>
#include <xmp.h>

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
#include <stdio.h>
#include <ctype.h>
#include <string.h>

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
#include <stdlib.h>
#include <string.h>
#include "sound.h"

@ -1,5 +1,9 @@
/* Amiga AHI driver for Extended Module Player
* Copyright (C) 2007 Lorence Lombardo
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
#include <stdlib.h>

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
/*
* Based on the AIX XMMS output plugin by Peter Alm, Thomas Nilsson
* and Olle Hallnas.

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
#include <alsa/asoundlib.h>
#include <alsa/pcm.h>
#include "sound.h"

@ -1,6 +1,12 @@
/* ALSA 0.5 driver for xmp
* Copyright (C) 2000 Tijs van Bakel and Rob Adamson
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
/*
* Fixed for ALSA 0.5 by Rob Adamson <R.Adamson@fitz.cam.ac.uk>
* Sat, 29 Apr 2000 17:10:46 +0100 (BST)
*/

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
#include <Application.h>
#include <SoundPlayer.h>

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
#include <sys/types.h>
#include <sys/param.h>
#include <sys/audioio.h>

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
#include <CoreAudio/CoreAudio.h>
#include <AudioUnit/AudioUnit.h>
#include <AudioToolbox/AudioToolbox.h>

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//
//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//
/*

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
/* Tested on a 9000/710 running HP-UX 9.05 with 8 kHz, 16 bit mono output. */
#include <unistd.h>

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
/* Based on bsd.c and solaris.c */
#include <sys/types.h>

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
#include <stdlib.h>
#include "sound.h"

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
/*
* devfs /dev/sound/dsp support by Dirk Jagdmann
* resume/onpause by Test Rat <ttsestt@gmail.com>

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
#include <unistd.h>
#include <pulse/simple.h>
#include <pulse/error.h>

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
/*
* Based on the QNX4 port of nspmod by Mike Gorchak <malva@selena.kherson.ua>
*/

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
#include <unistd.h>
#include <stdlib.h>
#include <string.h>

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
/* CS4231 code tested on Sparc 20 and Ultra 1 running Solaris 2.5.1
* with mono/stereo, 16 bit, 22.05 kHz and 44.1 kHz using the internal
* speaker and headphones.

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>

@ -1,6 +1,15 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
/*
* Based on Bjornar Henden's driver for Mikmod
*/
#include <windows.h>
#include <stdio.h>
#include "sound.h"

@ -1,3 +1,11 @@
/* Extended Module Player
* Copyright (C) 1996-2013 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See the COPYING
* file for more information.
*/
#include <stdio.h>
#include <xmp.h>
#include "common.h"

Loading…
Cancel
Save