mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 02:20:59 +03:00
4b70290163
This partially reverts commit 8005ca4
by moving the strlcat()
and strlcpy() compatibility implementations back to their original
location.
In addition, these two functions were added to the AC_CHECK_FUNCS
macro. When these functions are available from the C library,
HAVE_STRLCAT and HAVE_STRLCPY will be defined and library version
used. Otherwise the compatibility version is built.
Reviewed-by: Sebastian Gottschall <s.gottschall@dd-wrt.com>
Reviewed-by: Alek Pinchuk <apinchuk@datto.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #8157
Closes #8202
16 lines
426 B
Makefile
16 lines
426 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
pkgexecdir = $(datadir)/@PACKAGE@/zfs-tests/bin
|
|
|
|
DEFAULT_INCLUDES += \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/lib/libspl/include
|
|
|
|
pkgexec_PROGRAMS = libzfs_input_check
|
|
|
|
libzfs_input_check_SOURCES = libzfs_input_check.c
|
|
libzfs_input_check_LDADD = \
|
|
$(top_builddir)/lib/libspl/libspl.la \
|
|
$(top_builddir)/lib/libnvpair/libnvpair.la \
|
|
$(top_builddir)/lib/libzfs_core/libzfs_core.la
|