diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-04-11 23:18:15 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-04-11 23:20:47 +0200 |
commit | f1505f3dc03218cce46c278dbd6fffc2b3809bd7 (patch) | |
tree | b95cba51f83419b8c0809c1e752897fe97ac4f4b /configure.ac | |
parent | 6357d0b257044d639f8321c68d2fd21bc7e1eda5 (diff) | |
download | hurd-f1505f3dc03218cce46c278dbd6fffc2b3809bd7.tar.gz hurd-f1505f3dc03218cce46c278dbd6fffc2b3809bd7.tar.bz2 hurd-f1505f3dc03218cce46c278dbd6fffc2b3809bd7.zip |
Call _hurd_libc_proc_init when available
glibc 2.33 separated out _hurd_libc_proc_init from _hurd_init, so we
have to additionally call it.
* configure.ac (_hurd_libc_proc_init): Detect function.
* libdiskfs/boot-start.c (diskfs_S_fsys_init): Call
_hurd_libc_proc_init.
* libmachdev/trivfs_server.c (trivfs_S_fsys_init): Call
_hurd_libc_proc_init.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 6dbb97e6..182548f2 100644 --- a/configure.ac +++ b/configure.ac @@ -153,6 +153,7 @@ AC_CACHE_CHECK([for libio], # Check if libc contains these functions. AC_CHECK_FUNCS(file_exec_paths exec_exec_paths _hurd_exec_paths) +AC_CHECK_FUNCS(_hurd_libc_proc_init) # Compatibility with glibc < 2.28 AC_CHECK_FUNCS(file_futimens) |