summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorManolis Ragkousis <manolis837@gmail.com>2016-06-17 22:44:37 +0300
committerManolis Ragkousis <manolis837@gmail.com>2016-06-23 17:25:37 +0300
commit875715cabfeb7816cea16269cfbdbad08442a73e (patch)
tree6cb213243e70062b4215006fb2e17663fae178b0 /m4
parenta12f6f498a7d1087fdf901e9e9604baf702c6c1e (diff)
downloadpatches-875715cabfeb7816cea16269cfbdbad08442a73e.tar
patches-875715cabfeb7816cea16269cfbdbad08442a73e.tar.gz
build: Remove unneeded conditionals for (guix build syscalls).
* m4/guix.m4: Remove 'GUIX_CHECK_LIBC_MOUNT'. * configure.ac: Remove 'BUILD_SYSCALLS_MODULE'. * Makefile.am (MODULES): Add 'guix/build/syscalls.scm'. (EXTRA_DIST): Remove conditional on BUILD_SYSCALLS_MODULE.
Diffstat (limited to 'm4')
-rw-r--r--m4/guix.m413
1 files changed, 0 insertions, 13 deletions
diff --git a/m4/guix.m4 b/m4/guix.m4
index 2d3dfd282e..654789e1d9 100644
--- a/m4/guix.m4
+++ b/m4/guix.m4
@@ -280,19 +280,6 @@ AC_DEFUN([GUIX_ASSERT_CXX11], [
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])
-])
-
dnl GUIX_LIBGCRYPT_LIBDIR VAR
dnl
dnl Attempt to determine libgcrypt's LIBDIR; store the result in VAR.