new_zfs_build_builded_on_bionic
This commit is contained in:
parent
009632bef4
commit
22fc755f66
1910 changed files with 18643 additions and 35629 deletions
BIN
pkgs/libnvpair1_0.8.4-1_amd64.deb
Normal file
BIN
pkgs/libnvpair1_0.8.4-1_amd64.deb
Normal file
Binary file not shown.
BIN
pkgs/libuutil1_0.8.4-1_amd64.deb
Normal file
BIN
pkgs/libuutil1_0.8.4-1_amd64.deb
Normal file
Binary file not shown.
BIN
pkgs/libzfs2-devel_0.8.4-1_amd64.deb
Normal file
BIN
pkgs/libzfs2-devel_0.8.4-1_amd64.deb
Normal file
Binary file not shown.
BIN
pkgs/libzfs2_0.8.4-1_amd64.deb
Normal file
BIN
pkgs/libzfs2_0.8.4-1_amd64.deb
Normal file
Binary file not shown.
BIN
pkgs/libzpool2_0.8.4-1_amd64.deb
Normal file
BIN
pkgs/libzpool2_0.8.4-1_amd64.deb
Normal file
Binary file not shown.
BIN
pkgs/python3-pyzfs_0.8.4-1_amd64.deb
Normal file
BIN
pkgs/python3-pyzfs_0.8.4-1_amd64.deb
Normal file
Binary file not shown.
14
pkgs/replace_packages_ubuntu
Normal file
14
pkgs/replace_packages_ubuntu
Normal file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
apt update
|
||||
apt-get install python3 python3-dev python3-setuptools python3-cffi dkms python3-distutils gdebi -y
|
||||
apt remove zfs libuutil1 libnvpair1 -y
|
||||
apt remove "zfs*" -y
|
||||
apt remove "zpool*" -y
|
||||
apt remove "*zfs*" -y
|
||||
apt remove "*zpool*" -y
|
||||
apt autoremove -y
|
||||
for file in *$1*.deb; do sudo gdebi -q --non-interactive $file; done
|
||||
cp zfSnap /usr/sbin/zfSnap
|
||||
chmod 755 /usr/sbin/zfSnap
|
||||
echo "$(grep -ve "^zfs$" /etc/modules-load.d/modules.conf)" > /etc/modules-load.d/modules.conf
|
||||
echo zfs >> /etc/modules-load.d/modules.conf
|
435
pkgs/zfSnap
Executable file
435
pkgs/zfSnap
Executable file
|
@ -0,0 +1,435 @@
|
|||
#!/bin/sh
|
||||
|
||||
# "THE BEER-WARE LICENSE":
|
||||
# <graudeejs@yandex.com> wrote this file. As long as you retain this notice you
|
||||
# can do whatever you want with this stuff. If we meet some day, and you think
|
||||
# this stuff is worth it, you can buy me a beer in return. Aldis Berjoza
|
||||
|
||||
# wiki: https://github.com/graudeejs/zfSnap/wiki
|
||||
# repository: https://github.com/graudeejs/zfSnap
|
||||
# Bug tracking: https://github.com/graudeejs/zfSnap/issues
|
||||
|
||||
readonly VERSION=1.11.1
|
||||
|
||||
ESED='sed -E'
|
||||
zfs_cmd='/sbin/zfs'
|
||||
zpool_cmd='/sbin/zpool'
|
||||
|
||||
|
||||
note() {
|
||||
echo "NOTE: $*" > /dev/stderr
|
||||
}
|
||||
|
||||
err() {
|
||||
echo "ERROR: $*" > /dev/stderr
|
||||
}
|
||||
|
||||
fatal() {
|
||||
echo "FATAL: $*" > /dev/stderr
|
||||
exit 1
|
||||
}
|
||||
|
||||
warn() {
|
||||
echo "WARNING: $*" > /dev/stderr
|
||||
}
|
||||
|
||||
|
||||
OS=`uname`
|
||||
case $OS in
|
||||
'FreeBSD')
|
||||
;;
|
||||
'SunOS')
|
||||
ESED='sed -r'
|
||||
if [ -d "/usr/gnu/bin" ]; then
|
||||
export PATH="/usr/gnu/bin:$PATH"
|
||||
else
|
||||
fatal "GNU bin direcotry not found"
|
||||
fi
|
||||
;;
|
||||
'Linux'|'GNU/kFreeBSD')
|
||||
ESED='sed -r'
|
||||
;;
|
||||
'Darwin')
|
||||
zfs_cmd='/usr/sbin/zfs'
|
||||
zpool_cmd='/usr/sbin/zpool'
|
||||
;;
|
||||
*)
|
||||
fatal "Your OS isn't supported"
|
||||
;;
|
||||
esac
|
||||
|
||||
|
||||
is_true() {
|
||||
case "$1" in
|
||||
[Tt][Rr][Uu][Ee])
|
||||
return 0
|
||||
;;
|
||||
[Ff][Aa][Ll][Ss][Ee])
|
||||
return 1
|
||||
;;
|
||||
*)
|
||||
fatal "must be yes or no"
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
is_false() {
|
||||
is_true $1 && return 1 || return 0
|
||||
}
|
||||
|
||||
s2time() {
|
||||
# convert seconds to human readable time
|
||||
xtime=$1
|
||||
|
||||
years=$(($xtime / 31536000))
|
||||
xtime=$(($xtime % 31536000))
|
||||
[ ${years:-0} -gt 0 ] && years="${years}y" || years=""
|
||||
|
||||
months=$(($xtime / 2592000))
|
||||
xtime=$(($xtime % 2592000))
|
||||
[ ${months:-0} -gt 0 ] && months="${months}m" || months=""
|
||||
|
||||
days=$(($xtime / 86400))
|
||||
xtime=$(($xtime % 86400))
|
||||
[ ${days:-0} -gt 0 ] && days="${days}d" || days=""
|
||||
|
||||
hours=$(($xtime / 3600))
|
||||
xtime=$(($xtime % 3600))
|
||||
[ ${hours:-0} -gt 0 ] && hours="${hours}h" || hours=""
|
||||
|
||||
minutes=$(($xtime / 60))
|
||||
[ ${minutes:-0} -gt 0 ] && minutes="${minutes}M" || minutes=""
|
||||
|
||||
seconds=$(($xtime % 60))
|
||||
[ ${seconds:-0} -gt 0 ] && seconds="${seconds}s" || seconds=""
|
||||
|
||||
echo "${years}${months}${days}${hours}${minutes}${seconds}"
|
||||
}
|
||||
|
||||
time2s() {
|
||||
# convert human readable time to seconds
|
||||
echo "$1" | sed -e 's/y/*31536000+/g; s/m/*2592000+/g; s/w/*604800+/g; s/d/*86400+/g; s/h/*3600+/g; s/M/*60+/g; s/s//g; s/\+$//' | bc -l
|
||||
}
|
||||
|
||||
date2timestamp() {
|
||||
date_normal="`echo $1 | $ESED -e 's/\./:/g; s/(20[0-9][0-9]-[01][0-9]-[0-3][0-9])_([0-2][0-9]:[0-5][0-9]:[0-5][0-9])/\1 \2/'`"
|
||||
|
||||
case $OS in
|
||||
'FreeBSD' | 'Darwin' )
|
||||
date -j -f '%Y-%m-%d %H:%M:%S' "$date_normal" '+%s'
|
||||
;;
|
||||
*)
|
||||
date --date "$date_normal" '+%s'
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
help() {
|
||||
cat << EOF
|
||||
${0##*/} v${VERSION} by Aldis Berjoza
|
||||
|
||||
Syntax:
|
||||
${0##*/} [ generic options ] [ options ] zpool/filesystem ...
|
||||
|
||||
GENERIC OPTIONS:
|
||||
-d = Delete old snapshots
|
||||
-e = Return number of failed actions as exit code.
|
||||
-F age = Force delete all snapshots exceeding age
|
||||
-n = Only show actions that would be performed
|
||||
-s = Don't do anything on pools running resilver
|
||||
-S = Don't do anything on pools running scrub
|
||||
-v = Verbose output
|
||||
-z = Force new snapshots to have 00 seconds!
|
||||
-zpool28fix = Workaround for zpool v28 zfs destroy -r bug
|
||||
|
||||
OPTIONS:
|
||||
-a ttl = Set how long snapshot should be kept
|
||||
-D pool/fs = Delete all zfSnap snapshots of specific pool/fs (ignore ttl)
|
||||
-p prefix = Use prefix for snapshots after this switch
|
||||
-P = Don't use prefix for snapshots after this switch
|
||||
-r = Create recursive snapshots for all zfs file systems that
|
||||
fallow this switch
|
||||
-R = Create non-recursive snapshots for all zfs file systems that
|
||||
fallow this switch
|
||||
|
||||
LINKS:
|
||||
wiki: https://github.com/graudeejs/zfSnap/wiki
|
||||
repository: https://github.com/graudeejs/zfSnap
|
||||
Bug tracking: https://github.com/graudeejs/zfSnap/issues
|
||||
|
||||
EOF
|
||||
exit 0
|
||||
}
|
||||
|
||||
rm_zfs_snapshot() {
|
||||
if is_true $zpool28fix && [ "$1" = '-r' ]; then
|
||||
# get rid of '-r' parameter
|
||||
rm_zfs_snapshot $2
|
||||
return
|
||||
fi
|
||||
|
||||
if [ "$1" = '-r' ]; then
|
||||
skip_pool $2 || return 1
|
||||
else
|
||||
skip_pool $1 || return 1
|
||||
fi
|
||||
|
||||
zfs_destroy="$zfs_cmd destroy $*"
|
||||
|
||||
# hardening: make really, really sure we are deleting snapshot
|
||||
if echo $i | grep -q -e '@'; then
|
||||
if is_false $dry_run; then
|
||||
if $zfs_destroy > /dev/stderr; then
|
||||
is_true $verbose && echo "$zfs_destroy ... DONE"
|
||||
else
|
||||
is_true $verbose && echo "$zfs_destroy ... FAIL"
|
||||
is_true $count_failures && failures=$(($failures + 1))
|
||||
fi
|
||||
else
|
||||
echo "$zfs_destroy"
|
||||
fi
|
||||
else
|
||||
echo "FATAL: trying to delete zfs pool or filesystem? WTF?" > /dev/stderr
|
||||
echo " This is bug, we definitely don't want that." > /dev/stderr
|
||||
echo " Please report it to https://github.com/graudeejs/zfSnap/issues" > /dev/stderr
|
||||
echo " Don't panic, nothing was deleted :)" > /dev/stderr
|
||||
is_true $count_failures && [ $failures -gt 0 ] && exit $failures
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
skip_pool() {
|
||||
# more like skip pool???
|
||||
if is_true $scrub_skip; then
|
||||
for i in $scrub_pools; do
|
||||
if [ `echo $1 | sed -e 's#/.*$##; s/@.*//'` = $i ]; then
|
||||
is_true $verbose && note "No action will be performed on '$1'. Scrub is running on pool."
|
||||
return 1
|
||||
fi
|
||||
done
|
||||
fi
|
||||
if is_true $resilver_skip; then
|
||||
for i in $resilver_pools; do
|
||||
if [ `echo $1 | sed -e 's#/.*$##; s/@.*//'` = $i ]; then
|
||||
is_true $verbose && note "No action will be performed on '$1'. Resilver is running on pool."
|
||||
return 1
|
||||
fi
|
||||
done
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
||||
|
||||
[ $# = 0 ] && help
|
||||
[ "$1" = '-h' -o $1 = "--help" ] && help
|
||||
|
||||
ttl='1m' # default snapshot ttl
|
||||
force_delete_snapshots_age=-1 # Delete snapshots older than x seconds. -1 means NO
|
||||
delete_snapshots="false" # Delete old snapshots?
|
||||
verbose="false" # Verbose output?
|
||||
dry_run="false" # Dry run?
|
||||
prefx="" # Default prefix
|
||||
prefxes="" # List of prefixes
|
||||
delete_specific_fs_snapshots="" # List of specific snapshots to delete
|
||||
delete_specific_fs_snapshots_recursively="" # List of specific snapshots to delete recursively
|
||||
zero_seconds="false" # Should new snapshots always have 00 seconds?
|
||||
scrub_pools="" # List of pools that are in precess of scrubing
|
||||
resilver_pools="" # List of pools that are in process of resilvering
|
||||
pools="" # List of pools
|
||||
get_pools="false" # Should I get list of pools?
|
||||
resilver_skip="false" # Should I skip processing pools in process of resilvering.
|
||||
scrub_skip="false" # Should I skip processing pools in process of scrubing.
|
||||
failures=0 # Number of failed actions.
|
||||
count_failures="false" # Should I coundt failed actions?
|
||||
zpool28fix="false" # Workaround for zpool v28 zfs destroy -r bug
|
||||
|
||||
while [ "$1" = '-d' -o "$1" = '-v' -o "$1" = '-n' -o "$1" = '-F' -o "$1" = '-z' -o "$1" = '-s' -o "$1" = '-S' -o "$1" = '-e' -o "$1" = '-zpool28fix' ]; do
|
||||
case "$1" in
|
||||
'-d')
|
||||
delete_snapshots="true"
|
||||
shift
|
||||
;;
|
||||
|
||||
'-v')
|
||||
verbose="true"
|
||||
shift
|
||||
;;
|
||||
|
||||
'-n')
|
||||
dry_run="true"
|
||||
shift
|
||||
;;
|
||||
|
||||
'-F')
|
||||
force_delete_snapshots_age=`time2s $2`
|
||||
shift 2
|
||||
;;
|
||||
|
||||
'-z')
|
||||
zero_seconds="true"
|
||||
shift
|
||||
;;
|
||||
|
||||
'-s')
|
||||
get_pools="true"
|
||||
resilver_skip="true"
|
||||
shift
|
||||
;;
|
||||
|
||||
'-S')
|
||||
get_pools="true"
|
||||
scrub_skip="true"
|
||||
shift
|
||||
;;
|
||||
|
||||
'-e')
|
||||
count_failures="true"
|
||||
shift
|
||||
;;
|
||||
|
||||
'-zpool28fix')
|
||||
zpool28fix="true"
|
||||
shift
|
||||
;;
|
||||
|
||||
esac
|
||||
done
|
||||
|
||||
if is_true $get_pools; then
|
||||
pools=`$zpool_cmd list -H -o name`
|
||||
for i in $pools; do
|
||||
if is_true $resilver_skip; then
|
||||
$zpool_cmd status $i | grep -q -e 'resilver in progress' && resilver_pools="$resilver_pools $i"
|
||||
fi
|
||||
if is_true $scrub_skip; then
|
||||
$zpool_cmd status $i | grep -q -e 'scrub in progress' && scrub_pools="$scrub_pools $i"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
readonly date_pattern='20[0-9][0-9]-[01][0-9]-[0-3][0-9]_[0-2][0-9]\.[0-5][0-9]\.[0-5][0-9]'
|
||||
if is_false $zero_seconds; then
|
||||
readonly tfrmt='%Y-%m-%d_%H.%M.%S'
|
||||
else
|
||||
readonly tfrmt='%Y-%m-%d_%H.%M.00'
|
||||
fi
|
||||
|
||||
readonly htime_pattern='([0-9]+y)?([0-9]+m)?([0-9]+w)?([0-9]+d)?([0-9]+h)?([0-9]+M)?([0-9]+[s]?)?'
|
||||
|
||||
|
||||
is_true $dry_run && zfs_list=`$zfs_cmd list -H -o name`
|
||||
ntime=`date "+$tfrmt"`
|
||||
while [ "$1" ]; do
|
||||
while [ "$1" = '-r' -o "$1" = '-R' -o "$1" = '-a' -o "$1" = '-p' -o "$1" = '-P' -o "$1" = '-D' ]; do
|
||||
case "$1" in
|
||||
'-r')
|
||||
zopt='-r'
|
||||
shift
|
||||
;;
|
||||
'-R')
|
||||
zopt=''
|
||||
shift
|
||||
;;
|
||||
'-a')
|
||||
ttl="$2"
|
||||
echo "$ttl" | grep -q -E -e "^[0-9]+$" && ttl=`s2time $ttl`
|
||||
shift 2
|
||||
;;
|
||||
'-p')
|
||||
prefx="$2"
|
||||
prefxes="$prefxes|$prefx"
|
||||
shift 2
|
||||
;;
|
||||
'-P')
|
||||
prefx=""
|
||||
shift
|
||||
;;
|
||||
'-D')
|
||||
if [ "$zopt" != '-r' ]; then
|
||||
delete_specific_fs_snapshots="$delete_specific_fs_snapshots $2"
|
||||
else
|
||||
delete_specific_fs_snapshots_recursively="$delete_specific_fs_snapshots_recursively $2"
|
||||
fi
|
||||
shift 2
|
||||
;;
|
||||
|
||||
esac
|
||||
done
|
||||
|
||||
# create snapshots
|
||||
if [ $1 ]; then
|
||||
if skip_pool $1; then
|
||||
if [ $1 = `echo $1 | $ESED -e 's/^-//'` ]; then
|
||||
zfs_snapshot="$zfs_cmd snapshot $zopt $1@${prefx}${ntime}--${ttl}${postfx}"
|
||||
if is_false $dry_run; then
|
||||
if $zfs_snapshot > /dev/stderr; then
|
||||
is_true $verbose && echo "$zfs_snapshot ... DONE"
|
||||
else
|
||||
is_true $verbose && echo "$zfs_snapshot ... FAIL"
|
||||
is_true $count_failures && failures=$(($failures + 1))
|
||||
fi
|
||||
else
|
||||
printf "%s\n" $zfs_list | grep -m 1 -q -E -e "^$1$" \
|
||||
&& echo "$zfs_snapshot" \
|
||||
|| err "Looks like zfs filesystem '$1' doesn't exist"
|
||||
fi
|
||||
else
|
||||
warn "'$1' doesn't look like valid argument. Ignoring"
|
||||
fi
|
||||
fi
|
||||
shift
|
||||
fi
|
||||
done
|
||||
|
||||
prefxes=`echo "$prefxes" | sed -e 's/^\|//'`
|
||||
|
||||
# delete snapshots
|
||||
if is_true $delete_snapshots || [ $force_delete_snapshots_age -ne -1 ]; then
|
||||
|
||||
if is_false $zpool28fix; then
|
||||
zfs_snapshots=`$zfs_cmd list -H -o name -t snapshot | grep -E -e "^.*@(${prefxes})?${date_pattern}--${htime_pattern}$" | sed -e 's#/.*@#@#'`
|
||||
else
|
||||
zfs_snapshots=`$zfs_cmd list -H -o name -t snapshot | grep -E -e "^.*@(${prefxes})?${date_pattern}--${htime_pattern}$"`
|
||||
fi
|
||||
|
||||
current_time=`date +%s`
|
||||
for i in `echo $zfs_snapshots | xargs printf "%s\n" | $ESED -e "s/^.*@//" | sort -u`; do
|
||||
create_time=$(date2timestamp `echo "$i" | $ESED -e "s/--${htime_pattern}$//; s/^(${prefxes})?//"`)
|
||||
if is_true $delete_snapshots; then
|
||||
stay_time=$(time2s `echo $i | $ESED -e "s/^(${prefxes})?${date_pattern}--//"`)
|
||||
[ $current_time -gt $(($create_time + $stay_time)) ] \
|
||||
&& rm_snapshot_pattern="$rm_snapshot_pattern $i"
|
||||
fi
|
||||
if [ "$force_delete_snapshots_age" -ne -1 ]; then
|
||||
[ $current_time -gt $(($create_time + $force_delete_snapshots_age)) ] \
|
||||
&& rm_snapshot_pattern="$rm_snapshot_pattern $i"
|
||||
fi
|
||||
done
|
||||
|
||||
if [ "$rm_snapshot_pattern" != '' ]; then
|
||||
rm_snapshots=$(echo $zfs_snapshots | xargs printf '%s\n' | grep -E -e "@`echo $rm_snapshot_pattern | sed -e 's/ /|/g'`" | sort -u)
|
||||
for i in $rm_snapshots; do
|
||||
rm_zfs_snapshot -r $i
|
||||
done
|
||||
fi
|
||||
fi
|
||||
|
||||
# delete all snap
|
||||
if [ "$delete_specific_fs_snapshots" != '' ]; then
|
||||
rm_snapshots=`$zfs_cmd list -H -o name -t snapshot | grep -E -e "^($(echo "$delete_specific_fs_snapshots" | tr ' ' '|'))@(${prefxes})?${date_pattern}--${htime_pattern}$"`
|
||||
for i in $rm_snapshots; do
|
||||
rm_zfs_snapshot $i
|
||||
done
|
||||
fi
|
||||
|
||||
if [ "$delete_specific_fs_snapshots_recursively" != '' ]; then
|
||||
rm_snapshots=`$zfs_cmd list -H -o name -t snapshot | grep -E -e "^($(echo "$delete_specific_fs_snapshots_recursively" | tr ' ' '|'))@(${prefxes})?${date_pattern}--${htime_pattern}$"`
|
||||
for i in $rm_snapshots; do
|
||||
rm_zfs_snapshot -r $i
|
||||
done
|
||||
fi
|
||||
|
||||
|
||||
is_true $count_failures && exit $failures
|
||||
exit 0
|
||||
# vim: set ts=4 sw=4 expandtab:
|
BIN
pkgs/zfs-dkms_0.8.4-1_amd64.deb
Normal file
BIN
pkgs/zfs-dkms_0.8.4-1_amd64.deb
Normal file
Binary file not shown.
BIN
pkgs/zfs-dracut_0.8.4-1_amd64.deb
Normal file
BIN
pkgs/zfs-dracut_0.8.4-1_amd64.deb
Normal file
Binary file not shown.
BIN
pkgs/zfs-initramfs_0.8.4-1_amd64.deb
Normal file
BIN
pkgs/zfs-initramfs_0.8.4-1_amd64.deb
Normal file
Binary file not shown.
BIN
pkgs/zfs-test_0.8.4-1_amd64.deb
Normal file
BIN
pkgs/zfs-test_0.8.4-1_amd64.deb
Normal file
Binary file not shown.
BIN
pkgs/zfs_0.8.4-1_amd64.deb
Normal file
BIN
pkgs/zfs_0.8.4-1_amd64.deb
Normal file
Binary file not shown.
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -330,7 +330,7 @@ am__recursive_targets = \
|
|||
$(RECURSIVE_CLEAN_TARGETS) \
|
||||
$(am__extra_recursive_targets)
|
||||
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
||||
cscope distdir distdir-am dist dist-all distcheck
|
||||
cscope distdir dist dist-all distcheck
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
|
||||
$(LISP)zfs_config.h.in
|
||||
# Read a list of newline-separated strings from the standard input,
|
||||
|
@ -415,7 +415,7 @@ distuninstallcheck_listfiles = find . -type f -print
|
|||
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
|
||||
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
|
||||
distcleancheck_listfiles = find . -type f -print
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.16
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.15
|
||||
ALIEN = alien
|
||||
ALIEN_VERSION = 8.95
|
||||
AMTAR = $${TAR-tar}
|
||||
|
@ -427,7 +427,7 @@ ASAN_LDFLAGS =
|
|||
ASAN_ZFS = _without_asan
|
||||
AUTOCONF = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoconf
|
||||
AUTOHEADER = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoheader
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.16
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.15
|
||||
AWK = gawk
|
||||
CC = gcc
|
||||
CCAS = gcc
|
||||
|
@ -465,8 +465,8 @@ DEPDIR = .deps
|
|||
DLLTOOL = false
|
||||
DPKG = dpkg
|
||||
DPKGBUILD = dpkg-buildpackage
|
||||
DPKGBUILD_VERSION = 1.19.7.
|
||||
DPKG_VERSION = 1.19.7
|
||||
DPKGBUILD_VERSION = 1.19.0.5
|
||||
DPKG_VERSION = 1.19.0.5
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
|
@ -548,20 +548,20 @@ PACKAGE_TARNAME = zfs
|
|||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 0.8.4
|
||||
PATH_SEPARATOR = :
|
||||
PKG_CONFIG = /usr/bin/pkg-config
|
||||
PKG_CONFIG =
|
||||
PKG_CONFIG_LIBDIR =
|
||||
PKG_CONFIG_PATH =
|
||||
POSUB = po
|
||||
PYTHON = /usr/bin/python3.8
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.8
|
||||
PYTHON = /usr/bin/python3.6
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.6m
|
||||
PYTHON_EXEC_PREFIX = ${exec_prefix}
|
||||
PYTHON_EXTRA_LDFLAGS = -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions
|
||||
PYTHON_EXTRA_LIBS = -lcrypt -lpthread -ldl -lutil -lm -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.8
|
||||
PYTHON_EXTRA_LIBS = -lpthread -ldl -lutil -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.6m
|
||||
PYTHON_PLATFORM = linux
|
||||
PYTHON_PREFIX = ${prefix}
|
||||
PYTHON_SITE_PKG = /usr/lib/python3/dist-packages
|
||||
PYTHON_VERSION = 3.8
|
||||
PYTHON_VERSION = 3.6
|
||||
PYZFS_ENABLED = yes
|
||||
QAT_OBJ =
|
||||
QAT_SRC =
|
||||
|
@ -571,13 +571,13 @@ RELEASE = 1
|
|||
RM = rm -f
|
||||
RPM = rpm
|
||||
RPMBUILD = rpmbuild
|
||||
RPMBUILD_VERSION = 4.14.2.1
|
||||
RPMBUILD_VERSION = 4.14.1
|
||||
RPM_DEFINE_COMMON = --define "$(DEBUG_ZFS) 1" --define "$(DEBUG_KMEM_ZFS) 1" --define "$(DEBUG_KMEM_TRACKING_ZFS) 1" --define "$(DEBUGINFO_ZFS) 1" --define "$(ASAN_ZFS) 1"
|
||||
RPM_DEFINE_DKMS =
|
||||
RPM_DEFINE_KMOD = --define "kernels $(LINUX_VERSION)" --define "ksrc $(LINUX)" --define "kobj $(LINUX_OBJ)" --define "_wrong_version_format_terminate_build 0"
|
||||
RPM_DEFINE_UTIL = --define "_initconfdir $(DEFAULT_INITCONF_DIR)" $(DEFINE_INITRAMFS) $(DEFINE_SYSTEMD) $(DEFINE_PYZFS) $(DEFINE_PYTHON_VERSION) $(DEFINE_PYTHON_PKG_VERSION) --define "_lib $(MULTIARCH_LIBDIR)"
|
||||
RPM_SPEC_DIR = rpm/generic
|
||||
RPM_VERSION = 4.14.2.1
|
||||
RPM_VERSION = 4.14.1
|
||||
SED = /bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
|
@ -661,8 +661,8 @@ pkgpythondir = ${pythondir}/zfs
|
|||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
pyexecdir = ${exec_prefix}/lib/python3.8/site-packages
|
||||
pythondir = ${prefix}/lib/python3.8/site-packages
|
||||
pyexecdir = ${exec_prefix}/lib/python3.6/site-packages
|
||||
pythondir = ${prefix}/lib/python3.6/site-packages
|
||||
pythonsitedir = /usr/lib/python3/dist-packages
|
||||
runstatedir = ${localstatedir}/run
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
|
@ -731,8 +731,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
echo ' $(SHELL) ./config.status'; \
|
||||
$(SHELL) ./config.status;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(srcdir)/config/rpm.am $(srcdir)/config/deb.am $(srcdir)/config/tgz.am $(am__empty):
|
||||
|
||||
|
@ -935,10 +935,7 @@ distclean-tags:
|
|||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
$(am__remove_distdir)
|
||||
test -d "$(distdir)" || mkdir "$(distdir)"
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -330,7 +330,7 @@ am__recursive_targets = \
|
|||
$(RECURSIVE_CLEAN_TARGETS) \
|
||||
$(am__extra_recursive_targets)
|
||||
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
||||
cscope distdir distdir-am dist dist-all distcheck
|
||||
cscope distdir dist dist-all distcheck
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
|
||||
$(LISP)zfs_config.h.in
|
||||
# Read a list of newline-separated strings from the standard input,
|
||||
|
@ -731,8 +731,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
echo ' $(SHELL) ./config.status'; \
|
||||
$(SHELL) ./config.status;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(srcdir)/config/rpm.am $(srcdir)/config/deb.am $(srcdir)/config/tgz.am $(am__empty):
|
||||
|
||||
|
@ -935,10 +935,7 @@ distclean-tags:
|
|||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
$(am__remove_distdir)
|
||||
test -d "$(distdir)" || mkdir "$(distdir)"
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
|
|
203
zfs-0.8.4/aclocal.m4
vendored
203
zfs-0.8.4/aclocal.m4
vendored
|
@ -1,6 +1,6 @@
|
|||
# generated automatically by aclocal 1.16.1 -*- Autoconf -*-
|
||||
# generated automatically by aclocal 1.15.1 -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 1996-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1996-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -20,7 +20,7 @@ You have another version of autoconf. It may work, but is not guaranteed to.
|
|||
If you have problems, you may need to regenerate the build system entirely.
|
||||
To do so, use the procedure documented by the package, typically 'autoreconf'.])])
|
||||
|
||||
# Copyright (C) 2002-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2002-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -32,10 +32,10 @@ To do so, use the procedure documented by the package, typically 'autoreconf'.])
|
|||
# generated from the m4 files accompanying Automake X.Y.
|
||||
# (This private macro should not be called outside this file.)
|
||||
AC_DEFUN([AM_AUTOMAKE_VERSION],
|
||||
[am__api_version='1.16'
|
||||
[am__api_version='1.15'
|
||||
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
|
||||
dnl require some minimum version. Point them to the right macro.
|
||||
m4_if([$1], [1.16.1], [],
|
||||
m4_if([$1], [1.15.1], [],
|
||||
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
|
||||
])
|
||||
|
||||
|
@ -51,14 +51,14 @@ m4_define([_AM_AUTOCONF_VERSION], [])
|
|||
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
|
||||
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
|
||||
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
|
||||
[AM_AUTOMAKE_VERSION([1.16.1])dnl
|
||||
[AM_AUTOMAKE_VERSION([1.15.1])dnl
|
||||
m4_ifndef([AC_AUTOCONF_VERSION],
|
||||
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
|
||||
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
|
||||
|
||||
# Figure out how to run the assembler. -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 2001-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2001-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -78,7 +78,7 @@ _AM_IF_OPTION([no-dependencies],, [_AM_DEPENDENCIES([CCAS])])dnl
|
|||
|
||||
# AM_AUX_DIR_EXPAND -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 2001-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2001-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -130,7 +130,7 @@ am_aux_dir=`cd "$ac_aux_dir" && pwd`
|
|||
|
||||
# AM_CONDITIONAL -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 1997-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1997-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -161,7 +161,7 @@ AC_CONFIG_COMMANDS_PRE(
|
|||
Usually this means the macro was only invoked conditionally.]])
|
||||
fi])])
|
||||
|
||||
# Copyright (C) 1999-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1999-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -352,12 +352,13 @@ _AM_SUBST_NOTMAKE([am__nodep])dnl
|
|||
|
||||
# Generate code to set up dependency tracking. -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 1999-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1999-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
|
||||
# _AM_OUTPUT_DEPENDENCY_COMMANDS
|
||||
# ------------------------------
|
||||
AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
|
||||
|
@ -365,41 +366,49 @@ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
|
|||
# Older Autoconf quotes --file arguments for eval, but not when files
|
||||
# are listed without --file. Let's play safe and only enable the eval
|
||||
# if we detect the quoting.
|
||||
# TODO: see whether this extra hack can be removed once we start
|
||||
# requiring Autoconf 2.70 or later.
|
||||
AS_CASE([$CONFIG_FILES],
|
||||
[*\'*], [eval set x "$CONFIG_FILES"],
|
||||
[*], [set x $CONFIG_FILES])
|
||||
case $CONFIG_FILES in
|
||||
*\'*) eval set x "$CONFIG_FILES" ;;
|
||||
*) set x $CONFIG_FILES ;;
|
||||
esac
|
||||
shift
|
||||
# Used to flag and report bootstrapping failures.
|
||||
am_rc=0
|
||||
for am_mf
|
||||
for mf
|
||||
do
|
||||
# Strip MF so we end up with the name of the file.
|
||||
am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'`
|
||||
# Check whether this is an Automake generated Makefile which includes
|
||||
# dependency-tracking related rules and includes.
|
||||
# Grep'ing the whole file directly is not great: AIX grep has a line
|
||||
mf=`echo "$mf" | sed -e 's/:.*$//'`
|
||||
# Check whether this is an Automake generated Makefile or not.
|
||||
# We used to match only the files named 'Makefile.in', but
|
||||
# some people rename them; so instead we look at the file content.
|
||||
# Grep'ing the first line is not enough: some people post-process
|
||||
# each Makefile.in and add a new line on top of each file to say so.
|
||||
# Grep'ing the whole file is not good either: AIX grep has a line
|
||||
# limit of 2048, but all sed's we know have understand at least 4000.
|
||||
sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
|
||||
|| continue
|
||||
am_dirpart=`AS_DIRNAME(["$am_mf"])`
|
||||
am_filepart=`AS_BASENAME(["$am_mf"])`
|
||||
AM_RUN_LOG([cd "$am_dirpart" \
|
||||
&& sed -e '/# am--include-marker/d' "$am_filepart" \
|
||||
| $MAKE -f - am--depfiles]) || am_rc=$?
|
||||
if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
|
||||
dirpart=`AS_DIRNAME("$mf")`
|
||||
else
|
||||
continue
|
||||
fi
|
||||
# Extract the definition of DEPDIR, am__include, and am__quote
|
||||
# from the Makefile without running 'make'.
|
||||
DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
|
||||
test -z "$DEPDIR" && continue
|
||||
am__include=`sed -n 's/^am__include = //p' < "$mf"`
|
||||
test -z "$am__include" && continue
|
||||
am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
|
||||
# Find all dependency output files, they are included files with
|
||||
# $(DEPDIR) in their names. We invoke sed twice because it is the
|
||||
# simplest approach to changing $(DEPDIR) to its actual value in the
|
||||
# expansion.
|
||||
for file in `sed -n "
|
||||
s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
|
||||
sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
|
||||
# Make sure the directory exists.
|
||||
test -f "$dirpart/$file" && continue
|
||||
fdir=`AS_DIRNAME(["$file"])`
|
||||
AS_MKDIR_P([$dirpart/$fdir])
|
||||
# echo "creating $dirpart/$file"
|
||||
echo '# dummy' > "$dirpart/$file"
|
||||
done
|
||||
done
|
||||
if test $am_rc -ne 0; then
|
||||
AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments
|
||||
for automatic dependency tracking. Try re-running configure with the
|
||||
'--disable-dependency-tracking' option to at least be able to build
|
||||
the package (albeit without support for automatic dependency tracking).])
|
||||
fi
|
||||
AS_UNSET([am_dirpart])
|
||||
AS_UNSET([am_filepart])
|
||||
AS_UNSET([am_mf])
|
||||
AS_UNSET([am_rc])
|
||||
rm -f conftest-deps.mk
|
||||
}
|
||||
])# _AM_OUTPUT_DEPENDENCY_COMMANDS
|
||||
|
||||
|
@ -408,17 +417,18 @@ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
|
|||
# -----------------------------
|
||||
# This macro should only be invoked once -- use via AC_REQUIRE.
|
||||
#
|
||||
# This code is only required when automatic dependency tracking is enabled.
|
||||
# This creates each '.Po' and '.Plo' makefile fragment that we'll need in
|
||||
# order to bootstrap the dependency handling code.
|
||||
# This code is only required when automatic dependency tracking
|
||||
# is enabled. FIXME. This creates each '.P' file that we will
|
||||
# need in order to bootstrap the dependency handling code.
|
||||
AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
|
||||
[AC_CONFIG_COMMANDS([depfiles],
|
||||
[test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
|
||||
[AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])])
|
||||
[AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
|
||||
])
|
||||
|
||||
# Do all the work for Automake. -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 1996-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1996-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -505,8 +515,8 @@ AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
|
|||
AC_REQUIRE([AC_PROG_MKDIR_P])dnl
|
||||
# For better backward compatibility. To be removed once Automake 1.9.x
|
||||
# dies out for good. For more background, see:
|
||||
# <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
|
||||
# <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
|
||||
# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
|
||||
# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
|
||||
AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
|
||||
# We need awk for the "check" target (and possibly the TAP driver). The
|
||||
# system "awk" is bad on some platforms.
|
||||
|
@ -573,7 +583,7 @@ END
|
|||
Aborting the configuration process, to ensure you take notice of the issue.
|
||||
|
||||
You can download and install GNU coreutils to get an 'rm' implementation
|
||||
that behaves properly: <https://www.gnu.org/software/coreutils/>.
|
||||
that behaves properly: <http://www.gnu.org/software/coreutils/>.
|
||||
|
||||
If you want to complete the configuration process using your problematic
|
||||
'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
|
||||
|
@ -615,7 +625,7 @@ for _am_header in $config_headers :; do
|
|||
done
|
||||
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
|
||||
|
||||
# Copyright (C) 2001-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2001-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -636,7 +646,7 @@ if test x"${install_sh+set}" != xset; then
|
|||
fi
|
||||
AC_SUBST([install_sh])])
|
||||
|
||||
# Copyright (C) 2003-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2003-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -658,7 +668,7 @@ AC_SUBST([am__leading_dot])])
|
|||
# Add --enable-maintainer-mode option to configure. -*- Autoconf -*-
|
||||
# From Jim Meyering
|
||||
|
||||
# Copyright (C) 1996-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1996-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -693,7 +703,7 @@ AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
|
|||
|
||||
# Check to see how 'make' treats includes. -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 2001-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2001-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -701,42 +711,49 @@ AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
|
|||
|
||||
# AM_MAKE_INCLUDE()
|
||||
# -----------------
|
||||
# Check whether make has an 'include' directive that can support all
|
||||
# the idioms we need for our automatic dependency tracking code.
|
||||
# Check to see how make treats includes.
|
||||
AC_DEFUN([AM_MAKE_INCLUDE],
|
||||
[AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive])
|
||||
cat > confinc.mk << 'END'
|
||||
[am_make=${MAKE-make}
|
||||
cat > confinc << 'END'
|
||||
am__doit:
|
||||
@echo this is the am__doit target >confinc.out
|
||||
@echo this is the am__doit target
|
||||
.PHONY: am__doit
|
||||
END
|
||||
# If we don't find an include directive, just comment out the code.
|
||||
AC_MSG_CHECKING([for style of include used by $am_make])
|
||||
am__include="#"
|
||||
am__quote=
|
||||
# BSD make does it like this.
|
||||
echo '.include "confinc.mk" # ignored' > confmf.BSD
|
||||
# Other make implementations (GNU, Solaris 10, AIX) do it like this.
|
||||
echo 'include confinc.mk # ignored' > confmf.GNU
|
||||
_am_result=no
|
||||
for s in GNU BSD; do
|
||||
AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out])
|
||||
AS_CASE([$?:`cat confinc.out 2>/dev/null`],
|
||||
['0:this is the am__doit target'],
|
||||
[AS_CASE([$s],
|
||||
[BSD], [am__include='.include' am__quote='"'],
|
||||
[am__include='include' am__quote=''])])
|
||||
if test "$am__include" != "#"; then
|
||||
_am_result="yes ($s style)"
|
||||
break
|
||||
fi
|
||||
done
|
||||
rm -f confinc.* confmf.*
|
||||
AC_MSG_RESULT([${_am_result}])
|
||||
AC_SUBST([am__include])])
|
||||
AC_SUBST([am__quote])])
|
||||
_am_result=none
|
||||
# First try GNU make style include.
|
||||
echo "include confinc" > confmf
|
||||
# Ignore all kinds of additional output from 'make'.
|
||||
case `$am_make -s -f confmf 2> /dev/null` in #(
|
||||
*the\ am__doit\ target*)
|
||||
am__include=include
|
||||
am__quote=
|
||||
_am_result=GNU
|
||||
;;
|
||||
esac
|
||||
# Now try BSD make style include.
|
||||
if test "$am__include" = "#"; then
|
||||
echo '.include "confinc"' > confmf
|
||||
case `$am_make -s -f confmf 2> /dev/null` in #(
|
||||
*the\ am__doit\ target*)
|
||||
am__include=.include
|
||||
am__quote="\""
|
||||
_am_result=BSD
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
AC_SUBST([am__include])
|
||||
AC_SUBST([am__quote])
|
||||
AC_MSG_RESULT([$_am_result])
|
||||
rm -f confinc confmf
|
||||
])
|
||||
|
||||
# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 1997-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1997-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -775,7 +792,7 @@ fi
|
|||
|
||||
# Helper functions for option handling. -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 2001-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2001-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -804,7 +821,7 @@ AC_DEFUN([_AM_SET_OPTIONS],
|
|||
AC_DEFUN([_AM_IF_OPTION],
|
||||
[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
|
||||
|
||||
# Copyright (C) 1999-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1999-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -851,7 +868,7 @@ AC_LANG_POP([C])])
|
|||
# For backward compatibility.
|
||||
AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
|
||||
|
||||
# Copyright (C) 1999-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1999-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -884,12 +901,10 @@ AC_DEFUN([AM_PATH_PYTHON],
|
|||
[
|
||||
dnl Find a Python interpreter. Python versions prior to 2.0 are not
|
||||
dnl supported. (2.0 was released on October 16, 2000).
|
||||
dnl FIXME: Remove the need to hard-code Python versions here.
|
||||
m4_define_default([_AM_PYTHON_INTERPRETER_LIST],
|
||||
[python python2 python3 dnl
|
||||
python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 dnl
|
||||
python3.2 python3.1 python3.0 dnl
|
||||
python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 dnl
|
||||
python2.0])
|
||||
[python python2 python3 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python3.0 python2.7 dnl
|
||||
python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0])
|
||||
|
||||
AC_ARG_VAR([PYTHON], [the Python interpreter])
|
||||
|
||||
|
@ -1089,7 +1104,7 @@ for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[[i]]
|
|||
sys.exit(sys.hexversion < minverhex)"
|
||||
AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])])
|
||||
|
||||
# Copyright (C) 2001-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2001-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -1108,7 +1123,7 @@ AC_DEFUN([AM_RUN_LOG],
|
|||
|
||||
# Check to make sure that the build environment is sane. -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 1996-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1996-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -1189,7 +1204,7 @@ AC_CONFIG_COMMANDS_PRE(
|
|||
rm -f conftest.file
|
||||
])
|
||||
|
||||
# Copyright (C) 2009-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2009-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -1249,7 +1264,7 @@ AC_SUBST([AM_BACKSLASH])dnl
|
|||
_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
|
||||
])
|
||||
|
||||
# Copyright (C) 2001-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2001-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -1277,7 +1292,7 @@ fi
|
|||
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
|
||||
AC_SUBST([INSTALL_STRIP_PROGRAM])])
|
||||
|
||||
# Copyright (C) 2006-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2006-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -1296,7 +1311,7 @@ AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
|
|||
|
||||
# Check how to create a tarball. -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 2004-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2004-2017 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
|
1
zfs-0.8.4/bin/arp
Symbolic link
1
zfs-0.8.4/bin/arp
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/sbin/arp
|
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# cmd/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -282,7 +282,7 @@ am__recursive_targets = \
|
|||
$(RECURSIVE_CLEAN_TARGETS) \
|
||||
$(am__extra_recursive_targets)
|
||||
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
||||
distdir distdir-am
|
||||
distdir
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||
# Read a list of newline-separated strings from the standard input,
|
||||
# and print each of them once, without duplicates. Input order is
|
||||
|
@ -332,7 +332,7 @@ am__relativize = \
|
|||
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
|
||||
done; \
|
||||
reldir="$$dir2"
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.16
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.15
|
||||
ALIEN = alien
|
||||
ALIEN_VERSION = 8.95
|
||||
AMTAR = $${TAR-tar}
|
||||
|
@ -344,7 +344,7 @@ ASAN_LDFLAGS =
|
|||
ASAN_ZFS = _without_asan
|
||||
AUTOCONF = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoconf
|
||||
AUTOHEADER = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoheader
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.16
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.15
|
||||
AWK = gawk
|
||||
CC = gcc
|
||||
CCAS = gcc
|
||||
|
@ -382,8 +382,8 @@ DEPDIR = .deps
|
|||
DLLTOOL = false
|
||||
DPKG = dpkg
|
||||
DPKGBUILD = dpkg-buildpackage
|
||||
DPKGBUILD_VERSION = 1.19.7.
|
||||
DPKG_VERSION = 1.19.7
|
||||
DPKGBUILD_VERSION = 1.19.0.5
|
||||
DPKG_VERSION = 1.19.0.5
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
|
@ -465,20 +465,20 @@ PACKAGE_TARNAME = zfs
|
|||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 0.8.4
|
||||
PATH_SEPARATOR = :
|
||||
PKG_CONFIG = /usr/bin/pkg-config
|
||||
PKG_CONFIG =
|
||||
PKG_CONFIG_LIBDIR =
|
||||
PKG_CONFIG_PATH =
|
||||
POSUB = po
|
||||
PYTHON = /usr/bin/python3.8
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.8
|
||||
PYTHON = /usr/bin/python3.6
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.6m
|
||||
PYTHON_EXEC_PREFIX = ${exec_prefix}
|
||||
PYTHON_EXTRA_LDFLAGS = -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions
|
||||
PYTHON_EXTRA_LIBS = -lcrypt -lpthread -ldl -lutil -lm -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.8
|
||||
PYTHON_EXTRA_LIBS = -lpthread -ldl -lutil -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.6m
|
||||
PYTHON_PLATFORM = linux
|
||||
PYTHON_PREFIX = ${prefix}
|
||||
PYTHON_SITE_PKG = /usr/lib/python3/dist-packages
|
||||
PYTHON_VERSION = 3.8
|
||||
PYTHON_VERSION = 3.6
|
||||
PYZFS_ENABLED = yes
|
||||
QAT_OBJ =
|
||||
QAT_SRC =
|
||||
|
@ -488,13 +488,13 @@ RELEASE = 1
|
|||
RM = rm -f
|
||||
RPM = rpm
|
||||
RPMBUILD = rpmbuild
|
||||
RPMBUILD_VERSION = 4.14.2.1
|
||||
RPMBUILD_VERSION = 4.14.1
|
||||
RPM_DEFINE_COMMON = --define "$(DEBUG_ZFS) 1" --define "$(DEBUG_KMEM_ZFS) 1" --define "$(DEBUG_KMEM_TRACKING_ZFS) 1" --define "$(DEBUGINFO_ZFS) 1" --define "$(ASAN_ZFS) 1"
|
||||
RPM_DEFINE_DKMS =
|
||||
RPM_DEFINE_KMOD = --define "kernels $(LINUX_VERSION)" --define "ksrc $(LINUX)" --define "kobj $(LINUX_OBJ)" --define "_wrong_version_format_terminate_build 0"
|
||||
RPM_DEFINE_UTIL = --define "_initconfdir $(DEFAULT_INITCONF_DIR)" $(DEFINE_INITRAMFS) $(DEFINE_SYSTEMD) $(DEFINE_PYZFS) $(DEFINE_PYTHON_VERSION) $(DEFINE_PYTHON_PKG_VERSION) --define "_lib $(MULTIARCH_LIBDIR)"
|
||||
RPM_SPEC_DIR = rpm/generic
|
||||
RPM_VERSION = 4.14.2.1
|
||||
RPM_VERSION = 4.14.1
|
||||
SED = /bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
|
@ -578,8 +578,8 @@ pkgpythondir = ${pythondir}/zfs
|
|||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
pyexecdir = ${exec_prefix}/lib/python3.8/site-packages
|
||||
pythondir = ${prefix}/lib/python3.8/site-packages
|
||||
pyexecdir = ${exec_prefix}/lib/python3.6/site-packages
|
||||
pythondir = ${prefix}/lib/python3.6/site-packages
|
||||
pythonsitedir = /usr/lib/python3/dist-packages
|
||||
runstatedir = ${localstatedir}/run
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
|
@ -623,8 +623,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
|
@ -741,10 +741,7 @@ cscopelist-am: $(am__tagged_files)
|
|||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -282,7 +282,7 @@ am__recursive_targets = \
|
|||
$(RECURSIVE_CLEAN_TARGETS) \
|
||||
$(am__extra_recursive_targets)
|
||||
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
||||
distdir distdir-am
|
||||
distdir
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||
# Read a list of newline-separated strings from the standard input,
|
||||
# and print each of them once, without duplicates. Input order is
|
||||
|
@ -623,8 +623,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
|
@ -741,10 +741,7 @@ cscopelist-am: $(am__tagged_files)
|
|||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# cmd/arc_summary/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -301,7 +301,7 @@ am__can_run_installinfo = \
|
|||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||
am__DIST_COMMON = $(srcdir)/Makefile.in
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.16
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.15
|
||||
ALIEN = alien
|
||||
ALIEN_VERSION = 8.95
|
||||
AMTAR = $${TAR-tar}
|
||||
|
@ -313,7 +313,7 @@ ASAN_LDFLAGS =
|
|||
ASAN_ZFS = _without_asan
|
||||
AUTOCONF = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoconf
|
||||
AUTOHEADER = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoheader
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.16
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.15
|
||||
AWK = gawk
|
||||
CC = gcc
|
||||
CCAS = gcc
|
||||
|
@ -351,8 +351,8 @@ DEPDIR = .deps
|
|||
DLLTOOL = false
|
||||
DPKG = dpkg
|
||||
DPKGBUILD = dpkg-buildpackage
|
||||
DPKGBUILD_VERSION = 1.19.7.
|
||||
DPKG_VERSION = 1.19.7
|
||||
DPKGBUILD_VERSION = 1.19.0.5
|
||||
DPKG_VERSION = 1.19.0.5
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
|
@ -434,20 +434,20 @@ PACKAGE_TARNAME = zfs
|
|||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 0.8.4
|
||||
PATH_SEPARATOR = :
|
||||
PKG_CONFIG = /usr/bin/pkg-config
|
||||
PKG_CONFIG =
|
||||
PKG_CONFIG_LIBDIR =
|
||||
PKG_CONFIG_PATH =
|
||||
POSUB = po
|
||||
PYTHON = /usr/bin/python3.8
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.8
|
||||
PYTHON = /usr/bin/python3.6
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.6m
|
||||
PYTHON_EXEC_PREFIX = ${exec_prefix}
|
||||
PYTHON_EXTRA_LDFLAGS = -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions
|
||||
PYTHON_EXTRA_LIBS = -lcrypt -lpthread -ldl -lutil -lm -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.8
|
||||
PYTHON_EXTRA_LIBS = -lpthread -ldl -lutil -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.6m
|
||||
PYTHON_PLATFORM = linux
|
||||
PYTHON_PREFIX = ${prefix}
|
||||
PYTHON_SITE_PKG = /usr/lib/python3/dist-packages
|
||||
PYTHON_VERSION = 3.8
|
||||
PYTHON_VERSION = 3.6
|
||||
PYZFS_ENABLED = yes
|
||||
QAT_OBJ =
|
||||
QAT_SRC =
|
||||
|
@ -457,13 +457,13 @@ RELEASE = 1
|
|||
RM = rm -f
|
||||
RPM = rpm
|
||||
RPMBUILD = rpmbuild
|
||||
RPMBUILD_VERSION = 4.14.2.1
|
||||
RPMBUILD_VERSION = 4.14.1
|
||||
RPM_DEFINE_COMMON = --define "$(DEBUG_ZFS) 1" --define "$(DEBUG_KMEM_ZFS) 1" --define "$(DEBUG_KMEM_TRACKING_ZFS) 1" --define "$(DEBUGINFO_ZFS) 1" --define "$(ASAN_ZFS) 1"
|
||||
RPM_DEFINE_DKMS =
|
||||
RPM_DEFINE_KMOD = --define "kernels $(LINUX_VERSION)" --define "ksrc $(LINUX)" --define "kobj $(LINUX_OBJ)" --define "_wrong_version_format_terminate_build 0"
|
||||
RPM_DEFINE_UTIL = --define "_initconfdir $(DEFAULT_INITCONF_DIR)" $(DEFINE_INITRAMFS) $(DEFINE_SYSTEMD) $(DEFINE_PYZFS) $(DEFINE_PYTHON_VERSION) $(DEFINE_PYTHON_PKG_VERSION) --define "_lib $(MULTIARCH_LIBDIR)"
|
||||
RPM_SPEC_DIR = rpm/generic
|
||||
RPM_VERSION = 4.14.2.1
|
||||
RPM_VERSION = 4.14.1
|
||||
SED = /bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
|
@ -547,8 +547,8 @@ pkgpythondir = ${pythondir}/zfs
|
|||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
pyexecdir = ${exec_prefix}/lib/python3.8/site-packages
|
||||
pythondir = ${prefix}/lib/python3.8/site-packages
|
||||
pyexecdir = ${exec_prefix}/lib/python3.6/site-packages
|
||||
pythondir = ${prefix}/lib/python3.6/site-packages
|
||||
pythonsitedir = /usr/lib/python3/dist-packages
|
||||
runstatedir = ${localstatedir}/run
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
|
@ -592,8 +592,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
|
@ -652,10 +652,7 @@ ctags CTAGS:
|
|||
cscope cscopelist:
|
||||
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -592,8 +592,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
|
@ -652,10 +652,7 @@ ctags CTAGS:
|
|||
cscope cscopelist:
|
||||
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# cmd/arcstat/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -300,7 +300,7 @@ am__can_run_installinfo = \
|
|||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||
am__DIST_COMMON = $(srcdir)/Makefile.in
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.16
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.15
|
||||
ALIEN = alien
|
||||
ALIEN_VERSION = 8.95
|
||||
AMTAR = $${TAR-tar}
|
||||
|
@ -312,7 +312,7 @@ ASAN_LDFLAGS =
|
|||
ASAN_ZFS = _without_asan
|
||||
AUTOCONF = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoconf
|
||||
AUTOHEADER = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoheader
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.16
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.15
|
||||
AWK = gawk
|
||||
CC = gcc
|
||||
CCAS = gcc
|
||||
|
@ -350,8 +350,8 @@ DEPDIR = .deps
|
|||
DLLTOOL = false
|
||||
DPKG = dpkg
|
||||
DPKGBUILD = dpkg-buildpackage
|
||||
DPKGBUILD_VERSION = 1.19.7.
|
||||
DPKG_VERSION = 1.19.7
|
||||
DPKGBUILD_VERSION = 1.19.0.5
|
||||
DPKG_VERSION = 1.19.0.5
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
|
@ -433,20 +433,20 @@ PACKAGE_TARNAME = zfs
|
|||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 0.8.4
|
||||
PATH_SEPARATOR = :
|
||||
PKG_CONFIG = /usr/bin/pkg-config
|
||||
PKG_CONFIG =
|
||||
PKG_CONFIG_LIBDIR =
|
||||
PKG_CONFIG_PATH =
|
||||
POSUB = po
|
||||
PYTHON = /usr/bin/python3.8
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.8
|
||||
PYTHON = /usr/bin/python3.6
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.6m
|
||||
PYTHON_EXEC_PREFIX = ${exec_prefix}
|
||||
PYTHON_EXTRA_LDFLAGS = -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions
|
||||
PYTHON_EXTRA_LIBS = -lcrypt -lpthread -ldl -lutil -lm -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.8
|
||||
PYTHON_EXTRA_LIBS = -lpthread -ldl -lutil -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.6m
|
||||
PYTHON_PLATFORM = linux
|
||||
PYTHON_PREFIX = ${prefix}
|
||||
PYTHON_SITE_PKG = /usr/lib/python3/dist-packages
|
||||
PYTHON_VERSION = 3.8
|
||||
PYTHON_VERSION = 3.6
|
||||
PYZFS_ENABLED = yes
|
||||
QAT_OBJ =
|
||||
QAT_SRC =
|
||||
|
@ -456,13 +456,13 @@ RELEASE = 1
|
|||
RM = rm -f
|
||||
RPM = rpm
|
||||
RPMBUILD = rpmbuild
|
||||
RPMBUILD_VERSION = 4.14.2.1
|
||||
RPMBUILD_VERSION = 4.14.1
|
||||
RPM_DEFINE_COMMON = --define "$(DEBUG_ZFS) 1" --define "$(DEBUG_KMEM_ZFS) 1" --define "$(DEBUG_KMEM_TRACKING_ZFS) 1" --define "$(DEBUGINFO_ZFS) 1" --define "$(ASAN_ZFS) 1"
|
||||
RPM_DEFINE_DKMS =
|
||||
RPM_DEFINE_KMOD = --define "kernels $(LINUX_VERSION)" --define "ksrc $(LINUX)" --define "kobj $(LINUX_OBJ)" --define "_wrong_version_format_terminate_build 0"
|
||||
RPM_DEFINE_UTIL = --define "_initconfdir $(DEFAULT_INITCONF_DIR)" $(DEFINE_INITRAMFS) $(DEFINE_SYSTEMD) $(DEFINE_PYZFS) $(DEFINE_PYTHON_VERSION) $(DEFINE_PYTHON_PKG_VERSION) --define "_lib $(MULTIARCH_LIBDIR)"
|
||||
RPM_SPEC_DIR = rpm/generic
|
||||
RPM_VERSION = 4.14.2.1
|
||||
RPM_VERSION = 4.14.1
|
||||
SED = /bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
|
@ -546,8 +546,8 @@ pkgpythondir = ${pythondir}/zfs
|
|||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
pyexecdir = ${exec_prefix}/lib/python3.8/site-packages
|
||||
pythondir = ${prefix}/lib/python3.8/site-packages
|
||||
pyexecdir = ${exec_prefix}/lib/python3.6/site-packages
|
||||
pythondir = ${prefix}/lib/python3.6/site-packages
|
||||
pythonsitedir = /usr/lib/python3/dist-packages
|
||||
runstatedir = ${localstatedir}/run
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
|
@ -589,8 +589,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
|
@ -649,10 +649,7 @@ ctags CTAGS:
|
|||
cscope cscopelist:
|
||||
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -589,8 +589,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
|
@ -649,10 +649,7 @@ ctags CTAGS:
|
|||
cscope cscopelist:
|
||||
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# cmd/dbufstat/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -300,7 +300,7 @@ am__can_run_installinfo = \
|
|||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||
am__DIST_COMMON = $(srcdir)/Makefile.in
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.16
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.15
|
||||
ALIEN = alien
|
||||
ALIEN_VERSION = 8.95
|
||||
AMTAR = $${TAR-tar}
|
||||
|
@ -312,7 +312,7 @@ ASAN_LDFLAGS =
|
|||
ASAN_ZFS = _without_asan
|
||||
AUTOCONF = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoconf
|
||||
AUTOHEADER = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoheader
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.16
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.15
|
||||
AWK = gawk
|
||||
CC = gcc
|
||||
CCAS = gcc
|
||||
|
@ -350,8 +350,8 @@ DEPDIR = .deps
|
|||
DLLTOOL = false
|
||||
DPKG = dpkg
|
||||
DPKGBUILD = dpkg-buildpackage
|
||||
DPKGBUILD_VERSION = 1.19.7.
|
||||
DPKG_VERSION = 1.19.7
|
||||
DPKGBUILD_VERSION = 1.19.0.5
|
||||
DPKG_VERSION = 1.19.0.5
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
|
@ -433,20 +433,20 @@ PACKAGE_TARNAME = zfs
|
|||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 0.8.4
|
||||
PATH_SEPARATOR = :
|
||||
PKG_CONFIG = /usr/bin/pkg-config
|
||||
PKG_CONFIG =
|
||||
PKG_CONFIG_LIBDIR =
|
||||
PKG_CONFIG_PATH =
|
||||
POSUB = po
|
||||
PYTHON = /usr/bin/python3.8
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.8
|
||||
PYTHON = /usr/bin/python3.6
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.6m
|
||||
PYTHON_EXEC_PREFIX = ${exec_prefix}
|
||||
PYTHON_EXTRA_LDFLAGS = -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions
|
||||
PYTHON_EXTRA_LIBS = -lcrypt -lpthread -ldl -lutil -lm -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.8
|
||||
PYTHON_EXTRA_LIBS = -lpthread -ldl -lutil -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.6m
|
||||
PYTHON_PLATFORM = linux
|
||||
PYTHON_PREFIX = ${prefix}
|
||||
PYTHON_SITE_PKG = /usr/lib/python3/dist-packages
|
||||
PYTHON_VERSION = 3.8
|
||||
PYTHON_VERSION = 3.6
|
||||
PYZFS_ENABLED = yes
|
||||
QAT_OBJ =
|
||||
QAT_SRC =
|
||||
|
@ -456,13 +456,13 @@ RELEASE = 1
|
|||
RM = rm -f
|
||||
RPM = rpm
|
||||
RPMBUILD = rpmbuild
|
||||
RPMBUILD_VERSION = 4.14.2.1
|
||||
RPMBUILD_VERSION = 4.14.1
|
||||
RPM_DEFINE_COMMON = --define "$(DEBUG_ZFS) 1" --define "$(DEBUG_KMEM_ZFS) 1" --define "$(DEBUG_KMEM_TRACKING_ZFS) 1" --define "$(DEBUGINFO_ZFS) 1" --define "$(ASAN_ZFS) 1"
|
||||
RPM_DEFINE_DKMS =
|
||||
RPM_DEFINE_KMOD = --define "kernels $(LINUX_VERSION)" --define "ksrc $(LINUX)" --define "kobj $(LINUX_OBJ)" --define "_wrong_version_format_terminate_build 0"
|
||||
RPM_DEFINE_UTIL = --define "_initconfdir $(DEFAULT_INITCONF_DIR)" $(DEFINE_INITRAMFS) $(DEFINE_SYSTEMD) $(DEFINE_PYZFS) $(DEFINE_PYTHON_VERSION) $(DEFINE_PYTHON_PKG_VERSION) --define "_lib $(MULTIARCH_LIBDIR)"
|
||||
RPM_SPEC_DIR = rpm/generic
|
||||
RPM_VERSION = 4.14.2.1
|
||||
RPM_VERSION = 4.14.1
|
||||
SED = /bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
|
@ -546,8 +546,8 @@ pkgpythondir = ${pythondir}/zfs
|
|||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
pyexecdir = ${exec_prefix}/lib/python3.8/site-packages
|
||||
pythondir = ${prefix}/lib/python3.8/site-packages
|
||||
pyexecdir = ${exec_prefix}/lib/python3.6/site-packages
|
||||
pythondir = ${prefix}/lib/python3.6/site-packages
|
||||
pythonsitedir = /usr/lib/python3/dist-packages
|
||||
runstatedir = ${localstatedir}/run
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
|
@ -589,8 +589,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
|
@ -649,10 +649,7 @@ ctags CTAGS:
|
|||
cscope cscopelist:
|
||||
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -589,8 +589,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
|
@ -649,10 +649,7 @@ ctags CTAGS:
|
|||
cscope cscopelist:
|
||||
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# cmd/fsck_zfs/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -300,7 +300,7 @@ am__can_run_installinfo = \
|
|||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||
am__DIST_COMMON = $(srcdir)/Makefile.in
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.16
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.15
|
||||
ALIEN = alien
|
||||
ALIEN_VERSION = 8.95
|
||||
AMTAR = $${TAR-tar}
|
||||
|
@ -312,7 +312,7 @@ ASAN_LDFLAGS =
|
|||
ASAN_ZFS = _without_asan
|
||||
AUTOCONF = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoconf
|
||||
AUTOHEADER = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoheader
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.16
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.15
|
||||
AWK = gawk
|
||||
CC = gcc
|
||||
CCAS = gcc
|
||||
|
@ -350,8 +350,8 @@ DEPDIR = .deps
|
|||
DLLTOOL = false
|
||||
DPKG = dpkg
|
||||
DPKGBUILD = dpkg-buildpackage
|
||||
DPKGBUILD_VERSION = 1.19.7.
|
||||
DPKG_VERSION = 1.19.7
|
||||
DPKGBUILD_VERSION = 1.19.0.5
|
||||
DPKG_VERSION = 1.19.0.5
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
|
@ -433,20 +433,20 @@ PACKAGE_TARNAME = zfs
|
|||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 0.8.4
|
||||
PATH_SEPARATOR = :
|
||||
PKG_CONFIG = /usr/bin/pkg-config
|
||||
PKG_CONFIG =
|
||||
PKG_CONFIG_LIBDIR =
|
||||
PKG_CONFIG_PATH =
|
||||
POSUB = po
|
||||
PYTHON = /usr/bin/python3.8
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.8
|
||||
PYTHON = /usr/bin/python3.6
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.6m
|
||||
PYTHON_EXEC_PREFIX = ${exec_prefix}
|
||||
PYTHON_EXTRA_LDFLAGS = -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions
|
||||
PYTHON_EXTRA_LIBS = -lcrypt -lpthread -ldl -lutil -lm -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.8
|
||||
PYTHON_EXTRA_LIBS = -lpthread -ldl -lutil -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.6m
|
||||
PYTHON_PLATFORM = linux
|
||||
PYTHON_PREFIX = ${prefix}
|
||||
PYTHON_SITE_PKG = /usr/lib/python3/dist-packages
|
||||
PYTHON_VERSION = 3.8
|
||||
PYTHON_VERSION = 3.6
|
||||
PYZFS_ENABLED = yes
|
||||
QAT_OBJ =
|
||||
QAT_SRC =
|
||||
|
@ -456,13 +456,13 @@ RELEASE = 1
|
|||
RM = rm -f
|
||||
RPM = rpm
|
||||
RPMBUILD = rpmbuild
|
||||
RPMBUILD_VERSION = 4.14.2.1
|
||||
RPMBUILD_VERSION = 4.14.1
|
||||
RPM_DEFINE_COMMON = --define "$(DEBUG_ZFS) 1" --define "$(DEBUG_KMEM_ZFS) 1" --define "$(DEBUG_KMEM_TRACKING_ZFS) 1" --define "$(DEBUGINFO_ZFS) 1" --define "$(ASAN_ZFS) 1"
|
||||
RPM_DEFINE_DKMS =
|
||||
RPM_DEFINE_KMOD = --define "kernels $(LINUX_VERSION)" --define "ksrc $(LINUX)" --define "kobj $(LINUX_OBJ)" --define "_wrong_version_format_terminate_build 0"
|
||||
RPM_DEFINE_UTIL = --define "_initconfdir $(DEFAULT_INITCONF_DIR)" $(DEFINE_INITRAMFS) $(DEFINE_SYSTEMD) $(DEFINE_PYZFS) $(DEFINE_PYTHON_VERSION) $(DEFINE_PYTHON_PKG_VERSION) --define "_lib $(MULTIARCH_LIBDIR)"
|
||||
RPM_SPEC_DIR = rpm/generic
|
||||
RPM_VERSION = 4.14.2.1
|
||||
RPM_VERSION = 4.14.1
|
||||
SED = /bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
|
@ -546,8 +546,8 @@ pkgpythondir = ${pythondir}/zfs
|
|||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
pyexecdir = ${exec_prefix}/lib/python3.8/site-packages
|
||||
pythondir = ${prefix}/lib/python3.8/site-packages
|
||||
pyexecdir = ${exec_prefix}/lib/python3.6/site-packages
|
||||
pythondir = ${prefix}/lib/python3.6/site-packages
|
||||
pythonsitedir = /usr/lib/python3/dist-packages
|
||||
runstatedir = ${localstatedir}/run
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
|
@ -589,8 +589,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
|
@ -649,10 +649,7 @@ ctags CTAGS:
|
|||
cscope cscopelist:
|
||||
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -589,8 +589,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
|
@ -649,10 +649,7 @@ ctags CTAGS:
|
|||
cscope cscopelist:
|
||||
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
|
|
@ -5,24 +5,20 @@ mount_zfs.o: mount_zfs.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
../../lib/libspl/include/locale.h /usr/include/locale.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/locale.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||
/usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
|
||||
|
@ -34,7 +30,9 @@ mount_zfs.o: mount_zfs.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../lib/libspl/include/sys/feature_tests.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -44,22 +42,20 @@ mount_zfs.o: mount_zfs.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
../../lib/libspl/include/sys/stdtypes.h \
|
||||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -85,7 +81,6 @@ mount_zfs.o: mount_zfs.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -95,7 +90,6 @@ mount_zfs.o: mount_zfs.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -117,13 +111,11 @@ mount_zfs.o: mount_zfs.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/sys/mount.h \
|
||||
../../lib/libspl/include/assert.h /usr/include/assert.h \
|
||||
../../lib/libspl/include/stdio.h /usr/include/stdio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -141,32 +133,19 @@ mount_zfs.o: mount_zfs.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||
../../include/sys/mntent.h ../../lib/libspl/include/sys/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \
|
||||
/usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \
|
||||
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
|
||||
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/statx-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \
|
||||
../../include/libzfs.h ../../include/libnvpair.h \
|
||||
../../include/sys/nvpair.h ../../lib/libspl/include/sys/errno.h \
|
||||
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/stat.h ../../include/libzfs.h \
|
||||
../../include/libnvpair.h ../../include/sys/nvpair.h \
|
||||
../../lib/libspl/include/sys/errno.h /usr/include/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h /usr/include/regex.h \
|
||||
../../lib/libspl/include/sys/mnttab.h /usr/include/mntent.h \
|
||||
/usr/include/paths.h ../../lib/libspl/include/sys/varargs.h \
|
||||
../../include/sys/fs/zfs.h ../../include/sys/zio_priority.h \
|
||||
../../include/sys/avl.h ../../include/sys/avl_impl.h \
|
||||
../../lib/libspl/include/ucred.h ../../include/libzfs_core.h \
|
||||
../../include/libzutil.h /usr/include/getopt.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_ext.h
|
||||
/usr/include/regex.h ../../lib/libspl/include/sys/mnttab.h \
|
||||
/usr/include/mntent.h /usr/include/paths.h \
|
||||
../../lib/libspl/include/sys/varargs.h ../../include/sys/fs/zfs.h \
|
||||
../../include/sys/zio_priority.h ../../include/sys/avl.h \
|
||||
../../include/sys/avl_impl.h ../../lib/libspl/include/ucred.h \
|
||||
../../include/libzfs_core.h ../../include/libzutil.h \
|
||||
/usr/include/getopt.h /usr/include/x86_64-linux-gnu/bits/getopt_ext.h
|
||||
|
||||
/usr/include/stdc-predef.h:
|
||||
|
||||
|
@ -186,7 +165,7 @@ mount_zfs.o: mount_zfs.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
../../lib/libspl/include/locale.h:
|
||||
|
||||
|
@ -204,12 +183,8 @@ mount_zfs.o: mount_zfs.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
|
||||
|
@ -222,10 +197,6 @@ mount_zfs.o: mount_zfs.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||
|
@ -252,8 +223,12 @@ mount_zfs.o: mount_zfs.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -272,17 +247,13 @@ mount_zfs.o: mount_zfs.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -294,7 +265,7 @@ mount_zfs.o: mount_zfs.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
../../lib/libspl/include/sys/va_list.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
../../lib/libspl/include/sys/stdtypes.h:
|
||||
|
||||
|
@ -304,9 +275,9 @@ mount_zfs.o: mount_zfs.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -362,8 +333,6 @@ mount_zfs.o: mount_zfs.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -388,8 +357,6 @@ mount_zfs.o: mount_zfs.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -442,19 +409,15 @@ mount_zfs.o: mount_zfs.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/stdio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -500,38 +463,6 @@ mount_zfs.o: mount_zfs.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/sys/stat.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/statx.h:
|
||||
|
||||
/usr/include/linux/stat.h:
|
||||
|
||||
/usr/include/linux/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/types.h:
|
||||
|
||||
/usr/include/asm-generic/types.h:
|
||||
|
||||
/usr/include/asm-generic/int-ll64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h:
|
||||
|
||||
/usr/include/asm-generic/bitsperlong.h:
|
||||
|
||||
/usr/include/linux/posix_types.h:
|
||||
|
||||
/usr/include/linux/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h:
|
||||
|
||||
/usr/include/asm-generic/posix_types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/statx-generic.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h:
|
||||
|
||||
../../include/libzfs.h:
|
||||
|
||||
../../include/libnvpair.h:
|
||||
|
@ -552,8 +483,6 @@ mount_zfs.o: mount_zfs.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
/usr/include/regex.h:
|
||||
|
||||
../../lib/libspl/include/sys/mnttab.h:
|
||||
|
|
Binary file not shown.
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# cmd/mount_zfs/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -277,8 +277,7 @@ am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
|
|||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
|
||||
am__maybe_remake_depfiles = depfiles
|
||||
am__depfiles_remade = ./$(DEPDIR)/mount_zfs.Po
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
|
@ -327,7 +326,7 @@ CTAGS = ctags
|
|||
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/Rules.am \
|
||||
$(top_srcdir)/config/depcomp
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.16
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.15
|
||||
ALIEN = alien
|
||||
ALIEN_VERSION = 8.95
|
||||
AMTAR = $${TAR-tar}
|
||||
|
@ -339,7 +338,7 @@ ASAN_LDFLAGS =
|
|||
ASAN_ZFS = _without_asan
|
||||
AUTOCONF = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoconf
|
||||
AUTOHEADER = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoheader
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.16
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.15
|
||||
AWK = gawk
|
||||
CC = gcc
|
||||
CCAS = gcc
|
||||
|
@ -377,8 +376,8 @@ DEPDIR = .deps
|
|||
DLLTOOL = false
|
||||
DPKG = dpkg
|
||||
DPKGBUILD = dpkg-buildpackage
|
||||
DPKGBUILD_VERSION = 1.19.7.
|
||||
DPKG_VERSION = 1.19.7
|
||||
DPKGBUILD_VERSION = 1.19.0.5
|
||||
DPKG_VERSION = 1.19.0.5
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
|
@ -460,20 +459,20 @@ PACKAGE_TARNAME = zfs
|
|||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 0.8.4
|
||||
PATH_SEPARATOR = :
|
||||
PKG_CONFIG = /usr/bin/pkg-config
|
||||
PKG_CONFIG =
|
||||
PKG_CONFIG_LIBDIR =
|
||||
PKG_CONFIG_PATH =
|
||||
POSUB = po
|
||||
PYTHON = /usr/bin/python3.8
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.8
|
||||
PYTHON = /usr/bin/python3.6
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.6m
|
||||
PYTHON_EXEC_PREFIX = ${exec_prefix}
|
||||
PYTHON_EXTRA_LDFLAGS = -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions
|
||||
PYTHON_EXTRA_LIBS = -lcrypt -lpthread -ldl -lutil -lm -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.8
|
||||
PYTHON_EXTRA_LIBS = -lpthread -ldl -lutil -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.6m
|
||||
PYTHON_PLATFORM = linux
|
||||
PYTHON_PREFIX = ${prefix}
|
||||
PYTHON_SITE_PKG = /usr/lib/python3/dist-packages
|
||||
PYTHON_VERSION = 3.8
|
||||
PYTHON_VERSION = 3.6
|
||||
PYZFS_ENABLED = yes
|
||||
QAT_OBJ =
|
||||
QAT_SRC =
|
||||
|
@ -483,13 +482,13 @@ RELEASE = 1
|
|||
RM = rm -f
|
||||
RPM = rpm
|
||||
RPMBUILD = rpmbuild
|
||||
RPMBUILD_VERSION = 4.14.2.1
|
||||
RPMBUILD_VERSION = 4.14.1
|
||||
RPM_DEFINE_COMMON = --define "$(DEBUG_ZFS) 1" --define "$(DEBUG_KMEM_ZFS) 1" --define "$(DEBUG_KMEM_TRACKING_ZFS) 1" --define "$(DEBUGINFO_ZFS) 1" --define "$(ASAN_ZFS) 1"
|
||||
RPM_DEFINE_DKMS =
|
||||
RPM_DEFINE_KMOD = --define "kernels $(LINUX_VERSION)" --define "ksrc $(LINUX)" --define "kobj $(LINUX_OBJ)" --define "_wrong_version_format_terminate_build 0"
|
||||
RPM_DEFINE_UTIL = --define "_initconfdir $(DEFAULT_INITCONF_DIR)" $(DEFINE_INITRAMFS) $(DEFINE_SYSTEMD) $(DEFINE_PYZFS) $(DEFINE_PYTHON_VERSION) $(DEFINE_PYTHON_PKG_VERSION) --define "_lib $(MULTIARCH_LIBDIR)"
|
||||
RPM_SPEC_DIR = rpm/generic
|
||||
RPM_VERSION = 4.14.2.1
|
||||
RPM_VERSION = 4.14.1
|
||||
SED = /bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
|
@ -573,8 +572,8 @@ pkgpythondir = ${pythondir}/zfs
|
|||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
pyexecdir = ${exec_prefix}/lib/python3.8/site-packages
|
||||
pythondir = ${prefix}/lib/python3.8/site-packages
|
||||
pyexecdir = ${exec_prefix}/lib/python3.6/site-packages
|
||||
pythondir = ${prefix}/lib/python3.6/site-packages
|
||||
pythonsitedir = /usr/lib/python3/dist-packages
|
||||
runstatedir = ${localstatedir}/run
|
||||
|
||||
|
@ -644,8 +643,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(top_srcdir)/config/Rules.am $(am__empty):
|
||||
|
||||
|
@ -717,13 +716,7 @@ mostlyclean-compile:
|
|||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
include ./$(DEPDIR)/mount_zfs.Po # am--include-marker
|
||||
|
||||
$(am__depfiles_remade):
|
||||
@$(MKDIR_P) $(@D)
|
||||
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
|
||||
|
||||
am--depfiles: $(am__depfiles_remade)
|
||||
include ./$(DEPDIR)/mount_zfs.Po
|
||||
|
||||
.c.o:
|
||||
$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
||||
|
@ -807,10 +800,7 @@ cscopelist-am: $(am__tagged_files)
|
|||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
@ -883,7 +873,7 @@ clean-am: clean-generic clean-libtool clean-sbinPROGRAMS \
|
|||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f ./$(DEPDIR)/mount_zfs.Po
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
@ -929,7 +919,7 @@ install-ps-am:
|
|||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f ./$(DEPDIR)/mount_zfs.Po
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
|
@ -950,9 +940,9 @@ uninstall-am: uninstall-sbinPROGRAMS
|
|||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
|
||||
clean-generic clean-libtool clean-sbinPROGRAMS cscopelist-am \
|
||||
ctags ctags-am distclean distclean-compile distclean-generic \
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
|
||||
clean-libtool clean-sbinPROGRAMS cscopelist-am ctags ctags-am \
|
||||
distclean distclean-compile distclean-generic \
|
||||
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
||||
html-am info info-am install install-am install-data \
|
||||
install-data-am install-dvi install-dvi-am install-exec \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -277,8 +277,7 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
|||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
|
||||
am__maybe_remake_depfiles = depfiles
|
||||
am__depfiles_remade = ./$(DEPDIR)/mount_zfs.Po
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
|
@ -644,8 +643,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(top_srcdir)/config/Rules.am $(am__empty):
|
||||
|
||||
|
@ -717,13 +716,7 @@ mostlyclean-compile:
|
|||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mount_zfs.Po@am__quote@ # am--include-marker
|
||||
|
||||
$(am__depfiles_remade):
|
||||
@$(MKDIR_P) $(@D)
|
||||
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
|
||||
|
||||
am--depfiles: $(am__depfiles_remade)
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mount_zfs.Po@am__quote@
|
||||
|
||||
.c.o:
|
||||
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
||||
|
@ -807,10 +800,7 @@ cscopelist-am: $(am__tagged_files)
|
|||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
@ -883,7 +873,7 @@ clean-am: clean-generic clean-libtool clean-sbinPROGRAMS \
|
|||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f ./$(DEPDIR)/mount_zfs.Po
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
@ -929,7 +919,7 @@ install-ps-am:
|
|||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f ./$(DEPDIR)/mount_zfs.Po
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
|
@ -950,9 +940,9 @@ uninstall-am: uninstall-sbinPROGRAMS
|
|||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
|
||||
clean-generic clean-libtool clean-sbinPROGRAMS cscopelist-am \
|
||||
ctags ctags-am distclean distclean-compile distclean-generic \
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
|
||||
clean-libtool clean-sbinPROGRAMS cscopelist-am ctags ctags-am \
|
||||
distclean distclean-compile distclean-generic \
|
||||
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
||||
html-am info info-am install install-am install-data \
|
||||
install-data-am install-dvi install-dvi-am install-exec \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#! /bin/bash
|
||||
|
||||
# mount.zfs - temporary wrapper script for .libs/mount.zfs
|
||||
# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-14
|
||||
# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-2
|
||||
#
|
||||
# The mount.zfs program cannot be directly executed until all the libtool
|
||||
# libraries that it depends on are installed.
|
||||
|
@ -90,7 +90,7 @@ func_parse_lt_options ()
|
|||
|
||||
# Print the debug banner immediately:
|
||||
if test -n "$lt_option_debug"; then
|
||||
echo "mount.zfs:mount.zfs:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-14" 1>&2
|
||||
echo "mount.zfs:mount.zfs:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-2" 1>&2
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
Binary file not shown.
|
@ -7,19 +7,15 @@ raidz_bench.o: raidz_bench.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -44,8 +40,8 @@ raidz_bench.o: raidz_bench.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -57,11 +53,9 @@ raidz_bench.o: raidz_bench.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
|
@ -69,8 +63,8 @@ raidz_bench.o: raidz_bench.c /usr/include/stdc-predef.h \
|
|||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -96,7 +90,6 @@ raidz_bench.o: raidz_bench.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -106,7 +99,6 @@ raidz_bench.o: raidz_bench.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -126,14 +118,12 @@ raidz_bench.o: raidz_bench.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
|
||||
../../lib/libspl/include/string.h /usr/include/string.h \
|
||||
/usr/include/strings.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timex.h \
|
||||
|
@ -144,10 +134,8 @@ raidz_bench.o: raidz_bench.c /usr/include/stdc-predef.h \
|
|||
../../lib/libspl/include/assert.h /usr/include/assert.h \
|
||||
../../lib/libspl/include/umem.h ../../lib/libspl/include/atomic.h \
|
||||
/usr/include/dirent.h /usr/include/x86_64-linux-gnu/bits/dirent.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h /usr/include/ctype.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/mman.h \
|
||||
/usr/include/ctype.h /usr/include/x86_64-linux-gnu/sys/mman.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-linux.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-shared.h \
|
||||
../../include/sys/note.h ../../lib/libspl/include/sys/cred.h \
|
||||
|
@ -208,31 +196,23 @@ raidz_bench.o: raidz_bench.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -286,10 +266,10 @@ raidz_bench.o: raidz_bench.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -312,17 +292,13 @@ raidz_bench.o: raidz_bench.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -340,9 +316,9 @@ raidz_bench.o: raidz_bench.c /usr/include/stdc-predef.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -398,8 +374,6 @@ raidz_bench.o: raidz_bench.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -424,8 +398,6 @@ raidz_bench.o: raidz_bench.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -478,8 +450,6 @@ raidz_bench.o: raidz_bench.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
../../lib/libspl/include/string.h:
|
||||
|
||||
/usr/include/string.h:
|
||||
|
@ -496,8 +466,6 @@ raidz_bench.o: raidz_bench.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h:
|
||||
|
||||
/usr/include/time.h:
|
||||
|
@ -528,16 +496,12 @@ raidz_bench.o: raidz_bench.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h:
|
||||
|
||||
/usr/include/ctype.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/mman.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-linux.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-shared.h:
|
||||
|
|
|
@ -7,19 +7,15 @@ raidz_test.o: raidz_test.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -44,8 +40,8 @@ raidz_test.o: raidz_test.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -57,11 +53,9 @@ raidz_test.o: raidz_test.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
|
@ -69,8 +63,8 @@ raidz_test.o: raidz_test.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -96,7 +90,6 @@ raidz_test.o: raidz_test.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -106,7 +99,6 @@ raidz_test.o: raidz_test.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -126,14 +118,12 @@ raidz_test.o: raidz_test.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
|
||||
../../lib/libspl/include/string.h /usr/include/string.h \
|
||||
/usr/include/strings.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timex.h \
|
||||
|
@ -144,10 +134,8 @@ raidz_test.o: raidz_test.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../lib/libspl/include/assert.h /usr/include/assert.h \
|
||||
../../lib/libspl/include/umem.h ../../lib/libspl/include/atomic.h \
|
||||
/usr/include/dirent.h /usr/include/x86_64-linux-gnu/bits/dirent.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h /usr/include/ctype.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/mman.h \
|
||||
/usr/include/ctype.h /usr/include/x86_64-linux-gnu/sys/mman.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-linux.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-shared.h \
|
||||
../../include/sys/note.h ../../lib/libspl/include/sys/cred.h \
|
||||
|
@ -208,31 +196,23 @@ raidz_test.o: raidz_test.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -286,10 +266,10 @@ raidz_test.o: raidz_test.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -312,17 +292,13 @@ raidz_test.o: raidz_test.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -340,9 +316,9 @@ raidz_test.o: raidz_test.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -398,8 +374,6 @@ raidz_test.o: raidz_test.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -424,8 +398,6 @@ raidz_test.o: raidz_test.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -478,8 +450,6 @@ raidz_test.o: raidz_test.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
../../lib/libspl/include/string.h:
|
||||
|
||||
/usr/include/string.h:
|
||||
|
@ -496,8 +466,6 @@ raidz_test.o: raidz_test.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h:
|
||||
|
||||
/usr/include/time.h:
|
||||
|
@ -528,16 +496,12 @@ raidz_test.o: raidz_test.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h:
|
||||
|
||||
/usr/include/ctype.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/mman.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-linux.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-shared.h:
|
||||
|
|
Binary file not shown.
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# cmd/raidz_test/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -276,9 +276,7 @@ am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
|
|||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
|
||||
am__maybe_remake_depfiles = depfiles
|
||||
am__depfiles_remade = ./$(DEPDIR)/raidz_bench.Po \
|
||||
./$(DEPDIR)/raidz_test.Po
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
|
@ -327,7 +325,7 @@ CTAGS = ctags
|
|||
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/Rules.am \
|
||||
$(top_srcdir)/config/depcomp
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.16
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.15
|
||||
ALIEN = alien
|
||||
ALIEN_VERSION = 8.95
|
||||
AMTAR = $${TAR-tar}
|
||||
|
@ -339,7 +337,7 @@ ASAN_LDFLAGS =
|
|||
ASAN_ZFS = _without_asan
|
||||
AUTOCONF = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoconf
|
||||
AUTOHEADER = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoheader
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.16
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.15
|
||||
AWK = gawk
|
||||
CC = gcc
|
||||
CCAS = gcc
|
||||
|
@ -377,8 +375,8 @@ DEPDIR = .deps
|
|||
DLLTOOL = false
|
||||
DPKG = dpkg
|
||||
DPKGBUILD = dpkg-buildpackage
|
||||
DPKGBUILD_VERSION = 1.19.7.
|
||||
DPKG_VERSION = 1.19.7
|
||||
DPKGBUILD_VERSION = 1.19.0.5
|
||||
DPKG_VERSION = 1.19.0.5
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
|
@ -460,20 +458,20 @@ PACKAGE_TARNAME = zfs
|
|||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 0.8.4
|
||||
PATH_SEPARATOR = :
|
||||
PKG_CONFIG = /usr/bin/pkg-config
|
||||
PKG_CONFIG =
|
||||
PKG_CONFIG_LIBDIR =
|
||||
PKG_CONFIG_PATH =
|
||||
POSUB = po
|
||||
PYTHON = /usr/bin/python3.8
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.8
|
||||
PYTHON = /usr/bin/python3.6
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.6m
|
||||
PYTHON_EXEC_PREFIX = ${exec_prefix}
|
||||
PYTHON_EXTRA_LDFLAGS = -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions
|
||||
PYTHON_EXTRA_LIBS = -lcrypt -lpthread -ldl -lutil -lm -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.8
|
||||
PYTHON_EXTRA_LIBS = -lpthread -ldl -lutil -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.6m
|
||||
PYTHON_PLATFORM = linux
|
||||
PYTHON_PREFIX = ${prefix}
|
||||
PYTHON_SITE_PKG = /usr/lib/python3/dist-packages
|
||||
PYTHON_VERSION = 3.8
|
||||
PYTHON_VERSION = 3.6
|
||||
PYZFS_ENABLED = yes
|
||||
QAT_OBJ =
|
||||
QAT_SRC =
|
||||
|
@ -483,13 +481,13 @@ RELEASE = 1
|
|||
RM = rm -f
|
||||
RPM = rpm
|
||||
RPMBUILD = rpmbuild
|
||||
RPMBUILD_VERSION = 4.14.2.1
|
||||
RPMBUILD_VERSION = 4.14.1
|
||||
RPM_DEFINE_COMMON = --define "$(DEBUG_ZFS) 1" --define "$(DEBUG_KMEM_ZFS) 1" --define "$(DEBUG_KMEM_TRACKING_ZFS) 1" --define "$(DEBUGINFO_ZFS) 1" --define "$(ASAN_ZFS) 1"
|
||||
RPM_DEFINE_DKMS =
|
||||
RPM_DEFINE_KMOD = --define "kernels $(LINUX_VERSION)" --define "ksrc $(LINUX)" --define "kobj $(LINUX_OBJ)" --define "_wrong_version_format_terminate_build 0"
|
||||
RPM_DEFINE_UTIL = --define "_initconfdir $(DEFAULT_INITCONF_DIR)" $(DEFINE_INITRAMFS) $(DEFINE_SYSTEMD) $(DEFINE_PYZFS) $(DEFINE_PYTHON_VERSION) $(DEFINE_PYTHON_PKG_VERSION) --define "_lib $(MULTIARCH_LIBDIR)"
|
||||
RPM_SPEC_DIR = rpm/generic
|
||||
RPM_VERSION = 4.14.2.1
|
||||
RPM_VERSION = 4.14.1
|
||||
SED = /bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
|
@ -573,8 +571,8 @@ pkgpythondir = ${pythondir}/zfs
|
|||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
pyexecdir = ${exec_prefix}/lib/python3.8/site-packages
|
||||
pythondir = ${prefix}/lib/python3.8/site-packages
|
||||
pyexecdir = ${exec_prefix}/lib/python3.6/site-packages
|
||||
pythondir = ${prefix}/lib/python3.6/site-packages
|
||||
pythonsitedir = /usr/lib/python3/dist-packages
|
||||
runstatedir = ${localstatedir}/run
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
|
@ -640,8 +638,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(top_srcdir)/config/Rules.am $(am__empty):
|
||||
|
||||
|
@ -713,14 +711,8 @@ mostlyclean-compile:
|
|||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
include ./$(DEPDIR)/raidz_bench.Po # am--include-marker
|
||||
include ./$(DEPDIR)/raidz_test.Po # am--include-marker
|
||||
|
||||
$(am__depfiles_remade):
|
||||
@$(MKDIR_P) $(@D)
|
||||
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
|
||||
|
||||
am--depfiles: $(am__depfiles_remade)
|
||||
include ./$(DEPDIR)/raidz_bench.Po
|
||||
include ./$(DEPDIR)/raidz_test.Po
|
||||
|
||||
.c.o:
|
||||
$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
||||
|
@ -804,10 +796,7 @@ cscopelist-am: $(am__tagged_files)
|
|||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
@ -879,8 +868,7 @@ clean: clean-am
|
|||
clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f ./$(DEPDIR)/raidz_bench.Po
|
||||
-rm -f ./$(DEPDIR)/raidz_test.Po
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
@ -926,8 +914,7 @@ install-ps-am:
|
|||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f ./$(DEPDIR)/raidz_bench.Po
|
||||
-rm -f ./$(DEPDIR)/raidz_test.Po
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
|
@ -948,7 +935,7 @@ uninstall-am: uninstall-binPROGRAMS
|
|||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
|
||||
clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \
|
||||
ctags ctags-am distclean distclean-compile distclean-generic \
|
||||
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -276,9 +276,7 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
|||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
|
||||
am__maybe_remake_depfiles = depfiles
|
||||
am__depfiles_remade = ./$(DEPDIR)/raidz_bench.Po \
|
||||
./$(DEPDIR)/raidz_test.Po
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
|
@ -640,8 +638,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(top_srcdir)/config/Rules.am $(am__empty):
|
||||
|
||||
|
@ -713,14 +711,8 @@ mostlyclean-compile:
|
|||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raidz_bench.Po@am__quote@ # am--include-marker
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raidz_test.Po@am__quote@ # am--include-marker
|
||||
|
||||
$(am__depfiles_remade):
|
||||
@$(MKDIR_P) $(@D)
|
||||
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
|
||||
|
||||
am--depfiles: $(am__depfiles_remade)
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raidz_bench.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raidz_test.Po@am__quote@
|
||||
|
||||
.c.o:
|
||||
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
||||
|
@ -804,10 +796,7 @@ cscopelist-am: $(am__tagged_files)
|
|||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
@ -879,8 +868,7 @@ clean: clean-am
|
|||
clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f ./$(DEPDIR)/raidz_bench.Po
|
||||
-rm -f ./$(DEPDIR)/raidz_test.Po
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
@ -926,8 +914,7 @@ install-ps-am:
|
|||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f ./$(DEPDIR)/raidz_bench.Po
|
||||
-rm -f ./$(DEPDIR)/raidz_test.Po
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
|
@ -948,7 +935,7 @@ uninstall-am: uninstall-binPROGRAMS
|
|||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
|
||||
clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \
|
||||
ctags ctags-am distclean distclean-compile distclean-generic \
|
||||
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
||||
|
|
Binary file not shown.
|
@ -1,7 +1,7 @@
|
|||
#! /bin/bash
|
||||
|
||||
# raidz_test - temporary wrapper script for .libs/raidz_test
|
||||
# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-14
|
||||
# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-2
|
||||
#
|
||||
# The raidz_test program cannot be directly executed until all the libtool
|
||||
# libraries that it depends on are installed.
|
||||
|
@ -90,7 +90,7 @@ func_parse_lt_options ()
|
|||
|
||||
# Print the debug banner immediately:
|
||||
if test -n "$lt_option_debug"; then
|
||||
echo "raidz_test:raidz_test:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-14" 1>&2
|
||||
echo "raidz_test:raidz_test:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-2" 1>&2
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
Binary file not shown.
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# cmd/vdev_id/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -300,7 +300,7 @@ am__can_run_installinfo = \
|
|||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||
am__DIST_COMMON = $(srcdir)/Makefile.in
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.16
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.15
|
||||
ALIEN = alien
|
||||
ALIEN_VERSION = 8.95
|
||||
AMTAR = $${TAR-tar}
|
||||
|
@ -312,7 +312,7 @@ ASAN_LDFLAGS =
|
|||
ASAN_ZFS = _without_asan
|
||||
AUTOCONF = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoconf
|
||||
AUTOHEADER = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoheader
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.16
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.15
|
||||
AWK = gawk
|
||||
CC = gcc
|
||||
CCAS = gcc
|
||||
|
@ -350,8 +350,8 @@ DEPDIR = .deps
|
|||
DLLTOOL = false
|
||||
DPKG = dpkg
|
||||
DPKGBUILD = dpkg-buildpackage
|
||||
DPKGBUILD_VERSION = 1.19.7.
|
||||
DPKG_VERSION = 1.19.7
|
||||
DPKGBUILD_VERSION = 1.19.0.5
|
||||
DPKG_VERSION = 1.19.0.5
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
|
@ -433,20 +433,20 @@ PACKAGE_TARNAME = zfs
|
|||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 0.8.4
|
||||
PATH_SEPARATOR = :
|
||||
PKG_CONFIG = /usr/bin/pkg-config
|
||||
PKG_CONFIG =
|
||||
PKG_CONFIG_LIBDIR =
|
||||
PKG_CONFIG_PATH =
|
||||
POSUB = po
|
||||
PYTHON = /usr/bin/python3.8
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.8
|
||||
PYTHON = /usr/bin/python3.6
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.6m
|
||||
PYTHON_EXEC_PREFIX = ${exec_prefix}
|
||||
PYTHON_EXTRA_LDFLAGS = -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions
|
||||
PYTHON_EXTRA_LIBS = -lcrypt -lpthread -ldl -lutil -lm -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.8
|
||||
PYTHON_EXTRA_LIBS = -lpthread -ldl -lutil -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.6m
|
||||
PYTHON_PLATFORM = linux
|
||||
PYTHON_PREFIX = ${prefix}
|
||||
PYTHON_SITE_PKG = /usr/lib/python3/dist-packages
|
||||
PYTHON_VERSION = 3.8
|
||||
PYTHON_VERSION = 3.6
|
||||
PYZFS_ENABLED = yes
|
||||
QAT_OBJ =
|
||||
QAT_SRC =
|
||||
|
@ -456,13 +456,13 @@ RELEASE = 1
|
|||
RM = rm -f
|
||||
RPM = rpm
|
||||
RPMBUILD = rpmbuild
|
||||
RPMBUILD_VERSION = 4.14.2.1
|
||||
RPMBUILD_VERSION = 4.14.1
|
||||
RPM_DEFINE_COMMON = --define "$(DEBUG_ZFS) 1" --define "$(DEBUG_KMEM_ZFS) 1" --define "$(DEBUG_KMEM_TRACKING_ZFS) 1" --define "$(DEBUGINFO_ZFS) 1" --define "$(ASAN_ZFS) 1"
|
||||
RPM_DEFINE_DKMS =
|
||||
RPM_DEFINE_KMOD = --define "kernels $(LINUX_VERSION)" --define "ksrc $(LINUX)" --define "kobj $(LINUX_OBJ)" --define "_wrong_version_format_terminate_build 0"
|
||||
RPM_DEFINE_UTIL = --define "_initconfdir $(DEFAULT_INITCONF_DIR)" $(DEFINE_INITRAMFS) $(DEFINE_SYSTEMD) $(DEFINE_PYZFS) $(DEFINE_PYTHON_VERSION) $(DEFINE_PYTHON_PKG_VERSION) --define "_lib $(MULTIARCH_LIBDIR)"
|
||||
RPM_SPEC_DIR = rpm/generic
|
||||
RPM_VERSION = 4.14.2.1
|
||||
RPM_VERSION = 4.14.1
|
||||
SED = /bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
|
@ -546,8 +546,8 @@ pkgpythondir = ${pythondir}/zfs
|
|||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
pyexecdir = ${exec_prefix}/lib/python3.8/site-packages
|
||||
pythondir = ${prefix}/lib/python3.8/site-packages
|
||||
pyexecdir = ${exec_prefix}/lib/python3.6/site-packages
|
||||
pythondir = ${prefix}/lib/python3.6/site-packages
|
||||
pythonsitedir = /usr/lib/python3/dist-packages
|
||||
runstatedir = ${localstatedir}/run
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
|
@ -589,8 +589,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
|
@ -649,10 +649,7 @@ ctags CTAGS:
|
|||
cscope cscopelist:
|
||||
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -589,8 +589,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
|
@ -649,10 +649,7 @@ ctags CTAGS:
|
|||
cscope cscopelist:
|
||||
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
|
|
@ -6,19 +6,15 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -30,7 +26,6 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -52,8 +47,8 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -65,11 +60,9 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
|
@ -77,8 +70,8 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -104,7 +97,6 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h /usr/include/stdio_ext.h \
|
||||
|
@ -128,14 +120,12 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
|
||||
../../lib/libspl/include/string.h /usr/include/string.h \
|
||||
/usr/include/strings.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timex.h \
|
||||
|
@ -146,10 +136,8 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../lib/libspl/include/assert.h /usr/include/assert.h \
|
||||
../../lib/libspl/include/umem.h ../../lib/libspl/include/atomic.h \
|
||||
/usr/include/dirent.h /usr/include/x86_64-linux-gnu/bits/dirent.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/mman.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-linux.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-shared.h \
|
||||
../../include/sys/note.h ../../lib/libspl/include/sys/cred.h \
|
||||
|
@ -211,8 +199,7 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h /usr/include/linux/fscrypt.h \
|
||||
/usr/include/linux/mount.h ../../include/sys/zfs_sa.h \
|
||||
/usr/include/asm-generic/posix_types.h ../../include/sys/zfs_sa.h \
|
||||
../../include/sys/sa_impl.h ../../include/sys/vdev_impl.h \
|
||||
../../lib/libspl/include/sys/dkio.h \
|
||||
../../lib/libspl/include/sys/dklabel.h ../../include/sys/zfs_ratelimit.h \
|
||||
|
@ -222,10 +209,6 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../include/sys/dbuf.h ../../include/sys/zil_impl.h \
|
||||
../../lib/libspl/include/sys/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/statx-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \
|
||||
../../lib/libspl/include/sys/mount.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/mount.h \
|
||||
../../include/sys/dmu_traverse.h ../../include/sys/zio_checksum.h \
|
||||
|
@ -256,31 +239,23 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -306,8 +281,6 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -354,10 +327,10 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -380,17 +353,13 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -408,9 +377,9 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -466,8 +435,6 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -532,8 +499,6 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
../../lib/libspl/include/string.h:
|
||||
|
||||
/usr/include/string.h:
|
||||
|
@ -550,8 +515,6 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h:
|
||||
|
||||
/usr/include/time.h:
|
||||
|
@ -582,14 +545,10 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/mman.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-linux.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-shared.h:
|
||||
|
@ -792,10 +751,6 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/asm-generic/posix_types.h:
|
||||
|
||||
/usr/include/linux/fscrypt.h:
|
||||
|
||||
/usr/include/linux/mount.h:
|
||||
|
||||
../../include/sys/zfs_sa.h:
|
||||
|
||||
../../include/sys/sa_impl.h:
|
||||
|
@ -828,16 +783,6 @@ zdb.o: zdb.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/sys/stat.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/statx.h:
|
||||
|
||||
/usr/include/linux/stat.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/statx-generic.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h:
|
||||
|
||||
../../lib/libspl/include/sys/mount.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/mount.h:
|
||||
|
|
|
@ -6,19 +6,15 @@ zdb_il.o: zdb_il.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -43,8 +39,8 @@ zdb_il.o: zdb_il.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -56,11 +52,9 @@ zdb_il.o: zdb_il.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
|
@ -68,8 +62,8 @@ zdb_il.o: zdb_il.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -95,7 +89,6 @@ zdb_il.o: zdb_il.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -105,7 +98,6 @@ zdb_il.o: zdb_il.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -126,14 +118,12 @@ zdb_il.o: zdb_il.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
|
||||
../../lib/libspl/include/string.h /usr/include/string.h \
|
||||
/usr/include/strings.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timex.h \
|
||||
|
@ -144,10 +134,8 @@ zdb_il.o: zdb_il.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../lib/libspl/include/assert.h /usr/include/assert.h \
|
||||
../../lib/libspl/include/umem.h ../../lib/libspl/include/atomic.h \
|
||||
/usr/include/dirent.h /usr/include/x86_64-linux-gnu/bits/dirent.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/mman.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-linux.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-shared.h \
|
||||
../../include/sys/note.h ../../lib/libspl/include/sys/cred.h \
|
||||
|
@ -180,18 +168,6 @@ zdb_il.o: zdb_il.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../include/sys/zio_compress.h ../../include/sys/abd.h \
|
||||
../../include/sys/refcount.h ../../lib/libspl/include/sys/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \
|
||||
/usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \
|
||||
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
|
||||
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/statx-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \
|
||||
../../lib/libspl/include/sys/mount.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/mount.h ../../include/sys/zil.h \
|
||||
../../include/sys/zio.h ../../include/sys/txg.h \
|
||||
|
@ -240,31 +216,23 @@ zdb_il.o: zdb_il.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -318,10 +286,10 @@ zdb_il.o: zdb_il.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -344,17 +312,13 @@ zdb_il.o: zdb_il.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -372,9 +336,9 @@ zdb_il.o: zdb_il.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -430,8 +394,6 @@ zdb_il.o: zdb_il.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -456,8 +418,6 @@ zdb_il.o: zdb_il.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -514,8 +474,6 @@ zdb_il.o: zdb_il.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
../../lib/libspl/include/string.h:
|
||||
|
||||
/usr/include/string.h:
|
||||
|
@ -532,8 +490,6 @@ zdb_il.o: zdb_il.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h:
|
||||
|
||||
/usr/include/time.h:
|
||||
|
@ -564,14 +520,10 @@ zdb_il.o: zdb_il.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/mman.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-linux.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-shared.h:
|
||||
|
@ -660,38 +612,6 @@ zdb_il.o: zdb_il.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/sys/stat.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/statx.h:
|
||||
|
||||
/usr/include/linux/stat.h:
|
||||
|
||||
/usr/include/linux/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/types.h:
|
||||
|
||||
/usr/include/asm-generic/types.h:
|
||||
|
||||
/usr/include/asm-generic/int-ll64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h:
|
||||
|
||||
/usr/include/asm-generic/bitsperlong.h:
|
||||
|
||||
/usr/include/linux/posix_types.h:
|
||||
|
||||
/usr/include/linux/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h:
|
||||
|
||||
/usr/include/asm-generic/posix_types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/statx-generic.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h:
|
||||
|
||||
../../lib/libspl/include/sys/mount.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/mount.h:
|
||||
|
|
Binary file not shown.
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# cmd/zdb/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -277,8 +277,7 @@ am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
|
|||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
|
||||
am__maybe_remake_depfiles = depfiles
|
||||
am__depfiles_remade = ./$(DEPDIR)/zdb.Po ./$(DEPDIR)/zdb_il.Po
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
|
@ -327,7 +326,7 @@ CTAGS = ctags
|
|||
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/Rules.am \
|
||||
$(top_srcdir)/config/depcomp
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.16
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.15
|
||||
ALIEN = alien
|
||||
ALIEN_VERSION = 8.95
|
||||
AMTAR = $${TAR-tar}
|
||||
|
@ -339,7 +338,7 @@ ASAN_LDFLAGS =
|
|||
ASAN_ZFS = _without_asan
|
||||
AUTOCONF = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoconf
|
||||
AUTOHEADER = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoheader
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.16
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.15
|
||||
AWK = gawk
|
||||
CC = gcc
|
||||
CCAS = gcc
|
||||
|
@ -377,8 +376,8 @@ DEPDIR = .deps
|
|||
DLLTOOL = false
|
||||
DPKG = dpkg
|
||||
DPKGBUILD = dpkg-buildpackage
|
||||
DPKGBUILD_VERSION = 1.19.7.
|
||||
DPKG_VERSION = 1.19.7
|
||||
DPKGBUILD_VERSION = 1.19.0.5
|
||||
DPKG_VERSION = 1.19.0.5
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
|
@ -460,20 +459,20 @@ PACKAGE_TARNAME = zfs
|
|||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 0.8.4
|
||||
PATH_SEPARATOR = :
|
||||
PKG_CONFIG = /usr/bin/pkg-config
|
||||
PKG_CONFIG =
|
||||
PKG_CONFIG_LIBDIR =
|
||||
PKG_CONFIG_PATH =
|
||||
POSUB = po
|
||||
PYTHON = /usr/bin/python3.8
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.8
|
||||
PYTHON = /usr/bin/python3.6
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.6m
|
||||
PYTHON_EXEC_PREFIX = ${exec_prefix}
|
||||
PYTHON_EXTRA_LDFLAGS = -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions
|
||||
PYTHON_EXTRA_LIBS = -lcrypt -lpthread -ldl -lutil -lm -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.8
|
||||
PYTHON_EXTRA_LIBS = -lpthread -ldl -lutil -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.6m
|
||||
PYTHON_PLATFORM = linux
|
||||
PYTHON_PREFIX = ${prefix}
|
||||
PYTHON_SITE_PKG = /usr/lib/python3/dist-packages
|
||||
PYTHON_VERSION = 3.8
|
||||
PYTHON_VERSION = 3.6
|
||||
PYZFS_ENABLED = yes
|
||||
QAT_OBJ =
|
||||
QAT_SRC =
|
||||
|
@ -483,13 +482,13 @@ RELEASE = 1
|
|||
RM = rm -f
|
||||
RPM = rpm
|
||||
RPMBUILD = rpmbuild
|
||||
RPMBUILD_VERSION = 4.14.2.1
|
||||
RPMBUILD_VERSION = 4.14.1
|
||||
RPM_DEFINE_COMMON = --define "$(DEBUG_ZFS) 1" --define "$(DEBUG_KMEM_ZFS) 1" --define "$(DEBUG_KMEM_TRACKING_ZFS) 1" --define "$(DEBUGINFO_ZFS) 1" --define "$(ASAN_ZFS) 1"
|
||||
RPM_DEFINE_DKMS =
|
||||
RPM_DEFINE_KMOD = --define "kernels $(LINUX_VERSION)" --define "ksrc $(LINUX)" --define "kobj $(LINUX_OBJ)" --define "_wrong_version_format_terminate_build 0"
|
||||
RPM_DEFINE_UTIL = --define "_initconfdir $(DEFAULT_INITCONF_DIR)" $(DEFINE_INITRAMFS) $(DEFINE_SYSTEMD) $(DEFINE_PYZFS) $(DEFINE_PYTHON_VERSION) $(DEFINE_PYTHON_PKG_VERSION) --define "_lib $(MULTIARCH_LIBDIR)"
|
||||
RPM_SPEC_DIR = rpm/generic
|
||||
RPM_VERSION = 4.14.2.1
|
||||
RPM_VERSION = 4.14.1
|
||||
SED = /bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
|
@ -573,8 +572,8 @@ pkgpythondir = ${pythondir}/zfs
|
|||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
pyexecdir = ${exec_prefix}/lib/python3.8/site-packages
|
||||
pythondir = ${prefix}/lib/python3.8/site-packages
|
||||
pyexecdir = ${exec_prefix}/lib/python3.6/site-packages
|
||||
pythondir = ${prefix}/lib/python3.6/site-packages
|
||||
pythonsitedir = /usr/lib/python3/dist-packages
|
||||
runstatedir = ${localstatedir}/run
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
|
@ -641,8 +640,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(top_srcdir)/config/Rules.am $(am__empty):
|
||||
|
||||
|
@ -714,14 +713,8 @@ mostlyclean-compile:
|
|||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
include ./$(DEPDIR)/zdb.Po # am--include-marker
|
||||
include ./$(DEPDIR)/zdb_il.Po # am--include-marker
|
||||
|
||||
$(am__depfiles_remade):
|
||||
@$(MKDIR_P) $(@D)
|
||||
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
|
||||
|
||||
am--depfiles: $(am__depfiles_remade)
|
||||
include ./$(DEPDIR)/zdb.Po
|
||||
include ./$(DEPDIR)/zdb_il.Po
|
||||
|
||||
.c.o:
|
||||
$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
||||
|
@ -805,10 +798,7 @@ cscopelist-am: $(am__tagged_files)
|
|||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
@ -881,8 +871,7 @@ clean-am: clean-generic clean-libtool clean-sbinPROGRAMS \
|
|||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f ./$(DEPDIR)/zdb.Po
|
||||
-rm -f ./$(DEPDIR)/zdb_il.Po
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
@ -928,8 +917,7 @@ install-ps-am:
|
|||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f ./$(DEPDIR)/zdb.Po
|
||||
-rm -f ./$(DEPDIR)/zdb_il.Po
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
|
@ -950,9 +938,9 @@ uninstall-am: uninstall-sbinPROGRAMS
|
|||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
|
||||
clean-generic clean-libtool clean-sbinPROGRAMS cscopelist-am \
|
||||
ctags ctags-am distclean distclean-compile distclean-generic \
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
|
||||
clean-libtool clean-sbinPROGRAMS cscopelist-am ctags ctags-am \
|
||||
distclean distclean-compile distclean-generic \
|
||||
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
||||
html-am info info-am install install-am install-data \
|
||||
install-data-am install-dvi install-dvi-am install-exec \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -277,8 +277,7 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
|||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
|
||||
am__maybe_remake_depfiles = depfiles
|
||||
am__depfiles_remade = ./$(DEPDIR)/zdb.Po ./$(DEPDIR)/zdb_il.Po
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
|
@ -641,8 +640,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(top_srcdir)/config/Rules.am $(am__empty):
|
||||
|
||||
|
@ -714,14 +713,8 @@ mostlyclean-compile:
|
|||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zdb.Po@am__quote@ # am--include-marker
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zdb_il.Po@am__quote@ # am--include-marker
|
||||
|
||||
$(am__depfiles_remade):
|
||||
@$(MKDIR_P) $(@D)
|
||||
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
|
||||
|
||||
am--depfiles: $(am__depfiles_remade)
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zdb.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zdb_il.Po@am__quote@
|
||||
|
||||
.c.o:
|
||||
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
||||
|
@ -805,10 +798,7 @@ cscopelist-am: $(am__tagged_files)
|
|||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
@ -881,8 +871,7 @@ clean-am: clean-generic clean-libtool clean-sbinPROGRAMS \
|
|||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f ./$(DEPDIR)/zdb.Po
|
||||
-rm -f ./$(DEPDIR)/zdb_il.Po
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
@ -928,8 +917,7 @@ install-ps-am:
|
|||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f ./$(DEPDIR)/zdb.Po
|
||||
-rm -f ./$(DEPDIR)/zdb_il.Po
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
|
@ -950,9 +938,9 @@ uninstall-am: uninstall-sbinPROGRAMS
|
|||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
|
||||
clean-generic clean-libtool clean-sbinPROGRAMS cscopelist-am \
|
||||
ctags ctags-am distclean distclean-compile distclean-generic \
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
|
||||
clean-libtool clean-sbinPROGRAMS cscopelist-am ctags ctags-am \
|
||||
distclean distclean-compile distclean-generic \
|
||||
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
||||
html-am info info-am install install-am install-data \
|
||||
install-data-am install-dvi install-dvi-am install-exec \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#! /bin/bash
|
||||
|
||||
# zdb - temporary wrapper script for .libs/zdb
|
||||
# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-14
|
||||
# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-2
|
||||
#
|
||||
# The zdb program cannot be directly executed until all the libtool
|
||||
# libraries that it depends on are installed.
|
||||
|
@ -90,7 +90,7 @@ func_parse_lt_options ()
|
|||
|
||||
# Print the debug banner immediately:
|
||||
if test -n "$lt_option_debug"; then
|
||||
echo "zdb:zdb:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-14" 1>&2
|
||||
echo "zdb:zdb:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-2" 1>&2
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -8,19 +8,14 @@ zed.o: zed.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h /usr/include/fcntl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/fcntl.h /usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
/usr/include/linux/falloc.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl2.h /usr/include/signal.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signum.h \
|
||||
|
@ -46,20 +41,15 @@ zed.o: zed.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
../../lib/libspl/include/stdio.h /usr/include/stdio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -83,7 +73,9 @@ zed.o: zed.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -91,7 +83,7 @@ zed.o: zed.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/select2.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
|
@ -99,8 +91,8 @@ zed.o: zed.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -116,7 +108,6 @@ zed.o: zed.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -134,23 +125,10 @@ zed.o: zed.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/mman.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-linux.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-shared.h \
|
||||
../../lib/libspl/include/sys/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \
|
||||
/usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \
|
||||
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
|
||||
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/statx-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \
|
||||
../../lib/libspl/include/sys/mount.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/mount.h \
|
||||
../../lib/libspl/include/assert.h /usr/include/assert.h zed.h zed_conf.h \
|
||||
|
@ -200,34 +178,24 @@ zed.o: zed.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
/usr/include/fcntl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl-linux.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
/usr/include/linux/falloc.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stat.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl2.h:
|
||||
|
@ -280,35 +248,25 @@ zed.o: zed.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
../../lib/libspl/include/stdio.h:
|
||||
|
||||
/usr/include/stdio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -360,8 +318,12 @@ zed.o: zed.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -378,7 +340,7 @@ zed.o: zed.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -396,9 +358,9 @@ zed.o: zed.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -438,8 +400,6 @@ zed.o: zed.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -480,8 +440,6 @@ zed.o: zed.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-linux.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-shared.h:
|
||||
|
@ -490,38 +448,6 @@ zed.o: zed.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/sys/stat.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/statx.h:
|
||||
|
||||
/usr/include/linux/stat.h:
|
||||
|
||||
/usr/include/linux/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/types.h:
|
||||
|
||||
/usr/include/asm-generic/types.h:
|
||||
|
||||
/usr/include/asm-generic/int-ll64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h:
|
||||
|
||||
/usr/include/asm-generic/bitsperlong.h:
|
||||
|
||||
/usr/include/linux/posix_types.h:
|
||||
|
||||
/usr/include/linux/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h:
|
||||
|
||||
/usr/include/asm-generic/posix_types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/statx-generic.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h:
|
||||
|
||||
../../lib/libspl/include/sys/mount.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/mount.h:
|
||||
|
|
|
@ -7,19 +7,15 @@ zed_conf.o: zed_conf.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
../../lib/libspl/include/stdio.h /usr/include/stdio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -44,8 +40,8 @@ zed_conf.o: zed_conf.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -57,11 +53,9 @@ zed_conf.o: zed_conf.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
|
@ -69,8 +63,8 @@ zed_conf.o: zed_conf.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -96,7 +90,6 @@ zed_conf.o: zed_conf.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -106,7 +99,6 @@ zed_conf.o: zed_conf.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -119,12 +111,10 @@ zed_conf.o: zed_conf.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/ctype.h \
|
||||
/usr/include/dirent.h /usr/include/x86_64-linux-gnu/bits/dirent.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h /usr/include/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h /usr/include/fcntl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl.h \
|
||||
/usr/include/fcntl.h /usr/include/x86_64-linux-gnu/bits/fcntl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
|
||||
/usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \
|
||||
|
@ -136,18 +126,6 @@ zed_conf.o: zed_conf.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||
../../lib/libspl/include/sys/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \
|
||||
/usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \
|
||||
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
|
||||
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/statx-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \
|
||||
../../lib/libspl/include/sys/mount.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/mount.h \
|
||||
../../lib/libspl/include/sys/uio.h \
|
||||
|
@ -197,31 +175,23 @@ zed_conf.o: zed_conf.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -275,10 +245,10 @@ zed_conf.o: zed_conf.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -301,17 +271,13 @@ zed_conf.o: zed_conf.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -329,9 +295,9 @@ zed_conf.o: zed_conf.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -387,8 +353,6 @@ zed_conf.o: zed_conf.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -413,8 +377,6 @@ zed_conf.o: zed_conf.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -447,8 +409,6 @@ zed_conf.o: zed_conf.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h:
|
||||
|
||||
/usr/include/errno.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/errno.h:
|
||||
|
@ -461,8 +421,6 @@ zed_conf.o: zed_conf.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
/usr/include/fcntl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl.h:
|
||||
|
@ -495,38 +453,6 @@ zed_conf.o: zed_conf.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/sys/stat.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/statx.h:
|
||||
|
||||
/usr/include/linux/stat.h:
|
||||
|
||||
/usr/include/linux/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/types.h:
|
||||
|
||||
/usr/include/asm-generic/types.h:
|
||||
|
||||
/usr/include/asm-generic/int-ll64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h:
|
||||
|
||||
/usr/include/asm-generic/bitsperlong.h:
|
||||
|
||||
/usr/include/linux/posix_types.h:
|
||||
|
||||
/usr/include/linux/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h:
|
||||
|
||||
/usr/include/asm-generic/posix_types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/statx-generic.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h:
|
||||
|
||||
../../lib/libspl/include/sys/mount.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/mount.h:
|
||||
|
|
|
@ -8,19 +8,14 @@ zed_disk_event.o: zed_disk_event.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h /usr/include/fcntl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/fcntl.h /usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
/usr/include/linux/falloc.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl2.h ../../include/libnvpair.h \
|
||||
../../include/sys/nvpair.h ../../lib/libspl/include/sys/types.h \
|
||||
|
@ -35,7 +30,9 @@ zed_disk_event.o: zed_disk_event.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -46,22 +43,20 @@ zed_disk_event.o: zed_disk_event.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
../../lib/libspl/include/sys/stdtypes.h \
|
||||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -87,7 +82,6 @@ zed_disk_event.o: zed_disk_event.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -97,7 +91,6 @@ zed_disk_event.o: zed_disk_event.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -123,13 +116,11 @@ zed_disk_event.o: zed_disk_event.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
|
||||
../../lib/libspl/include/stdio.h /usr/include/stdio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -143,7 +134,6 @@ zed_disk_event.o: zed_disk_event.c /usr/include/stdc-predef.h \
|
|||
../../lib/libspl/include/ucred.h ../../include/libzfs_core.h \
|
||||
../../include/libzutil.h /usr/include/pthread.h /usr/include/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
|
||||
../../lib/libspl/include/string.h /usr/include/string.h \
|
||||
|
@ -185,34 +175,24 @@ zed_disk_event.o: zed_disk_event.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
/usr/include/fcntl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl-linux.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
/usr/include/linux/falloc.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stat.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl2.h:
|
||||
|
@ -247,8 +227,12 @@ zed_disk_event.o: zed_disk_event.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -269,17 +253,13 @@ zed_disk_event.o: zed_disk_event.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -291,7 +271,7 @@ zed_disk_event.o: zed_disk_event.c /usr/include/stdc-predef.h \
|
|||
|
||||
../../lib/libspl/include/sys/va_list.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
../../lib/libspl/include/sys/stdtypes.h:
|
||||
|
||||
|
@ -301,9 +281,9 @@ zed_disk_event.o: zed_disk_event.c /usr/include/stdc-predef.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -359,8 +339,6 @@ zed_disk_event.o: zed_disk_event.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -385,8 +363,6 @@ zed_disk_event.o: zed_disk_event.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -449,19 +425,15 @@ zed_disk_event.o: zed_disk_event.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/stdio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -509,8 +481,6 @@ zed_disk_event.o: zed_disk_event.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp.h:
|
||||
|
|
|
@ -6,21 +6,20 @@ zed_event.o: zed_event.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h /usr/include/fcntl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl.h \
|
||||
/usr/include/fcntl.h /usr/include/x86_64-linux-gnu/bits/fcntl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
/usr/include/linux/falloc.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stat.h \
|
||||
|
@ -28,14 +27,12 @@ zed_event.o: zed_event.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../lib/libspl/include/assert.h /usr/include/assert.h \
|
||||
../../lib/libspl/include/stdio.h /usr/include/stdio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -56,9 +53,7 @@ zed_event.o: zed_event.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||
|
@ -68,11 +63,9 @@ zed_event.o: zed_event.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
|
@ -80,8 +73,8 @@ zed_event.o: zed_event.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -107,7 +100,6 @@ zed_event.o: zed_event.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -117,7 +109,6 @@ zed_event.o: zed_event.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -149,16 +140,13 @@ zed_event.o: zed_event.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../include/sys/dmu.h ../../include/sys/zfs_context.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp.h /usr/include/setjmp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp2.h \
|
||||
../../lib/libspl/include/umem.h ../../lib/libspl/include/atomic.h \
|
||||
/usr/include/dirent.h /usr/include/x86_64-linux-gnu/bits/dirent.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/mman.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-linux.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-shared.h \
|
||||
../../include/sys/note.h ../../lib/libspl/include/sys/bitmap.h \
|
||||
|
@ -222,15 +210,17 @@ zed_event.o: zed_event.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
/usr/include/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:
|
||||
|
||||
|
@ -248,8 +238,6 @@ zed_event.o: zed_event.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
/usr/include/fcntl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl.h:
|
||||
|
@ -258,7 +246,7 @@ zed_event.o: zed_event.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
/usr/include/linux/falloc.h:
|
||||
|
||||
|
@ -280,21 +268,17 @@ zed_event.o: zed_event.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -340,12 +324,6 @@ zed_event.o: zed_event.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||
|
||||
/usr/include/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h:
|
||||
|
@ -364,17 +342,13 @@ zed_event.o: zed_event.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -392,9 +366,9 @@ zed_event.o: zed_event.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -450,8 +424,6 @@ zed_event.o: zed_event.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -476,8 +448,6 @@ zed_event.o: zed_event.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -570,8 +540,6 @@ zed_event.o: zed_event.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp.h:
|
||||
|
@ -588,14 +556,10 @@ zed_event.o: zed_event.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/mman.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-linux.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-shared.h:
|
||||
|
|
|
@ -7,19 +7,15 @@ zed_exec.o: zed_exec.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
../../lib/libspl/include/stdio.h /usr/include/stdio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -44,8 +40,8 @@ zed_exec.o: zed_exec.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -57,11 +53,9 @@ zed_exec.o: zed_exec.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
|
@ -69,8 +63,8 @@ zed_exec.o: zed_exec.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -96,7 +90,6 @@ zed_exec.o: zed_exec.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -106,7 +99,6 @@ zed_exec.o: zed_exec.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -121,8 +113,7 @@ zed_exec.o: zed_exec.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h /usr/include/fcntl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl.h \
|
||||
/usr/include/fcntl.h /usr/include/x86_64-linux-gnu/bits/fcntl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
|
||||
/usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \
|
||||
|
@ -133,18 +124,6 @@ zed_exec.o: zed_exec.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||
../../lib/libspl/include/sys/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \
|
||||
/usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \
|
||||
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
|
||||
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/statx-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \
|
||||
../../lib/libspl/include/sys/mount.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/mount.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/wait.h /usr/include/time.h \
|
||||
|
@ -183,31 +162,23 @@ zed_exec.o: zed_exec.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -261,10 +232,10 @@ zed_exec.o: zed_exec.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -287,17 +258,13 @@ zed_exec.o: zed_exec.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -315,9 +282,9 @@ zed_exec.o: zed_exec.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -373,8 +340,6 @@ zed_exec.o: zed_exec.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -399,8 +364,6 @@ zed_exec.o: zed_exec.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -441,8 +404,6 @@ zed_exec.o: zed_exec.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
/usr/include/fcntl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl.h:
|
||||
|
@ -471,38 +432,6 @@ zed_exec.o: zed_exec.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/sys/stat.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/statx.h:
|
||||
|
||||
/usr/include/linux/stat.h:
|
||||
|
||||
/usr/include/linux/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/types.h:
|
||||
|
||||
/usr/include/asm-generic/types.h:
|
||||
|
||||
/usr/include/asm-generic/int-ll64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h:
|
||||
|
||||
/usr/include/asm-generic/bitsperlong.h:
|
||||
|
||||
/usr/include/linux/posix_types.h:
|
||||
|
||||
/usr/include/linux/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h:
|
||||
|
||||
/usr/include/asm-generic/posix_types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/statx-generic.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h:
|
||||
|
||||
../../lib/libspl/include/sys/mount.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/mount.h:
|
||||
|
|
|
@ -8,24 +8,19 @@ zed_file.o: zed_file.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h /usr/include/fcntl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/fcntl.h /usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
/usr/include/linux/falloc.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl2.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
|
@ -47,18 +42,6 @@ zed_file.o: zed_file.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../lib/libspl/include/sys/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \
|
||||
/usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \
|
||||
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
|
||||
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/statx-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \
|
||||
../../lib/libspl/include/sys/mount.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/mount.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
|
@ -71,14 +54,12 @@ zed_file.o: zed_file.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/sys/ttydefaults.h \
|
||||
../../lib/libspl/include/assert.h /usr/include/assert.h \
|
||||
../../lib/libspl/include/stdio.h /usr/include/stdio.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -99,7 +80,9 @@ zed_file.o: zed_file.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -109,11 +92,9 @@ zed_file.o: zed_file.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
|
@ -139,7 +120,6 @@ zed_file.o: zed_file.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -148,8 +128,7 @@ zed_file.o: zed_file.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/confname.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h /usr/include/alloca.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h /usr/include/alloca.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdlib.h zed_log.h \
|
||||
|
@ -185,43 +164,33 @@ zed_file.o: zed_file.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
/usr/include/fcntl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl-linux.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
/usr/include/linux/falloc.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stat.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl2.h:
|
||||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -267,38 +236,6 @@ zed_file.o: zed_file.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/statx.h:
|
||||
|
||||
/usr/include/linux/stat.h:
|
||||
|
||||
/usr/include/linux/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/types.h:
|
||||
|
||||
/usr/include/asm-generic/types.h:
|
||||
|
||||
/usr/include/asm-generic/int-ll64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h:
|
||||
|
||||
/usr/include/asm-generic/bitsperlong.h:
|
||||
|
||||
/usr/include/linux/posix_types.h:
|
||||
|
||||
/usr/include/linux/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h:
|
||||
|
||||
/usr/include/asm-generic/posix_types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/statx-generic.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h:
|
||||
|
||||
../../lib/libspl/include/sys/mount.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/mount.h:
|
||||
|
@ -329,21 +266,17 @@ zed_file.o: zed_file.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/stdio.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -389,8 +322,12 @@ zed_file.o: zed_file.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -409,17 +346,13 @@ zed_file.o: zed_file.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -475,8 +408,6 @@ zed_file.o: zed_file.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -501,8 +432,6 @@ zed_file.o: zed_file.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/alloca.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h:
|
||||
|
|
|
@ -7,19 +7,15 @@ zed_log.o: zed_log.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
../../lib/libspl/include/stdio.h /usr/include/stdio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -44,8 +40,8 @@ zed_log.o: zed_log.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -57,11 +53,9 @@ zed_log.o: zed_log.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
|
@ -69,8 +63,8 @@ zed_log.o: zed_log.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -96,7 +90,6 @@ zed_log.o: zed_log.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -106,7 +99,6 @@ zed_log.o: zed_log.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -121,7 +113,6 @@ zed_log.o: zed_log.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
|
||||
../../lib/libspl/include/string.h /usr/include/string.h \
|
||||
/usr/include/strings.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||
|
@ -156,31 +147,23 @@ zed_log.o: zed_log.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -234,10 +217,10 @@ zed_log.o: zed_log.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -260,17 +243,13 @@ zed_log.o: zed_log.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -288,9 +267,9 @@ zed_log.o: zed_log.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -346,8 +325,6 @@ zed_log.o: zed_log.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -372,8 +349,6 @@ zed_log.o: zed_log.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -412,8 +387,6 @@ zed_log.o: zed_log.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
../../lib/libspl/include/string.h:
|
||||
|
||||
/usr/include/string.h:
|
||||
|
|
|
@ -8,19 +8,15 @@ zed_strings.o: zed_strings.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
../../lib/libspl/include/stdio.h /usr/include/stdio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -45,8 +41,8 @@ zed_strings.o: zed_strings.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -58,11 +54,9 @@ zed_strings.o: zed_strings.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
|
@ -70,8 +64,8 @@ zed_strings.o: zed_strings.c /usr/include/stdc-predef.h \
|
|||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -97,7 +91,6 @@ zed_strings.o: zed_strings.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -107,7 +100,6 @@ zed_strings.o: zed_strings.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -122,7 +114,6 @@ zed_strings.o: zed_strings.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
|
||||
../../lib/libspl/include/string.h /usr/include/string.h \
|
||||
/usr/include/strings.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||
|
@ -155,31 +146,23 @@ zed_strings.o: zed_strings.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -233,10 +216,10 @@ zed_strings.o: zed_strings.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -259,17 +242,13 @@ zed_strings.o: zed_strings.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -287,9 +266,9 @@ zed_strings.o: zed_strings.c /usr/include/stdc-predef.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -345,8 +324,6 @@ zed_strings.o: zed_strings.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -371,8 +348,6 @@ zed_strings.o: zed_strings.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -411,8 +386,6 @@ zed_strings.o: zed_strings.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
../../lib/libspl/include/string.h:
|
||||
|
||||
/usr/include/string.h:
|
||||
|
|
Binary file not shown.
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# cmd/zed/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -290,15 +290,7 @@ am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
|
|||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
|
||||
am__maybe_remake_depfiles = depfiles
|
||||
am__depfiles_remade = ./$(DEPDIR)/zed.Po ./$(DEPDIR)/zed_conf.Po \
|
||||
./$(DEPDIR)/zed_disk_event.Po ./$(DEPDIR)/zed_event.Po \
|
||||
./$(DEPDIR)/zed_exec.Po ./$(DEPDIR)/zed_file.Po \
|
||||
./$(DEPDIR)/zed_log.Po ./$(DEPDIR)/zed_strings.Po \
|
||||
agents/$(DEPDIR)/fmd_api.Po agents/$(DEPDIR)/fmd_serd.Po \
|
||||
agents/$(DEPDIR)/zfs_agents.Po \
|
||||
agents/$(DEPDIR)/zfs_diagnosis.Po agents/$(DEPDIR)/zfs_mod.Po \
|
||||
agents/$(DEPDIR)/zfs_retire.Po
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
|
@ -340,7 +332,7 @@ am__recursive_targets = \
|
|||
$(RECURSIVE_CLEAN_TARGETS) \
|
||||
$(am__extra_recursive_targets)
|
||||
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
||||
distdir distdir-am
|
||||
distdir
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||
# Read a list of newline-separated strings from the standard input,
|
||||
# and print each of them once, without duplicates. Input order is
|
||||
|
@ -389,7 +381,7 @@ am__relativize = \
|
|||
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
|
||||
done; \
|
||||
reldir="$$dir2"
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.16
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.15
|
||||
ALIEN = alien
|
||||
ALIEN_VERSION = 8.95
|
||||
AMTAR = $${TAR-tar}
|
||||
|
@ -401,7 +393,7 @@ ASAN_LDFLAGS =
|
|||
ASAN_ZFS = _without_asan
|
||||
AUTOCONF = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoconf
|
||||
AUTOHEADER = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoheader
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.16
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.15
|
||||
AWK = gawk
|
||||
CC = gcc
|
||||
CCAS = gcc
|
||||
|
@ -439,8 +431,8 @@ DEPDIR = .deps
|
|||
DLLTOOL = false
|
||||
DPKG = dpkg
|
||||
DPKGBUILD = dpkg-buildpackage
|
||||
DPKGBUILD_VERSION = 1.19.7.
|
||||
DPKG_VERSION = 1.19.7
|
||||
DPKGBUILD_VERSION = 1.19.0.5
|
||||
DPKG_VERSION = 1.19.0.5
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
|
@ -522,20 +514,20 @@ PACKAGE_TARNAME = zfs
|
|||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 0.8.4
|
||||
PATH_SEPARATOR = :
|
||||
PKG_CONFIG = /usr/bin/pkg-config
|
||||
PKG_CONFIG =
|
||||
PKG_CONFIG_LIBDIR =
|
||||
PKG_CONFIG_PATH =
|
||||
POSUB = po
|
||||
PYTHON = /usr/bin/python3.8
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.8
|
||||
PYTHON = /usr/bin/python3.6
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.6m
|
||||
PYTHON_EXEC_PREFIX = ${exec_prefix}
|
||||
PYTHON_EXTRA_LDFLAGS = -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions
|
||||
PYTHON_EXTRA_LIBS = -lcrypt -lpthread -ldl -lutil -lm -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.8
|
||||
PYTHON_EXTRA_LIBS = -lpthread -ldl -lutil -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.6m
|
||||
PYTHON_PLATFORM = linux
|
||||
PYTHON_PREFIX = ${prefix}
|
||||
PYTHON_SITE_PKG = /usr/lib/python3/dist-packages
|
||||
PYTHON_VERSION = 3.8
|
||||
PYTHON_VERSION = 3.6
|
||||
PYZFS_ENABLED = yes
|
||||
QAT_OBJ =
|
||||
QAT_SRC =
|
||||
|
@ -545,13 +537,13 @@ RELEASE = 1
|
|||
RM = rm -f
|
||||
RPM = rpm
|
||||
RPMBUILD = rpmbuild
|
||||
RPMBUILD_VERSION = 4.14.2.1
|
||||
RPMBUILD_VERSION = 4.14.1
|
||||
RPM_DEFINE_COMMON = --define "$(DEBUG_ZFS) 1" --define "$(DEBUG_KMEM_ZFS) 1" --define "$(DEBUG_KMEM_TRACKING_ZFS) 1" --define "$(DEBUGINFO_ZFS) 1" --define "$(ASAN_ZFS) 1"
|
||||
RPM_DEFINE_DKMS =
|
||||
RPM_DEFINE_KMOD = --define "kernels $(LINUX_VERSION)" --define "ksrc $(LINUX)" --define "kobj $(LINUX_OBJ)" --define "_wrong_version_format_terminate_build 0"
|
||||
RPM_DEFINE_UTIL = --define "_initconfdir $(DEFAULT_INITCONF_DIR)" $(DEFINE_INITRAMFS) $(DEFINE_SYSTEMD) $(DEFINE_PYZFS) $(DEFINE_PYTHON_VERSION) $(DEFINE_PYTHON_PKG_VERSION) --define "_lib $(MULTIARCH_LIBDIR)"
|
||||
RPM_SPEC_DIR = rpm/generic
|
||||
RPM_VERSION = 4.14.2.1
|
||||
RPM_VERSION = 4.14.1
|
||||
SED = /bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
|
@ -635,8 +627,8 @@ pkgpythondir = ${pythondir}/zfs
|
|||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
pyexecdir = ${exec_prefix}/lib/python3.8/site-packages
|
||||
pythondir = ${prefix}/lib/python3.8/site-packages
|
||||
pyexecdir = ${exec_prefix}/lib/python3.6/site-packages
|
||||
pythondir = ${prefix}/lib/python3.6/site-packages
|
||||
pythonsitedir = /usr/lib/python3/dist-packages
|
||||
runstatedir = ${localstatedir}/run
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
|
@ -727,8 +719,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(top_srcdir)/config/Rules.am $(am__empty):
|
||||
|
||||
|
@ -819,26 +811,20 @@ mostlyclean-compile:
|
|||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
include ./$(DEPDIR)/zed.Po # am--include-marker
|
||||
include ./$(DEPDIR)/zed_conf.Po # am--include-marker
|
||||
include ./$(DEPDIR)/zed_disk_event.Po # am--include-marker
|
||||
include ./$(DEPDIR)/zed_event.Po # am--include-marker
|
||||
include ./$(DEPDIR)/zed_exec.Po # am--include-marker
|
||||
include ./$(DEPDIR)/zed_file.Po # am--include-marker
|
||||
include ./$(DEPDIR)/zed_log.Po # am--include-marker
|
||||
include ./$(DEPDIR)/zed_strings.Po # am--include-marker
|
||||
include agents/$(DEPDIR)/fmd_api.Po # am--include-marker
|
||||
include agents/$(DEPDIR)/fmd_serd.Po # am--include-marker
|
||||
include agents/$(DEPDIR)/zfs_agents.Po # am--include-marker
|
||||
include agents/$(DEPDIR)/zfs_diagnosis.Po # am--include-marker
|
||||
include agents/$(DEPDIR)/zfs_mod.Po # am--include-marker
|
||||
include agents/$(DEPDIR)/zfs_retire.Po # am--include-marker
|
||||
|
||||
$(am__depfiles_remade):
|
||||
@$(MKDIR_P) $(@D)
|
||||
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
|
||||
|
||||
am--depfiles: $(am__depfiles_remade)
|
||||
include ./$(DEPDIR)/zed.Po
|
||||
include ./$(DEPDIR)/zed_conf.Po
|
||||
include ./$(DEPDIR)/zed_disk_event.Po
|
||||
include ./$(DEPDIR)/zed_event.Po
|
||||
include ./$(DEPDIR)/zed_exec.Po
|
||||
include ./$(DEPDIR)/zed_file.Po
|
||||
include ./$(DEPDIR)/zed_log.Po
|
||||
include ./$(DEPDIR)/zed_strings.Po
|
||||
include agents/$(DEPDIR)/fmd_api.Po
|
||||
include agents/$(DEPDIR)/fmd_serd.Po
|
||||
include agents/$(DEPDIR)/zfs_agents.Po
|
||||
include agents/$(DEPDIR)/zfs_diagnosis.Po
|
||||
include agents/$(DEPDIR)/zfs_mod.Po
|
||||
include agents/$(DEPDIR)/zfs_retire.Po
|
||||
|
||||
.c.o:
|
||||
$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
||||
|
@ -969,10 +955,7 @@ cscopelist-am: $(am__tagged_files)
|
|||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
@ -1073,20 +1056,7 @@ clean-am: clean-generic clean-libtool clean-sbinPROGRAMS \
|
|||
mostlyclean-am
|
||||
|
||||
distclean: distclean-recursive
|
||||
-rm -f ./$(DEPDIR)/zed.Po
|
||||
-rm -f ./$(DEPDIR)/zed_conf.Po
|
||||
-rm -f ./$(DEPDIR)/zed_disk_event.Po
|
||||
-rm -f ./$(DEPDIR)/zed_event.Po
|
||||
-rm -f ./$(DEPDIR)/zed_exec.Po
|
||||
-rm -f ./$(DEPDIR)/zed_file.Po
|
||||
-rm -f ./$(DEPDIR)/zed_log.Po
|
||||
-rm -f ./$(DEPDIR)/zed_strings.Po
|
||||
-rm -f agents/$(DEPDIR)/fmd_api.Po
|
||||
-rm -f agents/$(DEPDIR)/fmd_serd.Po
|
||||
-rm -f agents/$(DEPDIR)/zfs_agents.Po
|
||||
-rm -f agents/$(DEPDIR)/zfs_diagnosis.Po
|
||||
-rm -f agents/$(DEPDIR)/zfs_mod.Po
|
||||
-rm -f agents/$(DEPDIR)/zfs_retire.Po
|
||||
-rm -rf ./$(DEPDIR) agents/$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
@ -1132,20 +1102,7 @@ install-ps-am:
|
|||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-recursive
|
||||
-rm -f ./$(DEPDIR)/zed.Po
|
||||
-rm -f ./$(DEPDIR)/zed_conf.Po
|
||||
-rm -f ./$(DEPDIR)/zed_disk_event.Po
|
||||
-rm -f ./$(DEPDIR)/zed_event.Po
|
||||
-rm -f ./$(DEPDIR)/zed_exec.Po
|
||||
-rm -f ./$(DEPDIR)/zed_file.Po
|
||||
-rm -f ./$(DEPDIR)/zed_log.Po
|
||||
-rm -f ./$(DEPDIR)/zed_strings.Po
|
||||
-rm -f agents/$(DEPDIR)/fmd_api.Po
|
||||
-rm -f agents/$(DEPDIR)/fmd_serd.Po
|
||||
-rm -f agents/$(DEPDIR)/zfs_agents.Po
|
||||
-rm -f agents/$(DEPDIR)/zfs_diagnosis.Po
|
||||
-rm -f agents/$(DEPDIR)/zfs_mod.Po
|
||||
-rm -f agents/$(DEPDIR)/zfs_retire.Po
|
||||
-rm -rf ./$(DEPDIR) agents/$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
|
@ -1166,20 +1123,20 @@ uninstall-am: uninstall-sbinPROGRAMS
|
|||
|
||||
.MAKE: $(am__recursive_targets) install-am install-strip
|
||||
|
||||
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
|
||||
am--depfiles check check-am clean clean-generic clean-libtool \
|
||||
clean-sbinPROGRAMS cscopelist-am ctags ctags-am distclean \
|
||||
distclean-compile distclean-generic distclean-libtool \
|
||||
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
||||
install install-am install-data install-data-am install-dvi \
|
||||
install-dvi-am install-exec install-exec-am install-html \
|
||||
install-html-am install-info install-info-am install-man \
|
||||
install-pdf install-pdf-am install-ps install-ps-am \
|
||||
install-sbinPROGRAMS install-strip installcheck \
|
||||
installcheck-am installdirs installdirs-am maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||
tags tags-am uninstall uninstall-am uninstall-sbinPROGRAMS
|
||||
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
|
||||
check-am clean clean-generic clean-libtool clean-sbinPROGRAMS \
|
||||
cscopelist-am ctags ctags-am distclean distclean-compile \
|
||||
distclean-generic distclean-libtool distclean-tags distdir dvi \
|
||||
dvi-am html html-am info info-am install install-am \
|
||||
install-data install-data-am install-dvi install-dvi-am \
|
||||
install-exec install-exec-am install-html install-html-am \
|
||||
install-info install-info-am install-man install-pdf \
|
||||
install-pdf-am install-ps install-ps-am install-sbinPROGRAMS \
|
||||
install-strip installcheck installcheck-am installdirs \
|
||||
installdirs-am maintainer-clean maintainer-clean-generic \
|
||||
mostlyclean mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
|
||||
uninstall-am uninstall-sbinPROGRAMS
|
||||
|
||||
.PRECIOUS: Makefile
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -290,15 +290,7 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
|||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
|
||||
am__maybe_remake_depfiles = depfiles
|
||||
am__depfiles_remade = ./$(DEPDIR)/zed.Po ./$(DEPDIR)/zed_conf.Po \
|
||||
./$(DEPDIR)/zed_disk_event.Po ./$(DEPDIR)/zed_event.Po \
|
||||
./$(DEPDIR)/zed_exec.Po ./$(DEPDIR)/zed_file.Po \
|
||||
./$(DEPDIR)/zed_log.Po ./$(DEPDIR)/zed_strings.Po \
|
||||
agents/$(DEPDIR)/fmd_api.Po agents/$(DEPDIR)/fmd_serd.Po \
|
||||
agents/$(DEPDIR)/zfs_agents.Po \
|
||||
agents/$(DEPDIR)/zfs_diagnosis.Po agents/$(DEPDIR)/zfs_mod.Po \
|
||||
agents/$(DEPDIR)/zfs_retire.Po
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
|
@ -340,7 +332,7 @@ am__recursive_targets = \
|
|||
$(RECURSIVE_CLEAN_TARGETS) \
|
||||
$(am__extra_recursive_targets)
|
||||
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
||||
distdir distdir-am
|
||||
distdir
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||
# Read a list of newline-separated strings from the standard input,
|
||||
# and print each of them once, without duplicates. Input order is
|
||||
|
@ -727,8 +719,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(top_srcdir)/config/Rules.am $(am__empty):
|
||||
|
||||
|
@ -819,26 +811,20 @@ mostlyclean-compile:
|
|||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zed.Po@am__quote@ # am--include-marker
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zed_conf.Po@am__quote@ # am--include-marker
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zed_disk_event.Po@am__quote@ # am--include-marker
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zed_event.Po@am__quote@ # am--include-marker
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zed_exec.Po@am__quote@ # am--include-marker
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zed_file.Po@am__quote@ # am--include-marker
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zed_log.Po@am__quote@ # am--include-marker
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zed_strings.Po@am__quote@ # am--include-marker
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@agents/$(DEPDIR)/fmd_api.Po@am__quote@ # am--include-marker
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@agents/$(DEPDIR)/fmd_serd.Po@am__quote@ # am--include-marker
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@agents/$(DEPDIR)/zfs_agents.Po@am__quote@ # am--include-marker
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@agents/$(DEPDIR)/zfs_diagnosis.Po@am__quote@ # am--include-marker
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@agents/$(DEPDIR)/zfs_mod.Po@am__quote@ # am--include-marker
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@agents/$(DEPDIR)/zfs_retire.Po@am__quote@ # am--include-marker
|
||||
|
||||
$(am__depfiles_remade):
|
||||
@$(MKDIR_P) $(@D)
|
||||
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
|
||||
|
||||
am--depfiles: $(am__depfiles_remade)
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zed.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zed_conf.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zed_disk_event.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zed_event.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zed_exec.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zed_file.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zed_log.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zed_strings.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@agents/$(DEPDIR)/fmd_api.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@agents/$(DEPDIR)/fmd_serd.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@agents/$(DEPDIR)/zfs_agents.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@agents/$(DEPDIR)/zfs_diagnosis.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@agents/$(DEPDIR)/zfs_mod.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@agents/$(DEPDIR)/zfs_retire.Po@am__quote@
|
||||
|
||||
.c.o:
|
||||
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
||||
|
@ -969,10 +955,7 @@ cscopelist-am: $(am__tagged_files)
|
|||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
@ -1073,20 +1056,7 @@ clean-am: clean-generic clean-libtool clean-sbinPROGRAMS \
|
|||
mostlyclean-am
|
||||
|
||||
distclean: distclean-recursive
|
||||
-rm -f ./$(DEPDIR)/zed.Po
|
||||
-rm -f ./$(DEPDIR)/zed_conf.Po
|
||||
-rm -f ./$(DEPDIR)/zed_disk_event.Po
|
||||
-rm -f ./$(DEPDIR)/zed_event.Po
|
||||
-rm -f ./$(DEPDIR)/zed_exec.Po
|
||||
-rm -f ./$(DEPDIR)/zed_file.Po
|
||||
-rm -f ./$(DEPDIR)/zed_log.Po
|
||||
-rm -f ./$(DEPDIR)/zed_strings.Po
|
||||
-rm -f agents/$(DEPDIR)/fmd_api.Po
|
||||
-rm -f agents/$(DEPDIR)/fmd_serd.Po
|
||||
-rm -f agents/$(DEPDIR)/zfs_agents.Po
|
||||
-rm -f agents/$(DEPDIR)/zfs_diagnosis.Po
|
||||
-rm -f agents/$(DEPDIR)/zfs_mod.Po
|
||||
-rm -f agents/$(DEPDIR)/zfs_retire.Po
|
||||
-rm -rf ./$(DEPDIR) agents/$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
@ -1132,20 +1102,7 @@ install-ps-am:
|
|||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-recursive
|
||||
-rm -f ./$(DEPDIR)/zed.Po
|
||||
-rm -f ./$(DEPDIR)/zed_conf.Po
|
||||
-rm -f ./$(DEPDIR)/zed_disk_event.Po
|
||||
-rm -f ./$(DEPDIR)/zed_event.Po
|
||||
-rm -f ./$(DEPDIR)/zed_exec.Po
|
||||
-rm -f ./$(DEPDIR)/zed_file.Po
|
||||
-rm -f ./$(DEPDIR)/zed_log.Po
|
||||
-rm -f ./$(DEPDIR)/zed_strings.Po
|
||||
-rm -f agents/$(DEPDIR)/fmd_api.Po
|
||||
-rm -f agents/$(DEPDIR)/fmd_serd.Po
|
||||
-rm -f agents/$(DEPDIR)/zfs_agents.Po
|
||||
-rm -f agents/$(DEPDIR)/zfs_diagnosis.Po
|
||||
-rm -f agents/$(DEPDIR)/zfs_mod.Po
|
||||
-rm -f agents/$(DEPDIR)/zfs_retire.Po
|
||||
-rm -rf ./$(DEPDIR) agents/$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
|
@ -1166,20 +1123,20 @@ uninstall-am: uninstall-sbinPROGRAMS
|
|||
|
||||
.MAKE: $(am__recursive_targets) install-am install-strip
|
||||
|
||||
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
|
||||
am--depfiles check check-am clean clean-generic clean-libtool \
|
||||
clean-sbinPROGRAMS cscopelist-am ctags ctags-am distclean \
|
||||
distclean-compile distclean-generic distclean-libtool \
|
||||
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
||||
install install-am install-data install-data-am install-dvi \
|
||||
install-dvi-am install-exec install-exec-am install-html \
|
||||
install-html-am install-info install-info-am install-man \
|
||||
install-pdf install-pdf-am install-ps install-ps-am \
|
||||
install-sbinPROGRAMS install-strip installcheck \
|
||||
installcheck-am installdirs installdirs-am maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||
tags tags-am uninstall uninstall-am uninstall-sbinPROGRAMS
|
||||
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
|
||||
check-am clean clean-generic clean-libtool clean-sbinPROGRAMS \
|
||||
cscopelist-am ctags ctags-am distclean distclean-compile \
|
||||
distclean-generic distclean-libtool distclean-tags distdir dvi \
|
||||
dvi-am html html-am info info-am install install-am \
|
||||
install-data install-data-am install-dvi install-dvi-am \
|
||||
install-exec install-exec-am install-html install-html-am \
|
||||
install-info install-info-am install-man install-pdf \
|
||||
install-pdf-am install-ps install-ps-am install-sbinPROGRAMS \
|
||||
install-strip installcheck installcheck-am installdirs \
|
||||
installdirs-am maintainer-clean maintainer-clean-generic \
|
||||
mostlyclean mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
|
||||
uninstall-am uninstall-sbinPROGRAMS
|
||||
|
||||
.PRECIOUS: Makefile
|
||||
|
||||
|
|
|
@ -8,9 +8,7 @@ agents/fmd_api.o: agents/fmd_api.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sysmacros.h \
|
||||
../../lib/libspl/include/sys/isa_defs.h \
|
||||
../../lib/libspl/include/sys/feature_tests.h \
|
||||
|
@ -19,11 +17,11 @@ agents/fmd_api.o: agents/fmd_api.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -35,22 +33,20 @@ agents/fmd_api.o: agents/fmd_api.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
../../lib/libspl/include/sys/stdtypes.h \
|
||||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -76,7 +72,6 @@ agents/fmd_api.o: agents/fmd_api.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -86,7 +81,6 @@ agents/fmd_api.o: agents/fmd_api.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -108,7 +102,6 @@ agents/fmd_api.o: agents/fmd_api.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
|
||||
../../lib/libspl/include/stdlib.h /usr/include/stdlib.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||
|
@ -118,13 +111,11 @@ agents/fmd_api.o: agents/fmd_api.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
|
||||
../../lib/libspl/include/stdio.h /usr/include/stdio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -172,12 +163,8 @@ agents/fmd_api.o: agents/fmd_api.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/sysmacros.h:
|
||||
|
||||
../../lib/libspl/include/sys/isa_defs.h:
|
||||
|
@ -194,7 +181,7 @@ agents/fmd_api.o: agents/fmd_api.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||
|
||||
|
@ -202,10 +189,10 @@ agents/fmd_api.o: agents/fmd_api.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -228,17 +215,13 @@ agents/fmd_api.o: agents/fmd_api.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -250,7 +233,7 @@ agents/fmd_api.o: agents/fmd_api.c /usr/include/stdc-predef.h \
|
|||
|
||||
../../lib/libspl/include/sys/va_list.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
../../lib/libspl/include/sys/stdtypes.h:
|
||||
|
||||
|
@ -260,9 +243,9 @@ agents/fmd_api.o: agents/fmd_api.c /usr/include/stdc-predef.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -318,8 +301,6 @@ agents/fmd_api.o: agents/fmd_api.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -344,8 +325,6 @@ agents/fmd_api.o: agents/fmd_api.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -402,8 +381,6 @@ agents/fmd_api.o: agents/fmd_api.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
../../lib/libspl/include/stdlib.h:
|
||||
|
||||
/usr/include/stdlib.h:
|
||||
|
@ -428,19 +405,15 @@ agents/fmd_api.o: agents/fmd_api.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/stdio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
|
|
@ -8,19 +8,15 @@ agents/fmd_serd.o: agents/fmd_serd.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
../../lib/libspl/include/stdio.h /usr/include/stdio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -45,8 +41,8 @@ agents/fmd_serd.o: agents/fmd_serd.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -58,11 +54,9 @@ agents/fmd_serd.o: agents/fmd_serd.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
|
@ -70,8 +64,8 @@ agents/fmd_serd.o: agents/fmd_serd.c /usr/include/stdc-predef.h \
|
|||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -97,7 +91,6 @@ agents/fmd_serd.o: agents/fmd_serd.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -107,7 +100,6 @@ agents/fmd_serd.o: agents/fmd_serd.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -133,9 +125,8 @@ agents/fmd_serd.o: agents/fmd_serd.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h /usr/include/regex.h \
|
||||
../../lib/libspl/include/umem.h ../../lib/libspl/include/string.h \
|
||||
/usr/include/string.h \
|
||||
/usr/include/regex.h ../../lib/libspl/include/umem.h \
|
||||
../../lib/libspl/include/string.h /usr/include/string.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/string_fortified.h agents/fmd_serd.h \
|
||||
agents/../zed_log.h /usr/include/syslog.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/syslog.h \
|
||||
|
@ -168,31 +159,23 @@ agents/fmd_serd.o: agents/fmd_serd.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -246,10 +229,10 @@ agents/fmd_serd.o: agents/fmd_serd.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -272,17 +255,13 @@ agents/fmd_serd.o: agents/fmd_serd.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -300,9 +279,9 @@ agents/fmd_serd.o: agents/fmd_serd.c /usr/include/stdc-predef.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -358,8 +337,6 @@ agents/fmd_serd.o: agents/fmd_serd.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -384,8 +361,6 @@ agents/fmd_serd.o: agents/fmd_serd.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -454,8 +429,6 @@ agents/fmd_api.h:
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
/usr/include/regex.h:
|
||||
|
||||
../../lib/libspl/include/umem.h:
|
||||
|
|
|
@ -9,9 +9,7 @@ agents/zfs_agents.o: agents/zfs_agents.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sysmacros.h \
|
||||
../../lib/libspl/include/sys/isa_defs.h \
|
||||
../../lib/libspl/include/sys/feature_tests.h \
|
||||
|
@ -20,11 +18,11 @@ agents/zfs_agents.o: agents/zfs_agents.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -36,22 +34,20 @@ agents/zfs_agents.o: agents/zfs_agents.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
../../lib/libspl/include/sys/stdtypes.h \
|
||||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -77,7 +73,6 @@ agents/zfs_agents.o: agents/zfs_agents.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -87,7 +82,6 @@ agents/zfs_agents.o: agents/zfs_agents.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -108,7 +102,6 @@ agents/zfs_agents.o: agents/zfs_agents.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
|
||||
../../lib/libspl/include/stdlib.h /usr/include/stdlib.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||
|
@ -118,13 +111,11 @@ agents/zfs_agents.o: agents/zfs_agents.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
|
||||
../../lib/libspl/include/stdio.h /usr/include/stdio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -145,7 +136,6 @@ agents/zfs_agents.o: agents/zfs_agents.c /usr/include/stdc-predef.h \
|
|||
../../include/sys/fm/protocol.h ../../lib/libspl/include/sys/processor.h \
|
||||
../../include/sys/fm/fs/zfs.h /usr/include/pthread.h \
|
||||
/usr/include/sched.h /usr/include/x86_64-linux-gnu/bits/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp.h agents/zfs_agents.h \
|
||||
agents/fmd_api.h ../../lib/libspl/include/umem.h agents/../zed_log.h \
|
||||
|
@ -181,12 +171,8 @@ agents/zfs_agents.o: agents/zfs_agents.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/sysmacros.h:
|
||||
|
||||
../../lib/libspl/include/sys/isa_defs.h:
|
||||
|
@ -203,7 +189,7 @@ agents/zfs_agents.o: agents/zfs_agents.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||
|
||||
|
@ -211,10 +197,10 @@ agents/zfs_agents.o: agents/zfs_agents.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -237,17 +223,13 @@ agents/zfs_agents.o: agents/zfs_agents.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -259,7 +241,7 @@ agents/zfs_agents.o: agents/zfs_agents.c /usr/include/stdc-predef.h \
|
|||
|
||||
../../lib/libspl/include/sys/va_list.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
../../lib/libspl/include/sys/stdtypes.h:
|
||||
|
||||
|
@ -269,9 +251,9 @@ agents/zfs_agents.o: agents/zfs_agents.c /usr/include/stdc-predef.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -327,8 +309,6 @@ agents/zfs_agents.o: agents/zfs_agents.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -353,8 +333,6 @@ agents/zfs_agents.o: agents/zfs_agents.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -405,8 +383,6 @@ agents/zfs_agents.o: agents/zfs_agents.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
../../lib/libspl/include/stdlib.h:
|
||||
|
||||
/usr/include/stdlib.h:
|
||||
|
@ -431,19 +407,15 @@ agents/zfs_agents.o: agents/zfs_agents.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/stdio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -511,8 +483,6 @@ agents/zfs_agents.o: agents/zfs_agents.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp.h:
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
agents/zfs_diagnosis.o: agents/zfs_diagnosis.c /usr/include/stdc-predef.h \
|
||||
../../zfs_config.h /usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
../../zfs_config.h /usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
../../lib/libspl/include/string.h /usr/include/string.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||
|
@ -16,9 +16,7 @@ agents/zfs_diagnosis.o: agents/zfs_diagnosis.c /usr/include/stdc-predef.h \
|
|||
../../lib/libspl/include/sys/sysmacros.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/sysmacros.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sysmacros.h \
|
||||
../../lib/libspl/include/sys/isa_defs.h \
|
||||
../../lib/libspl/include/sys/feature_tests.h \
|
||||
|
@ -29,8 +27,8 @@ agents/zfs_diagnosis.o: agents/zfs_diagnosis.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -42,21 +40,19 @@ agents/zfs_diagnosis.o: agents/zfs_diagnosis.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
../../lib/libspl/include/sys/stdtypes.h \
|
||||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -82,7 +78,6 @@ agents/zfs_diagnosis.o: agents/zfs_diagnosis.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -92,7 +87,6 @@ agents/zfs_diagnosis.o: agents/zfs_diagnosis.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -102,13 +96,11 @@ agents/zfs_diagnosis.o: agents/zfs_diagnosis.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ioctl-types.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ttydefaults.h \
|
||||
../../lib/libspl/include/stdio.h /usr/include/stdio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -132,21 +124,20 @@ agents/zfs_diagnosis.o: agents/zfs_diagnosis.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h /usr/include/regex.h \
|
||||
../../lib/libspl/include/sys/mnttab.h /usr/include/mntent.h \
|
||||
/usr/include/paths.h ../../lib/libspl/include/sys/varargs.h \
|
||||
../../include/sys/fs/zfs.h ../../include/sys/zio_priority.h \
|
||||
../../include/sys/avl.h ../../include/sys/avl_impl.h \
|
||||
../../lib/libspl/include/ucred.h ../../include/libzfs_core.h \
|
||||
../../include/sys/fm/protocol.h ../../lib/libspl/include/sys/processor.h \
|
||||
../../include/sys/fm/fs/zfs.h agents/zfs_agents.h agents/fmd_api.h \
|
||||
../../lib/libspl/include/umem.h
|
||||
/usr/include/regex.h ../../lib/libspl/include/sys/mnttab.h \
|
||||
/usr/include/mntent.h /usr/include/paths.h \
|
||||
../../lib/libspl/include/sys/varargs.h ../../include/sys/fs/zfs.h \
|
||||
../../include/sys/zio_priority.h ../../include/sys/avl.h \
|
||||
../../include/sys/avl_impl.h ../../lib/libspl/include/ucred.h \
|
||||
../../include/libzfs_core.h ../../include/sys/fm/protocol.h \
|
||||
../../lib/libspl/include/sys/processor.h ../../include/sys/fm/fs/zfs.h \
|
||||
agents/zfs_agents.h agents/fmd_api.h ../../lib/libspl/include/umem.h
|
||||
|
||||
/usr/include/stdc-predef.h:
|
||||
|
||||
../../zfs_config.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
../../lib/libspl/include/string.h:
|
||||
|
||||
|
@ -186,12 +177,8 @@ agents/zfs_diagnosis.o: agents/zfs_diagnosis.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/sysmacros.h:
|
||||
|
||||
../../lib/libspl/include/sys/isa_defs.h:
|
||||
|
@ -214,10 +201,10 @@ agents/zfs_diagnosis.o: agents/zfs_diagnosis.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -240,17 +227,13 @@ agents/zfs_diagnosis.o: agents/zfs_diagnosis.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -260,7 +243,7 @@ agents/zfs_diagnosis.o: agents/zfs_diagnosis.c /usr/include/stdc-predef.h \
|
|||
|
||||
../../lib/libspl/include/sys/va_list.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
../../lib/libspl/include/sys/stdtypes.h:
|
||||
|
||||
|
@ -270,9 +253,9 @@ agents/zfs_diagnosis.o: agents/zfs_diagnosis.c /usr/include/stdc-predef.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -328,8 +311,6 @@ agents/zfs_diagnosis.o: agents/zfs_diagnosis.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -354,8 +335,6 @@ agents/zfs_diagnosis.o: agents/zfs_diagnosis.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -378,19 +357,15 @@ agents/zfs_diagnosis.o: agents/zfs_diagnosis.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/stdio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -458,8 +433,6 @@ agents/zfs_diagnosis.o: agents/zfs_diagnosis.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
/usr/include/regex.h:
|
||||
|
||||
../../lib/libspl/include/sys/mnttab.h:
|
||||
|
|
|
@ -6,11 +6,11 @@ agents/zfs_mod.o: agents/zfs_mod.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||
../../lib/libspl/include/devid.h ../../lib/libspl/include/sys/types.h \
|
||||
|
@ -24,10 +24,8 @@ agents/zfs_mod.o: agents/zfs_mod.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||
|
@ -38,22 +36,20 @@ agents/zfs_mod.o: agents/zfs_mod.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
../../lib/libspl/include/sys/stdtypes.h \
|
||||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -79,7 +75,6 @@ agents/zfs_mod.o: agents/zfs_mod.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -89,7 +84,6 @@ agents/zfs_mod.o: agents/zfs_mod.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -113,7 +107,6 @@ agents/zfs_mod.o: agents/zfs_mod.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
|
||||
../../lib/libspl/include/stdlib.h /usr/include/stdlib.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||
|
@ -123,13 +116,11 @@ agents/zfs_mod.o: agents/zfs_mod.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
|
||||
../../lib/libspl/include/stdio.h /usr/include/stdio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -155,7 +146,6 @@ agents/zfs_mod.o: agents/zfs_mod.c /usr/include/stdc-predef.h \
|
|||
../../include/thread_pool.h ../../lib/libspl/include/thread.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp.h agents/zfs_agents.h \
|
||||
agents/../zed_log.h
|
||||
|
@ -180,15 +170,17 @@ agents/zfs_mod.o: agents/zfs_mod.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
/usr/include/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:
|
||||
|
||||
|
@ -218,16 +210,10 @@ agents/zfs_mod.o: agents/zfs_mod.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||
|
||||
/usr/include/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h:
|
||||
|
@ -248,17 +234,13 @@ agents/zfs_mod.o: agents/zfs_mod.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -270,7 +252,7 @@ agents/zfs_mod.o: agents/zfs_mod.c /usr/include/stdc-predef.h \
|
|||
|
||||
../../lib/libspl/include/sys/va_list.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
../../lib/libspl/include/sys/stdtypes.h:
|
||||
|
||||
|
@ -280,9 +262,9 @@ agents/zfs_mod.o: agents/zfs_mod.c /usr/include/stdc-predef.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -338,8 +320,6 @@ agents/zfs_mod.o: agents/zfs_mod.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -364,8 +344,6 @@ agents/zfs_mod.o: agents/zfs_mod.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -430,8 +408,6 @@ agents/zfs_mod.o: agents/zfs_mod.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
../../lib/libspl/include/stdlib.h:
|
||||
|
||||
/usr/include/stdlib.h:
|
||||
|
@ -456,19 +432,15 @@ agents/zfs_mod.o: agents/zfs_mod.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/stdio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -546,8 +518,6 @@ agents/zfs_mod.o: agents/zfs_mod.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp.h:
|
||||
|
|
|
@ -6,20 +6,16 @@ agents/zfs_retire.o: agents/zfs_retire.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
|
||||
|
@ -33,7 +29,9 @@ agents/zfs_retire.o: agents/zfs_retire.c /usr/include/stdc-predef.h \
|
|||
../../lib/libspl/include/sys/feature_tests.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -43,22 +41,20 @@ agents/zfs_retire.o: agents/zfs_retire.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
../../lib/libspl/include/sys/stdtypes.h \
|
||||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -84,7 +80,6 @@ agents/zfs_retire.o: agents/zfs_retire.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -94,7 +89,6 @@ agents/zfs_retire.o: agents/zfs_retire.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -110,7 +104,6 @@ agents/zfs_retire.o: agents/zfs_retire.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
|
||||
../../lib/libspl/include/stdlib.h /usr/include/stdlib.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||
|
@ -120,13 +113,11 @@ agents/zfs_retire.o: agents/zfs_retire.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdlib.h \
|
||||
../../lib/libspl/include/stdio.h /usr/include/stdio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -165,18 +156,14 @@ agents/zfs_retire.o: agents/zfs_retire.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
|
||||
|
@ -189,10 +176,6 @@ agents/zfs_retire.o: agents/zfs_retire.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||
|
@ -221,8 +204,12 @@ agents/zfs_retire.o: agents/zfs_retire.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -241,17 +228,13 @@ agents/zfs_retire.o: agents/zfs_retire.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -263,7 +246,7 @@ agents/zfs_retire.o: agents/zfs_retire.c /usr/include/stdc-predef.h \
|
|||
|
||||
../../lib/libspl/include/sys/va_list.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
../../lib/libspl/include/sys/stdtypes.h:
|
||||
|
||||
|
@ -273,9 +256,9 @@ agents/zfs_retire.o: agents/zfs_retire.c /usr/include/stdc-predef.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -331,8 +314,6 @@ agents/zfs_retire.o: agents/zfs_retire.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -357,8 +338,6 @@ agents/zfs_retire.o: agents/zfs_retire.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -401,8 +380,6 @@ agents/zfs_retire.o: agents/zfs_retire.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
../../lib/libspl/include/stdlib.h:
|
||||
|
||||
/usr/include/stdlib.h:
|
||||
|
@ -427,19 +404,15 @@ agents/zfs_retire.o: agents/zfs_retire.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/stdio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,7 +1,7 @@
|
|||
#! /bin/bash
|
||||
|
||||
# zed - temporary wrapper script for .libs/zed
|
||||
# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-14
|
||||
# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-2
|
||||
#
|
||||
# The zed program cannot be directly executed until all the libtool
|
||||
# libraries that it depends on are installed.
|
||||
|
@ -90,7 +90,7 @@ func_parse_lt_options ()
|
|||
|
||||
# Print the debug banner immediately:
|
||||
if test -n "$lt_option_debug"; then
|
||||
echo "zed:zed:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-14" 1>&2
|
||||
echo "zed:zed:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-2" 1>&2
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# cmd/zed/zed.d/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -309,7 +309,7 @@ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
|||
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/Rules.am \
|
||||
README
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.16
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.15
|
||||
ALIEN = alien
|
||||
ALIEN_VERSION = 8.95
|
||||
AMTAR = $${TAR-tar}
|
||||
|
@ -321,7 +321,7 @@ ASAN_LDFLAGS =
|
|||
ASAN_ZFS = _without_asan
|
||||
AUTOCONF = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoconf
|
||||
AUTOHEADER = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoheader
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.16
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.15
|
||||
AWK = gawk
|
||||
CC = gcc
|
||||
CCAS = gcc
|
||||
|
@ -359,8 +359,8 @@ DEPDIR = .deps
|
|||
DLLTOOL = false
|
||||
DPKG = dpkg
|
||||
DPKGBUILD = dpkg-buildpackage
|
||||
DPKGBUILD_VERSION = 1.19.7.
|
||||
DPKG_VERSION = 1.19.7
|
||||
DPKGBUILD_VERSION = 1.19.0.5
|
||||
DPKG_VERSION = 1.19.0.5
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
|
@ -442,20 +442,20 @@ PACKAGE_TARNAME = zfs
|
|||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 0.8.4
|
||||
PATH_SEPARATOR = :
|
||||
PKG_CONFIG = /usr/bin/pkg-config
|
||||
PKG_CONFIG =
|
||||
PKG_CONFIG_LIBDIR =
|
||||
PKG_CONFIG_PATH =
|
||||
POSUB = po
|
||||
PYTHON = /usr/bin/python3.8
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.8
|
||||
PYTHON = /usr/bin/python3.6
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.6m
|
||||
PYTHON_EXEC_PREFIX = ${exec_prefix}
|
||||
PYTHON_EXTRA_LDFLAGS = -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions
|
||||
PYTHON_EXTRA_LIBS = -lcrypt -lpthread -ldl -lutil -lm -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.8
|
||||
PYTHON_EXTRA_LIBS = -lpthread -ldl -lutil -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.6m
|
||||
PYTHON_PLATFORM = linux
|
||||
PYTHON_PREFIX = ${prefix}
|
||||
PYTHON_SITE_PKG = /usr/lib/python3/dist-packages
|
||||
PYTHON_VERSION = 3.8
|
||||
PYTHON_VERSION = 3.6
|
||||
PYZFS_ENABLED = yes
|
||||
QAT_OBJ =
|
||||
QAT_SRC =
|
||||
|
@ -465,13 +465,13 @@ RELEASE = 1
|
|||
RM = rm -f
|
||||
RPM = rpm
|
||||
RPMBUILD = rpmbuild
|
||||
RPMBUILD_VERSION = 4.14.2.1
|
||||
RPMBUILD_VERSION = 4.14.1
|
||||
RPM_DEFINE_COMMON = --define "$(DEBUG_ZFS) 1" --define "$(DEBUG_KMEM_ZFS) 1" --define "$(DEBUG_KMEM_TRACKING_ZFS) 1" --define "$(DEBUGINFO_ZFS) 1" --define "$(ASAN_ZFS) 1"
|
||||
RPM_DEFINE_DKMS =
|
||||
RPM_DEFINE_KMOD = --define "kernels $(LINUX_VERSION)" --define "ksrc $(LINUX)" --define "kobj $(LINUX_OBJ)" --define "_wrong_version_format_terminate_build 0"
|
||||
RPM_DEFINE_UTIL = --define "_initconfdir $(DEFAULT_INITCONF_DIR)" $(DEFINE_INITRAMFS) $(DEFINE_SYSTEMD) $(DEFINE_PYZFS) $(DEFINE_PYTHON_VERSION) $(DEFINE_PYTHON_PKG_VERSION) --define "_lib $(MULTIARCH_LIBDIR)"
|
||||
RPM_SPEC_DIR = rpm/generic
|
||||
RPM_VERSION = 4.14.2.1
|
||||
RPM_VERSION = 4.14.1
|
||||
SED = /bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
|
@ -555,8 +555,8 @@ pkgpythondir = ${pythondir}/zfs
|
|||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
pyexecdir = ${exec_prefix}/lib/python3.8/site-packages
|
||||
pythondir = ${prefix}/lib/python3.8/site-packages
|
||||
pyexecdir = ${exec_prefix}/lib/python3.6/site-packages
|
||||
pythondir = ${prefix}/lib/python3.6/site-packages
|
||||
pythonsitedir = /usr/lib/python3/dist-packages
|
||||
runstatedir = ${localstatedir}/run
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
|
@ -647,8 +647,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(top_srcdir)/config/Rules.am $(am__empty):
|
||||
|
||||
|
@ -764,10 +764,7 @@ ctags CTAGS:
|
|||
cscope cscopelist:
|
||||
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -647,8 +647,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(top_srcdir)/config/Rules.am $(am__empty):
|
||||
|
||||
|
@ -764,10 +764,7 @@ ctags CTAGS:
|
|||
cscope cscopelist:
|
||||
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -5,24 +5,20 @@ zfs_iter.o: zfs_iter.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
../../lib/libspl/include/locale.h /usr/include/locale.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/locale.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||
/usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
|
||||
|
@ -34,7 +30,9 @@ zfs_iter.o: zfs_iter.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../lib/libspl/include/sys/feature_tests.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -44,22 +42,20 @@ zfs_iter.o: zfs_iter.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
../../lib/libspl/include/sys/stdtypes.h \
|
||||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -85,7 +81,6 @@ zfs_iter.o: zfs_iter.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -95,7 +90,6 @@ zfs_iter.o: zfs_iter.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -106,13 +100,11 @@ zfs_iter.o: zfs_iter.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/sys/ttydefaults.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/time.h ../../include/libuutil.h \
|
||||
../../lib/libspl/include/stdio.h /usr/include/stdio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -135,13 +127,12 @@ zfs_iter.o: zfs_iter.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h /usr/include/regex.h \
|
||||
../../lib/libspl/include/sys/mnttab.h /usr/include/mntent.h \
|
||||
/usr/include/paths.h ../../lib/libspl/include/sys/varargs.h \
|
||||
../../include/sys/fs/zfs.h ../../include/sys/zio_priority.h \
|
||||
../../include/sys/avl.h ../../include/sys/avl_impl.h \
|
||||
../../lib/libspl/include/ucred.h ../../include/libzfs_core.h zfs_util.h \
|
||||
zfs_iter.h
|
||||
/usr/include/regex.h ../../lib/libspl/include/sys/mnttab.h \
|
||||
/usr/include/mntent.h /usr/include/paths.h \
|
||||
../../lib/libspl/include/sys/varargs.h ../../include/sys/fs/zfs.h \
|
||||
../../include/sys/zio_priority.h ../../include/sys/avl.h \
|
||||
../../include/sys/avl_impl.h ../../lib/libspl/include/ucred.h \
|
||||
../../include/libzfs_core.h zfs_util.h zfs_iter.h
|
||||
|
||||
/usr/include/stdc-predef.h:
|
||||
|
||||
|
@ -161,7 +152,7 @@ zfs_iter.o: zfs_iter.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
../../lib/libspl/include/locale.h:
|
||||
|
||||
|
@ -179,12 +170,8 @@ zfs_iter.o: zfs_iter.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
|
||||
|
@ -197,10 +184,6 @@ zfs_iter.o: zfs_iter.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||
|
@ -227,8 +210,12 @@ zfs_iter.o: zfs_iter.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -247,17 +234,13 @@ zfs_iter.o: zfs_iter.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -269,7 +252,7 @@ zfs_iter.o: zfs_iter.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
../../lib/libspl/include/sys/va_list.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
../../lib/libspl/include/sys/stdtypes.h:
|
||||
|
||||
|
@ -279,9 +262,9 @@ zfs_iter.o: zfs_iter.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -337,8 +320,6 @@ zfs_iter.o: zfs_iter.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -363,8 +344,6 @@ zfs_iter.o: zfs_iter.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -391,19 +370,15 @@ zfs_iter.o: zfs_iter.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/stdio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -467,8 +442,6 @@ zfs_iter.o: zfs_iter.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
/usr/include/regex.h:
|
||||
|
||||
../../lib/libspl/include/sys/mnttab.h:
|
||||
|
|
|
@ -7,19 +7,15 @@ zfs_main.o: zfs_main.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
../../lib/libspl/include/stdio.h /usr/include/stdio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -44,8 +40,8 @@ zfs_main.o: zfs_main.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -57,11 +53,9 @@ zfs_main.o: zfs_main.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
|
@ -69,8 +63,8 @@ zfs_main.o: zfs_main.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -96,7 +90,6 @@ zfs_main.o: zfs_main.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -106,7 +99,6 @@ zfs_main.o: zfs_main.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -121,8 +113,7 @@ zfs_main.o: zfs_main.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h /usr/include/getopt.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_ext.h \
|
||||
/usr/include/getopt.h /usr/include/x86_64-linux-gnu/bits/getopt_ext.h \
|
||||
../../lib/libspl/include/libgen.h /usr/include/libgen.h \
|
||||
/usr/include/libintl.h ../../lib/libspl/include/locale.h \
|
||||
/usr/include/locale.h /usr/include/x86_64-linux-gnu/bits/locale.h \
|
||||
|
@ -153,8 +144,10 @@ zfs_main.o: zfs_main.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../lib/libspl/include/string.h /usr/include/string.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||
../../lib/libspl/include/sys/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/stat.h ../../include/sys/fs/zfs.h \
|
||||
../../include/sys/zio_priority.h \
|
||||
../../lib/libspl/include/sys/systeminfo.h \
|
||||
../../include/sys/zfs_project.h /usr/include/linux/fs.h \
|
||||
/usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \
|
||||
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
|
||||
|
@ -162,33 +155,22 @@ zfs_main.o: zfs_main.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/statx-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \
|
||||
../../include/sys/fs/zfs.h ../../include/sys/zio_priority.h \
|
||||
../../lib/libspl/include/sys/systeminfo.h \
|
||||
../../include/sys/zfs_project.h /usr/include/linux/fs.h \
|
||||
/usr/include/linux/fscrypt.h /usr/include/linux/mount.h \
|
||||
../../include/libzfs.h ../../lib/libspl/include/sys/varargs.h \
|
||||
../../include/sys/avl.h ../../include/sys/avl_impl.h \
|
||||
../../lib/libspl/include/ucred.h ../../include/libzfs_core.h \
|
||||
../../include/zfs_prop.h ../../include/zfs_deleg.h \
|
||||
../../include/libzutil.h zfs_iter.h zfs_util.h \
|
||||
/usr/include/asm-generic/posix_types.h ../../include/libzfs.h \
|
||||
../../lib/libspl/include/sys/varargs.h ../../include/sys/avl.h \
|
||||
../../include/sys/avl_impl.h ../../lib/libspl/include/ucred.h \
|
||||
../../include/libzfs_core.h ../../include/zfs_prop.h \
|
||||
../../include/zfs_deleg.h ../../include/libzutil.h zfs_iter.h zfs_util.h \
|
||||
../../include/zfs_comutil.h ../../include/libzfs_impl.h \
|
||||
../../include/sys/spa.h ../../include/sys/zfs_context.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp.h /usr/include/setjmp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp2.h \
|
||||
../../lib/libspl/include/umem.h ../../lib/libspl/include/atomic.h \
|
||||
/usr/include/dirent.h /usr/include/x86_64-linux-gnu/bits/dirent.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/mman.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-linux.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-shared.h \
|
||||
../../include/sys/note.h ../../lib/libspl/include/sys/cred.h \
|
||||
|
@ -253,31 +235,23 @@ zfs_main.o: zfs_main.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -331,10 +305,10 @@ zfs_main.o: zfs_main.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -357,17 +331,13 @@ zfs_main.o: zfs_main.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -385,9 +355,9 @@ zfs_main.o: zfs_main.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -443,8 +413,6 @@ zfs_main.o: zfs_main.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -469,8 +437,6 @@ zfs_main.o: zfs_main.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -511,8 +477,6 @@ zfs_main.o: zfs_main.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
/usr/include/getopt.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_ext.h:
|
||||
|
@ -611,9 +575,15 @@ zfs_main.o: zfs_main.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/sys/stat.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/statx.h:
|
||||
../../include/sys/fs/zfs.h:
|
||||
|
||||
/usr/include/linux/stat.h:
|
||||
../../include/sys/zio_priority.h:
|
||||
|
||||
../../lib/libspl/include/sys/systeminfo.h:
|
||||
|
||||
../../include/sys/zfs_project.h:
|
||||
|
||||
/usr/include/linux/fs.h:
|
||||
|
||||
/usr/include/linux/types.h:
|
||||
|
||||
|
@ -637,26 +607,6 @@ zfs_main.o: zfs_main.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/asm-generic/posix_types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/statx-generic.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h:
|
||||
|
||||
../../include/sys/fs/zfs.h:
|
||||
|
||||
../../include/sys/zio_priority.h:
|
||||
|
||||
../../lib/libspl/include/sys/systeminfo.h:
|
||||
|
||||
../../include/sys/zfs_project.h:
|
||||
|
||||
/usr/include/linux/fs.h:
|
||||
|
||||
/usr/include/linux/fscrypt.h:
|
||||
|
||||
/usr/include/linux/mount.h:
|
||||
|
||||
../../include/libzfs.h:
|
||||
|
||||
../../lib/libspl/include/sys/varargs.h:
|
||||
|
@ -693,8 +643,6 @@ zfs_util.h:
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp.h:
|
||||
|
@ -711,14 +659,10 @@ zfs_util.h:
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/mman.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-linux.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-shared.h:
|
||||
|
|
|
@ -8,24 +8,19 @@ zfs_project.o: zfs_project.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h /usr/include/getopt.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/getopt.h /usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_ext.h \
|
||||
../../lib/libspl/include/stdio.h /usr/include/stdio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -50,8 +45,8 @@ zfs_project.o: zfs_project.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -63,11 +58,9 @@ zfs_project.o: zfs_project.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
|
@ -75,8 +68,8 @@ zfs_project.o: zfs_project.c /usr/include/stdc-predef.h \
|
|||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -102,7 +95,6 @@ zfs_project.o: zfs_project.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -111,7 +103,6 @@ zfs_project.o: zfs_project.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/confname.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -129,8 +120,7 @@ zfs_project.o: zfs_project.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
|
||||
/usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/fcntl2.h /usr/include/dirent.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h /usr/include/libintl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent.h /usr/include/libintl.h \
|
||||
../../lib/libspl/include/locale.h /usr/include/locale.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time.h \
|
||||
|
@ -141,18 +131,6 @@ zfs_project.o: zfs_project.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/sys/time.h \
|
||||
../../lib/libspl/include/sys/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/stat.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \
|
||||
/usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \
|
||||
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
|
||||
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/statx-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \
|
||||
../../lib/libspl/include/sys/mount.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/mount.h \
|
||||
../../lib/libspl/include/assert.h /usr/include/assert.h \
|
||||
|
@ -160,8 +138,15 @@ zfs_project.o: zfs_project.c /usr/include/stdc-predef.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||
../../lib/libspl/include/sys/list.h \
|
||||
../../lib/libspl/include/sys/list_impl.h ../../include/sys/zfs_project.h \
|
||||
/usr/include/linux/fs.h /usr/include/linux/fscrypt.h \
|
||||
/usr/include/linux/mount.h zfs_util.h ../../include/libzfs.h \
|
||||
/usr/include/linux/fs.h /usr/include/linux/types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/types.h \
|
||||
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
|
||||
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h zfs_util.h ../../include/libzfs.h \
|
||||
../../include/libnvpair.h ../../include/sys/nvpair.h \
|
||||
../../lib/libspl/include/sys/errno.h /usr/include/regex.h \
|
||||
../../lib/libspl/include/sys/mnttab.h /usr/include/mntent.h \
|
||||
|
@ -199,8 +184,6 @@ zfs_project.o: zfs_project.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
/usr/include/getopt.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h:
|
||||
|
@ -213,31 +196,23 @@ zfs_project.o: zfs_project.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -291,10 +266,10 @@ zfs_project.o: zfs_project.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -317,17 +292,13 @@ zfs_project.o: zfs_project.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -345,9 +316,9 @@ zfs_project.o: zfs_project.c /usr/include/stdc-predef.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -403,8 +374,6 @@ zfs_project.o: zfs_project.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -427,8 +396,6 @@ zfs_project.o: zfs_project.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -477,8 +444,6 @@ zfs_project.o: zfs_project.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h:
|
||||
|
||||
/usr/include/libintl.h:
|
||||
|
||||
../../lib/libspl/include/locale.h:
|
||||
|
@ -505,38 +470,6 @@ zfs_project.o: zfs_project.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/sys/stat.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/statx.h:
|
||||
|
||||
/usr/include/linux/stat.h:
|
||||
|
||||
/usr/include/linux/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/types.h:
|
||||
|
||||
/usr/include/asm-generic/types.h:
|
||||
|
||||
/usr/include/asm-generic/int-ll64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h:
|
||||
|
||||
/usr/include/asm-generic/bitsperlong.h:
|
||||
|
||||
/usr/include/linux/posix_types.h:
|
||||
|
||||
/usr/include/linux/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h:
|
||||
|
||||
/usr/include/asm-generic/posix_types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/statx-generic.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h:
|
||||
|
||||
../../lib/libspl/include/sys/mount.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/mount.h:
|
||||
|
@ -559,9 +492,27 @@ zfs_project.o: zfs_project.c /usr/include/stdc-predef.h \
|
|||
|
||||
/usr/include/linux/fs.h:
|
||||
|
||||
/usr/include/linux/fscrypt.h:
|
||||
/usr/include/linux/types.h:
|
||||
|
||||
/usr/include/linux/mount.h:
|
||||
/usr/include/x86_64-linux-gnu/asm/types.h:
|
||||
|
||||
/usr/include/asm-generic/types.h:
|
||||
|
||||
/usr/include/asm-generic/int-ll64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h:
|
||||
|
||||
/usr/include/asm-generic/bitsperlong.h:
|
||||
|
||||
/usr/include/linux/posix_types.h:
|
||||
|
||||
/usr/include/linux/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h:
|
||||
|
||||
/usr/include/asm-generic/posix_types.h:
|
||||
|
||||
zfs_util.h:
|
||||
|
||||
|
|
Binary file not shown.
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# cmd/zfs/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -280,9 +280,7 @@ am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
|
|||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
|
||||
am__maybe_remake_depfiles = depfiles
|
||||
am__depfiles_remade = ./$(DEPDIR)/zfs_iter.Po ./$(DEPDIR)/zfs_main.Po \
|
||||
./$(DEPDIR)/zfs_project.Po
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
|
@ -331,7 +329,7 @@ CTAGS = ctags
|
|||
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/Rules.am \
|
||||
$(top_srcdir)/config/depcomp
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.16
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.15
|
||||
ALIEN = alien
|
||||
ALIEN_VERSION = 8.95
|
||||
AMTAR = $${TAR-tar}
|
||||
|
@ -343,7 +341,7 @@ ASAN_LDFLAGS =
|
|||
ASAN_ZFS = _without_asan
|
||||
AUTOCONF = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoconf
|
||||
AUTOHEADER = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoheader
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.16
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.15
|
||||
AWK = gawk
|
||||
CC = gcc
|
||||
CCAS = gcc
|
||||
|
@ -381,8 +379,8 @@ DEPDIR = .deps
|
|||
DLLTOOL = false
|
||||
DPKG = dpkg
|
||||
DPKGBUILD = dpkg-buildpackage
|
||||
DPKGBUILD_VERSION = 1.19.7.
|
||||
DPKG_VERSION = 1.19.7
|
||||
DPKGBUILD_VERSION = 1.19.0.5
|
||||
DPKG_VERSION = 1.19.0.5
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
|
@ -464,20 +462,20 @@ PACKAGE_TARNAME = zfs
|
|||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 0.8.4
|
||||
PATH_SEPARATOR = :
|
||||
PKG_CONFIG = /usr/bin/pkg-config
|
||||
PKG_CONFIG =
|
||||
PKG_CONFIG_LIBDIR =
|
||||
PKG_CONFIG_PATH =
|
||||
POSUB = po
|
||||
PYTHON = /usr/bin/python3.8
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.8
|
||||
PYTHON = /usr/bin/python3.6
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.6m
|
||||
PYTHON_EXEC_PREFIX = ${exec_prefix}
|
||||
PYTHON_EXTRA_LDFLAGS = -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions
|
||||
PYTHON_EXTRA_LIBS = -lcrypt -lpthread -ldl -lutil -lm -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.8
|
||||
PYTHON_EXTRA_LIBS = -lpthread -ldl -lutil -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.6m
|
||||
PYTHON_PLATFORM = linux
|
||||
PYTHON_PREFIX = ${prefix}
|
||||
PYTHON_SITE_PKG = /usr/lib/python3/dist-packages
|
||||
PYTHON_VERSION = 3.8
|
||||
PYTHON_VERSION = 3.6
|
||||
PYZFS_ENABLED = yes
|
||||
QAT_OBJ =
|
||||
QAT_SRC =
|
||||
|
@ -487,13 +485,13 @@ RELEASE = 1
|
|||
RM = rm -f
|
||||
RPM = rpm
|
||||
RPMBUILD = rpmbuild
|
||||
RPMBUILD_VERSION = 4.14.2.1
|
||||
RPMBUILD_VERSION = 4.14.1
|
||||
RPM_DEFINE_COMMON = --define "$(DEBUG_ZFS) 1" --define "$(DEBUG_KMEM_ZFS) 1" --define "$(DEBUG_KMEM_TRACKING_ZFS) 1" --define "$(DEBUGINFO_ZFS) 1" --define "$(ASAN_ZFS) 1"
|
||||
RPM_DEFINE_DKMS =
|
||||
RPM_DEFINE_KMOD = --define "kernels $(LINUX_VERSION)" --define "ksrc $(LINUX)" --define "kobj $(LINUX_OBJ)" --define "_wrong_version_format_terminate_build 0"
|
||||
RPM_DEFINE_UTIL = --define "_initconfdir $(DEFAULT_INITCONF_DIR)" $(DEFINE_INITRAMFS) $(DEFINE_SYSTEMD) $(DEFINE_PYZFS) $(DEFINE_PYTHON_VERSION) $(DEFINE_PYTHON_PKG_VERSION) --define "_lib $(MULTIARCH_LIBDIR)"
|
||||
RPM_SPEC_DIR = rpm/generic
|
||||
RPM_VERSION = 4.14.2.1
|
||||
RPM_VERSION = 4.14.1
|
||||
SED = /bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
|
@ -577,8 +575,8 @@ pkgpythondir = ${pythondir}/zfs
|
|||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
pyexecdir = ${exec_prefix}/lib/python3.8/site-packages
|
||||
pythondir = ${prefix}/lib/python3.8/site-packages
|
||||
pyexecdir = ${exec_prefix}/lib/python3.6/site-packages
|
||||
pythondir = ${prefix}/lib/python3.6/site-packages
|
||||
pythonsitedir = /usr/lib/python3/dist-packages
|
||||
runstatedir = ${localstatedir}/run
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
|
@ -648,8 +646,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(top_srcdir)/config/Rules.am $(am__empty):
|
||||
|
||||
|
@ -721,15 +719,9 @@ mostlyclean-compile:
|
|||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
include ./$(DEPDIR)/zfs_iter.Po # am--include-marker
|
||||
include ./$(DEPDIR)/zfs_main.Po # am--include-marker
|
||||
include ./$(DEPDIR)/zfs_project.Po # am--include-marker
|
||||
|
||||
$(am__depfiles_remade):
|
||||
@$(MKDIR_P) $(@D)
|
||||
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
|
||||
|
||||
am--depfiles: $(am__depfiles_remade)
|
||||
include ./$(DEPDIR)/zfs_iter.Po
|
||||
include ./$(DEPDIR)/zfs_main.Po
|
||||
include ./$(DEPDIR)/zfs_project.Po
|
||||
|
||||
.c.o:
|
||||
$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
||||
|
@ -813,10 +805,7 @@ cscopelist-am: $(am__tagged_files)
|
|||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
@ -889,9 +878,7 @@ clean-am: clean-generic clean-libtool clean-sbinPROGRAMS \
|
|||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f ./$(DEPDIR)/zfs_iter.Po
|
||||
-rm -f ./$(DEPDIR)/zfs_main.Po
|
||||
-rm -f ./$(DEPDIR)/zfs_project.Po
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
@ -937,9 +924,7 @@ install-ps-am:
|
|||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f ./$(DEPDIR)/zfs_iter.Po
|
||||
-rm -f ./$(DEPDIR)/zfs_main.Po
|
||||
-rm -f ./$(DEPDIR)/zfs_project.Po
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
|
@ -960,9 +945,9 @@ uninstall-am: uninstall-sbinPROGRAMS
|
|||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
|
||||
clean-generic clean-libtool clean-sbinPROGRAMS cscopelist-am \
|
||||
ctags ctags-am distclean distclean-compile distclean-generic \
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
|
||||
clean-libtool clean-sbinPROGRAMS cscopelist-am ctags ctags-am \
|
||||
distclean distclean-compile distclean-generic \
|
||||
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
||||
html-am info info-am install install-am install-data \
|
||||
install-data-am install-dvi install-dvi-am install-exec \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -280,9 +280,7 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
|||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
|
||||
am__maybe_remake_depfiles = depfiles
|
||||
am__depfiles_remade = ./$(DEPDIR)/zfs_iter.Po ./$(DEPDIR)/zfs_main.Po \
|
||||
./$(DEPDIR)/zfs_project.Po
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
|
@ -648,8 +646,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(top_srcdir)/config/Rules.am $(am__empty):
|
||||
|
||||
|
@ -721,15 +719,9 @@ mostlyclean-compile:
|
|||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zfs_iter.Po@am__quote@ # am--include-marker
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zfs_main.Po@am__quote@ # am--include-marker
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zfs_project.Po@am__quote@ # am--include-marker
|
||||
|
||||
$(am__depfiles_remade):
|
||||
@$(MKDIR_P) $(@D)
|
||||
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
|
||||
|
||||
am--depfiles: $(am__depfiles_remade)
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zfs_iter.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zfs_main.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zfs_project.Po@am__quote@
|
||||
|
||||
.c.o:
|
||||
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
||||
|
@ -813,10 +805,7 @@ cscopelist-am: $(am__tagged_files)
|
|||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
@ -889,9 +878,7 @@ clean-am: clean-generic clean-libtool clean-sbinPROGRAMS \
|
|||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f ./$(DEPDIR)/zfs_iter.Po
|
||||
-rm -f ./$(DEPDIR)/zfs_main.Po
|
||||
-rm -f ./$(DEPDIR)/zfs_project.Po
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
@ -937,9 +924,7 @@ install-ps-am:
|
|||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f ./$(DEPDIR)/zfs_iter.Po
|
||||
-rm -f ./$(DEPDIR)/zfs_main.Po
|
||||
-rm -f ./$(DEPDIR)/zfs_project.Po
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
|
@ -960,9 +945,9 @@ uninstall-am: uninstall-sbinPROGRAMS
|
|||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
|
||||
clean-generic clean-libtool clean-sbinPROGRAMS cscopelist-am \
|
||||
ctags ctags-am distclean distclean-compile distclean-generic \
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
|
||||
clean-libtool clean-sbinPROGRAMS cscopelist-am ctags ctags-am \
|
||||
distclean distclean-compile distclean-generic \
|
||||
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
||||
html-am info info-am install install-am install-data \
|
||||
install-data-am install-dvi install-dvi-am install-exec \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#! /bin/bash
|
||||
|
||||
# zfs - temporary wrapper script for .libs/zfs
|
||||
# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-14
|
||||
# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-2
|
||||
#
|
||||
# The zfs program cannot be directly executed until all the libtool
|
||||
# libraries that it depends on are installed.
|
||||
|
@ -90,7 +90,7 @@ func_parse_lt_options ()
|
|||
|
||||
# Print the debug banner immediately:
|
||||
if test -n "$lt_option_debug"; then
|
||||
echo "zfs:zfs:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-14" 1>&2
|
||||
echo "zfs:zfs:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-2" 1>&2
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# cmd/zgenhostid/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -300,7 +300,7 @@ am__can_run_installinfo = \
|
|||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||
am__DIST_COMMON = $(srcdir)/Makefile.in
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.16
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.15
|
||||
ALIEN = alien
|
||||
ALIEN_VERSION = 8.95
|
||||
AMTAR = $${TAR-tar}
|
||||
|
@ -312,7 +312,7 @@ ASAN_LDFLAGS =
|
|||
ASAN_ZFS = _without_asan
|
||||
AUTOCONF = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoconf
|
||||
AUTOHEADER = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoheader
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.16
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.15
|
||||
AWK = gawk
|
||||
CC = gcc
|
||||
CCAS = gcc
|
||||
|
@ -350,8 +350,8 @@ DEPDIR = .deps
|
|||
DLLTOOL = false
|
||||
DPKG = dpkg
|
||||
DPKGBUILD = dpkg-buildpackage
|
||||
DPKGBUILD_VERSION = 1.19.7.
|
||||
DPKG_VERSION = 1.19.7
|
||||
DPKGBUILD_VERSION = 1.19.0.5
|
||||
DPKG_VERSION = 1.19.0.5
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
|
@ -433,20 +433,20 @@ PACKAGE_TARNAME = zfs
|
|||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 0.8.4
|
||||
PATH_SEPARATOR = :
|
||||
PKG_CONFIG = /usr/bin/pkg-config
|
||||
PKG_CONFIG =
|
||||
PKG_CONFIG_LIBDIR =
|
||||
PKG_CONFIG_PATH =
|
||||
POSUB = po
|
||||
PYTHON = /usr/bin/python3.8
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.8
|
||||
PYTHON = /usr/bin/python3.6
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.6m
|
||||
PYTHON_EXEC_PREFIX = ${exec_prefix}
|
||||
PYTHON_EXTRA_LDFLAGS = -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions
|
||||
PYTHON_EXTRA_LIBS = -lcrypt -lpthread -ldl -lutil -lm -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.8
|
||||
PYTHON_EXTRA_LIBS = -lpthread -ldl -lutil -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.6m
|
||||
PYTHON_PLATFORM = linux
|
||||
PYTHON_PREFIX = ${prefix}
|
||||
PYTHON_SITE_PKG = /usr/lib/python3/dist-packages
|
||||
PYTHON_VERSION = 3.8
|
||||
PYTHON_VERSION = 3.6
|
||||
PYZFS_ENABLED = yes
|
||||
QAT_OBJ =
|
||||
QAT_SRC =
|
||||
|
@ -456,13 +456,13 @@ RELEASE = 1
|
|||
RM = rm -f
|
||||
RPM = rpm
|
||||
RPMBUILD = rpmbuild
|
||||
RPMBUILD_VERSION = 4.14.2.1
|
||||
RPMBUILD_VERSION = 4.14.1
|
||||
RPM_DEFINE_COMMON = --define "$(DEBUG_ZFS) 1" --define "$(DEBUG_KMEM_ZFS) 1" --define "$(DEBUG_KMEM_TRACKING_ZFS) 1" --define "$(DEBUGINFO_ZFS) 1" --define "$(ASAN_ZFS) 1"
|
||||
RPM_DEFINE_DKMS =
|
||||
RPM_DEFINE_KMOD = --define "kernels $(LINUX_VERSION)" --define "ksrc $(LINUX)" --define "kobj $(LINUX_OBJ)" --define "_wrong_version_format_terminate_build 0"
|
||||
RPM_DEFINE_UTIL = --define "_initconfdir $(DEFAULT_INITCONF_DIR)" $(DEFINE_INITRAMFS) $(DEFINE_SYSTEMD) $(DEFINE_PYZFS) $(DEFINE_PYTHON_VERSION) $(DEFINE_PYTHON_PKG_VERSION) --define "_lib $(MULTIARCH_LIBDIR)"
|
||||
RPM_SPEC_DIR = rpm/generic
|
||||
RPM_VERSION = 4.14.2.1
|
||||
RPM_VERSION = 4.14.1
|
||||
SED = /bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
|
@ -546,8 +546,8 @@ pkgpythondir = ${pythondir}/zfs
|
|||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
pyexecdir = ${exec_prefix}/lib/python3.8/site-packages
|
||||
pythondir = ${prefix}/lib/python3.8/site-packages
|
||||
pyexecdir = ${exec_prefix}/lib/python3.6/site-packages
|
||||
pythondir = ${prefix}/lib/python3.6/site-packages
|
||||
pythonsitedir = /usr/lib/python3/dist-packages
|
||||
runstatedir = ${localstatedir}/run
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
|
@ -589,8 +589,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
|
@ -649,10 +649,7 @@ ctags CTAGS:
|
|||
cscope cscopelist:
|
||||
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -589,8 +589,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
|
@ -649,10 +649,7 @@ ctags CTAGS:
|
|||
cscope cscopelist:
|
||||
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
|
|
@ -6,19 +6,15 @@ zhack.o: zhack.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||
|
@ -43,8 +39,8 @@ zhack.o: zhack.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
|
@ -56,11 +52,9 @@ zhack.o: zhack.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
../../lib/libspl/include/sys/types32.h \
|
||||
../../lib/libspl/include/sys/inttypes.h /usr/include/inttypes.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
../../lib/libspl/include/sys/va_list.h \
|
||||
|
@ -68,8 +62,8 @@ zhack.o: zhack.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../lib/libspl/include/sys/param.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/param.h \
|
||||
../../lib/libspl/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
|
@ -95,7 +89,6 @@ zhack.o: zhack.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/param.h \
|
||||
/usr/include/asm-generic/param.h ../../lib/libspl/include/unistd.h \
|
||||
|
@ -105,7 +98,6 @@ zhack.o: zhack.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/ioctls.h \
|
||||
|
@ -126,14 +118,12 @@ zhack.o: zhack.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h \
|
||||
../../lib/libspl/include/string.h /usr/include/string.h \
|
||||
/usr/include/strings.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timex.h \
|
||||
|
@ -144,10 +134,8 @@ zhack.o: zhack.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
../../lib/libspl/include/assert.h /usr/include/assert.h \
|
||||
../../lib/libspl/include/umem.h ../../lib/libspl/include/atomic.h \
|
||||
/usr/include/dirent.h /usr/include/x86_64-linux-gnu/bits/dirent.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/mman.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-linux.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-shared.h \
|
||||
../../include/sys/note.h ../../lib/libspl/include/sys/cred.h \
|
||||
|
@ -209,8 +197,7 @@ zhack.o: zhack.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h /usr/include/linux/fscrypt.h \
|
||||
/usr/include/linux/mount.h ../../include/sys/dmu_objset.h \
|
||||
/usr/include/asm-generic/posix_types.h ../../include/sys/dmu_objset.h \
|
||||
../../include/sys/zfs_ioctl.h ../../include/sys/dsl_deleg.h \
|
||||
../../include/sys/zfs_stat.h ../../include/sys/zio_checksum.h \
|
||||
../../include/zfs_fletcher.h ../../include/libzutil.h
|
||||
|
@ -237,31 +224,23 @@ zhack.o: zhack.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/libio.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
|
||||
/usr/include/x86_64-linux-gnu/bits/_G_config.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdarg.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||
|
||||
|
@ -315,10 +294,10 @@ zhack.o: zhack.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap-16.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||
|
@ -341,17 +320,13 @@ zhack.o: zhack.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||
|
||||
../../lib/libspl/include/sys/types32.h:
|
||||
|
||||
../../lib/libspl/include/sys/inttypes.h:
|
||||
|
||||
/usr/include/inttypes.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:
|
||||
|
||||
/usr/include/stdint.h:
|
||||
|
||||
|
@ -369,9 +344,9 @@ zhack.o: zhack.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
../../lib/libspl/include/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/limits.h:
|
||||
|
||||
/usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h:
|
||||
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed/syslimits.h:
|
||||
|
||||
/usr/include/limits.h:
|
||||
|
||||
|
@ -427,8 +402,6 @@ zhack.o: zhack.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/param.h:
|
||||
|
||||
/usr/include/linux/param.h:
|
||||
|
@ -453,8 +426,6 @@ zhack.o: zhack.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/ioctl.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/ioctls.h:
|
||||
|
@ -511,8 +482,6 @@ zhack.o: zhack.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/asm-generic/errno-base.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
|
||||
|
||||
../../lib/libspl/include/string.h:
|
||||
|
||||
/usr/include/string.h:
|
||||
|
@ -529,8 +498,6 @@ zhack.o: zhack.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h:
|
||||
|
||||
/usr/include/time.h:
|
||||
|
@ -561,14 +528,10 @@ zhack.o: zhack.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/dirent_ext.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/sys/mman.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-linux.h:
|
||||
|
||||
/usr/include/x86_64-linux-gnu/bits/mman-shared.h:
|
||||
|
@ -771,10 +734,6 @@ zhack.o: zhack.c /usr/include/stdc-predef.h ../../zfs_config.h \
|
|||
|
||||
/usr/include/asm-generic/posix_types.h:
|
||||
|
||||
/usr/include/linux/fscrypt.h:
|
||||
|
||||
/usr/include/linux/mount.h:
|
||||
|
||||
../../include/sys/dmu_objset.h:
|
||||
|
||||
../../include/sys/zfs_ioctl.h:
|
||||
|
|
Binary file not shown.
|
@ -1,7 +1,7 @@
|
|||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.15.1 from Makefile.am.
|
||||
# cmd/zhack/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -277,8 +277,7 @@ am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
|
|||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
|
||||
am__maybe_remake_depfiles = depfiles
|
||||
am__depfiles_remade = ./$(DEPDIR)/zhack.Po
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
|
@ -327,7 +326,7 @@ CTAGS = ctags
|
|||
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/Rules.am \
|
||||
$(top_srcdir)/config/depcomp
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.16
|
||||
ACLOCAL = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing aclocal-1.15
|
||||
ALIEN = alien
|
||||
ALIEN_VERSION = 8.95
|
||||
AMTAR = $${TAR-tar}
|
||||
|
@ -339,7 +338,7 @@ ASAN_LDFLAGS =
|
|||
ASAN_ZFS = _without_asan
|
||||
AUTOCONF = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoconf
|
||||
AUTOHEADER = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing autoheader
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.16
|
||||
AUTOMAKE = ${SHELL} /src/zfs-builds-mm/zfs-0.8.4/config/missing automake-1.15
|
||||
AWK = gawk
|
||||
CC = gcc
|
||||
CCAS = gcc
|
||||
|
@ -377,8 +376,8 @@ DEPDIR = .deps
|
|||
DLLTOOL = false
|
||||
DPKG = dpkg
|
||||
DPKGBUILD = dpkg-buildpackage
|
||||
DPKGBUILD_VERSION = 1.19.7.
|
||||
DPKG_VERSION = 1.19.7
|
||||
DPKGBUILD_VERSION = 1.19.0.5
|
||||
DPKG_VERSION = 1.19.0.5
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
|
@ -460,20 +459,20 @@ PACKAGE_TARNAME = zfs
|
|||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 0.8.4
|
||||
PATH_SEPARATOR = :
|
||||
PKG_CONFIG = /usr/bin/pkg-config
|
||||
PKG_CONFIG =
|
||||
PKG_CONFIG_LIBDIR =
|
||||
PKG_CONFIG_PATH =
|
||||
POSUB = po
|
||||
PYTHON = /usr/bin/python3.8
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.8
|
||||
PYTHON = /usr/bin/python3.6
|
||||
PYTHON_CPPFLAGS = -I/usr/include/python3.6m
|
||||
PYTHON_EXEC_PREFIX = ${exec_prefix}
|
||||
PYTHON_EXTRA_LDFLAGS = -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions
|
||||
PYTHON_EXTRA_LIBS = -lcrypt -lpthread -ldl -lutil -lm -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.8
|
||||
PYTHON_EXTRA_LIBS = -lpthread -ldl -lutil -lm
|
||||
PYTHON_LIBS = -L/usr/lib -lpython3.6m
|
||||
PYTHON_PLATFORM = linux
|
||||
PYTHON_PREFIX = ${prefix}
|
||||
PYTHON_SITE_PKG = /usr/lib/python3/dist-packages
|
||||
PYTHON_VERSION = 3.8
|
||||
PYTHON_VERSION = 3.6
|
||||
PYZFS_ENABLED = yes
|
||||
QAT_OBJ =
|
||||
QAT_SRC =
|
||||
|
@ -483,13 +482,13 @@ RELEASE = 1
|
|||
RM = rm -f
|
||||
RPM = rpm
|
||||
RPMBUILD = rpmbuild
|
||||
RPMBUILD_VERSION = 4.14.2.1
|
||||
RPMBUILD_VERSION = 4.14.1
|
||||
RPM_DEFINE_COMMON = --define "$(DEBUG_ZFS) 1" --define "$(DEBUG_KMEM_ZFS) 1" --define "$(DEBUG_KMEM_TRACKING_ZFS) 1" --define "$(DEBUGINFO_ZFS) 1" --define "$(ASAN_ZFS) 1"
|
||||
RPM_DEFINE_DKMS =
|
||||
RPM_DEFINE_KMOD = --define "kernels $(LINUX_VERSION)" --define "ksrc $(LINUX)" --define "kobj $(LINUX_OBJ)" --define "_wrong_version_format_terminate_build 0"
|
||||
RPM_DEFINE_UTIL = --define "_initconfdir $(DEFAULT_INITCONF_DIR)" $(DEFINE_INITRAMFS) $(DEFINE_SYSTEMD) $(DEFINE_PYZFS) $(DEFINE_PYTHON_VERSION) $(DEFINE_PYTHON_PKG_VERSION) --define "_lib $(MULTIARCH_LIBDIR)"
|
||||
RPM_SPEC_DIR = rpm/generic
|
||||
RPM_VERSION = 4.14.2.1
|
||||
RPM_VERSION = 4.14.1
|
||||
SED = /bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
|
@ -573,8 +572,8 @@ pkgpythondir = ${pythondir}/zfs
|
|||
prefix = /usr/local
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
pyexecdir = ${exec_prefix}/lib/python3.8/site-packages
|
||||
pythondir = ${prefix}/lib/python3.8/site-packages
|
||||
pyexecdir = ${exec_prefix}/lib/python3.6/site-packages
|
||||
pythondir = ${prefix}/lib/python3.6/site-packages
|
||||
pythonsitedir = /usr/lib/python3/dist-packages
|
||||
runstatedir = ${localstatedir}/run
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
|
@ -637,8 +636,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
$(top_srcdir)/config/Rules.am $(am__empty):
|
||||
|
||||
|
@ -710,13 +709,7 @@ mostlyclean-compile:
|
|||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
include ./$(DEPDIR)/zhack.Po # am--include-marker
|
||||
|
||||
$(am__depfiles_remade):
|
||||
@$(MKDIR_P) $(@D)
|
||||
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
|
||||
|
||||
am--depfiles: $(am__depfiles_remade)
|
||||
include ./$(DEPDIR)/zhack.Po
|
||||
|
||||
.c.o:
|
||||
$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
||||
|
@ -800,10 +793,7 @@ cscopelist-am: $(am__tagged_files)
|
|||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
||||
|
||||
distdir-am: $(DISTFILES)
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
|
@ -876,7 +866,7 @@ clean-am: clean-generic clean-libtool clean-sbinPROGRAMS \
|
|||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f ./$(DEPDIR)/zhack.Po
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
@ -922,7 +912,7 @@ install-ps-am:
|
|||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f ./$(DEPDIR)/zhack.Po
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
|
@ -943,9 +933,9 @@ uninstall-am: uninstall-sbinPROGRAMS
|
|||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
|
||||
clean-generic clean-libtool clean-sbinPROGRAMS cscopelist-am \
|
||||
ctags ctags-am distclean distclean-compile distclean-generic \
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
|
||||
clean-libtool clean-sbinPROGRAMS cscopelist-am ctags ctags-am \
|
||||
distclean distclean-compile distclean-generic \
|
||||
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
||||
html-am info info-am install install-am install-data \
|
||||
install-data-am install-dvi install-dvi-am install-exec \
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue