mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-03-10 20:36:21 +03:00
Sponsored-by: https://despairlabs.com/sponsor/ Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Tony Hutter <hutter2@llnl.gov> Signed-off-by: Rob Norris <robn@despairlabs.com> Closes #18077
16 lines
510 B
Plaintext
16 lines
510 B
Plaintext
dnl # SPDX-License-Identifier: CDDL-1.0
|
|
dnl
|
|
dnl backtrace(), for userspace assertions. glibc has this directly in libc.
|
|
dnl FreeBSD and (sometimes) musl have it in a separate -lexecinfo. It's assumed
|
|
dnl that this will also get the companion function backtrace_symbols().
|
|
dnl
|
|
AC_DEFUN([ZFS_AC_CONFIG_USER_BACKTRACE], [
|
|
AX_SAVE_FLAGS
|
|
LIBS=""
|
|
AC_SEARCH_LIBS([backtrace], [execinfo], [
|
|
AC_DEFINE(HAVE_BACKTRACE, 1, [backtrace() is available])
|
|
AC_SUBST([BACKTRACE_LIBS], ["$LIBS"])
|
|
])
|
|
AX_RESTORE_FLAGS
|
|
])
|