mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
750562833f
These libraries, which are an artifact of the ZoL development process, conflict with packages that are already in distribution: * libspl: SPL Programming Language * libavl: AVL for Linux * libefi: GRUB And these libraries are potential conflicts: * libshare: the Linux Mount Manager * libunicode: Perl and Python Recompose these five ZoL components into the four libraries that are conventionally provided by Solaris and FreeBSD systems: + libnvpair + libuutil + libzpool + libzfs This change resolves the name conflict, makes ZoL more compatible with existing software that uses autotools to detect ZFS, and allows pkg-zfs to better reflect the official Debian kFreeBSD packaging. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes: #430
29 lines
838 B
Makefile
29 lines
838 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
AM_CFLAGS += $(DEBUG_STACKFLAGS) $(FRAME_LARGER_THAN)
|
|
|
|
DEFAULT_INCLUDES += \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/lib/libspl/include
|
|
|
|
lib_LTLIBRARIES = libuutil.la
|
|
|
|
libuutil_la_SOURCES = \
|
|
$(top_srcdir)/lib/libuutil/uu_alloc.c \
|
|
$(top_srcdir)/lib/libuutil/uu_avl.c \
|
|
$(top_srcdir)/lib/libuutil/uu_dprintf.c \
|
|
$(top_srcdir)/lib/libuutil/uu_ident.c \
|
|
$(top_srcdir)/lib/libuutil/uu_list.c \
|
|
$(top_srcdir)/lib/libuutil/uu_misc.c \
|
|
$(top_srcdir)/lib/libuutil/uu_open.c \
|
|
$(top_srcdir)/lib/libuutil/uu_pname.c \
|
|
$(top_srcdir)/lib/libuutil/uu_string.c \
|
|
$(top_srcdir)/lib/libuutil/uu_strtoint.c
|
|
|
|
libuutil_la_LIBADD = \
|
|
$(top_builddir)/lib/libavl/libavl.la \
|
|
$(top_builddir)/lib/libspl/libspl.la \
|
|
$(top_builddir)/lib/libefi/libefi.la
|
|
|
|
libuutil_la_LDFLAGS = -pthread -version-info 1:1:0
|