mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +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
41 lines
648 B
Makefile
41 lines
648 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
VPATH = \
|
|
$(top_srcdir)/lib/libspl \
|
|
$(top_srcdir)/lib/libspl/$(TARGET_ASM_DIR)
|
|
|
|
SUBDIRS = include $(TARGET_ASM_DIR)
|
|
DIST_SUBDIRS = include asm-generic asm-i386 asm-x86_64
|
|
|
|
DEFAULT_INCLUDES += \
|
|
-I$(top_srcdir)/lib/libspl/include
|
|
|
|
AM_CCASFLAGS = \
|
|
$(CFLAGS)
|
|
|
|
noinst_LTLIBRARIES = libspl.la
|
|
|
|
USER_C = \
|
|
getexecname.c \
|
|
gethostid.c \
|
|
getmntany.c \
|
|
list.c \
|
|
mkdirp.c \
|
|
page.c \
|
|
strlcat.c \
|
|
strlcpy.c \
|
|
timestamp.c \
|
|
zone.c \
|
|
include/sys/list.h \
|
|
include/sys/list_impl.h
|
|
|
|
USER_ASM = atomic.S
|
|
|
|
nodist_libspl_la_SOURCES = \
|
|
$(USER_C) \
|
|
$(USER_ASM)
|
|
|
|
libspl_la_LIBADD = -lrt
|
|
|
|
EXTRA_DIST = $(USER_C)
|