diff -Nru cdemu-daemon-3.2.5/CMakeLists.txt cdemu-daemon-3.2.6/CMakeLists.txt --- cdemu-daemon-3.2.5/CMakeLists.txt 2021-04-17 11:19:54.000000000 +0000 +++ cdemu-daemon-3.2.6/CMakeLists.txt 2021-12-18 11:18:52.000000000 +0000 @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.7) -project(cdemu-daemon VERSION 3.2.5 LANGUAGES C) +project(cdemu-daemon VERSION 3.2.6 LANGUAGES C) # Additional CMake modules list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake) diff -Nru cdemu-daemon-3.2.5/debian/changelog cdemu-daemon-3.2.6/debian/changelog --- cdemu-daemon-3.2.5/debian/changelog 2021-05-09 10:12:28.000000000 +0000 +++ cdemu-daemon-3.2.6/debian/changelog 2021-12-18 11:00:00.000000000 +0000 @@ -1,3 +1,7 @@ +cdemu-daemon (3.2.6-1ubuntu1~hirsute1~ppa1) hirsute; urgency=low + * Updated to 3.2.6. + -- Rok Mandeljc Sat, 18 Dec 2021 12:00:00 +0100 + cdemu-daemon (3.2.5-1ubuntu1~hirsute1~ppa3) hirsute; urgency=low * Remove dh-systemd build requirement. -- Rok Mandeljc Sun, 9 May 2021 12:00:00 +0100 diff -Nru cdemu-daemon-3.2.5/README cdemu-daemon-3.2.6/README --- cdemu-daemon-3.2.5/README 2021-04-17 11:19:54.000000000 +0000 +++ cdemu-daemon-3.2.6/README 2021-12-18 11:18:52.000000000 +0000 @@ -1,5 +1,5 @@ CDEmu Daemon -3.2.5 +3.2.6 ~~~~~ diff -Nru cdemu-daemon-3.2.5/src/device-recording.c cdemu-daemon-3.2.6/src/device-recording.c --- cdemu-daemon-3.2.5/src/device-recording.c 2021-04-17 11:19:54.000000000 +0000 +++ cdemu-daemon-3.2.6/src/device-recording.c 2021-12-18 11:18:52.000000000 +0000 @@ -199,7 +199,11 @@ /* This assumes that CD-TEXT packs are ordered, which is hopefully reasonable */ if (ptr[2] >= self->priv->num_leadin_cdtext_packs) { +#if GLIB_CHECK_VERSION(2, 68, 0) + self->priv->leadin_cdtext_packs = g_slist_prepend(self->priv->leadin_cdtext_packs, g_memdup2(ptr, 18)); +#else self->priv->leadin_cdtext_packs = g_slist_prepend(self->priv->leadin_cdtext_packs, g_memdup(ptr, 18)); +#endif self->priv->num_leadin_cdtext_packs++; }