Package: libmems / 1.6.0+4725-11
Metadata
Package | Version | Patches format |
---|---|---|
libmems | 1.6.0+4725-11 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
01_fix_ctors.patch | (download) |
libMems/Aligner.cpp |
2 1 + 1 - 0 ! |
fix ctors of {matchleftend,labeledmem}comparator to enable sort/3 with g++-4.9 |
02_fix_a_Wformat.patch | (download) |
libMems/dmSML/dmsort.c |
2 1 + 1 - 0 ! |
fix a -wformat (boy, that's a bloody serious error) |
pkg config directive.patch | (download) |
configure.ac |
2 1 + 1 - 0 ! |
fix lintian error E: libmems-1.6-dev: pkg-config-bad-directive usr/lib/x86_64-linux-gnu/pkgconfig/libMems-1.6.pc -Wno-deprecated by not appending "-Wno-deprecated" |
03_update_boost_m4_to_git_d9ff75.patch | (download) |
m4/boost.m4 |
107 103 + 4 - 0 ! |
updates the boost.m4 file to correct problems with gcc-5 This patch updates the m4/boost.m4 file to the git version d9ff75 of boost.m4 upstream . |
04_add_dependend_libs_to_link_command.patch | (download) |
libMems/Makefile.am |
2 1 + 1 - 0 ! |
add some dependencies to the linker command |
05_gcc 6.patch | (download) |
libMems/ProgressiveAligner.cpp |
2 1 + 1 - 0 ! |
correct compilation with g++-6 |
boost1.62.patch | (download) |
libMems/AbstractMatch.h |
1 1 + 0 - 0 ! |
fix ftbfs with boost 1.62 Add missing include so that BOOST_WORKAROUND is defined. |
drop version number.patch | (download) |
Makefile.am |
2 1 + 1 - 0 ! |
drop version number from library file name |
fix system.patch | (download) |
libMems/dmSML/util.c |
1 1 + 0 - 0 ! |
fix build failure on arm. |
gcc 14.patch | (download) |
libMems/dmSML/aPOSIXaio.c |
4 2 + 2 - 0 ! |
hint the compiler about a constant type. This fixes the following build failure with gcc 14: . dmSML/aPOSIXaio.c:115:28: error: passing argument 1 of aio_suspend from incompatible pointer type [-Wincompatible-pointer-types] 115 | rval = aio_suspend(request_array, 1, &zero_wait); | ^~~~~~~~~~~~~ | | | struct aiocb ** In file included from /usr/include/features.h:502, from /usr/include/x86_64-linux-gnu/sys/types.h:25, from ../libMems/dmSML/asyncio.h:24, from ../libMems/dmSML/aPOSIXaio.h:8, from dmSML/aPOSIXaio.c:5: /usr/include/aio.h:202:12: note: expected const struct aiocb * const* but argument is of type struct aiocb ** 202 | extern int __REDIRECT_NTH (aio_suspend, | ^~~~~~~~~~~~~~ |