mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 13:10:33 +02:00
build: Do not build (guix build syscalls) if 'mount' is missing from libc.
This disables compilation of this module on GNU/Hurd. Reported by Manolis Ragkousis <manolis837@gmail.com>. * m4/guix.m4 (GUIX_CHECK_LIBC_MOUNT): New variable. * configure.ac: Use it. Define 'BUILD_SYSCALLS_MODULE' conditional. * Makefile.am (MODULES, EXTRA_DIST): Make 'guix/build/syscalls.scm' conditional on BUILD_SYSCALLS_MODULE.
This commit is contained in:
13
m4/guix.m4
13
m4/guix.m4
@@ -257,3 +257,16 @@ AC_DEFUN([GUIX_ASSERT_CXX11], [
|
||||
AC_MSG_ERROR([C++ compiler '$CXX' does not support the C++11 standard])
|
||||
fi
|
||||
])
|
||||
|
||||
dnl GUIX_CHECK_LIBC_MOUNT
|
||||
dnl
|
||||
dnl Check whether libc provides 'mount'. On GNU/Hurd it doesn't (yet).
|
||||
AC_DEFUN([GUIX_CHECK_LIBC_MOUNT], [
|
||||
AC_CACHE_CHECK([whether libc provides 'mount'], [guix_cv_libc_has_mount],
|
||||
[GUILE_CHECK([retval], [(dynamic-func \"mount\" (dynamic-link))])
|
||||
if test "$retval" = 0; then
|
||||
guix_cv_libc_has_mount="yes"
|
||||
else
|
||||
guix_cv_libc_has_mount="no"
|
||||
fi])
|
||||
])
|
||||
|
||||
Reference in New Issue
Block a user