Skip to content
Commits on Source (2)
......@@ -107,6 +107,8 @@ glibc (2.28-11) UNRELEASED; urgency=medium
* debian/patches/hurd-i386/submitted-anon-mmap-shared.diff: Enable, now that
hurd 2017 is behind.
* control: Break old version of hurd package accordingly.
* debian/patches/hurd-i386/local-exec_filename.diff: Fix glibc 2.26
_hurd_exec_paths symbol visibility.
 
-- Samuel Thibault <sthibault@debian.org> Fri, 30 Aug 2019 01:30:00 +0200
 
......
......@@ -83,13 +83,10 @@ Keep compatibility with experimental implementation
err = __file_exec (file, task, flags,
args, argslen, env, envlen,
dtable, MACH_MSG_TYPE_COPY_SEND, dtablesize,
@@ -436,3 +459,12 @@
@@ -436,3 +459,9 @@
return err;
}
libc_hidden_def (_hurd_exec_paths)
+#if SHLIB_COMPAT (libc, GLIBC_2_26, GLIBC_2_27)
+compat_symbol (libc, _hurd_exec_paths, _hurd_exec_paths, GLIBC_2_26);
+#endif
+extern error_t _hurd_exec_file_name (task_t task,
+ file_t file,
+ const char *filename,
......