diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-12-27 18:44:57 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-12-27 18:44:57 +0100 |
commit | 951610567f623512a88ac20b879e00d442f85abe (patch) | |
tree | a888e2ff982914adf9486a2238f16a6d05a3d397 /gnu/packages/patches | |
parent | bbd28642727b52a2528b4155f6cbd97072b8b291 (diff) |
gnu: gdbm: Update to 1.19.
* gnu/packages/patches/gdbm-gcc-compat.patch: Remove.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/dbm.scm (gdbm)[source]: Remove 'patches'.
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r-- | gnu/packages/patches/gdbm-gcc-compat.patch | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/gnu/packages/patches/gdbm-gcc-compat.patch b/gnu/packages/patches/gdbm-gcc-compat.patch deleted file mode 100644 index c2e187834a..0000000000 --- a/gnu/packages/patches/gdbm-gcc-compat.patch +++ /dev/null @@ -1,16 +0,0 @@ -Fix build failure with GCC 10 due to duplicate definitions. It can be -reproduced on older compilers with -fno-common. - -Fix taken from Gentoo: https://bugs.gentoo.org/705898 - ---- a/src/parseopt.c -+++ b/src/parseopt.c -@@ -255,8 +255,6 @@ print_option_descr (const char *descr, size_t lmargin, size_t rmargin) - } - - char *parseopt_program_name; --char *parseopt_program_doc; --char *parseopt_program_args; - const char *program_bug_address = "<" PACKAGE_BUGREPORT ">"; - void (*parseopt_help_hook) (FILE *stream); - |