📄 libtalloc.m4
字号:
dnl find the talloc sources. This is meant to work both for dnl talloc standalone builds, and builds of packages using talloctallocdir=""tallocpaths="$srcdir $srcdir/lib/talloc $srcdir/talloc $srcdir/../talloc"for d in $tallocpaths; do if test -f "$d/talloc.c"; then tallocdir="$d" AC_SUBST(tallocdir) break; fidoneif test x"$tallocdir" = "x"; then AC_MSG_ERROR([cannot find talloc source in $tallocpaths])fiTALLOCOBJ="talloc.o"AC_SUBST(TALLOCOBJ)AC_CHECK_SIZEOF(size_t,cross)AC_CHECK_SIZEOF(void *,cross)if test $ac_cv_sizeof_size_t -lt $ac_cv_sizeof_void_p; then AC_WARN([size_t cannot represent the amount of used memory of a process]) AC_WARN([please report this to <samba-technical@samba.org>]) AC_WARN([sizeof(size_t) = $ac_cv_sizeof_size_t]) AC_WARN([sizeof(void *) = $ac_cv_sizeof_void_p]) AC_ERROR([sizeof(size_t) < sizeof(void *)])fi
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -