Fix build for OpenBSD/sndio and licence updates. (#3442)
This commit is contained in:
committed by
Javier Serrano Polo
parent
df5cf255de
commit
7f97516683
@@ -1,3 +1,28 @@
|
||||
/*
|
||||
* AudioSndio.h - base-class that implements sndio audio support
|
||||
*
|
||||
* Copyright (c) 2010-2016 jackmsr@openbsd.net
|
||||
* Copyright (c) 2016-2017 David Carlier <devnexen@gmail.com>
|
||||
*
|
||||
* This file is part of LMMS - https://lmms.io
|
||||
*
|
||||
* 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 (see COPYING); if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
* Boston, MA 02110-1301 USA.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _AUDIO_SNDIO_H
|
||||
#define _AUDIO_SNDIO_H
|
||||
|
||||
|
||||
@@ -1,3 +1,28 @@
|
||||
/*
|
||||
* MidiSndio.h - base-class that implements sndio midi support
|
||||
*
|
||||
* Copyright (c) 2010-2016 jackmsr@openbsd.net
|
||||
* Copyright (c) 2016-2017 David Carlier <devnexen@gmail.com>
|
||||
*
|
||||
* This file is part of LMMS - https://lmms.io
|
||||
*
|
||||
* 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 (see COPYING); if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
* Boston, MA 02110-1301 USA.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _MIDI_SNDIO_H
|
||||
#define _MIDI_SNDIO_H
|
||||
|
||||
@@ -28,10 +53,10 @@ public:
|
||||
return QT_TRANSLATE_NOOP("MidiSetupWidget", "sndio MIDI");
|
||||
}
|
||||
|
||||
inline static QString configSection()
|
||||
{
|
||||
return "MidiSndio";
|
||||
}
|
||||
inline static QString configSection()
|
||||
{
|
||||
return "MidiSndio";
|
||||
}
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
@@ -1,6 +1,29 @@
|
||||
#ifndef SINGLE_SOURCE_COMPILE
|
||||
/*
|
||||
* AudioSndio.cpp - base-class that implements sndio audio support
|
||||
*
|
||||
* Copyright (c) 2010-2016 jackmsr@openbsd.net
|
||||
* Copyright (c) 2016-2017 David Carlier <devnexen@gmail.com>
|
||||
*
|
||||
* This file is part of LMMS - https://lmms.io
|
||||
*
|
||||
* 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 (see COPYING); if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
* Boston, MA 02110-1301 USA.
|
||||
*
|
||||
*/
|
||||
|
||||
/* license */
|
||||
#include "AudioSndio.h"
|
||||
|
||||
#ifdef LMMS_HAVE_SNDIO
|
||||
|
||||
@@ -198,5 +221,3 @@ void AudioSndio::setupWidget::saveSettings( void )
|
||||
|
||||
|
||||
#endif /* LMMS_HAVE_SNDIO */
|
||||
|
||||
#endif /* SINGLE_SOURCE_COMPILE */
|
||||
|
||||
@@ -1,6 +1,29 @@
|
||||
#ifndef SINGLE_SOURCE_COMPILE
|
||||
/*
|
||||
* MidiSndio.cpp - base-class that implements sndio midi support
|
||||
*
|
||||
* Copyright (c) 2010-2016 jackmsr@openbsd.net
|
||||
* Copyright (c) 2016-2017 David Carlier <devnexen@gmail.com>
|
||||
*
|
||||
* This file is part of LMMS - https://lmms.io
|
||||
*
|
||||
* 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 (see COPYING); if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
* Boston, MA 02110-1301 USA.
|
||||
*
|
||||
*/
|
||||
|
||||
/* license */
|
||||
#include "MidiSndio.h"
|
||||
|
||||
#ifdef LMMS_HAVE_SNDIO
|
||||
|
||||
@@ -95,5 +118,3 @@ void MidiSndio::run( void )
|
||||
}
|
||||
|
||||
#endif /* LMMS_HAVE_SNDIO */
|
||||
|
||||
#endif /* SINGLE_SOURCE_COMPILE */
|
||||
|
||||
Reference in New Issue
Block a user