Files
ffado/libffado-date_time.patch
Dave Plater 68f990b518 Accepting request 574306 from home:plater
Update to release 2.4.0 and fix build against glibc-2.27
  see boo#1079938.
Removed patches fixed upstream:
  ffado_SConstruct_powerpc_update.patch and sigev.patch.
- Rebased libffado-SConstruct-py3.patch partially fixed upstream.
- Added ffado-nosys.patch for missing import sys in SConstruct.
- Rebased ffado-gcc6.patch, partially fixed upstream.
- Upstream changes:
  *Numerous build system and code improvements to support
   architectures such as MIPS, x32 and various PowerPC flavours.
  *A large number of fixes for newer versions of gcc
  (particularly versions 6 and 7).
  *Initial support for the optional TCO module of the
   RME Fireface-800.
  *Expanded ffado-mixer support for the Phase88 device.
  *Initial work to make ffado-mixer compatible with
   python3/pyqt5.
  *Start work towards compatibility with scons3.
- Update to release 2.4.0 and fix build against glibc-2.27
  see boo#1079938.
- Removed patches fixed upstream:
  ffado_SConstruct_powerpc_update.patch and sigev.patch.
- Rebased libffado-SConstruct-py3.patch partially fixed upstream.
- Added ffado-nosys.patch for missing import sys in SConstruct.
- Rebased ffado-gcc6.patch, partially fixed upstream.
- Upstream changes:
  *Numerous build system and code improvements to support
   architectures such as MIPS, x32 and various PowerPC flavours.
  *A large number of fixes for newer versions of gcc
  (particularly versions 6 and 7).
  *Initial support for the optional TCO module of the
   RME Fireface-800.
  *Expanded ffado-mixer support for the Phase88 device.
  *Initial work to make ffado-mixer compatible with
   python3/pyqt5.
  *Start work towards compatibility with scons3.

OBS-URL: https://build.opensuse.org/request/show/574306
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/ffado?expand=0&rev=68
2018-02-08 15:26:32 +00:00

27 lines
1.1 KiB
Diff

Index: src/ffado.cpp
===================================================================
--- src/ffado.cpp.orig 2012-03-10 16:03:53.000000000 +0200
+++ src/ffado.cpp 2018-02-08 08:45:13.055807986 +0200
@@ -89,7 +89,7 @@ ffado_device_t *ffado_streaming_init (ff
struct _ffado_device *dev = new struct _ffado_device;
- printMessage("%s built %s %s\n", ffado_get_version(), __DATE__, __TIME__);
+ printMessage("%s built %s %s\n", ffado_get_version(), NULL, NULL);
#if DEBUG_USE_MESSAGE_BUFFER
// ok
Index: support/alsa/alsa_plugin.cpp
===================================================================
--- support/alsa/alsa_plugin.cpp.orig 2008-09-23 12:42:04.000000000 +0200
+++ support/alsa/alsa_plugin.cpp 2018-02-08 08:45:13.055807986 +0200
@@ -589,7 +589,7 @@ static int snd_pcm_ffado_open(snd_pcm_t
SND_PCM_PLUGIN_DEFINE_FUNC(ffado)
{
printMessage("FireWire plugin for ALSA\n version %s compiled %s %s\n using %s\n",
- FFADO_PLUGIN_VERSION, __DATE__, __TIME__, PACKAGE_STRING);
+ FFADO_PLUGIN_VERSION, NULL, PACKAGE_STRING);
snd_config_iterator_t i, next;
int err;