aboutsummaryrefslogtreecommitdiffstats
path: root/config/user-libuuid.m4
diff options
context:
space:
mode:
authorArvind Sankar <[email protected]>2020-06-30 13:10:41 -0400
committerBrian Behlendorf <[email protected]>2020-07-10 14:26:00 -0700
commit4d61ade1a317606dc899e38b516410a0c2fdae0e (patch)
treed6c2003638fe28b2fe341515aaded236d6c1320f /config/user-libuuid.m4
parentb6437ea41c7611481925d72d294677434639b847 (diff)
Clean up lib dependencies
libzutil is currently statically linked into libzfs, libzfs_core and libzpool. Avoid the unnecessary duplication by removing it from libzfs and libzpool, and adding libzfs_core to libzpool. Remove a few unnecessary dependencies: - libuutil from libzfs_core - libtirpc from libspl - keep only libcrypto in libzfs, as we don't use any functions from libssl - librt is only used for clock_gettime, however on modern systems that's in libc rather than librt. Add a configure check to see if we actually need librt - libdl from raidz_test Add a few missing dependencies: - zlib to libefi and libzfs - libuuid to zpool, and libuuid and libudev to zed - libnvpair uses assertions, so add assert.c to provide aok and libspl_assertf Sort the LDADD for programs so that libraries that satisfy dependencies come at the end rather than the beginning of the linker command line. Revamp the configure tests for libaries to use FIND_SYSTEM_LIBRARY instead. This can take advantage of pkg-config, and it also avoids polluting LIBS. List all the required dependencies in the pkgconfig files, and move the one for libzfs_core into the latter's directory. Install pkgconfig files in $(libdir)/pkgconfig on linux and $(prefix)/libdata/pkgconfig on FreeBSD, instead of /usr/share/pkgconfig, as the more correct location for library .pc files. Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Arvind Sankar <[email protected]> Closes #10538
Diffstat (limited to 'config/user-libuuid.m4')
-rw-r--r--config/user-libuuid.m416
1 files changed, 3 insertions, 13 deletions
diff --git a/config/user-libuuid.m4 b/config/user-libuuid.m4
index f0da671a3..c4012f30a 100644
--- a/config/user-libuuid.m4
+++ b/config/user-libuuid.m4
@@ -2,17 +2,7 @@ dnl #
dnl # Check for libuuid
dnl #
AC_DEFUN([ZFS_AC_CONFIG_USER_LIBUUID], [
- LIBUUID=
-
- AC_CHECK_HEADER([uuid/uuid.h], [], [AC_MSG_FAILURE([
- *** uuid/uuid.h missing, libuuid-devel package required])])
-
- AC_SEARCH_LIBS([uuid_generate], [uuid], [], [AC_MSG_FAILURE([
- *** uuid_generate() missing, libuuid-devel package required])])
-
- AC_SEARCH_LIBS([uuid_is_null], [uuid], [], [AC_MSG_FAILURE([
- *** uuid_is_null() missing, libuuid-devel package required])])
-
- AC_SUBST([LIBUUID], ["-luuid"])
- AC_DEFINE([HAVE_LIBUUID], 1, [Define if you have libuuid])
+ FIND_SYSTEM_LIBRARY(LIBUUID, [uuid], [uuid/uuid.h], [], [uuid], [uuid_generate, uuid_is_null], [], [
+ AC_MSG_FAILURE([*** libuuid-devel package required])
+ ])
])