mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 06:51:54 +00:00
Undeprecate OSS as it's needed on BSD
This commit is contained in:
parent
3e0321f49c
commit
4a36f0b085
2 changed files with 1 additions and 34 deletions
|
@ -16,7 +16,7 @@ and a description.
|
|||
|
||||
- jack: JACK Audio Connection Kit (Linux, Mac OS X, Windows)
|
||||
- alsa: Advanced Linux Sound Architecture (Linux)
|
||||
- oss: Open Sound System (Linux, Unix)
|
||||
- oss: Open Sound System (primarily needed on BSD, rarely also Linux and Unix in general)
|
||||
- pulseaudio: PulseAudio (Linux, Mac OS X, Windows)
|
||||
- coreaudio: Apple CoreAudio (Mac OS X)
|
||||
- dsound: Microsoft DirectSound (Windows)
|
||||
|
|
|
@ -123,17 +123,6 @@ new_fluid_oss_audio_driver(fluid_settings_t *settings, fluid_synth_t *synth)
|
|||
char *devname = NULL;
|
||||
int format;
|
||||
|
||||
FLUID_LOG(FLUID_WARN,
|
||||
"\n\n"
|
||||
"================= OSS audio driver has been deprecated! ==================\n"
|
||||
"You're using the OSS driver. This driver is old, unmaintained and believed\n"
|
||||
"to be unused. If you still need it, pls. let us know by posting to our\n"
|
||||
"mailing list at fluid-dev@nongnu.org - otherwise this driver might be removed\n"
|
||||
"in a future release of FluidSynth!\n"
|
||||
"================= OSS audio driver has been deprecated! ==================\n"
|
||||
"\n"
|
||||
);
|
||||
|
||||
dev = FLUID_NEW(fluid_oss_audio_driver_t);
|
||||
|
||||
if(dev == NULL)
|
||||
|
@ -307,17 +296,6 @@ new_fluid_oss_audio_driver2(fluid_settings_t *settings, fluid_audio_func_t func,
|
|||
int realtime_prio = 0;
|
||||
int format;
|
||||
|
||||
FLUID_LOG(FLUID_WARN,
|
||||
"\n\n"
|
||||
"================= OSS audio driver has been deprecated! ==================\n"
|
||||
"You're using the OSS driver. This driver is old, unmaintained and believed\n"
|
||||
"to be unused. If you still need it, pls. let us know by posting to our\n"
|
||||
"mailing list at fluid-dev@nongnu.org - otherwise this driver might be removed\n"
|
||||
"in a future release of FluidSynth!\n"
|
||||
"================= OSS audio driver has been deprecated! ==================\n"
|
||||
"\n"
|
||||
);
|
||||
|
||||
dev = FLUID_NEW(fluid_oss_audio_driver_t);
|
||||
|
||||
if(dev == NULL)
|
||||
|
@ -630,17 +608,6 @@ new_fluid_oss_midi_driver(fluid_settings_t *settings,
|
|||
int realtime_prio = 0;
|
||||
char *device = NULL;
|
||||
|
||||
FLUID_LOG(FLUID_WARN,
|
||||
"\n\n"
|
||||
"================= OSS MIDI driver has been deprecated! ==================\n"
|
||||
"You're using the OSS driver. This driver is old, unmaintained and believed\n"
|
||||
"to be unused. If you still need it, pls. let us know by posting to our\n"
|
||||
"mailing list at fluid-dev@nongnu.org - otherwise this driver might be removed\n"
|
||||
"in a future release of FluidSynth!\n"
|
||||
"================= OSS MIDI driver has been deprecated! ==================\n"
|
||||
"\n"
|
||||
);
|
||||
|
||||
/* not much use doing anything */
|
||||
if(handler == NULL)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue