diff -Nru acl-2.2.53/aclocal.m4 acl-2.3.1/aclocal.m4 --- acl-2.2.53/aclocal.m4 2018-06-19 03:09:53.000000000 +0000 +++ acl-2.3.1/aclocal.m4 2021-03-16 06:43:16.000000000 +0000 @@ -1,6 +1,6 @@ -# generated automatically by aclocal 1.15.1 -*- Autoconf -*- +# generated automatically by aclocal 1.16.1 -*- Autoconf -*- -# Copyright (C) 1996-2017 Free Software Foundation, Inc. +# Copyright (C) 1996-2018 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 @@ 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-2017 Free Software Foundation, Inc. +# Copyright (C) 2002-2018 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 @@ # 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.15' +[am__api_version='1.16' 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.15.1], [], +m4_if([$1], [1.16.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) @@ -51,12 +51,12 @@ # 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.15.1])dnl +[AM_AUTOMAKE_VERSION([1.16.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) -# Copyright (C) 2011-2017 Free Software Foundation, Inc. +# Copyright (C) 2011-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -118,7 +118,7 @@ # AM_AUX_DIR_EXPAND -*- Autoconf -*- -# Copyright (C) 2001-2017 Free Software Foundation, Inc. +# Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -170,7 +170,7 @@ # AM_CONDITIONAL -*- Autoconf -*- -# Copyright (C) 1997-2017 Free Software Foundation, Inc. +# Copyright (C) 1997-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -201,7 +201,7 @@ Usually this means the macro was only invoked conditionally.]]) fi])]) -# Copyright (C) 1999-2017 Free Software Foundation, Inc. +# Copyright (C) 1999-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -392,13 +392,12 @@ # Generate code to set up dependency tracking. -*- Autoconf -*- -# Copyright (C) 1999-2017 Free Software Foundation, Inc. +# Copyright (C) 1999-2018 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], @@ -406,49 +405,41 @@ # 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. - case $CONFIG_FILES in - *\'*) eval set x "$CONFIG_FILES" ;; - *) set x $CONFIG_FILES ;; - esac + # 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]) shift - for mf + # Used to flag and report bootstrapping failures. + am_rc=0 + for am_mf do # Strip MF so we end up with the name of the file. - 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 + 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 # limit of 2048, but all sed's we know have understand at least 4000. - 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 + 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=$? 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 @@ -457,18 +448,17 @@ # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # -# 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. +# 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. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], - [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) -]) + [AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])]) # Do all the work for Automake. -*- Autoconf -*- -# Copyright (C) 1996-2017 Free Software Foundation, Inc. +# Copyright (C) 1996-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -555,8 +545,8 @@ 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: -# -# +# +# 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. @@ -623,7 +613,7 @@ 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: . +that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM @@ -665,7 +655,7 @@ done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) -# Copyright (C) 2001-2017 Free Software Foundation, Inc. +# Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -686,7 +676,7 @@ fi AC_SUBST([install_sh])]) -# Copyright (C) 2003-2017 Free Software Foundation, Inc. +# Copyright (C) 2003-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -707,7 +697,7 @@ # Check to see how 'make' treats includes. -*- Autoconf -*- -# Copyright (C) 2001-2017 Free Software Foundation, Inc. +# Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -715,49 +705,42 @@ # AM_MAKE_INCLUDE() # ----------------- -# Check to see how make treats includes. +# Check whether make has an 'include' directive that can support all +# the idioms we need for our automatic dependency tracking code. AC_DEFUN([AM_MAKE_INCLUDE], -[am_make=${MAKE-make} -cat > confinc << 'END' +[AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive]) +cat > confinc.mk << 'END' am__doit: - @echo this is the am__doit target + @echo this is the am__doit target >confinc.out .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= -_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 -]) +# 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])]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- -# Copyright (C) 1997-2017 Free Software Foundation, Inc. +# Copyright (C) 1997-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -796,7 +779,7 @@ # Helper functions for option handling. -*- Autoconf -*- -# Copyright (C) 2001-2017 Free Software Foundation, Inc. +# Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -825,7 +808,7 @@ AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) -# Copyright (C) 1999-2017 Free Software Foundation, Inc. +# Copyright (C) 1999-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -872,7 +855,7 @@ # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) -# Copyright (C) 2001-2017 Free Software Foundation, Inc. +# Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -891,7 +874,7 @@ # Check to make sure that the build environment is sane. -*- Autoconf -*- -# Copyright (C) 1996-2017 Free Software Foundation, Inc. +# Copyright (C) 1996-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -972,7 +955,7 @@ rm -f conftest.file ]) -# Copyright (C) 2009-2017 Free Software Foundation, Inc. +# Copyright (C) 2009-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1032,7 +1015,7 @@ _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) -# Copyright (C) 2001-2017 Free Software Foundation, Inc. +# Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1060,7 +1043,7 @@ INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) -# Copyright (C) 2006-2017 Free Software Foundation, Inc. +# Copyright (C) 2006-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1079,7 +1062,7 @@ # Check how to create a tarball. -*- Autoconf -*- -# Copyright (C) 2004-2017 Free Software Foundation, Inc. +# Copyright (C) 2004-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff -Nru acl-2.2.53/build-aux/ar-lib acl-2.3.1/build-aux/ar-lib --- acl-2.2.53/build-aux/ar-lib 2018-06-19 03:09:54.000000000 +0000 +++ acl-2.3.1/build-aux/ar-lib 2020-08-31 16:19:54.000000000 +0000 @@ -4,7 +4,7 @@ me=ar-lib scriptversion=2012-03-01.08; # UTC -# Copyright (C) 2010-2017 Free Software Foundation, Inc. +# Copyright (C) 2010-2018 Free Software Foundation, Inc. # Written by Peter Rosin . # # This program is free software; you can redistribute it and/or modify @@ -18,7 +18,7 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a diff -Nru acl-2.2.53/build-aux/compile acl-2.3.1/build-aux/compile --- acl-2.2.53/build-aux/compile 2018-06-19 03:09:54.000000000 +0000 +++ acl-2.3.1/build-aux/compile 2020-08-31 16:19:54.000000000 +0000 @@ -1,9 +1,9 @@ #! /bin/sh # Wrapper for compilers which do not understand '-c -o'. -scriptversion=2016-01-11.22; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1999-2017 Free Software Foundation, Inc. +# Copyright (C) 1999-2018 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify @@ -17,7 +17,7 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -340,7 +340,7 @@ # Local Variables: # mode: shell-script # sh-indentation: 2 -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" diff -Nru acl-2.2.53/build-aux/config.guess acl-2.3.1/build-aux/config.guess --- acl-2.2.53/build-aux/config.guess 2018-06-19 03:09:54.000000000 +0000 +++ acl-2.3.1/build-aux/config.guess 2020-08-31 16:19:54.000000000 +0000 @@ -2,7 +2,7 @@ # Attempt to guess a canonical system name. # Copyright 1992-2018 Free Software Foundation, Inc. -timestamp='2018-01-01' +timestamp='2018-08-29' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -84,8 +84,6 @@ exit 1 fi -trap 'exit 1' 1 2 15 - # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a @@ -96,34 +94,39 @@ # Portable tmp directory creation inspired by the Autoconf team. -set_cc_for_build=' -trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; -trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; -: ${TMPDIR=/tmp} ; - { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || - { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || - { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || - { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; -dummy=$tmp/dummy ; -tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; -case $CC_FOR_BUILD,$HOST_CC,$CC in - ,,) echo "int x;" > $dummy.c ; - for c in cc gcc c89 c99 ; do - if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then - CC_FOR_BUILD="$c"; break ; - fi ; - done ; - if test x"$CC_FOR_BUILD" = x ; then - CC_FOR_BUILD=no_compiler_found ; - fi - ;; - ,,*) CC_FOR_BUILD=$CC ;; - ,*,*) CC_FOR_BUILD=$HOST_CC ;; -esac ; set_cc_for_build= ;' +tmp= +# shellcheck disable=SC2172 +trap 'test -z "$tmp" || rm -fr "$tmp"' 1 2 13 15 +trap 'exitcode=$?; test -z "$tmp" || rm -fr "$tmp"; exit $exitcode' 0 + +set_cc_for_build() { + : "${TMPDIR=/tmp}" + # shellcheck disable=SC2039 + { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || + { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir "$tmp" 2>/dev/null) ; } || + { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir "$tmp" 2>/dev/null) && echo "Warning: creating insecure temp directory" >&2 ; } || + { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } + dummy=$tmp/dummy + case ${CC_FOR_BUILD-},${HOST_CC-},${CC-} in + ,,) echo "int x;" > "$dummy.c" + for driver in cc gcc c89 c99 ; do + if ($driver -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then + CC_FOR_BUILD="$driver" + break + fi + done + if test x"$CC_FOR_BUILD" = x ; then + CC_FOR_BUILD=no_compiler_found + fi + ;; + ,,*) CC_FOR_BUILD=$CC ;; + ,*,*) CC_FOR_BUILD=$HOST_CC ;; + esac +} # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) -if (test -f /.attbin/uname) >/dev/null 2>&1 ; then +if test -f /.attbin/uname ; then PATH=$PATH:/.attbin ; export PATH fi @@ -132,14 +135,14 @@ UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown -case "${UNAME_SYSTEM}" in +case "$UNAME_SYSTEM" in Linux|GNU|GNU/*) # If the system lacks a compiler, then just pick glibc. # We could probably try harder. LIBC=gnu - eval $set_cc_for_build - cat <<-EOF > $dummy.c + set_cc_for_build + cat <<-EOF > "$dummy.c" #include #if defined(__UCLIBC__) LIBC=uclibc @@ -149,13 +152,20 @@ LIBC=gnu #endif EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` + eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`" + + # If ldd exists, use it to detect musl libc. + if command -v ldd >/dev/null && \ + ldd --version 2>&1 | grep -q ^musl + then + LIBC=musl + fi ;; esac # Note: order is significant - the case branches are not exclusive. -case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in +case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, @@ -169,30 +179,30 @@ # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ - /sbin/$sysctl 2>/dev/null || \ - /usr/sbin/$sysctl 2>/dev/null || \ + "/sbin/$sysctl" 2>/dev/null || \ + "/usr/sbin/$sysctl" 2>/dev/null || \ echo unknown)` - case "${UNAME_MACHINE_ARCH}" in + case "$UNAME_MACHINE_ARCH" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; earmv*) - arch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\(armv[0-9]\).*$,\1,'` - endian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\(eb\)$,\1,p'` - machine=${arch}${endian}-unknown + arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'` + endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'` + machine="${arch}${endian}"-unknown ;; - *) machine=${UNAME_MACHINE_ARCH}-unknown ;; + *) machine="$UNAME_MACHINE_ARCH"-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently (or will in the future) and ABI. - case "${UNAME_MACHINE_ARCH}" in + case "$UNAME_MACHINE_ARCH" in earm*) os=netbsdelf ;; arm*|i386|m68k|ns32k|sh3*|sparc|vax) - eval $set_cc_for_build + set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then @@ -208,10 +218,10 @@ ;; esac # Determine ABI tags. - case "${UNAME_MACHINE_ARCH}" in + case "$UNAME_MACHINE_ARCH" in earm*) expr='s/^earmv[0-9]/-eabi/;s/eb$//' - abi=`echo ${UNAME_MACHINE_ARCH} | sed -e "$expr"` + abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"` ;; esac # The OS release @@ -219,51 +229,51 @@ # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. - case "${UNAME_VERSION}" in + case "$UNAME_VERSION" in Debian*) release='-gnu' ;; *) - release=`echo ${UNAME_RELEASE} | sed -e 's/[-_].*//' | cut -d. -f1,2` + release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. - echo "${machine}-${os}${release}${abi}" + echo "$machine-${os}${release}${abi-}" exit ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} + echo "$UNAME_MACHINE_ARCH"-unknown-bitrig"$UNAME_RELEASE" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE" exit ;; *:LibertyBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-libertybsd${UNAME_RELEASE} + echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE" exit ;; *:MidnightBSD:*:*) - echo ${UNAME_MACHINE}-unknown-midnightbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-midnightbsd"$UNAME_RELEASE" exit ;; *:ekkoBSD:*:*) - echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-ekkobsd"$UNAME_RELEASE" exit ;; *:SolidBSD:*:*) - echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-solidbsd"$UNAME_RELEASE" exit ;; macppc:MirBSD:*:*) - echo powerpc-unknown-mirbsd${UNAME_RELEASE} + echo powerpc-unknown-mirbsd"$UNAME_RELEASE" exit ;; *:MirBSD:*:*) - echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-mirbsd"$UNAME_RELEASE" exit ;; *:Sortix:*:*) - echo ${UNAME_MACHINE}-unknown-sortix + echo "$UNAME_MACHINE"-unknown-sortix exit ;; *:Redox:*:*) - echo ${UNAME_MACHINE}-unknown-redox + echo "$UNAME_MACHINE"-unknown-redox exit ;; mips:OSF1:*.*) echo mips-dec-osf1 @@ -319,7 +329,7 @@ # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. - echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` + echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`" # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 @@ -328,10 +338,10 @@ echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-amigaos + echo "$UNAME_MACHINE"-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-morphos + echo "$UNAME_MACHINE"-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition @@ -343,7 +353,7 @@ echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) - echo arm-acorn-riscix${UNAME_RELEASE} + echo arm-acorn-riscix"$UNAME_RELEASE" exit ;; arm*:riscos:*:*|arm*:RISCOS:*:*) echo arm-unknown-riscos @@ -370,38 +380,33 @@ sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) - echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" exit ;; sun4H:SunOS:5.*:*) - echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) - echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) - echo i386-pc-auroraux${UNAME_RELEASE} + echo i386-pc-auroraux"$UNAME_RELEASE" exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) - eval $set_cc_for_build - SUN_ARCH=i386 - # If there is a compiler, see if it is configured for 64-bit objects. - # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. - # This test works for both compilers. - if [ "$CC_FOR_BUILD" != no_compiler_found ]; then - if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ - grep IS_64BIT_ARCH >/dev/null - then - SUN_ARCH=x86_64 - fi - fi - echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + UNAME_REL="`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" + case `isainfo -b` in + 32) + echo i386-pc-solaris2"$UNAME_REL" + ;; + 64) + echo x86_64-pc-solaris2"$UNAME_REL" + ;; + esac exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. - echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in @@ -410,25 +415,25 @@ ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. - echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` + echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`" exit ;; sun3*:SunOS:*:*) - echo m68k-sun-sunos${UNAME_RELEASE} + echo m68k-sun-sunos"$UNAME_RELEASE" exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` - test "x${UNAME_RELEASE}" = x && UNAME_RELEASE=3 + test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) - echo m68k-sun-sunos${UNAME_RELEASE} + echo m68k-sun-sunos"$UNAME_RELEASE" ;; sun4) - echo sparc-sun-sunos${UNAME_RELEASE} + echo sparc-sun-sunos"$UNAME_RELEASE" ;; esac exit ;; aushp:SunOS:*:*) - echo sparc-auspex-sunos${UNAME_RELEASE} + echo sparc-auspex-sunos"$UNAME_RELEASE" exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not @@ -439,44 +444,44 @@ # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) - echo m68k-milan-mint${UNAME_RELEASE} + echo m68k-milan-mint"$UNAME_RELEASE" exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) - echo m68k-hades-mint${UNAME_RELEASE} + echo m68k-hades-mint"$UNAME_RELEASE" exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) - echo m68k-unknown-mint${UNAME_RELEASE} + echo m68k-unknown-mint"$UNAME_RELEASE" exit ;; m68k:machten:*:*) - echo m68k-apple-machten${UNAME_RELEASE} + echo m68k-apple-machten"$UNAME_RELEASE" exit ;; powerpc:machten:*:*) - echo powerpc-apple-machten${UNAME_RELEASE} + echo powerpc-apple-machten"$UNAME_RELEASE" exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) - echo mips-dec-ultrix${UNAME_RELEASE} + echo mips-dec-ultrix"$UNAME_RELEASE" exit ;; VAX*:ULTRIX*:*:*) - echo vax-dec-ultrix${UNAME_RELEASE} + echo vax-dec-ultrix"$UNAME_RELEASE" exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) - echo clipper-intergraph-clix${UNAME_RELEASE} + echo clipper-intergraph-clix"$UNAME_RELEASE" exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + set_cc_for_build + sed 's/^ //' << EOF > "$dummy.c" #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { @@ -497,11 +502,11 @@ exit (-1); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c && - dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && - SYSTEM_NAME=`$dummy $dummyarg` && + $CC_FOR_BUILD -o "$dummy" "$dummy.c" && + dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`"$dummy" "$dummyarg"` && { echo "$SYSTEM_NAME"; exit; } - echo mips-mips-riscos${UNAME_RELEASE} + echo mips-mips-riscos"$UNAME_RELEASE" exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax @@ -527,17 +532,17 @@ AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` - if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + if [ "$UNAME_PROCESSOR" = mc88100 ] || [ "$UNAME_PROCESSOR" = mc88110 ] then - if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ - [ ${TARGET_BINARY_INTERFACE}x = x ] + if [ "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx ] || \ + [ "$TARGET_BINARY_INTERFACE"x = x ] then - echo m88k-dg-dgux${UNAME_RELEASE} + echo m88k-dg-dgux"$UNAME_RELEASE" else - echo m88k-dg-dguxbcs${UNAME_RELEASE} + echo m88k-dg-dguxbcs"$UNAME_RELEASE" fi else - echo i586-dg-dgux${UNAME_RELEASE} + echo i586-dg-dgux"$UNAME_RELEASE" fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) @@ -554,7 +559,7 @@ echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) - echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` + echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`" exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id @@ -566,14 +571,14 @@ if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" fi - echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} + echo "$UNAME_MACHINE"-ibm-aix"$IBM_REV" exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + set_cc_for_build + sed 's/^ //' << EOF > "$dummy.c" #include main() @@ -584,7 +589,7 @@ exit(0); } EOF - if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` + if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` then echo "$SYSTEM_NAME" else @@ -598,7 +603,7 @@ exit ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` - if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc @@ -607,9 +612,9 @@ IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" fi - echo ${IBM_ARCH}-ibm-aix${IBM_REV} + echo "$IBM_ARCH"-ibm-aix"$IBM_REV" exit ;; *:AIX:*:*) echo rs6000-ibm-aix @@ -618,7 +623,7 @@ echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and - echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to + echo romp-ibm-bsd"$UNAME_RELEASE" # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx @@ -633,28 +638,28 @@ echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - case "${UNAME_MACHINE}" in + HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` + case "$UNAME_MACHINE" in 9000/31?) HP_ARCH=m68000 ;; 9000/[34]??) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` - case "${sc_cpu_version}" in + case "$sc_cpu_version" in 523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0 528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 - case "${sc_kernel_bits}" in + case "$sc_kernel_bits" in 32) HP_ARCH=hppa2.0n ;; 64) HP_ARCH=hppa2.0w ;; '') HP_ARCH=hppa2.0 ;; # HP-UX 10.20 esac ;; esac fi - if [ "${HP_ARCH}" = "" ]; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + if [ "$HP_ARCH" = "" ]; then + set_cc_for_build + sed 's/^ //' << EOF > "$dummy.c" #define _HPUX_SOURCE #include @@ -687,13 +692,13 @@ exit (0); } EOF - (CCOPTS="" $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac - if [ ${HP_ARCH} = hppa2.0w ] + if [ "$HP_ARCH" = hppa2.0w ] then - eval $set_cc_for_build + set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler @@ -712,15 +717,15 @@ HP_ARCH=hppa64 fi fi - echo ${HP_ARCH}-hp-hpux${HPUX_REV} + echo "$HP_ARCH"-hp-hpux"$HPUX_REV" exit ;; ia64:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - echo ia64-hp-hpux${HPUX_REV} + HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux"$HPUX_REV" exit ;; 3050*:HI-UX:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + set_cc_for_build + sed 's/^ //' << EOF > "$dummy.c" #include int main () @@ -745,7 +750,7 @@ exit (0); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && + $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; @@ -766,9 +771,9 @@ exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then - echo ${UNAME_MACHINE}-unknown-osf1mk + echo "$UNAME_MACHINE"-unknown-osf1mk else - echo ${UNAME_MACHINE}-unknown-osf1 + echo "$UNAME_MACHINE"-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) @@ -793,109 +798,120 @@ echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) - echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo ymp-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) - echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + echo "$UNAME_MACHINE"-cray-unicos"$UNAME_RELEASE" \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) - echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo t90-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) - echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo alphaev5-cray-unicosmk"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) - echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo sv1-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) - echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo craynv-cray-unicosmp"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'` + FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) - echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + echo "$UNAME_MACHINE"-pc-bsdi"$UNAME_RELEASE" exit ;; sparc*:BSD/OS:*:*) - echo sparc-unknown-bsdi${UNAME_RELEASE} + echo sparc-unknown-bsdi"$UNAME_RELEASE" exit ;; *:BSD/OS:*:*) - echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-bsdi"$UNAME_RELEASE" + exit ;; + arm:FreeBSD:*:*) + UNAME_PROCESSOR=`uname -p` + set_cc_for_build + if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_PCS_VFP + then + echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabi + else + echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabihf + fi exit ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` - case ${UNAME_PROCESSOR} in + case "$UNAME_PROCESSOR" in amd64) UNAME_PROCESSOR=x86_64 ;; i386) UNAME_PROCESSOR=i586 ;; esac - echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" exit ;; i*:CYGWIN*:*) - echo ${UNAME_MACHINE}-pc-cygwin + echo "$UNAME_MACHINE"-pc-cygwin exit ;; *:MINGW64*:*) - echo ${UNAME_MACHINE}-pc-mingw64 + echo "$UNAME_MACHINE"-pc-mingw64 exit ;; *:MINGW*:*) - echo ${UNAME_MACHINE}-pc-mingw32 + echo "$UNAME_MACHINE"-pc-mingw32 exit ;; *:MSYS*:*) - echo ${UNAME_MACHINE}-pc-msys + echo "$UNAME_MACHINE"-pc-msys exit ;; i*:PW*:*) - echo ${UNAME_MACHINE}-pc-pw32 + echo "$UNAME_MACHINE"-pc-pw32 exit ;; *:Interix*:*) - case ${UNAME_MACHINE} in + case "$UNAME_MACHINE" in x86) - echo i586-pc-interix${UNAME_RELEASE} + echo i586-pc-interix"$UNAME_RELEASE" exit ;; authenticamd | genuineintel | EM64T) - echo x86_64-unknown-interix${UNAME_RELEASE} + echo x86_64-unknown-interix"$UNAME_RELEASE" exit ;; IA64) - echo ia64-unknown-interix${UNAME_RELEASE} + echo ia64-unknown-interix"$UNAME_RELEASE" exit ;; esac ;; i*:UWIN*:*) - echo ${UNAME_MACHINE}-pc-uwin + echo "$UNAME_MACHINE"-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; prep*:SunOS:5.*:*) - echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; *:GNU:*:*) # the GNU system - echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`" exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland - echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} + echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC" exit ;; - i*86:Minix:*:*) - echo ${UNAME_MACHINE}-pc-minix + *:Minix:*:*) + echo "$UNAME_MACHINE"-unknown-minix exit ;; aarch64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in @@ -909,63 +925,63 @@ esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC=gnulibc1 ; fi - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arc:Linux:*:* | arceb:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arm*:Linux:*:*) - eval $set_cc_for_build + set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then - echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabi else - echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabihf fi fi exit ;; avr32*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; cris:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-${LIBC} + echo "$UNAME_MACHINE"-axis-linux-"$LIBC" exit ;; crisv32:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-${LIBC} + echo "$UNAME_MACHINE"-axis-linux-"$LIBC" exit ;; e2k:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; frv:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; hexagon:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; i*86:Linux:*:*) - echo ${UNAME_MACHINE}-pc-linux-${LIBC} + echo "$UNAME_MACHINE"-pc-linux-"$LIBC" exit ;; ia64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; k1om:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m32r*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m68*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; mips:Linux:*:* | mips64:Linux:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + set_cc_for_build + sed 's/^ //' << EOF > "$dummy.c" #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el @@ -979,81 +995,70 @@ #endif #endif EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } + eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU'`" + test "x$CPU" != x && { echo "$CPU-unknown-linux-$LIBC"; exit; } ;; mips64el:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; openrisc*:Linux:*:*) - echo or1k-unknown-linux-${LIBC} + echo or1k-unknown-linux-"$LIBC" exit ;; or32:Linux:*:* | or1k*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; padre:Linux:*:*) - echo sparc-unknown-linux-${LIBC} + echo sparc-unknown-linux-"$LIBC" exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-${LIBC} + echo hppa64-unknown-linux-"$LIBC" exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; - PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; - *) echo hppa-unknown-linux-${LIBC} ;; + PA7*) echo hppa1.1-unknown-linux-"$LIBC" ;; + PA8*) echo hppa2.0-unknown-linux-"$LIBC" ;; + *) echo hppa-unknown-linux-"$LIBC" ;; esac exit ;; ppc64:Linux:*:*) - echo powerpc64-unknown-linux-${LIBC} + echo powerpc64-unknown-linux-"$LIBC" exit ;; ppc:Linux:*:*) - echo powerpc-unknown-linux-${LIBC} + echo powerpc-unknown-linux-"$LIBC" exit ;; ppc64le:Linux:*:*) - echo powerpc64le-unknown-linux-${LIBC} + echo powerpc64le-unknown-linux-"$LIBC" exit ;; ppcle:Linux:*:*) - echo powerpcle-unknown-linux-${LIBC} + echo powerpcle-unknown-linux-"$LIBC" exit ;; riscv32:Linux:*:* | riscv64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; s390:Linux:*:* | s390x:Linux:*:*) - echo ${UNAME_MACHINE}-ibm-linux-${LIBC} + echo "$UNAME_MACHINE"-ibm-linux-"$LIBC" exit ;; sh64*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; sh*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; tile*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; vax:Linux:*:*) - echo ${UNAME_MACHINE}-dec-linux-${LIBC} + echo "$UNAME_MACHINE"-dec-linux-"$LIBC" exit ;; x86_64:Linux:*:*) - eval $set_cc_for_build - X86_64_ABI= - # If there is a compiler, see if it is configured for 32-bit objects. - if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then - if (echo '#ifdef __ILP32__'; echo IS_X32; echo '#endif') | \ - (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ - grep IS_X32 >/dev/null - then - X86_64_ABI=x32 - fi - fi - echo ${UNAME_MACHINE}-pc-linux-${LIBC}${X86_64_ABI} + echo "$UNAME_MACHINE"-pc-linux-"$LIBC" exit ;; xtensa*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. @@ -1067,34 +1072,34 @@ # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. - echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + echo "$UNAME_MACHINE"-pc-sysv4.2uw"$UNAME_VERSION" exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. - echo ${UNAME_MACHINE}-pc-os2-emx + echo "$UNAME_MACHINE"-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) - echo ${UNAME_MACHINE}-unknown-stop + echo "$UNAME_MACHINE"-unknown-stop exit ;; i*86:atheos:*:*) - echo ${UNAME_MACHINE}-unknown-atheos + echo "$UNAME_MACHINE"-unknown-atheos exit ;; i*86:syllable:*:*) - echo ${UNAME_MACHINE}-pc-syllable + echo "$UNAME_MACHINE"-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) - echo i386-unknown-lynxos${UNAME_RELEASE} + echo i386-unknown-lynxos"$UNAME_RELEASE" exit ;; i*86:*DOS:*:*) - echo ${UNAME_MACHINE}-pc-msdosdjgpp + echo "$UNAME_MACHINE"-pc-msdosdjgpp exit ;; i*86:*:4.*:*) - UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then - echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} + echo "$UNAME_MACHINE"-univel-sysv"$UNAME_REL" else - echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + echo "$UNAME_MACHINE"-pc-sysv"$UNAME_REL" fi exit ;; i*86:*:5:[678]*) @@ -1104,12 +1109,12 @@ *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac - echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} + echo "$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}{$UNAME_VERSION}" exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 @@ -1119,9 +1124,9 @@ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 - echo ${UNAME_MACHINE}-pc-sco$UNAME_REL + echo "$UNAME_MACHINE"-pc-sco"$UNAME_REL" else - echo ${UNAME_MACHINE}-pc-sysv32 + echo "$UNAME_MACHINE"-pc-sysv32 fi exit ;; pc:*:*:*) @@ -1141,9 +1146,9 @@ exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then - echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 + echo i860-stardent-sysv"$UNAME_RELEASE" # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. - echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 + echo i860-unknown-sysv"$UNAME_RELEASE" # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) @@ -1163,9 +1168,9 @@ test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; @@ -1174,28 +1179,28 @@ test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) - echo m68k-unknown-lynxos${UNAME_RELEASE} + echo m68k-unknown-lynxos"$UNAME_RELEASE" exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) - echo sparc-unknown-lynxos${UNAME_RELEASE} + echo sparc-unknown-lynxos"$UNAME_RELEASE" exit ;; rs6000:LynxOS:2.*:*) - echo rs6000-unknown-lynxos${UNAME_RELEASE} + echo rs6000-unknown-lynxos"$UNAME_RELEASE" exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) - echo powerpc-unknown-lynxos${UNAME_RELEASE} + echo powerpc-unknown-lynxos"$UNAME_RELEASE" exit ;; SM[BE]S:UNIX_SV:*:*) - echo mips-dde-sysv${UNAME_RELEASE} + echo mips-dde-sysv"$UNAME_RELEASE" exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 @@ -1206,7 +1211,7 @@ *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` - echo ${UNAME_MACHINE}-sni-sysv4 + echo "$UNAME_MACHINE"-sni-sysv4 else echo ns32k-sni-sysv fi @@ -1226,23 +1231,23 @@ exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. - echo ${UNAME_MACHINE}-stratus-vos + echo "$UNAME_MACHINE"-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) - echo m68k-apple-aux${UNAME_RELEASE} + echo m68k-apple-aux"$UNAME_RELEASE" exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then - echo mips-nec-sysv${UNAME_RELEASE} + echo mips-nec-sysv"$UNAME_RELEASE" else - echo mips-unknown-sysv${UNAME_RELEASE} + echo mips-unknown-sysv"$UNAME_RELEASE" fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. @@ -1261,39 +1266,39 @@ echo x86_64-unknown-haiku exit ;; SX-4:SUPER-UX:*:*) - echo sx4-nec-superux${UNAME_RELEASE} + echo sx4-nec-superux"$UNAME_RELEASE" exit ;; SX-5:SUPER-UX:*:*) - echo sx5-nec-superux${UNAME_RELEASE} + echo sx5-nec-superux"$UNAME_RELEASE" exit ;; SX-6:SUPER-UX:*:*) - echo sx6-nec-superux${UNAME_RELEASE} + echo sx6-nec-superux"$UNAME_RELEASE" exit ;; SX-7:SUPER-UX:*:*) - echo sx7-nec-superux${UNAME_RELEASE} + echo sx7-nec-superux"$UNAME_RELEASE" exit ;; SX-8:SUPER-UX:*:*) - echo sx8-nec-superux${UNAME_RELEASE} + echo sx8-nec-superux"$UNAME_RELEASE" exit ;; SX-8R:SUPER-UX:*:*) - echo sx8r-nec-superux${UNAME_RELEASE} + echo sx8r-nec-superux"$UNAME_RELEASE" exit ;; SX-ACE:SUPER-UX:*:*) - echo sxace-nec-superux${UNAME_RELEASE} + echo sxace-nec-superux"$UNAME_RELEASE" exit ;; Power*:Rhapsody:*:*) - echo powerpc-apple-rhapsody${UNAME_RELEASE} + echo powerpc-apple-rhapsody"$UNAME_RELEASE" exit ;; *:Rhapsody:*:*) - echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} + echo "$UNAME_MACHINE"-apple-rhapsody"$UNAME_RELEASE" exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown - eval $set_cc_for_build + set_cc_for_build if test "$UNAME_PROCESSOR" = unknown ; then UNAME_PROCESSOR=powerpc fi - if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then + if test "`echo "$UNAME_RELEASE" | sed -e 's/\..*//'`" -le 10 ; then if [ "$CC_FOR_BUILD" != no_compiler_found ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ @@ -1321,7 +1326,7 @@ # that Apple uses in portable devices. UNAME_PROCESSOR=x86_64 fi - echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} + echo "$UNAME_PROCESSOR"-apple-darwin"$UNAME_RELEASE" exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` @@ -1329,22 +1334,25 @@ UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi - echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} + echo "$UNAME_PROCESSOR"-"$UNAME_MACHINE"-nto-qnx"$UNAME_RELEASE" exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NEO-*:NONSTOP_KERNEL:*:*) - echo neo-tandem-nsk${UNAME_RELEASE} + echo neo-tandem-nsk"$UNAME_RELEASE" exit ;; NSE-*:NONSTOP_KERNEL:*:*) - echo nse-tandem-nsk${UNAME_RELEASE} + echo nse-tandem-nsk"$UNAME_RELEASE" exit ;; NSR-*:NONSTOP_KERNEL:*:*) - echo nsr-tandem-nsk${UNAME_RELEASE} + echo nsr-tandem-nsk"$UNAME_RELEASE" + exit ;; + NSV-*:NONSTOP_KERNEL:*:*) + echo nsv-tandem-nsk"$UNAME_RELEASE" exit ;; NSX-*:NONSTOP_KERNEL:*:*) - echo nsx-tandem-nsk${UNAME_RELEASE} + echo nsx-tandem-nsk"$UNAME_RELEASE" exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux @@ -1353,18 +1361,19 @@ echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) - echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} + echo "$UNAME_MACHINE"-"$UNAME_SYSTEM"-"$UNAME_RELEASE" exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. + # shellcheck disable=SC2154 if test "$cputype" = 386; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi - echo ${UNAME_MACHINE}-unknown-plan9 + echo "$UNAME_MACHINE"-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 @@ -1385,14 +1394,14 @@ echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) - echo mips-sei-seiux${UNAME_RELEASE} + echo mips-sei-seiux"$UNAME_RELEASE" exit ;; *:DragonFly:*:*) - echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` - case "${UNAME_MACHINE}" in + case "$UNAME_MACHINE" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; @@ -1401,16 +1410,16 @@ echo i386-pc-xenix exit ;; i*86:skyos:*:*) - echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE} | sed -e 's/ .*$//'` + echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`" exit ;; i*86:rdos:*:*) - echo ${UNAME_MACHINE}-pc-rdos + echo "$UNAME_MACHINE"-pc-rdos exit ;; i*86:AROS:*:*) - echo ${UNAME_MACHINE}-pc-aros + echo "$UNAME_MACHINE"-pc-aros exit ;; x86_64:VMkernel:*:*) - echo ${UNAME_MACHINE}-unknown-esx + echo "$UNAME_MACHINE"-unknown-esx exit ;; amd64:Isilon\ OneFS:*:*) echo x86_64-unknown-onefs @@ -1419,7 +1428,7 @@ echo "$0: unable to guess system type" >&2 -case "${UNAME_MACHINE}:${UNAME_SYSTEM}" in +case "$UNAME_MACHINE:$UNAME_SYSTEM" in mips:Linux | mips64:Linux) # If we got here on MIPS GNU/Linux, output extra information. cat >&2 </dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` -UNAME_MACHINE = ${UNAME_MACHINE} -UNAME_RELEASE = ${UNAME_RELEASE} -UNAME_SYSTEM = ${UNAME_SYSTEM} -UNAME_VERSION = ${UNAME_VERSION} +UNAME_MACHINE = "$UNAME_MACHINE" +UNAME_RELEASE = "$UNAME_RELEASE" +UNAME_SYSTEM = "$UNAME_SYSTEM" +UNAME_VERSION = "$UNAME_VERSION" EOF exit 1 # Local variables: -# eval: (add-hook 'write-file-functions 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" diff -Nru acl-2.2.53/build-aux/config.sub acl-2.3.1/build-aux/config.sub --- acl-2.2.53/build-aux/config.sub 2018-06-19 03:09:54.000000000 +0000 +++ acl-2.3.1/build-aux/config.sub 2020-08-31 16:19:54.000000000 +0000 @@ -2,7 +2,7 @@ # Configuration validation subroutine script. # Copyright 1992-2018 Free Software Foundation, Inc. -timestamp='2018-01-01' +timestamp='2018-08-29' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -94,7 +94,7 @@ *local*) # First pass through any local machine types. - echo $1 + echo "$1" exit ;; * ) @@ -110,1269 +110,1159 @@ exit 1;; esac -# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). -# Here we must recognize all the valid KERNEL-OS combinations. -maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` -case $maybe_os in - nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ - linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ - knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \ - kopensolaris*-gnu* | cloudabi*-eabi* | \ - storm-chaos* | os2-emx* | rtmk-nova*) - os=-$maybe_os - basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` - ;; - android-linux) - os=-linux-android - basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown - ;; - *) - basic_machine=`echo $1 | sed 's/-[^-]*$//'` - if [ $basic_machine != $1 ] - then os=`echo $1 | sed 's/.*-/-/'` - else os=; fi - ;; -esac - -### Let's recognize common machines as not being operating systems so -### that things like config.sub decstation-3100 work. We also -### recognize some manufacturers as not being operating systems, so we -### can provide default operating systems below. -case $os in - -sun*os*) - # Prevent following clause from handling this invalid input. - ;; - -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ - -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ - -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ - -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ - -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ - -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ - -apple | -axis | -knuth | -cray | -microblaze*) - os= - basic_machine=$1 - ;; - -bluegene*) - os=-cnk - ;; - -sim | -cisco | -oki | -wec | -winbond) - os= - basic_machine=$1 - ;; - -scout) - ;; - -wrs) - os=-vxworks - basic_machine=$1 - ;; - -chorusos*) - os=-chorusos - basic_machine=$1 - ;; - -chorusrdb) - os=-chorusrdb - basic_machine=$1 - ;; - -hiux*) - os=-hiuxwe2 - ;; - -sco6) - os=-sco5v6 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco5) - os=-sco3.2v5 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco4) - os=-sco3.2v4 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco3.2.[4-9]*) - os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco3.2v[4-9]*) - # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco5v6*) - # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco*) - os=-sco3.2v2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -udk*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -isc) - os=-isc2.2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -clix*) - basic_machine=clipper-intergraph - ;; - -isc*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -lynx*178) - os=-lynxos178 - ;; - -lynx*5) - os=-lynxos5 +# Split fields of configuration type +IFS="-" read -r field1 field2 field3 field4 <&2 + exit 1 ;; - -lynx*) - os=-lynxos + *-*-*-*) + basic_machine=$field1-$field2 + os=$field3-$field4 ;; - -ptx*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` + *-*-*) + # Ambiguous whether COMPANY is present, or skipped and KERNEL-OS is two + # parts + maybe_os=$field2-$field3 + case $maybe_os in + nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc \ + | linux-newlib* | linux-musl* | linux-uclibc* | uclinux-uclibc* \ + | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \ + | netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \ + | storm-chaos* | os2-emx* | rtmk-nova*) + basic_machine=$field1 + os=$maybe_os + ;; + android-linux) + basic_machine=$field1-unknown + os=linux-android + ;; + *) + basic_machine=$field1-$field2 + os=$field3 + ;; + esac ;; - -psos*) - os=-psos + *-*) + # A lone config we happen to match not fitting any patern + case $field1-$field2 in + decstation-3100) + basic_machine=mips-dec + os= + ;; + *-*) + # Second component is usually, but not always the OS + case $field2 in + # Prevent following clause from handling this valid os + sun*os*) + basic_machine=$field1 + os=$field2 + ;; + # Manufacturers + dec* | mips* | sequent* | encore* | pc533* | sgi* | sony* \ + | att* | 7300* | 3300* | delta* | motorola* | sun[234]* \ + | unicom* | ibm* | next | hp | isi* | apollo | altos* \ + | convergent* | ncr* | news | 32* | 3600* | 3100* \ + | hitachi* | c[123]* | convex* | sun | crds | omron* | dg \ + | ultra | tti* | harris | dolphin | highlevel | gould \ + | cbm | ns | masscomp | apple | axis | knuth | cray \ + | microblaze* | sim | cisco \ + | oki | wec | wrs | winbond) + basic_machine=$field1-$field2 + os= + ;; + *) + basic_machine=$field1 + os=$field2 + ;; + esac + ;; + esac ;; - -mint | -mint[0-9]*) - basic_machine=m68k-atari - os=-mint + *) + # Convert single-component short-hands not valid as part of + # multi-component configurations. + case $field1 in + 386bsd) + basic_machine=i386-pc + os=bsd + ;; + a29khif) + basic_machine=a29k-amd + os=udi + ;; + adobe68k) + basic_machine=m68010-adobe + os=scout + ;; + alliant) + basic_machine=fx80-alliant + os= + ;; + altos | altos3068) + basic_machine=m68k-altos + os= + ;; + am29k) + basic_machine=a29k-none + os=bsd + ;; + amdahl) + basic_machine=580-amdahl + os=sysv + ;; + amiga) + basic_machine=m68k-unknown + os= + ;; + amigaos | amigados) + basic_machine=m68k-unknown + os=amigaos + ;; + amigaunix | amix) + basic_machine=m68k-unknown + os=sysv4 + ;; + apollo68) + basic_machine=m68k-apollo + os=sysv + ;; + apollo68bsd) + basic_machine=m68k-apollo + os=bsd + ;; + aros) + basic_machine=i386-pc + os=aros + ;; + aux) + basic_machine=m68k-apple + os=aux + ;; + balance) + basic_machine=ns32k-sequent + os=dynix + ;; + blackfin) + basic_machine=bfin-unknown + os=linux + ;; + cegcc) + basic_machine=arm-unknown + os=cegcc + ;; + convex-c1) + basic_machine=c1-convex + os=bsd + ;; + convex-c2) + basic_machine=c2-convex + os=bsd + ;; + convex-c32) + basic_machine=c32-convex + os=bsd + ;; + convex-c34) + basic_machine=c34-convex + os=bsd + ;; + convex-c38) + basic_machine=c38-convex + os=bsd + ;; + cray) + basic_machine=j90-cray + os=unicos + ;; + crds | unos) + basic_machine=m68k-crds + os= + ;; + da30) + basic_machine=m68k-da30 + os= + ;; + decstation | pmax | pmin | dec3100 | decstatn) + basic_machine=mips-dec + os= + ;; + delta88) + basic_machine=m88k-motorola + os=sysv3 + ;; + dicos) + basic_machine=i686-pc + os=dicos + ;; + djgpp) + basic_machine=i586-pc + os=msdosdjgpp + ;; + ebmon29k) + basic_machine=a29k-amd + os=ebmon + ;; + es1800 | OSE68k | ose68k | ose | OSE) + basic_machine=m68k-ericsson + os=ose + ;; + gmicro) + basic_machine=tron-gmicro + os=sysv + ;; + go32) + basic_machine=i386-pc + os=go32 + ;; + h8300hms) + basic_machine=h8300-hitachi + os=hms + ;; + h8300xray) + basic_machine=h8300-hitachi + os=xray + ;; + h8500hms) + basic_machine=h8500-hitachi + os=hms + ;; + harris) + basic_machine=m88k-harris + os=sysv3 + ;; + hp300) + basic_machine=m68k-hp + ;; + hp300bsd) + basic_machine=m68k-hp + os=bsd + ;; + hp300hpux) + basic_machine=m68k-hp + os=hpux + ;; + hppaosf) + basic_machine=hppa1.1-hp + os=osf + ;; + hppro) + basic_machine=hppa1.1-hp + os=proelf + ;; + i386mach) + basic_machine=i386-mach + os=mach + ;; + vsta) + basic_machine=i386-pc + os=vsta + ;; + isi68 | isi) + basic_machine=m68k-isi + os=sysv + ;; + m68knommu) + basic_machine=m68k-unknown + os=linux + ;; + magnum | m3230) + basic_machine=mips-mips + os=sysv + ;; + merlin) + basic_machine=ns32k-utek + os=sysv + ;; + mingw64) + basic_machine=x86_64-pc + os=mingw64 + ;; + mingw32) + basic_machine=i686-pc + os=mingw32 + ;; + mingw32ce) + basic_machine=arm-unknown + os=mingw32ce + ;; + monitor) + basic_machine=m68k-rom68k + os=coff + ;; + morphos) + basic_machine=powerpc-unknown + os=morphos + ;; + moxiebox) + basic_machine=moxie-unknown + os=moxiebox + ;; + msdos) + basic_machine=i386-pc + os=msdos + ;; + msys) + basic_machine=i686-pc + os=msys + ;; + mvs) + basic_machine=i370-ibm + os=mvs + ;; + nacl) + basic_machine=le32-unknown + os=nacl + ;; + ncr3000) + basic_machine=i486-ncr + os=sysv4 + ;; + netbsd386) + basic_machine=i386-pc + os=netbsd + ;; + netwinder) + basic_machine=armv4l-rebel + os=linux + ;; + news | news700 | news800 | news900) + basic_machine=m68k-sony + os=newsos + ;; + news1000) + basic_machine=m68030-sony + os=newsos + ;; + necv70) + basic_machine=v70-nec + os=sysv + ;; + nh3000) + basic_machine=m68k-harris + os=cxux + ;; + nh[45]000) + basic_machine=m88k-harris + os=cxux + ;; + nindy960) + basic_machine=i960-intel + os=nindy + ;; + mon960) + basic_machine=i960-intel + os=mon960 + ;; + nonstopux) + basic_machine=mips-compaq + os=nonstopux + ;; + os400) + basic_machine=powerpc-ibm + os=os400 + ;; + OSE68000 | ose68000) + basic_machine=m68000-ericsson + os=ose + ;; + os68k) + basic_machine=m68k-none + os=os68k + ;; + paragon) + basic_machine=i860-intel + os=osf + ;; + parisc) + basic_machine=hppa-unknown + os=linux + ;; + pw32) + basic_machine=i586-unknown + os=pw32 + ;; + rdos | rdos64) + basic_machine=x86_64-pc + os=rdos + ;; + rdos32) + basic_machine=i386-pc + os=rdos + ;; + rom68k) + basic_machine=m68k-rom68k + os=coff + ;; + sa29200) + basic_machine=a29k-amd + os=udi + ;; + sei) + basic_machine=mips-sei + os=seiux + ;; + sequent) + basic_machine=i386-sequent + os= + ;; + sps7) + basic_machine=m68k-bull + os=sysv2 + ;; + st2000) + basic_machine=m68k-tandem + os= + ;; + stratus) + basic_machine=i860-stratus + os=sysv4 + ;; + sun2) + basic_machine=m68000-sun + os= + ;; + sun2os3) + basic_machine=m68000-sun + os=sunos3 + ;; + sun2os4) + basic_machine=m68000-sun + os=sunos4 + ;; + sun3) + basic_machine=m68k-sun + os= + ;; + sun3os3) + basic_machine=m68k-sun + os=sunos3 + ;; + sun3os4) + basic_machine=m68k-sun + os=sunos4 + ;; + sun4) + basic_machine=sparc-sun + os= + ;; + sun4os3) + basic_machine=sparc-sun + os=sunos3 + ;; + sun4os4) + basic_machine=sparc-sun + os=sunos4 + ;; + sun4sol2) + basic_machine=sparc-sun + os=solaris2 + ;; + sun386 | sun386i | roadrunner) + basic_machine=i386-sun + os= + ;; + sv1) + basic_machine=sv1-cray + os=unicos + ;; + symmetry) + basic_machine=i386-sequent + os=dynix + ;; + t3e) + basic_machine=alphaev5-cray + os=unicos + ;; + t90) + basic_machine=t90-cray + os=unicos + ;; + toad1) + basic_machine=pdp10-xkl + os=tops20 + ;; + tpf) + basic_machine=s390x-ibm + os=tpf + ;; + udi29k) + basic_machine=a29k-amd + os=udi + ;; + ultra3) + basic_machine=a29k-nyu + os=sym1 + ;; + v810 | necv810) + basic_machine=v810-nec + os=none + ;; + vaxv) + basic_machine=vax-dec + os=sysv + ;; + vms) + basic_machine=vax-dec + os=vms + ;; + vxworks960) + basic_machine=i960-wrs + os=vxworks + ;; + vxworks68) + basic_machine=m68k-wrs + os=vxworks + ;; + vxworks29k) + basic_machine=a29k-wrs + os=vxworks + ;; + xbox) + basic_machine=i686-pc + os=mingw32 + ;; + ymp) + basic_machine=ymp-cray + os=unicos + ;; + *) + basic_machine=$1 + os= + ;; + esac ;; esac -# Decode aliases for certain CPU-COMPANY combinations. +# Decode 1-component or ad-hoc basic machines case $basic_machine in - # Recognize the basic CPU types without company name. - # Some are omitted here because they have special meanings below. - 1750a | 580 \ - | a29k \ - | aarch64 | aarch64_be \ - | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ - | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ - | am33_2.0 \ - | arc | arceb \ - | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ - | avr | avr32 \ - | ba \ - | be32 | be64 \ - | bfin \ - | c4x | c8051 | clipper \ - | d10v | d30v | dlx | dsp16xx | dvp \ - | e2k | epiphany \ - | fido | fr30 | frv | ft32 \ - | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ - | hexagon \ - | i370 | i860 | i960 | ia16 | ia64 \ - | ip2k | iq2000 \ - | k1om \ - | le32 | le64 \ - | lm32 \ - | m32c | m32r | m32rle | m68000 | m68k | m88k \ - | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ - | mips | mipsbe | mipseb | mipsel | mipsle \ - | mips16 \ - | mips64 | mips64el \ - | mips64octeon | mips64octeonel \ - | mips64orion | mips64orionel \ - | mips64r5900 | mips64r5900el \ - | mips64vr | mips64vrel \ - | mips64vr4100 | mips64vr4100el \ - | mips64vr4300 | mips64vr4300el \ - | mips64vr5000 | mips64vr5000el \ - | mips64vr5900 | mips64vr5900el \ - | mipsisa32 | mipsisa32el \ - | mipsisa32r2 | mipsisa32r2el \ - | mipsisa32r6 | mipsisa32r6el \ - | mipsisa64 | mipsisa64el \ - | mipsisa64r2 | mipsisa64r2el \ - | mipsisa64r6 | mipsisa64r6el \ - | mipsisa64sb1 | mipsisa64sb1el \ - | mipsisa64sr71k | mipsisa64sr71kel \ - | mipsr5900 | mipsr5900el \ - | mipstx39 | mipstx39el \ - | mn10200 | mn10300 \ - | moxie \ - | mt \ - | msp430 \ - | nds32 | nds32le | nds32be \ - | nios | nios2 | nios2eb | nios2el \ - | ns16k | ns32k \ - | open8 | or1k | or1knd | or32 \ - | pdp10 | pdp11 | pj | pjl \ - | powerpc | powerpc64 | powerpc64le | powerpcle \ - | pru \ - | pyramid \ - | riscv32 | riscv64 \ - | rl78 | rx \ - | score \ - | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[234]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ - | sh64 | sh64le \ - | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ - | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ - | spu \ - | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ - | ubicom32 \ - | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ - | visium \ - | wasm32 \ - | x86 | xc16x | xstormy16 | xtensa \ - | z8k | z80) - basic_machine=$basic_machine-unknown - ;; - c54x) - basic_machine=tic54x-unknown - ;; - c55x) - basic_machine=tic55x-unknown - ;; - c6x) - basic_machine=tic6x-unknown - ;; - leon|leon[3-9]) - basic_machine=sparc-$basic_machine - ;; - m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip) - basic_machine=$basic_machine-unknown - os=-none + # Here we handle the default manufacturer of certain CPU types. It is in + # some cases the only manufacturer, in others, it is the most popular. + w89k) + cpu=hppa1.1 + vendor=winbond ;; - m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) + op50n) + cpu=hppa1.1 + vendor=oki ;; - ms1) - basic_machine=mt-unknown + op60c) + cpu=hppa1.1 + vendor=oki ;; - - strongarm | thumb | xscale) - basic_machine=arm-unknown + ibm*) + cpu=i370 + vendor=ibm ;; - xgate) - basic_machine=$basic_machine-unknown - os=-none + orion105) + cpu=clipper + vendor=highlevel ;; - xscaleeb) - basic_machine=armeb-unknown + mac | mpw | mac-mpw) + cpu=m68k + vendor=apple ;; - - xscaleel) - basic_machine=armel-unknown + pmac | pmac-mpw) + cpu=powerpc + vendor=apple ;; - # We use `pc' rather than `unknown' - # because (1) that's what they normally are, and - # (2) the word "unknown" tends to confuse beginning users. - i*86 | x86_64) - basic_machine=$basic_machine-pc - ;; - # Object if more than one company name word. - *-*-*) - echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 - exit 1 - ;; - # Recognize the basic CPU types with company name. - 580-* \ - | a29k-* \ - | aarch64-* | aarch64_be-* \ - | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ - | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ - | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ - | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ - | avr-* | avr32-* \ - | ba-* \ - | be32-* | be64-* \ - | bfin-* | bs2000-* \ - | c[123]* | c30-* | [cjt]90-* | c4x-* \ - | c8051-* | clipper-* | craynv-* | cydra-* \ - | d10v-* | d30v-* | dlx-* \ - | e2k-* | elxsi-* \ - | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ - | h8300-* | h8500-* \ - | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ - | hexagon-* \ - | i*86-* | i860-* | i960-* | ia16-* | ia64-* \ - | ip2k-* | iq2000-* \ - | k1om-* \ - | le32-* | le64-* \ - | lm32-* \ - | m32c-* | m32r-* | m32rle-* \ - | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ - | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ - | microblaze-* | microblazeel-* \ - | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ - | mips16-* \ - | mips64-* | mips64el-* \ - | mips64octeon-* | mips64octeonel-* \ - | mips64orion-* | mips64orionel-* \ - | mips64r5900-* | mips64r5900el-* \ - | mips64vr-* | mips64vrel-* \ - | mips64vr4100-* | mips64vr4100el-* \ - | mips64vr4300-* | mips64vr4300el-* \ - | mips64vr5000-* | mips64vr5000el-* \ - | mips64vr5900-* | mips64vr5900el-* \ - | mipsisa32-* | mipsisa32el-* \ - | mipsisa32r2-* | mipsisa32r2el-* \ - | mipsisa32r6-* | mipsisa32r6el-* \ - | mipsisa64-* | mipsisa64el-* \ - | mipsisa64r2-* | mipsisa64r2el-* \ - | mipsisa64r6-* | mipsisa64r6el-* \ - | mipsisa64sb1-* | mipsisa64sb1el-* \ - | mipsisa64sr71k-* | mipsisa64sr71kel-* \ - | mipsr5900-* | mipsr5900el-* \ - | mipstx39-* | mipstx39el-* \ - | mmix-* \ - | mt-* \ - | msp430-* \ - | nds32-* | nds32le-* | nds32be-* \ - | nios-* | nios2-* | nios2eb-* | nios2el-* \ - | none-* | np1-* | ns16k-* | ns32k-* \ - | open8-* \ - | or1k*-* \ - | orion-* \ - | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ - | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ - | pru-* \ - | pyramid-* \ - | riscv32-* | riscv64-* \ - | rl78-* | romp-* | rs6000-* | rx-* \ - | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ - | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ - | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ - | sparclite-* \ - | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx*-* \ - | tahoe-* \ - | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ - | tile*-* \ - | tron-* \ - | ubicom32-* \ - | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ - | vax-* \ - | visium-* \ - | wasm32-* \ - | we32k-* \ - | x86-* | x86_64-* | xc16x-* | xps100-* \ - | xstormy16-* | xtensa*-* \ - | ymp-* \ - | z8k-* | z80-*) - ;; - # Recognize the basic CPU types without company name, with glob match. - xtensa*) - basic_machine=$basic_machine-unknown - ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. - 386bsd) - basic_machine=i386-unknown - os=-bsd - ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) - basic_machine=m68000-att + cpu=m68000 + vendor=att ;; 3b*) - basic_machine=we32k-att - ;; - a29khif) - basic_machine=a29k-amd - os=-udi - ;; - abacus) - basic_machine=abacus-unknown - ;; - adobe68k) - basic_machine=m68010-adobe - os=-scout - ;; - alliant | fx80) - basic_machine=fx80-alliant - ;; - altos | altos3068) - basic_machine=m68k-altos - ;; - am29k) - basic_machine=a29k-none - os=-bsd - ;; - amd64) - basic_machine=x86_64-pc - ;; - amd64-*) - basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - amdahl) - basic_machine=580-amdahl - os=-sysv - ;; - amiga | amiga-*) - basic_machine=m68k-unknown - ;; - amigaos | amigados) - basic_machine=m68k-unknown - os=-amigaos - ;; - amigaunix | amix) - basic_machine=m68k-unknown - os=-sysv4 - ;; - apollo68) - basic_machine=m68k-apollo - os=-sysv - ;; - apollo68bsd) - basic_machine=m68k-apollo - os=-bsd - ;; - aros) - basic_machine=i386-pc - os=-aros - ;; - asmjs) - basic_machine=asmjs-unknown - ;; - aux) - basic_machine=m68k-apple - os=-aux - ;; - balance) - basic_machine=ns32k-sequent - os=-dynix - ;; - blackfin) - basic_machine=bfin-unknown - os=-linux - ;; - blackfin-*) - basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` - os=-linux + cpu=we32k + vendor=att ;; bluegene*) - basic_machine=powerpc-ibm - os=-cnk - ;; - c54x-*) - basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - c55x-*) - basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - c6x-*) - basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - c90) - basic_machine=c90-cray - os=-unicos - ;; - cegcc) - basic_machine=arm-unknown - os=-cegcc - ;; - convex-c1) - basic_machine=c1-convex - os=-bsd - ;; - convex-c2) - basic_machine=c2-convex - os=-bsd - ;; - convex-c32) - basic_machine=c32-convex - os=-bsd - ;; - convex-c34) - basic_machine=c34-convex - os=-bsd - ;; - convex-c38) - basic_machine=c38-convex - os=-bsd - ;; - cray | j90) - basic_machine=j90-cray - os=-unicos - ;; - craynv) - basic_machine=craynv-cray - os=-unicosmp - ;; - cr16 | cr16-*) - basic_machine=cr16-unknown - os=-elf - ;; - crds | unos) - basic_machine=m68k-crds - ;; - crisv32 | crisv32-* | etraxfs*) - basic_machine=crisv32-axis - ;; - cris | cris-* | etrax*) - basic_machine=cris-axis - ;; - crx) - basic_machine=crx-unknown - os=-elf - ;; - da30 | da30-*) - basic_machine=m68k-da30 - ;; - decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) - basic_machine=mips-dec + cpu=powerpc + vendor=ibm + os=cnk ;; decsystem10* | dec10*) - basic_machine=pdp10-dec - os=-tops10 + cpu=pdp10 + vendor=dec + os=tops10 ;; decsystem20* | dec20*) - basic_machine=pdp10-dec - os=-tops20 + cpu=pdp10 + vendor=dec + os=tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) - basic_machine=m68k-motorola - ;; - delta88) - basic_machine=m88k-motorola - os=-sysv3 - ;; - dicos) - basic_machine=i686-pc - os=-dicos - ;; - djgpp) - basic_machine=i586-pc - os=-msdosdjgpp - ;; - dpx20 | dpx20-*) - basic_machine=rs6000-bull - os=-bosx + cpu=m68k + vendor=motorola ;; dpx2*) - basic_machine=m68k-bull - os=-sysv3 - ;; - e500v[12]) - basic_machine=powerpc-unknown - os=$os"spe" - ;; - e500v[12]-*) - basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` - os=$os"spe" - ;; - ebmon29k) - basic_machine=a29k-amd - os=-ebmon - ;; - elxsi) - basic_machine=elxsi-elxsi - os=-bsd + cpu=m68k + vendor=bull + os=sysv3 ;; encore | umax | mmax) - basic_machine=ns32k-encore + cpu=ns32k + vendor=encore ;; - es1800 | OSE68k | ose68k | ose | OSE) - basic_machine=m68k-ericsson - os=-ose + elxsi) + cpu=elxsi + vendor=elxsi + os=${os:-bsd} ;; fx2800) - basic_machine=i860-alliant + cpu=i860 + vendor=alliant ;; genix) - basic_machine=ns32k-ns - ;; - gmicro) - basic_machine=tron-gmicro - os=-sysv - ;; - go32) - basic_machine=i386-pc - os=-go32 + cpu=ns32k + vendor=ns ;; h3050r* | hiux*) - basic_machine=hppa1.1-hitachi - os=-hiuxwe2 - ;; - h8300hms) - basic_machine=h8300-hitachi - os=-hms - ;; - h8300xray) - basic_machine=h8300-hitachi - os=-xray - ;; - h8500hms) - basic_machine=h8500-hitachi - os=-hms - ;; - harris) - basic_machine=m88k-harris - os=-sysv3 - ;; - hp300-*) - basic_machine=m68k-hp - ;; - hp300bsd) - basic_machine=m68k-hp - os=-bsd - ;; - hp300hpux) - basic_machine=m68k-hp - os=-hpux + cpu=hppa1.1 + vendor=hitachi + os=hiuxwe2 ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) - basic_machine=hppa1.0-hp + cpu=hppa1.0 + vendor=hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) - basic_machine=m68000-hp + cpu=m68000 + vendor=hp ;; hp9k3[2-9][0-9]) - basic_machine=m68k-hp + cpu=m68k + vendor=hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) - basic_machine=hppa1.0-hp + cpu=hppa1.0 + vendor=hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) - basic_machine=hppa1.1-hp + cpu=hppa1.1 + vendor=hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp - basic_machine=hppa1.1-hp + cpu=hppa1.1 + vendor=hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp - basic_machine=hppa1.1-hp + cpu=hppa1.1 + vendor=hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) - basic_machine=hppa1.1-hp + cpu=hppa1.1 + vendor=hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) - basic_machine=hppa1.0-hp - ;; - hppa-next) - os=-nextstep3 - ;; - hppaosf) - basic_machine=hppa1.1-hp - os=-osf - ;; - hppro) - basic_machine=hppa1.1-hp - os=-proelf - ;; - i370-ibm* | ibm*) - basic_machine=i370-ibm + cpu=hppa1.0 + vendor=hp ;; i*86v32) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv32 + cpu=`echo "$1" | sed -e 's/86.*/86/'` + vendor=pc + os=sysv32 ;; i*86v4*) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv4 + cpu=`echo "$1" | sed -e 's/86.*/86/'` + vendor=pc + os=sysv4 ;; i*86v) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv + cpu=`echo "$1" | sed -e 's/86.*/86/'` + vendor=pc + os=sysv ;; i*86sol2) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-solaris2 - ;; - i386mach) - basic_machine=i386-mach - os=-mach - ;; - i386-vsta | vsta) - basic_machine=i386-unknown - os=-vsta + cpu=`echo "$1" | sed -e 's/86.*/86/'` + vendor=pc + os=solaris2 + ;; + j90 | j90-cray) + cpu=j90 + vendor=cray + os=${os:-unicos} ;; iris | iris4d) - basic_machine=mips-sgi + cpu=mips + vendor=sgi case $os in - -irix*) + irix*) ;; *) - os=-irix4 + os=irix4 ;; esac ;; - isi68 | isi) - basic_machine=m68k-isi - os=-sysv - ;; - leon-*|leon[3-9]-*) - basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'` - ;; - m68knommu) - basic_machine=m68k-unknown - os=-linux - ;; - m68knommu-*) - basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` - os=-linux - ;; - m88k-omron*) - basic_machine=m88k-omron - ;; - magnum | m3230) - basic_machine=mips-mips - os=-sysv - ;; - merlin) - basic_machine=ns32k-utek - os=-sysv - ;; - microblaze*) - basic_machine=microblaze-xilinx - ;; - mingw64) - basic_machine=x86_64-pc - os=-mingw64 - ;; - mingw32) - basic_machine=i686-pc - os=-mingw32 - ;; - mingw32ce) - basic_machine=arm-unknown - os=-mingw32ce - ;; miniframe) - basic_machine=m68000-convergent + cpu=m68000 + vendor=convergent ;; - *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) - basic_machine=m68k-atari - os=-mint - ;; - mipsEE* | ee | ps2) - basic_machine=mips64r5900el-scei - case $os in - -linux*) - ;; - *) - os=-elf - ;; - esac - ;; - iop) - basic_machine=mipsel-scei - os=-irx - ;; - dvp) - basic_machine=dvp-scei - os=-elf - ;; - mips3*-*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` - ;; - mips3*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown - ;; - monitor) - basic_machine=m68k-rom68k - os=-coff - ;; - morphos) - basic_machine=powerpc-unknown - os=-morphos - ;; - moxiebox) - basic_machine=moxie-unknown - os=-moxiebox - ;; - msdos) - basic_machine=i386-pc - os=-msdos - ;; - ms1-*) - basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` - ;; - msys) - basic_machine=i686-pc - os=-msys - ;; - mvs) - basic_machine=i370-ibm - os=-mvs - ;; - nacl) - basic_machine=le32-unknown - os=-nacl - ;; - ncr3000) - basic_machine=i486-ncr - os=-sysv4 - ;; - netbsd386) - basic_machine=i386-unknown - os=-netbsd - ;; - netwinder) - basic_machine=armv4l-rebel - os=-linux - ;; - news | news700 | news800 | news900) - basic_machine=m68k-sony - os=-newsos - ;; - news1000) - basic_machine=m68030-sony - os=-newsos + *mint | mint[0-9]* | *MiNT | *MiNT[0-9]*) + cpu=m68k + vendor=atari + os=mint ;; news-3600 | risc-news) - basic_machine=mips-sony - os=-newsos - ;; - necv70) - basic_machine=v70-nec - os=-sysv + cpu=mips + vendor=sony + os=newsos ;; next | m*-next) - basic_machine=m68k-next + cpu=m68k + vendor=next case $os in - -nextstep* ) + nextstep* ) ;; - -ns2*) - os=-nextstep2 + ns2*) + os=nextstep2 ;; *) - os=-nextstep3 + os=nextstep3 ;; esac ;; - nh3000) - basic_machine=m68k-harris - os=-cxux - ;; - nh[45]000) - basic_machine=m88k-harris - os=-cxux - ;; - nindy960) - basic_machine=i960-intel - os=-nindy - ;; - mon960) - basic_machine=i960-intel - os=-mon960 - ;; - nonstopux) - basic_machine=mips-compaq - os=-nonstopux - ;; np1) - basic_machine=np1-gould - ;; - neo-tandem) - basic_machine=neo-tandem - ;; - nse-tandem) - basic_machine=nse-tandem - ;; - nsr-tandem) - basic_machine=nsr-tandem - ;; - nsx-tandem) - basic_machine=nsx-tandem + cpu=np1 + vendor=gould ;; op50n-* | op60c-*) - basic_machine=hppa1.1-oki - os=-proelf - ;; - openrisc | openrisc-*) - basic_machine=or32-unknown - ;; - os400) - basic_machine=powerpc-ibm - os=-os400 - ;; - OSE68000 | ose68000) - basic_machine=m68000-ericsson - os=-ose - ;; - os68k) - basic_machine=m68k-none - os=-os68k + cpu=hppa1.1 + vendor=oki + os=proelf ;; pa-hitachi) - basic_machine=hppa1.1-hitachi - os=-hiuxwe2 - ;; - paragon) - basic_machine=i860-intel - os=-osf - ;; - parisc) - basic_machine=hppa-unknown - os=-linux - ;; - parisc-*) - basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` - os=-linux + cpu=hppa1.1 + vendor=hitachi + os=hiuxwe2 ;; pbd) - basic_machine=sparc-tti + cpu=sparc + vendor=tti ;; pbb) - basic_machine=m68k-tti - ;; - pc532 | pc532-*) - basic_machine=ns32k-pc532 - ;; - pc98) - basic_machine=i386-pc - ;; - pc98-*) - basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pentium | p5 | k5 | k6 | nexgen | viac3) - basic_machine=i586-pc + cpu=m68k + vendor=tti ;; - pentiumpro | p6 | 6x86 | athlon | athlon_*) - basic_machine=i686-pc + pc532) + cpu=ns32k + vendor=pc532 ;; - pentiumii | pentium2 | pentiumiii | pentium3) - basic_machine=i686-pc - ;; - pentium4) - basic_machine=i786-pc - ;; - pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) - basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` + pn) + cpu=pn + vendor=gould ;; - pentiumpro-* | p6-* | 6x86-* | athlon-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + power) + cpu=power + vendor=ibm ;; - pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ps2) + cpu=i386 + vendor=ibm ;; - pentium4-*) - basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + rm[46]00) + cpu=mips + vendor=siemens ;; - pn) - basic_machine=pn-gould + rtpc | rtpc-*) + cpu=romp + vendor=ibm ;; - power) basic_machine=power-ibm + sde) + cpu=mipsisa32 + vendor=sde + os=${os:-elf} + ;; + simso-wrs) + cpu=sparclite + vendor=wrs + os=vxworks ;; - ppc | ppcbe) basic_machine=powerpc-unknown + tower | tower-32) + cpu=m68k + vendor=ncr ;; - ppc-* | ppcbe-*) - basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + vpp*|vx|vx-*) + cpu=f301 + vendor=fujitsu ;; - ppcle | powerpclittle) - basic_machine=powerpcle-unknown + w65) + cpu=w65 + vendor=wdc ;; - ppcle-* | powerpclittle-*) - basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` + w89k-*) + cpu=hppa1.1 + vendor=winbond + os=proelf ;; - ppc64) basic_machine=powerpc64-unknown + none) + cpu=none + vendor=none ;; - ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + leon|leon[3-9]) + cpu=sparc + vendor=$basic_machine ;; - ppc64le | powerpc64little) - basic_machine=powerpc64le-unknown + leon-*|leon[3-9]-*) + cpu=sparc + vendor=`echo "$basic_machine" | sed 's/-.*//'` ;; - ppc64le-* | powerpc64little-*) - basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` + + *-*) + IFS="-" read -r cpu vendor <&2 - exit 1 + # Recognize the cannonical CPU types that are allowed with any + # company name. + case $cpu in + 1750a | 580 \ + | a29k \ + | aarch64 | aarch64_be \ + | abacus \ + | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] \ + | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] \ + | alphapca5[67] | alpha64pca5[67] \ + | am33_2.0 \ + | arc | arceb \ + | arm | arm[lb]e | arme[lb] | armv* \ + | avr | avr32 \ + | asmjs \ + | ba \ + | be32 | be64 \ + | bfin | bs2000 \ + | c[123]* | c30 | [cjt]90 | c4x \ + | c8051 | clipper | craynv | csky | cydra \ + | d10v | d30v | dlx | dsp16xx \ + | e2k | elxsi | epiphany \ + | f30[01] | f700 | fido | fr30 | frv | ft32 | fx80 \ + | h8300 | h8500 \ + | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ + | hexagon \ + | i370 | i*86 | i860 | i960 | ia16 | ia64 \ + | ip2k | iq2000 \ + | k1om \ + | le32 | le64 \ + | lm32 \ + | m32c | m32r | m32rle \ + | m5200 | m68000 | m680[012346]0 | m68360 | m683?2 | m68k | v70 | w65 \ + | m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip \ + | m88110 | m88k | maxq | mb | mcore | mep | metag \ + | microblaze | microblazeel \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64el \ + | mips64octeon | mips64octeonel \ + | mips64orion | mips64orionel \ + | mips64r5900 | mips64r5900el \ + | mips64vr | mips64vrel \ + | mips64vr4100 | mips64vr4100el \ + | mips64vr4300 | mips64vr4300el \ + | mips64vr5000 | mips64vr5000el \ + | mips64vr5900 | mips64vr5900el \ + | mipsisa32 | mipsisa32el \ + | mipsisa32r2 | mipsisa32r2el \ + | mipsisa32r6 | mipsisa32r6el \ + | mipsisa64 | mipsisa64el \ + | mipsisa64r2 | mipsisa64r2el \ + | mipsisa64r6 | mipsisa64r6el \ + | mipsisa64sb1 | mipsisa64sb1el \ + | mipsisa64sr71k | mipsisa64sr71kel \ + | mipsr5900 | mipsr5900el \ + | mipstx39 | mipstx39el \ + | mmix \ + | mn10200 | mn10300 \ + | moxie \ + | mt \ + | msp430 \ + | nds32 | nds32le | nds32be \ + | nfp \ + | nios | nios2 | nios2eb | nios2el \ + | none | np1 | ns16k | ns32k \ + | open8 \ + | or1k* \ + | or32 \ + | orion \ + | pdp10 | pdp11 | pj | pjl | pn | power \ + | powerpc | powerpc64 | powerpc64le | powerpcle | powerpcspe \ + | pru \ + | pyramid \ + | riscv | riscv32 | riscv64 \ + | rl78 | romp | rs6000 | rx \ + | score \ + | sh | sh[1234] | sh[24]a | sh[24]ae[lb] | sh[23]e | she[lb] | sh[lb]e \ + | sh[1234]e[lb] | sh[12345][lb]e | sh[23]ele | sh64 | sh64le \ + | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet \ + | sparclite \ + | sparcv8 | sparcv9 | sparcv9b | sparcv9v | sv1 | sx* \ + | spu \ + | tahoe \ + | tic30 | tic4x | tic54x | tic55x | tic6x | tic80 \ + | tron \ + | ubicom32 \ + | v850 | v850e | v850e1 | v850es | v850e2 | v850e2v3 \ + | vax \ + | visium \ + | wasm32 \ + | we32k \ + | x86 | x86_64 | xc16x | xgate | xps100 \ + | xstormy16 | xtensa* \ + | ymp \ + | z8k | z80) + ;; + + *) + echo Invalid configuration \`"$1"\': machine \`"$cpu-$vendor"\' not recognized 1>&2 + exit 1 + ;; + esac ;; esac # Here we canonicalize certain aliases for manufacturers. -case $basic_machine in - *-digital*) - basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` +case $vendor in + digital*) + vendor=dec ;; - *-commodore*) - basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` + commodore*) + vendor=cbm ;; *) ;; @@ -1380,213 +1270,246 @@ # Decode manufacturer-specific aliases for certain operating systems. -if [ x"$os" != x"" ] +if [ x$os != x ] then case $os in # First match some system type aliases that might get confused # with valid system types. - # -solaris* is a basic system type, with this one exception. - -auroraux) - os=-auroraux + # solaris* is a basic system type, with this one exception. + auroraux) + os=auroraux ;; - -solaris1 | -solaris1.*) - os=`echo $os | sed -e 's|solaris1|sunos4|'` + bluegene*) + os=cnk ;; - -solaris) - os=-solaris2 + solaris1 | solaris1.*) + os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; - -svr4*) - os=-sysv4 + solaris) + os=solaris2 ;; - -unixware*) - os=-sysv4.2uw + unixware*) + os=sysv4.2uw ;; - -gnu/linux*) + gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; + # es1800 is here to avoid being matched by es* (a different OS) + es1800*) + os=ose + ;; + # Some version numbers need modification + chorusos*) + os=chorusos + ;; + isc) + os=isc2.2 + ;; + sco6) + os=sco5v6 + ;; + sco5) + os=sco3.2v5 + ;; + sco4) + os=sco3.2v4 + ;; + sco3.2.[4-9]*) + os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` + ;; + sco3.2v[4-9]* | sco5v6*) + # Don't forget version if it is 3.2v4 or newer. + ;; + scout) + # Don't match below + ;; + sco*) + os=sco3.2v2 + ;; + psos*) + os=psos + ;; # Now accept the basic system types. # The portable systems comes first. # Each alternative MUST end in a * to match a version number. - # -sysv* is not here because it comes later, after sysvr4. - -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ - | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ - | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ - | -sym* | -kopensolaris* | -plan9* \ - | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ - | -aos* | -aros* | -cloudabi* | -sortix* \ - | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ - | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ - | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ - | -bitrig* | -openbsd* | -solidbsd* | -libertybsd* \ - | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ - | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ - | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ - | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ - | -chorusos* | -chorusrdb* | -cegcc* | -glidix* \ - | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ - | -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ - | -linux-newlib* | -linux-musl* | -linux-uclibc* \ - | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \ - | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ - | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ - | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* | -irx* \ - | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ - | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ - | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \ - | -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox* | -bme*) + # sysv* is not here because it comes later, after sysvr4. + gnu* | bsd* | mach* | minix* | genix* | ultrix* | irix* \ + | *vms* | esix* | aix* | cnk* | sunos | sunos[34]*\ + | hpux* | unos* | osf* | luna* | dgux* | auroraux* | solaris* \ + | sym* | kopensolaris* | plan9* \ + | amigaos* | amigados* | msdos* | newsos* | unicos* | aof* \ + | aos* | aros* | cloudabi* | sortix* \ + | nindy* | vxsim* | vxworks* | ebmon* | hms* | mvs* \ + | clix* | riscos* | uniplus* | iris* | isc* | rtu* | xenix* \ + | knetbsd* | mirbsd* | netbsd* \ + | bitrig* | openbsd* | solidbsd* | libertybsd* \ + | ekkobsd* | kfreebsd* | freebsd* | riscix* | lynxos* \ + | bosx* | nextstep* | cxux* | aout* | elf* | oabi* \ + | ptx* | coff* | ecoff* | winnt* | domain* | vsta* \ + | udi* | eabi* | lites* | ieee* | go32* | aux* | hcos* \ + | chorusrdb* | cegcc* | glidix* \ + | cygwin* | msys* | pe* | moss* | proelf* | rtems* \ + | midipix* | mingw32* | mingw64* | linux-gnu* | linux-android* \ + | linux-newlib* | linux-musl* | linux-uclibc* \ + | uxpv* | beos* | mpeix* | udk* | moxiebox* \ + | interix* | uwin* | mks* | rhapsody* | darwin* \ + | openstep* | oskit* | conix* | pw32* | nonstopux* \ + | storm-chaos* | tops10* | tenex* | tops20* | its* \ + | os2* | vos* | palmos* | uclinux* | nucleus* \ + | morphos* | superux* | rtmk* | windiss* \ + | powermax* | dnix* | nx6 | nx7 | sei* | dragonfly* \ + | skyos* | haiku* | rdos* | toppers* | drops* | es* \ + | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \ + | midnightbsd*) # Remember, each alternative MUST END IN *, to match a version number. ;; - -qnx*) - case $basic_machine in - x86-* | i*86-*) + qnx*) + case $cpu in + x86 | i*86) ;; *) - os=-nto$os + os=nto-$os ;; esac ;; - -nto-qnx*) + hiux*) + os=hiuxwe2 ;; - -nto*) - os=`echo $os | sed -e 's|nto|nto-qnx|'` + nto-qnx*) ;; - -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ - | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ - | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) + nto*) + os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; - -mac*) - os=`echo $os | sed -e 's|mac|macos|'` + sim | xray | os68k* | v88r* \ + | windows* | osx | abug | netware* | os9* \ + | macos* | mpw* | magic* | mmixware* | mon960* | lnews*) ;; - -linux-dietlibc) - os=-linux-dietlibc + linux-dietlibc) + os=linux-dietlibc ;; - -linux*) + linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; - -sunos5*) - os=`echo $os | sed -e 's|sunos5|solaris2|'` - ;; - -sunos6*) - os=`echo $os | sed -e 's|sunos6|solaris3|'` + lynx*178) + os=lynxos178 ;; - -opened*) - os=-openedition + lynx*5) + os=lynxos5 ;; - -os400*) - os=-os400 + lynx*) + os=lynxos ;; - -wince*) - os=-wince + mac*) + os=`echo "$os" | sed -e 's|mac|macos|'` ;; - -osfrose*) - os=-osfrose + opened*) + os=openedition ;; - -osf*) - os=-osf + os400*) + os=os400 ;; - -utek*) - os=-bsd + sunos5*) + os=`echo "$os" | sed -e 's|sunos5|solaris2|'` ;; - -dynix*) - os=-bsd + sunos6*) + os=`echo "$os" | sed -e 's|sunos6|solaris3|'` ;; - -acis*) - os=-aos + wince*) + os=wince ;; - -atheos*) - os=-atheos + utek*) + os=bsd ;; - -syllable*) - os=-syllable + dynix*) + os=bsd ;; - -386bsd) - os=-bsd + acis*) + os=aos ;; - -ctix* | -uts*) - os=-sysv + atheos*) + os=atheos ;; - -nova*) - os=-rtmk-nova + syllable*) + os=syllable ;; - -ns2) - os=-nextstep2 + 386bsd) + os=bsd ;; - -nsk*) - os=-nsk + ctix* | uts*) + os=sysv ;; - # Preserve the version number of sinix5. - -sinix5.*) - os=`echo $os | sed -e 's|sinix|sysv|'` + nova*) + os=rtmk-nova ;; - -sinix*) - os=-sysv4 + ns2) + os=nextstep2 ;; - -tpf*) - os=-tpf + nsk*) + os=nsk ;; - -triton*) - os=-sysv3 + # Preserve the version number of sinix5. + sinix5.*) + os=`echo $os | sed -e 's|sinix|sysv|'` ;; - -oss*) - os=-sysv3 + sinix*) + os=sysv4 ;; - -svr4) - os=-sysv4 + tpf*) + os=tpf ;; - -svr3) - os=-sysv3 + triton*) + os=sysv3 ;; - -sysvr4) - os=-sysv4 + oss*) + os=sysv3 ;; - # This must come after -sysvr4. - -sysv*) + svr4*) + os=sysv4 ;; - -ose*) - os=-ose + svr3) + os=sysv3 ;; - -es1800*) - os=-ose + sysvr4) + os=sysv4 ;; - -xenix) - os=-xenix + # This must come after sysvr4. + sysv*) ;; - -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) - os=-mint + ose*) + os=ose ;; - -aros*) - os=-aros + *mint | mint[0-9]* | *MiNT | MiNT[0-9]*) + os=mint ;; - -zvmoe) - os=-zvmoe + zvmoe) + os=zvmoe ;; - -dicos*) - os=-dicos + dicos*) + os=dicos ;; - -pikeos*) + pikeos*) # Until real need of OS specific support for # particular features comes up, bare metal # configurations are quite functional. - case $basic_machine in + case $cpu in arm*) - os=-eabi + os=eabi ;; *) - os=-elf + os=elf ;; esac ;; - -nacl*) + nacl*) ;; - -ios) + ios) + ;; + none) ;; - -none) + *-eabi) ;; *) - # Get rid of the `-' at the beginning of $os. - os=`echo $os | sed 's/[^-]*-//'` - echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 + echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2 exit 1 ;; esac @@ -1602,264 +1525,265 @@ # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. -case $basic_machine in +case $cpu-$vendor in score-*) - os=-elf + os=elf ;; spu-*) - os=-elf + os=elf ;; *-acorn) - os=-riscix1.2 + os=riscix1.2 ;; arm*-rebel) - os=-linux + os=linux ;; arm*-semi) - os=-aout + os=aout ;; c4x-* | tic4x-*) - os=-coff + os=coff ;; c8051-*) - os=-elf + os=elf + ;; + clipper-intergraph) + os=clix ;; hexagon-*) - os=-elf + os=elf ;; tic54x-*) - os=-coff + os=coff ;; tic55x-*) - os=-coff + os=coff ;; tic6x-*) - os=-coff + os=coff ;; # This must come before the *-dec entry. pdp10-*) - os=-tops20 + os=tops20 ;; pdp11-*) - os=-none + os=none ;; *-dec | vax-*) - os=-ultrix4.2 + os=ultrix4.2 ;; m68*-apollo) - os=-domain + os=domain ;; i386-sun) - os=-sunos4.0.2 + os=sunos4.0.2 ;; m68000-sun) - os=-sunos3 + os=sunos3 ;; m68*-cisco) - os=-aout + os=aout ;; mep-*) - os=-elf + os=elf ;; mips*-cisco) - os=-elf + os=elf ;; mips*-*) - os=-elf + os=elf ;; or32-*) - os=-coff + os=coff ;; *-tti) # must be before sparc entry or we get the wrong os. - os=-sysv3 + os=sysv3 ;; sparc-* | *-sun) - os=-sunos4.1.1 + os=sunos4.1.1 ;; pru-*) - os=-elf + os=elf ;; *-be) - os=-beos - ;; - *-haiku) - os=-haiku + os=beos ;; *-ibm) - os=-aix + os=aix ;; *-knuth) - os=-mmixware + os=mmixware ;; *-wec) - os=-proelf + os=proelf ;; *-winbond) - os=-proelf + os=proelf ;; *-oki) - os=-proelf + os=proelf ;; *-hp) - os=-hpux + os=hpux ;; *-hitachi) - os=-hiux + os=hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) - os=-sysv + os=sysv ;; *-cbm) - os=-amigaos + os=amigaos ;; *-dg) - os=-dgux + os=dgux ;; *-dolphin) - os=-sysv3 + os=sysv3 ;; m68k-ccur) - os=-rtu + os=rtu ;; m88k-omron*) - os=-luna + os=luna ;; *-next) - os=-nextstep + os=nextstep ;; *-sequent) - os=-ptx + os=ptx ;; *-crds) - os=-unos + os=unos ;; *-ns) - os=-genix + os=genix ;; i370-*) - os=-mvs - ;; - *-next) - os=-nextstep3 + os=mvs ;; *-gould) - os=-sysv + os=sysv ;; *-highlevel) - os=-bsd + os=bsd ;; *-encore) - os=-bsd + os=bsd ;; *-sgi) - os=-irix + os=irix ;; *-siemens) - os=-sysv4 + os=sysv4 ;; *-masscomp) - os=-rtu + os=rtu ;; f30[01]-fujitsu | f700-fujitsu) - os=-uxpv + os=uxpv ;; *-rom68k) - os=-coff + os=coff ;; *-*bug) - os=-coff + os=coff ;; *-apple) - os=-macos + os=macos ;; *-atari*) - os=-mint + os=mint + ;; + *-wrs) + os=vxworks ;; *) - os=-none + os=none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. -vendor=unknown -case $basic_machine in - *-unknown) +case $vendor in + unknown) case $os in - -riscix*) + riscix*) vendor=acorn ;; - -sunos*) + sunos*) vendor=sun ;; - -cnk*|-aix*) + cnk*|-aix*) vendor=ibm ;; - -beos*) + beos*) vendor=be ;; - -hpux*) + hpux*) vendor=hp ;; - -mpeix*) + mpeix*) vendor=hp ;; - -hiux*) + hiux*) vendor=hitachi ;; - -unos*) + unos*) vendor=crds ;; - -dgux*) + dgux*) vendor=dg ;; - -luna*) + luna*) vendor=omron ;; - -genix*) + genix*) vendor=ns ;; - -mvs* | -opened*) + clix*) + vendor=intergraph + ;; + mvs* | opened*) vendor=ibm ;; - -os400*) + os400*) vendor=ibm ;; - -ptx*) + ptx*) vendor=sequent ;; - -tpf*) + tpf*) vendor=ibm ;; - -vxsim* | -vxworks* | -windiss*) + vxsim* | vxworks* | windiss*) vendor=wrs ;; - -aux*) + aux*) vendor=apple ;; - -hms*) + hms*) vendor=hitachi ;; - -mpw* | -macos*) + mpw* | macos*) vendor=apple ;; - -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + *mint | mint[0-9]* | *MiNT | MiNT[0-9]*) vendor=atari ;; - -vos*) + vos*) vendor=stratus ;; esac - basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac -echo $basic_machine$os +echo "$cpu-$vendor-$os" exit # Local variables: -# eval: (add-hook 'write-file-functions 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" diff -Nru acl-2.2.53/build-aux/depcomp acl-2.3.1/build-aux/depcomp --- acl-2.2.53/build-aux/depcomp 2018-06-19 03:09:54.000000000 +0000 +++ acl-2.3.1/build-aux/depcomp 2020-08-31 16:19:54.000000000 +0000 @@ -1,9 +1,9 @@ #! /bin/sh # depcomp - compile a program generating dependencies as side-effects -scriptversion=2016-01-11.22; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1999-2017 Free Software Foundation, Inc. +# Copyright (C) 1999-2018 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -16,7 +16,7 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -783,7 +783,7 @@ # Local Variables: # mode: shell-script # sh-indentation: 2 -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" diff -Nru acl-2.2.53/build-aux/install-sh acl-2.3.1/build-aux/install-sh --- acl-2.2.53/build-aux/install-sh 2018-06-19 03:09:54.000000000 +0000 +++ acl-2.3.1/build-aux/install-sh 2020-08-31 16:19:54.000000000 +0000 @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2016-01-11.22; # UTC +scriptversion=2018-03-11.20; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the @@ -271,15 +271,18 @@ fi dst=$dst_arg - # If destination is a directory, append the input filename; won't work - # if double slashes aren't ignored. + # If destination is a directory, append the input filename. if test -d "$dst"; then if test "$is_target_a_directory" = never; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst - dst=$dstdir/`basename "$src"` + dstbase=`basename "$src"` + case $dst in + */) dst=$dst$dstbase;; + *) dst=$dst/$dstbase;; + esac dstdir_status=0 else dstdir=`dirname "$dst"` @@ -288,6 +291,11 @@ fi fi + case $dstdir in + */) dstdirslash=$dstdir;; + *) dstdirslash=$dstdir/;; + esac + obsolete_mkdir_used=false if test $dstdir_status != 0; then @@ -324,34 +332,43 @@ # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) + # Note that $RANDOM variable is not portable (e.g. dash); Use it + # here however when possible just to lower collision chance. tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ - trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 + trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0 + + # Because "mkdir -p" follows existing symlinks and we likely work + # directly in world-writeable /tmp, make sure that the '$tmpdir' + # directory is successfully created first before we actually test + # 'mkdir -p' feature. if (umask $mkdir_umask && - exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 + $mkdirprog $mkdir_mode "$tmpdir" && + exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. - ls_ld_tmpdir=`ls -ld "$tmpdir"` + test_tmpdir="$tmpdir/a" + ls_ld_tmpdir=`ls -ld "$test_tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && - $mkdirprog -m$different_mode -p -- "$tmpdir" && { - ls_ld_tmpdir_1=`ls -ld "$tmpdir"` + $mkdirprog -m$different_mode -p -- "$test_tmpdir" && { + ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi - rmdir "$tmpdir/d" "$tmpdir" + rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. - rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null + rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null fi trap '' 0;; esac;; @@ -427,8 +444,8 @@ else # Make a couple of temp file names in the proper directory. - dsttmp=$dstdir/_inst.$$_ - rmtmp=$dstdir/_rm.$$_ + dsttmp=${dstdirslash}_inst.$$_ + rmtmp=${dstdirslash}_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 @@ -493,7 +510,7 @@ done # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" diff -Nru acl-2.2.53/build-aux/ltmain.sh acl-2.3.1/build-aux/ltmain.sh --- acl-2.2.53/build-aux/ltmain.sh 2018-06-19 03:09:47.000000000 +0000 +++ acl-2.3.1/build-aux/ltmain.sh 2020-08-31 16:19:49.000000000 +0000 @@ -64,7 +64,7 @@ # libraries, which are installed to $pkgauxdir. # Set a version string for this script. -scriptversion=2015-10-04.22; # UTC +scriptversion=2015-01-20.17; # UTC # General shell script boiler plate, and helper functions. # Written by Gary V. Vaughan, 2004 @@ -1091,57 +1091,6 @@ } -# func_quote ARG -# -------------- -# Aesthetically quote one ARG, store the result into $func_quote_result. Note -# that we keep attention to performance here (so far O(N) complexity as long as -# func_append is O(1)). -func_quote () -{ - $debug_cmd - - func_quote_result=$1 - - case $func_quote_result in - *[\\\`\"\$]*) - case $func_quote_result in - *[\[\*\?]*) - func_quote_result=`$ECHO "$func_quote_result" | $SED "$sed_quote_subst"` - return 0 - ;; - esac - - func_quote_old_IFS=$IFS - for _G_char in '\' '`' '"' '$' - do - # STATE($1) PREV($2) SEPARATOR($3) - set start "" "" - func_quote_result=dummy"$_G_char$func_quote_result$_G_char"dummy - IFS=$_G_char - for _G_part in $func_quote_result - do - case $1 in - quote) - func_append func_quote_result "$3$2" - set quote "$_G_part" "\\$_G_char" - ;; - start) - set first "" "" - func_quote_result= - ;; - first) - set quote "$_G_part" "" - ;; - esac - done - IFS=$func_quote_old_IFS - done - ;; - *) ;; - esac -} - - # func_quote_for_eval ARG... # -------------------------- # Aesthetically quote ARGs to be evaled later. @@ -1158,8 +1107,12 @@ func_quote_for_eval_unquoted_result= func_quote_for_eval_result= while test 0 -lt $#; do - func_quote "$1" - _G_unquoted_arg=$func_quote_result + case $1 in + *[\\\`\"\$]*) + _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;; + *) + _G_unquoted_arg=$1 ;; + esac if test -n "$func_quote_for_eval_unquoted_result"; then func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg" else @@ -2171,7 +2124,7 @@ # a configuration failure hint, and exit. func_fatal_configuration () { - func__fatal_error ${1+"$@"} \ + func_fatal_error ${1+"$@"} \ "See the $PACKAGE documentation for more information." \ "Fatal configuration error." } @@ -5305,8 +5258,7 @@ if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" - func_quote "$ECHO" - qECHO=$func_quote_result + qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` $ECHO "\ # A function that is used when there is no print builtin or printf. @@ -7322,12 +7274,10 @@ # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization # -specs=* GCC specs files # -stdlib=* select c++ std lib with clang - # -fsanitize=* Clang/GCC memory and address sanitizer - # -fuse-ld=* Linker select flags for GCC -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \ - -specs=*|-fsanitize=*|-fuse-ld=*) + -specs=*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result func_append compile_command " $arg" @@ -10558,8 +10508,8 @@ relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done - func_quote "(cd `pwd`; $relink_command)" - relink_command=$func_quote_result + relink_command="(cd `pwd`; $relink_command)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` fi # Only actually do things if not in dry run mode. @@ -10805,8 +10755,7 @@ done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" - func_quote "$relink_command" - relink_command=$func_quote_result + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` if test yes = "$hardcode_automatic"; then relink_command= fi diff -Nru acl-2.2.53/build-aux/missing acl-2.3.1/build-aux/missing --- acl-2.2.53/build-aux/missing 2018-06-19 03:09:54.000000000 +0000 +++ acl-2.3.1/build-aux/missing 2020-08-31 16:19:54.000000000 +0000 @@ -1,9 +1,9 @@ #! /bin/sh # Common wrapper for a few potentially missing GNU programs. -scriptversion=2016-01-11.22; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1996-2017 Free Software Foundation, Inc. +# Copyright (C) 1996-2018 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify @@ -17,7 +17,7 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -101,9 +101,9 @@ exit $st fi -perl_URL=http://www.perl.org/ -flex_URL=http://flex.sourceforge.net/ -gnu_software_URL=http://www.gnu.org/software +perl_URL=https://www.perl.org/ +flex_URL=https://github.com/westes/flex +gnu_software_URL=https://www.gnu.org/software program_details () { @@ -207,7 +207,7 @@ exit $st # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" diff -Nru acl-2.2.53/build-aux/test-driver acl-2.3.1/build-aux/test-driver --- acl-2.2.53/build-aux/test-driver 2018-06-19 03:09:55.000000000 +0000 +++ acl-2.3.1/build-aux/test-driver 2020-08-31 16:19:54.000000000 +0000 @@ -1,9 +1,9 @@ #! /bin/sh # test-driver - basic testsuite driver script. -scriptversion=2016-01-11.22; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 2011-2017 Free Software Foundation, Inc. +# Copyright (C) 2011-2018 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -16,7 +16,7 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -140,7 +140,7 @@ # Local Variables: # mode: shell-script # sh-indentation: 2 -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" diff -Nru acl-2.2.53/configure acl-2.3.1/configure --- acl-2.2.53/configure 2018-06-19 03:09:53.000000000 +0000 +++ acl-2.3.1/configure 2021-03-16 06:43:17.000000000 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for acl 2.2.53. +# Generated by GNU Autoconf 2.69 for acl 2.3.1. # # Report bugs to . # @@ -590,8 +590,8 @@ # Identity of this package. PACKAGE_NAME='acl' PACKAGE_TARNAME='acl' -PACKAGE_VERSION='2.2.53' -PACKAGE_STRING='acl 2.2.53' +PACKAGE_VERSION='2.3.1' +PACKAGE_STRING='acl 2.3.1' PACKAGE_BUGREPORT='acl-devel@nongnu.org' PACKAGE_URL='' @@ -694,7 +694,6 @@ AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE -am__quote am__include DEPDIR OBJEXT @@ -768,7 +767,8 @@ PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR -SHELL' +SHELL +am__quote' ac_subst_files='' ac_user_opts=' enable_option_checking @@ -1339,7 +1339,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures acl 2.2.53 to adapt to many kinds of systems. +\`configure' configures acl 2.3.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1409,7 +1409,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of acl 2.2.53:";; + short | recursive ) echo "Configuration of acl 2.3.1:";; esac cat <<\_ACEOF @@ -1528,7 +1528,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -acl configure 2.2.53 +acl configure 2.3.1 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1897,7 +1897,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by acl $as_me 2.2.53, which was +It was created by acl $as_me 2.3.1, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2280,7 +2280,7 @@ -am__api_version='1.15' +am__api_version='1.16' # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or @@ -2766,7 +2766,7 @@ # Define the identity of the package. PACKAGE='acl' - VERSION='2.2.53' + VERSION='2.3.1' cat >>confdefs.h <<_ACEOF @@ -2796,8 +2796,8 @@ # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: -# -# +# +# mkdir_p='$(MKDIR_P)' # We need awk for the "check" target (and possibly the TAP driver). The @@ -2848,7 +2848,7 @@ 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: . +that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM @@ -3750,45 +3750,45 @@ ac_config_commands="$ac_config_commands depfiles" - -am_make=${MAKE-make} -cat > confinc << 'END' +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5 +$as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; } +cat > confinc.mk << 'END' am__doit: - @echo this is the am__doit target + @echo this is the am__doit target >confinc.out .PHONY: am__doit END -# If we don't find an include directive, just comment out the code. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 -$as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" 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 +# 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 + { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5 + (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + case $?:`cat confinc.out 2>/dev/null` in #( + '0:this is the am__doit target') : + case $s in #( + BSD) : + am__include='.include' am__quote='"' ;; #( + *) : + am__include='include' am__quote='' ;; +esac ;; #( + *) : ;; - esac -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 -$as_echo "$_am_result" >&6; } -rm -f confinc confmf +esac + if test "$am__include" != "#"; then + _am_result="yes ($s style)" + break + fi +done +rm -f confinc.* confmf.* +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5 +$as_echo "${_am_result}" >&6; } # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : @@ -5735,11 +5735,6 @@ lt_cv_sys_max_cmd_len=8192; ;; - mint*) - # On MiNT this can take a long time and run out of memory. - lt_cv_sys_max_cmd_len=8192; - ;; - amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. @@ -7508,10 +7503,10 @@ x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; - powerpcle-*linux*|powerpc64le-*linux*) + powerpcle-*linux*) LD="${LD-ld} -m elf64lppc" ;; - powerpc-*linux*|powerpc64-*linux*) + powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) @@ -11430,11 +11425,11 @@ version_type=darwin need_lib_prefix=no need_version=no - library_names_spec='$libname$release$versuffix$shared_ext $libname$release$major$shared_ext $libname$shared_ext' + library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='`test .$module = .yes && echo .bundle || echo .dylib`' + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' @@ -11460,14 +11455,7 @@ *) objformat=elf ;; esac fi - # Handle Gentoo/FreeBSD as it was Linux - case $host_vendor in - gentoo) - version_type=linux ;; - *) - version_type=freebsd-$objformat ;; - esac - + version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' @@ -11479,12 +11467,6 @@ library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; - linux) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - need_lib_prefix=no - need_version=no - ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in @@ -11693,6 +11675,9 @@ # before this can be enabled. hardcode_into_libs=yes + # Add ABI-specific directories to the system library path. + sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" + # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command @@ -11701,7 +11686,7 @@ # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on @@ -14797,7 +14782,12 @@ CPPFLAGS="$CPPFLAGS -DNDEBUG" fi -LT_REVISION=$(echo "${PACKAGE_VERSION}" | tr -d .) +set -- $(IFS=.; echo ${PACKAGE_VERSION}) +if test $# -ne 3 -o ${#1} -gt 1 -o ${#2} -gt 1 -o ${#3} -gt 2; then + echo "This PACKAGE_VERSION breaks LT_REVISION" >&2 + exit 1 +fi +LT_REVISION=$(printf "%d%d%02d" "$1" "$2" "$3") for ac_header in attr/error_context.h @@ -15416,7 +15406,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by acl $as_me 2.2.53, which was +This file was extended by acl $as_me 2.3.1, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -15482,7 +15472,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -acl config.status 2.2.53 +acl config.status 2.3.1 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" @@ -15601,7 +15591,7 @@ # # INIT-COMMANDS # -AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" +AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}" # The HP-UX ksh and POSIX shell print the target directory to stdout @@ -16509,29 +16499,35 @@ # 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. - case $CONFIG_FILES in - *\'*) eval set x "$CONFIG_FILES" ;; - *) set x $CONFIG_FILES ;; - esac + # TODO: see whether this extra hack can be removed once we start + # requiring Autoconf 2.70 or later. + case $CONFIG_FILES in #( + *\'*) : + eval set x "$CONFIG_FILES" ;; #( + *) : + set x $CONFIG_FILES ;; #( + *) : + ;; +esac shift - for mf + # Used to flag and report bootstrapping failures. + am_rc=0 + for am_mf do # Strip MF so we end up with the name of the file. - 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 + 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 # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`$as_dirname -- "$mf" || -$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$mf" : 'X\(//\)[^/]' \| \ - X"$mf" : 'X\(//\)$' \| \ - X"$mf" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$mf" | + sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ + || continue + am_dirpart=`$as_dirname -- "$am_mf" || +$as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$am_mf" : 'X\(//\)[^/]' \| \ + X"$am_mf" : 'X\(//\)$' \| \ + X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$am_mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q @@ -16549,53 +16545,48 @@ q } s/.*/./; q'` - 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_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$file" : 'X\(//\)[^/]' \| \ - X"$file" : 'X\(//\)$' \| \ - X"$file" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ + am_filepart=`$as_basename -- "$am_mf" || +$as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \ + X"$am_mf" : 'X\(//\)$' \| \ + X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$am_mf" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } - /^X\(\/\/\)$/{ + /^X\/\(\/\/\)$/{ s//\1/ q } - /^X\(\/\).*/{ + /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` - as_dir=$dirpart/$fdir; as_fn_mkdir_p - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done + { echo "$as_me:$LINENO: cd "$am_dirpart" \ + && sed -e '/# am--include-marker/d' "$am_filepart" \ + | $MAKE -f - am--depfiles" >&5 + (cd "$am_dirpart" \ + && sed -e '/# am--include-marker/d' "$am_filepart" \ + | $MAKE -f - am--depfiles) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } || am_rc=$? done + if test $am_rc -ne 0; then + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "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). +See \`config.log' for more details" "$LINENO" 5; } + fi + { am_dirpart=; unset am_dirpart;} + { am_filepart=; unset am_filepart;} + { am_mf=; unset am_mf;} + { am_rc=; unset am_rc;} + rm -f conftest-deps.mk } ;; "libtool":C) diff -Nru acl-2.2.53/configure.ac acl-2.3.1/configure.ac --- acl-2.2.53/configure.ac 2018-01-21 05:29:38.000000000 +0000 +++ acl-2.3.1/configure.ac 2021-03-16 06:41:57.000000000 +0000 @@ -14,7 +14,7 @@ # along with this program. If not, see . # -AC_INIT([acl], [2.2.53], [acl-devel@nongnu.org]) +AC_INIT([acl], [2.3.1], [acl-devel@nongnu.org]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADER([include/config.h]) @@ -43,7 +43,12 @@ [CPPFLAGS="$CPPFLAGS -DNDEBUG"]) dnl Automatically increment the revision for every release. -LT_REVISION=$(echo "${PACKAGE_VERSION}" | tr -d .) +set -- $(IFS=.; echo ${PACKAGE_VERSION}) +if test $# -ne 3 -o ${#1} -gt 1 -o ${#2} -gt 1 -o ${#3} -gt 2; then + echo "This PACKAGE_VERSION breaks LT_REVISION" >&2 + exit 1 +fi +LT_REVISION=$(printf "%d%d%02d" "$1" "$2" "$3") AC_SUBST(LT_REVISION) AC_PACKAGE_NEED_ATTR_ERROR_H diff -Nru acl-2.2.53/debian/changelog acl-2.3.1/debian/changelog --- acl-2.2.53/debian/changelog 2021-10-07 10:09:10.000000000 +0000 +++ acl-2.3.1/debian/changelog 2021-08-29 14:26:27.000000000 +0000 @@ -1,20 +1,12 @@ -acl (2.2.53-10ubuntu2) impish; urgency=medium +acl (2.3.1-1) unstable; urgency=medium - * No-change rebuild to build packages with zstd compression. + * New upstream release. + - Remove upstream patches included in this release. + - Refresh remaining patches. + - Update upstream signing key. + * Add support for the noudeb build profile. - -- Matthias Klose Thu, 07 Oct 2021 12:09:10 +0200 - -acl (2.2.53-10ubuntu1) hirsute; urgency=medium - - * Build with -fno-strict-aliasing - - -- Matthias Klose Mon, 29 Mar 2021 22:40:51 +0200 - -acl (2.2.53-10build1) hirsute; urgency=medium - - * No-change rebuild to drop the udeb package. - - -- Matthias Klose Mon, 22 Feb 2021 10:42:07 +0100 + -- Guillem Jover Sun, 29 Aug 2021 16:26:27 +0200 acl (2.2.53-10) unstable; urgency=medium diff -Nru acl-2.2.53/debian/control acl-2.3.1/debian/control --- acl-2.2.53/debian/control 2020-11-28 10:50:04.000000000 +0000 +++ acl-2.3.1/debian/control 2021-08-29 14:17:55.000000000 +0000 @@ -62,6 +62,7 @@ Package: acl-udeb Package-Type: udeb +Build-Profiles: Section: debian-installer Architecture: any Depends: @@ -72,6 +73,7 @@ Package: libacl1-udeb Package-Type: udeb +Build-Profiles: Section: debian-installer Architecture: any Depends: diff -Nru acl-2.2.53/debian/patches/build-require-autoconf-version.patch acl-2.3.1/debian/patches/build-require-autoconf-version.patch --- acl-2.2.53/debian/patches/build-require-autoconf-version.patch 2020-11-28 10:48:29.000000000 +0000 +++ acl-2.3.1/debian/patches/build-require-autoconf-version.patch 2021-04-09 00:44:56.000000000 +0000 @@ -19,6 +19,6 @@ # +AC_PREREQ([2.59]) - AC_INIT([acl], [2.2.53], [acl-devel@nongnu.org]) + AC_INIT([acl], [2.3.1], [acl-devel@nongnu.org]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) diff -Nru acl-2.2.53/debian/patches/getfacl-fix-uninitialized-variable.patch acl-2.3.1/debian/patches/getfacl-fix-uninitialized-variable.patch --- acl-2.2.53/debian/patches/getfacl-fix-uninitialized-variable.patch 2020-03-01 01:10:05.000000000 +0000 +++ acl-2.3.1/debian/patches/getfacl-fix-uninitialized-variable.patch 2021-04-09 00:51:33.000000000 +0000 @@ -10,7 +10,7 @@ --- a/tools/getfacl.c +++ b/tools/getfacl.c -@@ -380,6 +380,8 @@ int do_show(FILE *stream, const char *pa +@@ -381,6 +381,8 @@ int do_show(FILE *stream, const char *pa show_line(stream, NULL, NULL, NULL, NULL, &dacl_names, dacl, &dacl_ent, dacl_mask); continue; diff -Nru acl-2.2.53/debian/patches/l10n-update-fr.patch acl-2.3.1/debian/patches/l10n-update-fr.patch --- acl-2.2.53/debian/patches/l10n-update-fr.patch 2020-11-28 10:46:36.000000000 +0000 +++ acl-2.3.1/debian/patches/l10n-update-fr.patch 2021-04-09 00:48:58.000000000 +0000 @@ -3,8 +3,8 @@ Forwarded: yes --- - po/fr.po | 164 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 82 insertions(+), 82 deletions(-) + po/fr.po | 287 +++++++++++++++++++++++++++++++-------------------------------- + 1 file changed, 143 insertions(+), 144 deletions(-) --- a/po/fr.po +++ b/po/fr.po @@ -18,13 +18,15 @@ # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by -@@ -20,12 +22,12 @@ msgstr "" +@@ -19,32 +21,16 @@ msgid "" + msgstr "" "Project-Id-Version: Acl\n" "Report-Msgid-Bugs-To: acl-devel@nongnu.org\n" - "POT-Creation-Date: 2018-06-18 23:10-0400\n" +-"POT-Creation-Date: 2021-03-16 07:43+0100\n" -"PO-Revision-Date: 2005-09-24 15:46+0200\n" -"Last-Translator: Sylvain Archenault \n" -"Language-Team: french \n" ++"POT-Creation-Date: 2018-06-18 23:10-0400\n" +"PO-Revision-Date: 2019-07-14 11:50+0200\n" +"Last-Translator: Jean-Philippe MENGUAL \n" +"Language-Team: French \n" @@ -35,28 +37,45 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: \n" -@@ -45,143 +47,143 @@ msgstr "conserver les permissions pour % - - #: libacl/acl_error.c:33 - msgid "Multiple entries of same type" +-#: libacl/acl_error.c:33 +-msgid "Multiple entries of same type" -msgstr "Plusieurs entrées de même type" -+msgstr "Plusieurs entrées de même type" - - #: libacl/acl_error.c:35 - msgid "Duplicate entries" +- +-#: libacl/acl_error.c:35 +-msgid "Duplicate entries" -msgstr "Entrées dupliquées" -+msgstr "Entrées dupliquées" - - #: libacl/acl_error.c:37 - msgid "Missing or wrong entry" +- +-#: libacl/acl_error.c:37 +-msgid "Missing or wrong entry" -msgstr "Entrée erronée ou manquante" -+msgstr "Entrée erronée ou manquante" - - #: libacl/acl_error.c:39 - msgid "Invalid entry type" +- +-#: libacl/acl_error.c:39 +-msgid "Invalid entry type" -msgstr "Type d'entrée non valable" -+msgstr "Type d'entrée non valable" +- + #: libacl/perm_copy_fd.c:124 libacl/perm_copy_fd.c:136 + #: libacl/perm_copy_fd.c:198 libacl/perm_copy_file.c:124 + #: libacl/perm_copy_file.c:139 libacl/perm_copy_file.c:150 +@@ -59,159 +45,245 @@ msgstr "modifier les permissions pour %s + msgid "preserving permissions for %s" + msgstr "conserver les permissions pour %s" ++#: libacl/acl_error.c:33 ++msgid "Multiple entries of same type" ++msgstr "Plusieurs entrées de même type" ++ ++#: libacl/acl_error.c:35 ++msgid "Duplicate entries" ++msgstr "Entrées dupliquées" ++ ++#: libacl/acl_error.c:37 ++msgid "Missing or wrong entry" ++msgstr "Entrée erronée ou manquante" ++ ++#: libacl/acl_error.c:39 ++msgid "Invalid entry type" ++msgstr "Type d'entrée non valable" ++ #: tools/chacl.c:46 #, c-format msgid "Usage:\n" @@ -176,55 +195,44 @@ msgid "%s: malloc failed: %s\n" -msgstr "%s : échec de malloc : %s\n" +msgstr "%s : échec de malloc : %s\n" - - #: tools/getfacl.c:497 - #, c-format - msgid "%s: Removing leading '/' from absolute path names\n" --msgstr "%s : suppression du premier « / » des noms de chemins absolus\n" ++ ++#: tools/getfacl.c:497 ++#, c-format ++msgid "%s: Removing leading '/' from absolute path names\n" +msgstr "%s : suppression du premier « / » des noms de chemins absolus\n" - - #: tools/getfacl.c:568 - #, c-format - msgid "%s %s -- get file access control lists\n" --msgstr "%s %s -- obtenir les listes de contrôle d'accès du fichier\n" ++ ++#: tools/getfacl.c:568 ++#, c-format ++msgid "%s %s -- get file access control lists\n" +msgstr "%s %s -- obtenir les listes de contrôle d'accès du fichier\n" - - #: tools/getfacl.c:570 tools/getfacl.c:750 - #, c-format - msgid "Usage: %s [-%s] file ...\n" --msgstr "Utilisation : %s [-%s] fichier...\n" ++ ++#: tools/getfacl.c:570 tools/getfacl.c:750 ++#, c-format ++msgid "Usage: %s [-%s] file ...\n" +msgstr "Utilisation : %s [-%s] fichier ...\n" - - #: tools/getfacl.c:576 - #, c-format - msgid " -d, --default display the default access control list\n" - msgstr "" --"-d, --default afficher la liste de contrôle d'accès par défaut\n" ++ ++#: tools/getfacl.c:576 ++#, c-format ++msgid " -d, --default display the default access control list\n" ++msgstr "" +"-d, --default afficher la liste de contrôle d'accès par défaut\n" - - #: tools/getfacl.c:580 --#, fuzzy, c-format ++ ++#: tools/getfacl.c:580 +#, c-format - msgid "" - " -a, --access display the file access control list only\n" - " -d, --default display the default access control list only\n" -@@ -196,94 +198,92 @@ msgid "" - " -n, --numeric print numeric user/group identifiers\n" - " -p, --absolute-names don't strip leading '/' in pathnames\n" - msgstr "" --" --access affiche seulement le fichier ACL\n" --" -d, --default affiche seulement le fichier ACL par défaut\n" --" --omit-header n'affiche pas les commentaires d'en-tête\n" --" --all-effective affiche tous les droits en vigueur\n" --" --no-effective affiche les droits inactifs\n" --" --skip-base ignorer les fichiers qui ont seulement les " --"entrées\n" --" de base\n" --" -R, --recursive parcourir récursivement les sous-répertoires\n" --" -L, --logical suivre les liens symboliques\n" --" -P, --physical ne pas suivre les liens symboliques\n" --" --tabular sortie tabulée\n" --" --numeric afficher les identifiants numériques des\n" ++msgid "" ++" -a, --access display the file access control list only\n" ++" -d, --default display the default access control list only\n" ++" -c, --omit-header do not display the comment header\n" ++" -e, --all-effective print all effective rights\n" ++" -E, --no-effective print no effective rights\n" ++" -s, --skip-base skip files that only have the base entries\n" ++" -R, --recursive recurse into subdirectories\n" ++" -L, --logical logical walk, follow symbolic links\n" ++" -P, --physical physical walk, do not follow symbolic links\n" ++" -t, --tabular use tabular output format\n" ++" -n, --numeric print numeric user/group identifiers\n" ++" -p, --absolute-names don't strip leading '/' in pathnames\n" ++msgstr "" +" -a, --access afficher seulement la liste de contrôle d'accès du fichier\n" +" -d, --default afficher seulement la liste de contrôle d'accès par défaut\n" +" -c, --omit-header ne pas afficher l'en-tête de commentaire\n" @@ -236,32 +244,26 @@ +" -P, --physical parcours physique, ne pas suivre les liens symboliques\n" +" -t, --tabular utiliser une sortie sous forme de tableau\n" +" -n, --numeric afficher les identifiants numériques des\n" - " utilisateurs/groupes\n" --" --absolute-names ne pas enlever le premier « / » dans les chemins\n" ++" utilisateurs/groupes\n" +" -p, --absolute-names ne pas enlever le premier « / » dans les chemins\n" - - #: tools/getfacl.c:595 tools/setfacl.c:299 --#, fuzzy, c-format ++ ++#: tools/getfacl.c:595 tools/setfacl.c:299 +#, c-format - msgid "" - " -v, --version print version and exit\n" - " -h, --help this help text\n" - msgstr "" --" --version afficher la version et quitter\n" --" --help afficher ce message d'aide\n" ++msgid "" ++" -v, --version print version and exit\n" ++" -h, --help this help text\n" ++msgstr "" +" -v, --version afficher la version et quitter\n" +" -h, --help afficher ce message d'aide\n" - - #: tools/getfacl.c:737 tools/setfacl.c:316 - #, c-format - msgid "%s: Standard input: %s\n" --msgstr "%s : Sortie standard : %s\n" ++ ++#: tools/getfacl.c:737 tools/setfacl.c:316 ++#, c-format ++msgid "%s: Standard input: %s\n" +msgstr "%s : entrée standard : %s\n" - - #: tools/getfacl.c:752 tools/setfacl.c:655 - #, c-format - msgid "Try `%s --help' for more information.\n" --msgstr "Essayer « %s --help » pour plus d'informations.\n" ++ ++#: tools/getfacl.c:752 tools/setfacl.c:655 ++#, c-format ++msgid "Try `%s --help' for more information.\n" +msgstr "Essayer « %s --help » pour plus d'informations.\n" #: tools/do_set.c:410 @@ -331,7 +333,7 @@ #: tools/setfacl.c:271 #, c-format -@@ -295,23 +295,23 @@ msgid "" +@@ -223,23 +295,23 @@ msgid "" " -b, --remove-all remove all extended ACL entries\n" " -k, --remove-default remove the default ACL\n" msgstr "" @@ -364,7 +366,7 @@ " --mask recalculer les masques des droits en vigueur\n" #: tools/setfacl.c:286 -@@ -321,8 +321,8 @@ msgid "" +@@ -249,8 +321,8 @@ msgid "" " -d, --default operations apply to the default ACL\n" msgstr "" " -n, --no-mask ne pas recalculer les masques de droits en " @@ -375,7 +377,7 @@ #: tools/setfacl.c:291 #, c-format -@@ -333,28 +333,28 @@ msgid "" +@@ -261,101 +333,28 @@ msgid "" " --restore=file restore ACLs (inverse of `getfacl -R')\n" " --test test mode (ACLs are not modified)\n" msgstr "" @@ -385,6 +387,20 @@ " -P, --physical ne pas suivre les liens symboliques\n" -" --restore=fichier restaurer les ACL (inverse de « getfacl -R »)\n" -" --test mode test (les ACL ne sont pas modifiés)\n" +- +-#: tools/setfacl.c:299 tools/getfacl.c:597 +-#, fuzzy, c-format +-msgid "" +-" -v, --version print version and exit\n" +-" -h, --help this help text\n" +-msgstr "" +-" --version afficher la version et quitter\n" +-" --help afficher ce message d'aide\n" +- +-#: tools/setfacl.c:316 tools/getfacl.c:743 +-#, c-format +-msgid "%s: Standard input: %s\n" +-msgstr "%s : Sortie standard : %s\n" +" --restore=fichier restaurer les ACL (inverse de « getfacl -R »)\n" +" --test mode test (les ACL ne sont pas modifiées)\n" @@ -410,4 +426,63 @@ #, c-format msgid "%s: %s in line %d of standard input\n" -msgstr "%s : %s à la ligne %d de la sortie standard\n" +- +-#: tools/setfacl.c:655 tools/getfacl.c:758 +-#, c-format +-msgid "Try `%s --help' for more information.\n" +-msgstr "Essayer « %s --help » pour plus d'informations.\n" +- +-#: tools/getfacl.c:498 +-#, c-format +-msgid "%s: Removing leading '/' from absolute path names\n" +-msgstr "%s : suppression du premier « / » des noms de chemins absolus\n" +- +-#: tools/getfacl.c:569 +-#, c-format +-msgid "%s %s -- get file access control lists\n" +-msgstr "%s %s -- obtenir les listes de contrôle d'accès du fichier\n" +- +-#: tools/getfacl.c:571 tools/getfacl.c:756 +-#, c-format +-msgid "Usage: %s [-%s] file ...\n" +-msgstr "Utilisation : %s [-%s] fichier...\n" +- +-#: tools/getfacl.c:577 +-#, c-format +-msgid " -d, --default display the default access control list\n" +-msgstr "" +-"-d, --default afficher la liste de contrôle d'accès par défaut\n" +- +-#: tools/getfacl.c:581 +-#, fuzzy, c-format +-msgid "" +-" -a, --access display the file access control list only\n" +-" -d, --default display the default access control list only\n" +-" -c, --omit-header do not display the comment header\n" +-" -e, --all-effective print all effective rights\n" +-" -E, --no-effective print no effective rights\n" +-" -s, --skip-base skip files that only have the base entries\n" +-" -R, --recursive recurse into subdirectories\n" +-" -L, --logical logical walk, follow symbolic links\n" +-" -P, --physical physical walk, do not follow symbolic links\n" +-" -t, --tabular use tabular output format\n" +-" -n, --numeric print numeric user/group identifiers\n" +-" --one-file-system skip files on different filesystems\n" +-" -p, --absolute-names don't strip leading '/' in pathnames\n" +-msgstr "" +-" --access affiche seulement le fichier ACL\n" +-" -d, --default affiche seulement le fichier ACL par défaut\n" +-" --omit-header n'affiche pas les commentaires d'en-tête\n" +-" --all-effective affiche tous les droits en vigueur\n" +-" --no-effective affiche les droits inactifs\n" +-" --skip-base ignorer les fichiers qui ont seulement les " +-"entrées\n" +-" de base\n" +-" -R, --recursive parcourir récursivement les sous-répertoires\n" +-" -L, --logical suivre les liens symboliques\n" +-" -P, --physical ne pas suivre les liens symboliques\n" +-" --tabular sortie tabulée\n" +-" --numeric afficher les identifiants numériques des\n" +-" utilisateurs/groupes\n" +-" --absolute-names ne pas enlever le premier « / » dans les chemins\n" +msgstr "%s : %s à la ligne %d de l’entrée standard\n" diff -Nru acl-2.2.53/debian/patches/man-fix-typos.patch acl-2.3.1/debian/patches/man-fix-typos.patch --- acl-2.2.53/debian/patches/man-fix-typos.patch 2020-11-28 10:49:14.000000000 +0000 +++ acl-2.3.1/debian/patches/man-fix-typos.patch 2021-04-09 00:46:11.000000000 +0000 @@ -6,23 +6,11 @@ --- man/man1/chacl.1 | 8 ++++---- - man/man1/getfacl.1 | 2 +- man/man3/acl_from_text.3 | 2 +- man/man3/acl_to_text.3 | 2 +- man/man5/acl.5 | 6 ++++-- - 5 files changed, 11 insertions(+), 9 deletions(-) + 4 files changed, 10 insertions(+), 8 deletions(-) ---- a/man/man1/getfacl.1 -+++ b/man/man1/getfacl.1 -@@ -162,7 +162,7 @@ If the environment variable POSIXLY_CORR - option is given. If no command line parameter is given, - .I getfacl - behaves as if it was invoked as ``getfacl \-''. --No flags comments indicating the setuid, setgit, and sticky bits are generated. -+No flags comments indicating the setuid, setgid, and sticky bits are generated. - .SH AUTHOR - Andreas Gruenbacher, - .RI < a.gruenbacher@bestbits.at >. --- a/man/man5/acl.5 +++ b/man/man5/acl.5 @@ -109,7 +109,7 @@ to the permissions of the ACL_USER_OBJ e diff -Nru acl-2.2.53/debian/patches/series acl-2.3.1/debian/patches/series --- acl-2.2.53/debian/patches/series 2020-03-01 01:10:05.000000000 +0000 +++ acl-2.3.1/debian/patches/series 2021-04-09 00:43:29.000000000 +0000 @@ -5,6 +5,5 @@ man-fix-typos.patch man-ref-mount.patch man-setfacl-restore-stdin.patch -update-upstream-email-address.patch getfacl-fix-uninitialized-variable.patch l10n-update-fr.patch diff -Nru acl-2.2.53/debian/patches/update-upstream-email-address.patch acl-2.3.1/debian/patches/update-upstream-email-address.patch --- acl-2.2.53/debian/patches/update-upstream-email-address.patch 2020-11-28 10:46:15.000000000 +0000 +++ acl-2.3.1/debian/patches/update-upstream-email-address.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,1360 +0,0 @@ -From 673324f70167a0eeb1ce872cbf674518c4558e4f Mon Sep 17 00:00:00 2001 -From: Andreas Gruenbacher -Date: Thu, 6 Feb 2020 17:04:03 +0100 -Origin: upstream -Subject: [PATCH] Update my email address - ---- - libacl/__acl_extended_file.c | 2 +- - libacl/__acl_from_xattr.c | 2 +- - libacl/__acl_reorder_obj_p.c | 2 +- - libacl/__acl_to_any_text.c | 2 +- - libacl/__acl_to_xattr.c | 2 +- - libacl/__apply_mask_to_mode.c | 2 +- - libacl/__libobj.c | 2 +- - libacl/acl_add_perm.c | 2 +- - libacl/acl_calc_mask.c | 2 +- - libacl/acl_check.c | 2 +- - libacl/acl_clear_perms.c | 2 +- - libacl/acl_cmp.c | 2 +- - libacl/acl_copy_entry.c | 2 +- - libacl/acl_copy_ext.c | 2 +- - libacl/acl_copy_int.c | 2 +- - libacl/acl_create_entry.c | 2 +- - libacl/acl_delete_def_file.c | 2 +- - libacl/acl_delete_entry.c | 2 +- - libacl/acl_delete_perm.c | 2 +- - libacl/acl_dup.c | 2 +- - libacl/acl_entries.c | 2 +- - libacl/acl_equiv_mode.c | 2 +- - libacl/acl_error.c | 2 +- - libacl/acl_extended_fd.c | 2 +- - libacl/acl_extended_file.c | 2 +- - libacl/acl_extended_file_nofollow.c | 2 +- - libacl/acl_free.c | 2 +- - libacl/acl_from_mode.c | 2 +- - libacl/acl_from_text.c | 2 +- - libacl/acl_get_entry.c | 2 +- - libacl/acl_get_fd.c | 2 +- - libacl/acl_get_file.c | 2 +- - libacl/acl_get_perm.c | 2 +- - libacl/acl_get_permset.c | 2 +- - libacl/acl_get_qualifier.c | 2 +- - libacl/acl_get_tag_type.c | 2 +- - libacl/acl_init.c | 2 +- - libacl/acl_set_fd.c | 2 +- - libacl/acl_set_file.c | 2 +- - libacl/acl_set_permset.c | 2 +- - libacl/acl_set_qualifier.c | 2 +- - libacl/acl_set_tag_type.c | 2 +- - libacl/acl_size.c | 2 +- - libacl/acl_to_any_text.c | 2 +- - libacl/acl_to_text.c | 2 +- - libacl/acl_valid.c | 2 +- - libmisc/quote.c | 2 +- - libmisc/unquote.c | 2 +- - man/man1/getfacl.1 | 4 ++-- - man/man1/setfacl.1 | 4 ++-- - man/man3/acl_add_perm.3 | 4 ++-- - man/man3/acl_calc_mask.3 | 4 ++-- - man/man3/acl_check.3 | 4 ++-- - man/man3/acl_clear_perms.3 | 4 ++-- - man/man3/acl_cmp.3 | 4 ++-- - man/man3/acl_copy_entry.3 | 4 ++-- - man/man3/acl_copy_ext.3 | 4 ++-- - man/man3/acl_copy_int.3 | 4 ++-- - man/man3/acl_create_entry.3 | 4 ++-- - man/man3/acl_delete_def_file.3 | 4 ++-- - man/man3/acl_delete_entry.3 | 4 ++-- - man/man3/acl_delete_perm.3 | 4 ++-- - man/man3/acl_dup.3 | 4 ++-- - man/man3/acl_entries.3 | 4 ++-- - man/man3/acl_equiv_mode.3 | 4 ++-- - man/man3/acl_error.3 | 4 ++-- - man/man3/acl_extended_fd.3 | 4 ++-- - man/man3/acl_extended_file.3 | 4 ++-- - man/man3/acl_free.3 | 4 ++-- - man/man3/acl_from_mode.3 | 4 ++-- - man/man3/acl_from_text.3 | 4 ++-- - man/man3/acl_get_entry.3 | 4 ++-- - man/man3/acl_get_fd.3 | 4 ++-- - man/man3/acl_get_file.3 | 4 ++-- - man/man3/acl_get_perm.3 | 4 ++-- - man/man3/acl_get_permset.3 | 4 ++-- - man/man3/acl_get_qualifier.3 | 4 ++-- - man/man3/acl_get_tag_type.3 | 4 ++-- - man/man3/acl_init.3 | 4 ++-- - man/man3/acl_set_fd.3 | 4 ++-- - man/man3/acl_set_file.3 | 4 ++-- - man/man3/acl_set_permset.3 | 4 ++-- - man/man3/acl_set_qualifier.3 | 4 ++-- - man/man3/acl_set_tag_type.3 | 4 ++-- - man/man3/acl_size.3 | 4 ++-- - man/man3/acl_to_any_text.3 | 4 ++-- - man/man3/acl_to_text.3 | 4 ++-- - man/man3/acl_valid.3 | 4 ++-- - man/man5/acl.5 | 4 ++-- - tools/do_set.c | 2 +- - tools/getfacl.c | 2 +- - tools/parse.c | 2 +- - tools/sequence.c | 2 +- - tools/setfacl.c | 2 +- - tools/user_group.c | 2 +- - 95 files changed, 136 insertions(+), 136 deletions(-) - ---- a/libacl/__acl_extended_file.c -+++ b/libacl/__acl_extended_file.c -@@ -2,7 +2,7 @@ - File: __acl_extended_file.c - - Copyright (C) 2000, 2011 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/__acl_from_xattr.c -+++ b/libacl/__acl_from_xattr.c -@@ -2,7 +2,7 @@ - File: __acl_from_xattr.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/__acl_reorder_obj_p.c -+++ b/libacl/__acl_reorder_obj_p.c -@@ -3,7 +3,7 @@ - (Linux Access Control List Management, Posix Library Functions) - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/__acl_to_any_text.c -+++ b/libacl/__acl_to_any_text.c -@@ -2,7 +2,7 @@ - File: __acl_to_any_text.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/__acl_to_xattr.c -+++ b/libacl/__acl_to_xattr.c -@@ -2,7 +2,7 @@ - File: __acl_to_xattr.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/__apply_mask_to_mode.c -+++ b/libacl/__apply_mask_to_mode.c -@@ -3,7 +3,7 @@ - (Linux Access Control List Management) - - Copyright (C) 1999-2002 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/__libobj.c -+++ b/libacl/__libobj.c -@@ -3,7 +3,7 @@ - (Linux Access Control List Management) - - Copyright (C) 1999-2002 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_add_perm.c -+++ b/libacl/acl_add_perm.c -@@ -2,7 +2,7 @@ - File: acl_add_perm.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_calc_mask.c -+++ b/libacl/acl_calc_mask.c -@@ -2,7 +2,7 @@ - File: acl_calc_mask.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_check.c -+++ b/libacl/acl_check.c -@@ -2,7 +2,7 @@ - File: acl_check.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_clear_perms.c -+++ b/libacl/acl_clear_perms.c -@@ -2,7 +2,7 @@ - File: acl_clear_perms.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_cmp.c -+++ b/libacl/acl_cmp.c -@@ -2,7 +2,7 @@ - File: acl_cmp.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_copy_entry.c -+++ b/libacl/acl_copy_entry.c -@@ -2,7 +2,7 @@ - File: acl_copy_entry.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_copy_ext.c -+++ b/libacl/acl_copy_ext.c -@@ -2,7 +2,7 @@ - File: acl_copy_ext.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_copy_int.c -+++ b/libacl/acl_copy_int.c -@@ -2,7 +2,7 @@ - File: acl_copy_int.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_create_entry.c -+++ b/libacl/acl_create_entry.c -@@ -2,7 +2,7 @@ - File: acl_create_entry.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher -+ Andreas Gruenbacher - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_delete_def_file.c -+++ b/libacl/acl_delete_def_file.c -@@ -2,7 +2,7 @@ - File: acl_delete_def_file.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_delete_entry.c -+++ b/libacl/acl_delete_entry.c -@@ -2,7 +2,7 @@ - File: acl_delete_entry.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_delete_perm.c -+++ b/libacl/acl_delete_perm.c -@@ -2,7 +2,7 @@ - File: acl_delete_perm.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_dup.c -+++ b/libacl/acl_dup.c -@@ -2,7 +2,7 @@ - File: acl_dup.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_entries.c -+++ b/libacl/acl_entries.c -@@ -2,7 +2,7 @@ - File: acl_entries.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_equiv_mode.c -+++ b/libacl/acl_equiv_mode.c -@@ -2,7 +2,7 @@ - File: acl_equiv_mode.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_error.c -+++ b/libacl/acl_error.c -@@ -2,7 +2,7 @@ - File: acl_error.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_extended_fd.c -+++ b/libacl/acl_extended_fd.c -@@ -2,7 +2,7 @@ - File: acl_extended_fd.c - - Copyright (C) 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_extended_file.c -+++ b/libacl/acl_extended_file.c -@@ -2,7 +2,7 @@ - File: acl_extended_file.c - - Copyright (C) 2011 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_extended_file_nofollow.c -+++ b/libacl/acl_extended_file_nofollow.c -@@ -2,7 +2,7 @@ - File: acl_extended_file_nofollow.c - - Copyright (C) 2011 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_free.c -+++ b/libacl/acl_free.c -@@ -2,7 +2,7 @@ - File: acl_free.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher -+ Andreas Gruenbacher - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_from_mode.c -+++ b/libacl/acl_from_mode.c -@@ -2,7 +2,7 @@ - File: acl_from_mode.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_from_text.c -+++ b/libacl/acl_from_text.c -@@ -2,7 +2,7 @@ - File: acl_from_text.c - - Copyright (C) 1999, 2000, 2001 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_get_entry.c -+++ b/libacl/acl_get_entry.c -@@ -2,7 +2,7 @@ - File: acl_get_entry.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_get_fd.c -+++ b/libacl/acl_get_fd.c -@@ -2,7 +2,7 @@ - File: acl_get_fd.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_get_file.c -+++ b/libacl/acl_get_file.c -@@ -2,7 +2,7 @@ - File: acl_get_file.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_get_perm.c -+++ b/libacl/acl_get_perm.c -@@ -2,7 +2,7 @@ - File: acl_get_perm.c - - Copyright (C) 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_get_permset.c -+++ b/libacl/acl_get_permset.c -@@ -2,7 +2,7 @@ - File: acl_get_permset.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_get_qualifier.c -+++ b/libacl/acl_get_qualifier.c -@@ -2,7 +2,7 @@ - File: acl_get_qualifier.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_get_tag_type.c -+++ b/libacl/acl_get_tag_type.c -@@ -2,7 +2,7 @@ - File: acl_get_tag_type.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_init.c -+++ b/libacl/acl_init.c -@@ -2,7 +2,7 @@ - File: acl_init.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_set_fd.c -+++ b/libacl/acl_set_fd.c -@@ -2,7 +2,7 @@ - File: acl_set_fd.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_set_file.c -+++ b/libacl/acl_set_file.c -@@ -2,7 +2,7 @@ - File: acl_set_file.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_set_permset.c -+++ b/libacl/acl_set_permset.c -@@ -2,7 +2,7 @@ - File: acl_set_permset.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_set_qualifier.c -+++ b/libacl/acl_set_qualifier.c -@@ -2,7 +2,7 @@ - File: acl_set_qualifier.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_set_tag_type.c -+++ b/libacl/acl_set_tag_type.c -@@ -2,7 +2,7 @@ - File: acl_set_tag_type.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_size.c -+++ b/libacl/acl_size.c -@@ -2,7 +2,7 @@ - File: acl_size.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_to_any_text.c -+++ b/libacl/acl_to_any_text.c -@@ -2,7 +2,7 @@ - File: acl_to_any_text.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_to_text.c -+++ b/libacl/acl_to_text.c -@@ -2,7 +2,7 @@ - File: acl_to_text.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libacl/acl_valid.c -+++ b/libacl/acl_valid.c -@@ -2,7 +2,7 @@ - File: acl_valid.c - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/libmisc/quote.c -+++ b/libmisc/quote.c -@@ -1,7 +1,7 @@ - /* - File: quote.c - -- Copyright (C) 2003 Andreas Gruenbacher -+ Copyright (C) 2003 Andreas Gruenbacher - - This program is free software; you can redistribute it and/or modify it under - the terms of the GNU Lesser General Public License as published by the ---- a/libmisc/unquote.c -+++ b/libmisc/unquote.c -@@ -1,7 +1,7 @@ - /* - File: unquote.c - -- Copyright (C) 2003 Andreas Gruenbacher -+ Copyright (C) 2003 Andreas Gruenbacher - - This program is free software; you can redistribute it and/or modify it under - the terms of the GNU Lesser General Public License as published by the ---- a/man/man1/getfacl.1 -+++ b/man/man1/getfacl.1 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2000 Andreas Gruenbacher, -+.\" (C) 2000 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -165,7 +165,7 @@ behaves as if it was invoked as ``getfac - No flags comments indicating the setuid, setgid, and sticky bits are generated. - .SH AUTHOR - Andreas Gruenbacher, --.RI < a.gruenbacher@bestbits.at >. -+.RI < andreas.gruenbacher@gmail.com >. - - Please send your bug reports and comments to the above address. - .SH SEE ALSO ---- a/man/man1/setfacl.1 -+++ b/man/man1/setfacl.1 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2000 Andreas Gruenbacher, -+.\" (C) 2000 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -310,7 +310,7 @@ The - options also accept permission fields (and ignore them). - .SH AUTHOR - Andreas Gruenbacher, --.RI < a.gruenbacher@bestbits.at >. -+.RI < andreas.gruenbacher@gmail.com >. - - Please send your bug reports, suggested features and comments to the - above address. ---- a/man/man3/acl_add_perm.3 -+++ b/man/man3/acl_add_perm.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -83,4 +83,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_calc_mask.3 -+++ b/man/man3/acl_calc_mask.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -98,4 +98,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_check.3 -+++ b/man/man3/acl_check.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -119,4 +119,4 @@ functions defined in IEEE Std 1003.1e dr - .Xr acl 5 - .Sh AUTHOR - Written by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_clear_perms.3 -+++ b/man/man3/acl_clear_perms.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -72,4 +72,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_cmp.3 -+++ b/man/man3/acl_cmp.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -87,4 +87,4 @@ functions defined in IEEE Std 1003.1e dr - .Xr acl 5 - .Sh AUTHOR - Written by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_copy_entry.3 -+++ b/man/man3/acl_copy_entry.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -79,4 +79,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_copy_ext.3 -+++ b/man/man3/acl_copy_ext.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -105,4 +105,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_copy_int.3 -+++ b/man/man3/acl_copy_int.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -86,4 +86,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_create_entry.3 -+++ b/man/man3/acl_create_entry.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -101,4 +101,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_delete_def_file.3 -+++ b/man/man3/acl_delete_def_file.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -83,4 +83,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_delete_entry.3 -+++ b/man/man3/acl_delete_entry.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -83,4 +83,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_delete_perm.3 -+++ b/man/man3/acl_delete_perm.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -83,4 +83,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_dup.3 -+++ b/man/man3/acl_dup.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -84,4 +84,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_entries.3 -+++ b/man/man3/acl_entries.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -70,4 +70,4 @@ functions defined in IEEE Std 1003.1e dr - .Xr acl 5 - .Sh AUTHOR - Written by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_equiv_mode.3 -+++ b/man/man3/acl_equiv_mode.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -93,4 +93,4 @@ functions defined in IEEE Std 1003.1e dr - .Xr acl 5 - .Sh AUTHOR - Written by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_error.3 -+++ b/man/man3/acl_error.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -68,4 +68,4 @@ functions defined in IEEE Std 1003.1e dr - .Xr acl 5 - .Sh AUTHOR - Written by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_extended_fd.3 -+++ b/man/man3/acl_extended_fd.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -102,4 +102,4 @@ functions defined in IEEE Std 1003.1e dr - .Xr acl 5 - .Sh AUTHOR - Written by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_extended_file.3 -+++ b/man/man3/acl_extended_file.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -121,4 +121,4 @@ functions defined in IEEE Std 1003.1e dr - .Xr acl 5 - .Sh AUTHOR - Written by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_free.3 -+++ b/man/man3/acl_free.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -79,4 +79,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_from_mode.3 -+++ b/man/man3/acl_from_mode.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -71,4 +71,4 @@ functions defined in IEEE Std 1003.1e dr - .Xr acl 5 - .Sh AUTHOR - Written by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_from_text.3 -+++ b/man/man3/acl_from_text.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -90,4 +90,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_get_entry.3 -+++ b/man/man3/acl_get_entry.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -139,4 +139,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_get_fd.3 -+++ b/man/man3/acl_get_fd.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -93,4 +93,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_get_file.3 -+++ b/man/man3/acl_get_file.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -133,4 +133,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_get_perm.3 -+++ b/man/man3/acl_get_perm.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -95,4 +95,4 @@ functions defined in IEEE Std 1003.1e dr - .Xr acl 5 - .Sh AUTHOR - Written by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_get_permset.3 -+++ b/man/man3/acl_get_permset.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -79,4 +79,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_get_qualifier.3 -+++ b/man/man3/acl_get_qualifier.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -122,4 +122,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_get_tag_type.3 -+++ b/man/man3/acl_get_tag_type.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -78,4 +78,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_init.3 -+++ b/man/man3/acl_init.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -84,4 +84,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_set_fd.3 -+++ b/man/man3/acl_set_fd.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -88,4 +88,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_set_file.3 -+++ b/man/man3/acl_set_file.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -165,4 +165,4 @@ The POSIX.1e function for removing a def - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_set_permset.3 -+++ b/man/man3/acl_set_permset.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -95,4 +95,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_set_qualifier.3 -+++ b/man/man3/acl_set_qualifier.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -110,4 +110,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_set_tag_type.3 -+++ b/man/man3/acl_set_tag_type.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -80,4 +80,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_size.3 -+++ b/man/man3/acl_size.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -82,4 +82,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_to_any_text.3 -+++ b/man/man3/acl_to_any_text.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -166,4 +166,4 @@ functions defined in IEEE Std 1003.1e dr - .Xr acl 5 - .Sh AUTHOR - Written by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_to_text.3 -+++ b/man/man3/acl_to_text.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -108,4 +108,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man3/acl_valid.3 -+++ b/man/man3/acl_valid.3 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -83,4 +83,4 @@ IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\ - Derived from the FreeBSD manual pages written by - .An "Robert N M Watson" Aq rwatson@FreeBSD.org , - and adapted for Linux by --.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . -+.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . ---- a/man/man5/acl.5 -+++ b/man/man5/acl.5 -@@ -1,6 +1,6 @@ - .\" Access Control Lists manual pages - .\" --.\" (C) 2002 Andreas Gruenbacher, -+.\" (C) 2002 Andreas Gruenbacher, - .\" - .\" This is free documentation; you can redistribute it and/or - .\" modify it under the terms of the GNU General Public License as -@@ -496,4 +496,4 @@ These non-portable extensions are availa - .Xr acl_get_perm 3 , - .Xr acl_to_any_text 3 - .Sh AUTHOR --Andreas Gruenbacher, -+Andreas Gruenbacher, ---- a/tools/do_set.c -+++ b/tools/do_set.c -@@ -3,7 +3,7 @@ - (Linux Access Control List Management) - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/tools/getfacl.c -+++ b/tools/getfacl.c -@@ -3,7 +3,7 @@ - (Linux Access Control List Management) - - Copyright (C) 1999-2002 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by ---- a/tools/parse.c -+++ b/tools/parse.c -@@ -3,7 +3,7 @@ - (Linux Access Control List Management) - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/tools/sequence.c -+++ b/tools/sequence.c -@@ -3,7 +3,7 @@ - (Linux Access Control List Management) - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/tools/setfacl.c -+++ b/tools/setfacl.c -@@ -3,7 +3,7 @@ - (Linux Access Control List Management) - - Copyright (C) 1999-2002 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public ---- a/tools/user_group.c -+++ b/tools/user_group.c -@@ -3,7 +3,7 @@ - (Linux Access Control List Management) - - Copyright (C) 1999, 2000 -- Andreas Gruenbacher, -+ Andreas Gruenbacher, - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by diff -Nru acl-2.2.53/debian/rules acl-2.3.1/debian/rules --- acl-2.2.53/debian/rules 2021-03-29 20:40:51.000000000 +0000 +++ acl-2.3.1/debian/rules 2021-01-30 21:31:15.000000000 +0000 @@ -4,7 +4,6 @@ #export DH_VERBOSE=1 -export DEB_CFLAGS_MAINT_APPEND = -fno-strict-aliasing export DEB_BUILD_MAINT_OPTIONS = hardening=+all # The following architectures still fail the test suite: diff -Nru acl-2.2.53/debian/upstream/signing-key.asc acl-2.3.1/debian/upstream/signing-key.asc --- acl-2.2.53/debian/upstream/signing-key.asc 2019-04-11 20:11:00.000000000 +0000 +++ acl-2.3.1/debian/upstream/signing-key.asc 2021-04-09 00:40:04.000000000 +0000 @@ -1,140 +1,230 @@ -----BEGIN PGP PUBLIC KEY BLOCK----- -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 -/6H6KnEMkpgpvVhQ -=vdDU +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 +UGhpbGlwcyA8YnJhbmRvbi5waGlsaXBzQHJlZGhhdC5jb20+wsGOBBMBCAA4FiEE +YAzSBPvOpBi9LKdPFUNDJgVC3zQFAlqmyCwCGwMFCwkIBwIGFQgJCgsCBBYCAwEC +HgECF4AACgkQFUNDJgVC3zT/YhAAsO+ut/fhsDtv7acX7feJ8lU6o+MJbPSs+FSN +njwW4Idi8+GdZbQg6K6IflUiEts4Yydycib2H3FHzJlWD2kps/vQLVucMmDJ4qIv +4L3+rFoDfMJfp4+FizlFlzaksAS4dv7HaVML2RTW4fFLObSeaNLvcEDJay3uwt6F +a7pkJY+sEConlBo5g0d4KkV5LxK8pDEZsUjULbMNnZXu/bg7oJ4PCkx00izSRxKg +cSa7stzRsRwdqCsDfpb1lcn5z+747oe7joH0DHWHMsog4WFCmtvzjR5Bry9yhkbs +QrasP/xndOm1TMmttwaiaRLXYzn2DurC0xs7IJ/5USa/phDWBs8qAJfSz5+h3wTp +iXIyT3iXQGBKd2PiI+8E6nqqbeZ43Z76ie2ZcpmVOcAloU4K3YIn3dIFw8ky7LMu +dwlFE/XbtNmIL3yJ3Yb3YQuko/CstZFdBCuAlR60SOcbcnT3dcHb260NZ6NRjCeL +GJAmmUYB96xLll3TVNrdCIlBBVNDSl1OJxZkuZE/nVyHXrTZs6rabFlwukerBD+A +Hk7/vVmB85fVdUy3STK1wi/B9fK2YRog2GCq+prC5Yfn8CcBh/A2vfB0MVlZ1ZEw +3eVrt95TV9FqVcPU8oE1S+qe5rmuTbIAT+lYEwJfscvnNO2fyoTpaic71Ib2aMo0 +ADKbYvvNIUJyYW5kb24gUGhpbGlwcyA8YnJhbmRvbkBpZnVwLmNvPsLBjwQTAQIA +IgUCUZhqvAIbAwYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AAIQkQFUNDJgVC3zQW +IQRgDNIE+86kGL0sp08VQ0MmBULfNCWDEACgi01pMW+XHcGNjMNwpZcoYqeu8t9r +i+DxWGnBlUdDwpeSWGiNu5HQzC8klxMKHOSz60fiX5n0QLO4L3vytnef79/P7IJl +jUHm+qe3YIxAYe9vmlzvIMaZPR5Z632KShkAXctSTG7KG84jw2w3iLxreFVPWdU2 +QHCh0+NSDDfye4rGGokJWkPqDh+b+agFK5JiRFsO+HUB0fZutWowmwVFzDCQdI4h +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 +GCyhW3TTg33Zx0LB2Hg+/N7MhhkbOmFesQ8ASkfCgnub+FU7JZ4uA9u+mdH3D7CX +tM44qHdr/DgamhhvC+2inA1tsfoD/Cvy3qncd49J4nCJ2A+n1mRZOlWKC5DUXQoC +1A6GD5b7uCmliglUncHNKAtrgBGHYEkqX/puKMv5aYe64cNZmlLXEFD/mddtVwAR +AQABzSRBbmRyZWFzIEdydWVuYmFjaGVyIDxhZ3J1ZW5AZ251Lm9yZz7CwZUEEwEC +ACgCGwMGCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheABQJc0ryCBQkLxg7IACEJENW/ +n+sDE2U6FiEEJZs3krPW0xkhLMTc1b+f6wMTZTqglg/8D8Dc2Kg1xN9djoEG4AY5 +uM2RkXqT4fNlRMAE2rNCio4Mdt+6VxDvUwC3ewnr6yOPehpGm99Xjb04UiEZP8wF +iJ4wnFnW4BY7DLq2V8MRcSQ2uabkXVQoK81yv8f8wChcgR3KwRq1ygndkd0APVJ4 +ElQ/+mB4fGQNAj7MFJibRNtg2Y9SecvkZQ0VZ/kyz5u9sFPs+7TZMP92UimvynG9 +zt5vEMb98eXIzbM6dDeC7K5l3UI4d/qDr3ExMnG7BEb+Fs/yB4C8X5IREODVD4y+ +WFzi+ZDF/3ZEobnZv6G6Py7tRqxGgWas44X4lYBb9KisDh3+eQnLItUHssAqCI6T +Q9CS/Tk4uRjgd+Ys+hBwIUo9v9X/X/7CT6sWFKdSX5uec4SlrdhhAhuGoxRsLI4n ++5SxnjMF25LlcYbuks4KNHcb8kCoyylAbXCfgLPMhZAkkSUpJXFyrA4T0qLi2NQE +SaGTOnf+/p6nQGPa4JX5QOgqztIhzKvfBux4vNfAbxATmwHqueAWGkJh36NeKU79 +XYDxu/8B6+LUrTA0O7PQdEoppc6Z61hzVdypQHfmD8ZztPCgr3lJ/XTzDYQ2EnBO +3Hi+oF/UXkPRKO75BhxzflzMlT73X6TMsFpb4RAbM0AnKSygHhovDjnOre/xNNhH +lchwtSlQ5TLabojfsygx+3zNJ0FuZHJlYXMgR3J1ZW5iYWNoZXIgPGFncnVlbkBr +ZXJuZWwub3JnPsLBlQQTAQIAKAIbAwYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AF +AlzSvIcFCQvGDsgAIQkQ1b+f6wMTZToWIQQlmzeSs9bTGSEsxNzVv5/rAxNlOrPw +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 +=UBJE -----END PGP PUBLIC KEY BLOCK----- diff -Nru acl-2.2.53/include/walk_tree.h acl-2.3.1/include/walk_tree.h --- acl-2.2.53/include/walk_tree.h 2015-09-22 15:06:38.000000000 +0000 +++ acl-2.3.1/include/walk_tree.h 2021-03-02 04:46:29.000000000 +0000 @@ -25,6 +25,7 @@ #define WALK_TREE_LOGICAL 0x04 #define WALK_TREE_DEREFERENCE 0x08 #define WALK_TREE_DEREFERENCE_TOPLEVEL 0x10 +#define WALK_TREE_ONE_FILESYSTEM 0x20 #define WALK_TREE_TOPLEVEL 0x100 #define WALK_TREE_SYMLINK 0x200 diff -Nru acl-2.2.53/libacl/acl_add_perm.c acl-2.3.1/libacl/acl_add_perm.c --- acl-2.2.53/libacl/acl_add_perm.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_add_perm.c 2020-02-06 16:01:47.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_add_perm.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_calc_mask.c acl-2.3.1/libacl/acl_calc_mask.c --- acl-2.2.53/libacl/acl_calc_mask.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_calc_mask.c 2020-02-06 16:01:52.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_calc_mask.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_check.c acl-2.3.1/libacl/acl_check.c --- acl-2.2.53/libacl/acl_check.c 2016-02-15 19:13:51.000000000 +0000 +++ acl-2.3.1/libacl/acl_check.c 2020-02-06 16:01:56.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_check.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_clear_perms.c acl-2.3.1/libacl/acl_clear_perms.c --- acl-2.2.53/libacl/acl_clear_perms.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_clear_perms.c 2020-02-06 16:02:00.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_clear_perms.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_cmp.c acl-2.3.1/libacl/acl_cmp.c --- acl-2.2.53/libacl/acl_cmp.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_cmp.c 2020-02-06 16:02:04.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_cmp.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_copy_entry.c acl-2.3.1/libacl/acl_copy_entry.c --- acl-2.2.53/libacl/acl_copy_entry.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_copy_entry.c 2020-02-06 16:02:07.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_copy_entry.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_copy_ext.c acl-2.3.1/libacl/acl_copy_ext.c --- acl-2.2.53/libacl/acl_copy_ext.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_copy_ext.c 2020-02-06 16:02:12.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_copy_ext.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_copy_int.c acl-2.3.1/libacl/acl_copy_int.c --- acl-2.2.53/libacl/acl_copy_int.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_copy_int.c 2020-09-03 21:03:51.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_copy_int.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -47,7 +47,7 @@ entries = size / sizeof(struct __acl_entry); acl_obj_p = __acl_init_obj(entries); if (acl_obj_p == NULL) - goto fail; + return NULL; end_p = ext_acl->x_entries + entries; for(; ent_p != end_p; ent_p++) { entry_obj_p = __acl_create_entry_obj(acl_obj_p); @@ -64,4 +64,3 @@ __acl_free_acl_obj(acl_obj_p); return NULL; } - diff -Nru acl-2.2.53/libacl/acl_create_entry.c acl-2.3.1/libacl/acl_create_entry.c --- acl-2.2.53/libacl/acl_create_entry.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_create_entry.c 2020-08-31 16:19:34.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_create_entry.c Copyright (C) 1999, 2000 - Andreas Gruenbacher + Andreas Gruenbacher This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -26,7 +26,7 @@ acl_entry_obj * __acl_create_entry_obj(acl_obj *acl_obj_p) { - acl_entry_obj *entry_obj_p; + acl_entry_obj *entry_obj_p, *prev; if (acl_obj_p->aprealloc == acl_obj_p->aprealloc_end) { entry_obj_p = new_obj_p(acl_entry); @@ -39,10 +39,11 @@ acl_obj_p->aused++; /* Insert at the end of the entry ring */ - entry_obj_p->eprev = acl_obj_p->aprev; + prev = acl_obj_p->aprev; + entry_obj_p->eprev = prev; entry_obj_p->enext = (acl_entry_obj *)acl_obj_p; - entry_obj_p->eprev->enext = entry_obj_p; - entry_obj_p->enext->eprev = entry_obj_p; + prev->enext = entry_obj_p; + acl_obj_p->aprev = entry_obj_p; entry_obj_p->econtainer = acl_obj_p; init_acl_entry_obj(*entry_obj_p); diff -Nru acl-2.2.53/libacl/acl_delete_def_file.c acl-2.3.1/libacl/acl_delete_def_file.c --- acl-2.2.53/libacl/acl_delete_def_file.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_delete_def_file.c 2020-02-06 16:02:32.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_delete_def_file.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_delete_entry.c acl-2.3.1/libacl/acl_delete_entry.c --- acl-2.2.53/libacl/acl_delete_entry.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_delete_entry.c 2020-02-06 16:02:37.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_delete_entry.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_delete_perm.c acl-2.3.1/libacl/acl_delete_perm.c --- acl-2.2.53/libacl/acl_delete_perm.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_delete_perm.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_delete_perm.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_dup.c acl-2.3.1/libacl/acl_dup.c --- acl-2.2.53/libacl/acl_dup.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_dup.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_dup.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_entries.c acl-2.3.1/libacl/acl_entries.c --- acl-2.2.53/libacl/acl_entries.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_entries.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_entries.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_equiv_mode.c acl-2.3.1/libacl/acl_equiv_mode.c --- acl-2.2.53/libacl/acl_equiv_mode.c 2016-02-15 19:13:51.000000000 +0000 +++ acl-2.3.1/libacl/acl_equiv_mode.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_equiv_mode.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_error.c acl-2.3.1/libacl/acl_error.c --- acl-2.2.53/libacl/acl_error.c 2016-02-15 19:13:51.000000000 +0000 +++ acl-2.3.1/libacl/acl_error.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_error.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_extended_fd.c acl-2.3.1/libacl/acl_extended_fd.c --- acl-2.2.53/libacl/acl_extended_fd.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_extended_fd.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_extended_fd.c Copyright (C) 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/__acl_extended_file.c acl-2.3.1/libacl/__acl_extended_file.c --- acl-2.2.53/libacl/__acl_extended_file.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/__acl_extended_file.c 2020-02-06 16:01:19.000000000 +0000 @@ -2,7 +2,7 @@ File: __acl_extended_file.c Copyright (C) 2000, 2011 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_extended_file.c acl-2.3.1/libacl/acl_extended_file.c --- acl-2.2.53/libacl/acl_extended_file.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_extended_file.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_extended_file.c Copyright (C) 2011 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_extended_file_nofollow.c acl-2.3.1/libacl/acl_extended_file_nofollow.c --- acl-2.2.53/libacl/acl_extended_file_nofollow.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_extended_file_nofollow.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_extended_file_nofollow.c Copyright (C) 2011 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_free.c acl-2.3.1/libacl/acl_free.c --- acl-2.2.53/libacl/acl_free.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_free.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_free.c Copyright (C) 1999, 2000 - Andreas Gruenbacher + Andreas Gruenbacher This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_from_mode.c acl-2.3.1/libacl/acl_from_mode.c --- acl-2.2.53/libacl/acl_from_mode.c 2016-02-15 19:13:51.000000000 +0000 +++ acl-2.3.1/libacl/acl_from_mode.c 2020-09-03 20:59:48.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_from_mode.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -42,7 +42,7 @@ acl_obj_p = __acl_init_obj(3); if (!acl_obj_p) - goto fail; + return NULL; entry_obj_p = __acl_create_entry_obj(acl_obj_p); if (!entry_obj_p) diff -Nru acl-2.2.53/libacl/acl_from_text.c acl-2.3.1/libacl/acl_from_text.c --- acl-2.2.53/libacl/acl_from_text.c 2018-01-21 05:18:26.000000000 +0000 +++ acl-2.3.1/libacl/acl_from_text.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_from_text.c Copyright (C) 1999, 2000, 2001 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/__acl_from_xattr.c acl-2.3.1/libacl/__acl_from_xattr.c --- acl-2.2.53/libacl/__acl_from_xattr.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/__acl_from_xattr.c 2020-02-06 16:01:23.000000000 +0000 @@ -2,7 +2,7 @@ File: __acl_from_xattr.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_get_entry.c acl-2.3.1/libacl/acl_get_entry.c --- acl-2.2.53/libacl/acl_get_entry.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_get_entry.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_get_entry.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_get_fd.c acl-2.3.1/libacl/acl_get_fd.c --- acl-2.2.53/libacl/acl_get_fd.c 2016-02-15 19:13:51.000000000 +0000 +++ acl-2.3.1/libacl/acl_get_fd.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_get_fd.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_get_file.c acl-2.3.1/libacl/acl_get_file.c --- acl-2.2.53/libacl/acl_get_file.c 2016-02-15 19:13:51.000000000 +0000 +++ acl-2.3.1/libacl/acl_get_file.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_get_file.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_get_perm.c acl-2.3.1/libacl/acl_get_perm.c --- acl-2.2.53/libacl/acl_get_perm.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_get_perm.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_get_perm.c Copyright (C) 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_get_permset.c acl-2.3.1/libacl/acl_get_permset.c --- acl-2.2.53/libacl/acl_get_permset.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_get_permset.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_get_permset.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_get_qualifier.c acl-2.3.1/libacl/acl_get_qualifier.c --- acl-2.2.53/libacl/acl_get_qualifier.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_get_qualifier.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_get_qualifier.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_get_tag_type.c acl-2.3.1/libacl/acl_get_tag_type.c --- acl-2.2.53/libacl/acl_get_tag_type.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_get_tag_type.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_get_tag_type.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_init.c acl-2.3.1/libacl/acl_init.c --- acl-2.2.53/libacl/acl_init.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_init.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_init.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/__acl_reorder_obj_p.c acl-2.3.1/libacl/__acl_reorder_obj_p.c --- acl-2.2.53/libacl/__acl_reorder_obj_p.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/__acl_reorder_obj_p.c 2020-02-06 16:01:27.000000000 +0000 @@ -3,7 +3,7 @@ (Linux Access Control List Management, Posix Library Functions) Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_set_fd.c acl-2.3.1/libacl/acl_set_fd.c --- acl-2.2.53/libacl/acl_set_fd.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_set_fd.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_set_fd.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_set_file.c acl-2.3.1/libacl/acl_set_file.c --- acl-2.2.53/libacl/acl_set_file.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_set_file.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_set_file.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_set_permset.c acl-2.3.1/libacl/acl_set_permset.c --- acl-2.2.53/libacl/acl_set_permset.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_set_permset.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_set_permset.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_set_qualifier.c acl-2.3.1/libacl/acl_set_qualifier.c --- acl-2.2.53/libacl/acl_set_qualifier.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_set_qualifier.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_set_qualifier.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_set_tag_type.c acl-2.3.1/libacl/acl_set_tag_type.c --- acl-2.2.53/libacl/acl_set_tag_type.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_set_tag_type.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_set_tag_type.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_size.c acl-2.3.1/libacl/acl_size.c --- acl-2.2.53/libacl/acl_size.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/acl_size.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_size.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/__acl_to_any_text.c acl-2.3.1/libacl/__acl_to_any_text.c --- acl-2.2.53/libacl/__acl_to_any_text.c 2016-02-15 19:13:51.000000000 +0000 +++ acl-2.3.1/libacl/__acl_to_any_text.c 2020-02-06 16:01:31.000000000 +0000 @@ -2,7 +2,7 @@ File: __acl_to_any_text.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_to_any_text.c acl-2.3.1/libacl/acl_to_any_text.c --- acl-2.2.53/libacl/acl_to_any_text.c 2016-02-15 19:13:51.000000000 +0000 +++ acl-2.3.1/libacl/acl_to_any_text.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_to_any_text.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_to_text.c acl-2.3.1/libacl/acl_to_text.c --- acl-2.2.53/libacl/acl_to_text.c 2016-02-15 19:13:51.000000000 +0000 +++ acl-2.3.1/libacl/acl_to_text.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_to_text.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/__acl_to_xattr.c acl-2.3.1/libacl/__acl_to_xattr.c --- acl-2.2.53/libacl/__acl_to_xattr.c 2016-02-15 19:13:51.000000000 +0000 +++ acl-2.3.1/libacl/__acl_to_xattr.c 2020-02-06 16:01:34.000000000 +0000 @@ -2,7 +2,7 @@ File: __acl_to_xattr.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/acl_valid.c acl-2.3.1/libacl/acl_valid.c --- acl-2.2.53/libacl/acl_valid.c 2016-02-15 19:13:51.000000000 +0000 +++ acl-2.3.1/libacl/acl_valid.c 2020-02-06 16:03:31.000000000 +0000 @@ -2,7 +2,7 @@ File: acl_valid.c Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/__apply_mask_to_mode.c acl-2.3.1/libacl/__apply_mask_to_mode.c --- acl-2.2.53/libacl/__apply_mask_to_mode.c 2016-02-15 19:13:51.000000000 +0000 +++ acl-2.3.1/libacl/__apply_mask_to_mode.c 2020-02-06 16:01:39.000000000 +0000 @@ -3,7 +3,7 @@ (Linux Access Control List Management) Copyright (C) 1999-2002 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libacl/__libobj.c acl-2.3.1/libacl/__libobj.c --- acl-2.2.53/libacl/__libobj.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libacl/__libobj.c 2020-02-06 16:01:43.000000000 +0000 @@ -3,7 +3,7 @@ (Linux Access Control List Management) Copyright (C) 1999-2002 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/libmisc/quote.c acl-2.3.1/libmisc/quote.c --- acl-2.2.53/libmisc/quote.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libmisc/quote.c 2020-02-06 16:03:31.000000000 +0000 @@ -1,7 +1,7 @@ /* File: quote.c - Copyright (C) 2003 Andreas Gruenbacher + Copyright (C) 2003 Andreas Gruenbacher This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the diff -Nru acl-2.2.53/libmisc/unquote.c acl-2.3.1/libmisc/unquote.c --- acl-2.2.53/libmisc/unquote.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libmisc/unquote.c 2020-02-06 16:03:31.000000000 +0000 @@ -1,7 +1,7 @@ /* File: unquote.c - Copyright (C) 2003 Andreas Gruenbacher + Copyright (C) 2003 Andreas Gruenbacher This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the diff -Nru acl-2.2.53/libmisc/walk_tree.c acl-2.3.1/libmisc/walk_tree.c --- acl-2.2.53/libmisc/walk_tree.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/libmisc/walk_tree.c 2021-03-02 04:46:29.000000000 +0000 @@ -38,64 +38,76 @@ long pos; }; -static struct entry_handle head = { - .next = &head, - .prev = &head, - /* The other fields are unused. */ +struct walk_tree_args { + char path[FILENAME_MAX]; + int walk_flags; + int (*func)(const char *, const struct stat *, int, void *); + void *arg; + int depth; + struct entry_handle dirs; + struct entry_handle *closed; + unsigned int num_dir_handles; + struct stat st; + dev_t dev; }; -static struct entry_handle *closed = &head; -static unsigned int num_dir_handles; -static int walk_tree_visited(dev_t dev, ino_t ino) +static int walk_tree_visited(struct entry_handle *dirs, dev_t dev, ino_t ino) { struct entry_handle *i; - for (i = head.next; i != &head; i = i->next) + for (i = dirs->next; i != dirs; i = i->next) if (i->dev == dev && i->ino == ino) return 1; return 0; } -static int walk_tree_rec(const char *path, int walk_flags, - int (*func)(const char *, const struct stat *, int, - void *), void *arg, int depth) +static int walk_tree_rec(struct walk_tree_args *args) { - int follow_symlinks = (walk_flags & WALK_TREE_LOGICAL) || - ((walk_flags & WALK_TREE_DEREFERENCE) && - !(walk_flags & WALK_TREE_PHYSICAL) && - depth == 0); - int have_dir_stat = 0, flags = walk_flags, err; + int follow_symlinks = (args->walk_flags & WALK_TREE_LOGICAL) || + ((args->walk_flags & WALK_TREE_DEREFERENCE) && + !(args->walk_flags & WALK_TREE_PHYSICAL) && + args->depth == 0); + int have_dir_stat = 0, flags = args->walk_flags, err; struct entry_handle dir; - struct stat st; /* * If (walk_flags & WALK_TREE_PHYSICAL), do not traverse symlinks. * If (walk_flags & WALK_TREE_LOGICAL), traverse all symlinks. * Otherwise, traverse only top-level symlinks. */ - if (depth == 0) + if (args->depth == 0) flags |= WALK_TREE_TOPLEVEL; - if (lstat(path, &st) != 0) - return func(path, NULL, flags | WALK_TREE_FAILED, arg); - if (S_ISLNK(st.st_mode)) { + if (lstat(args->path, &args->st) != 0) + return args->func(args->path, NULL, flags | WALK_TREE_FAILED, + args->arg); + + if (flags & WALK_TREE_ONE_FILESYSTEM) { + if (args->dev == 0) + args->dev = args->st.st_dev; + else if (args->st.st_dev != args->dev) + return 0; + } + + if (S_ISLNK(args->st.st_mode)) { flags |= WALK_TREE_SYMLINK; if ((flags & WALK_TREE_DEREFERENCE) || ((flags & WALK_TREE_TOPLEVEL) && (flags & WALK_TREE_DEREFERENCE_TOPLEVEL))) { - if (stat(path, &st) != 0) - return func(path, NULL, - flags | WALK_TREE_FAILED, arg); - dir.dev = st.st_dev; - dir.ino = st.st_ino; + if (stat(args->path, &args->st) != 0) + return args->func(args->path, NULL, + flags | WALK_TREE_FAILED, + args->arg); + dir.dev = args->st.st_dev; + dir.ino = args->st.st_ino; have_dir_stat = 1; } - } else if (S_ISDIR(st.st_mode)) { - dir.dev = st.st_dev; - dir.ino = st.st_ino; + } else if (S_ISDIR(args->st.st_mode)) { + dir.dev = args->st.st_dev; + dir.ino = args->st.st_ino; have_dir_stat = 1; } - err = func(path, &st, flags, arg); + err = args->func(args->path, &args->st, flags, args->arg); /* * Recurse if WALK_TREE_RECURSIVE and the path is: @@ -103,7 +115,7 @@ * a link and follow_symlinks */ if ((flags & WALK_TREE_RECURSIVE) && - ((!(flags & WALK_TREE_SYMLINK) && S_ISDIR(st.st_mode)) || + ((!(flags & WALK_TREE_SYMLINK) && S_ISDIR(args->st.st_mode)) || ((flags & WALK_TREE_SYMLINK) && follow_symlinks))) { struct dirent *entry; @@ -116,24 +128,24 @@ * the directory has been visited afterwards. This saves a * system call for each non-directory found. */ - if (have_dir_stat && walk_tree_visited(dir.dev, dir.ino)) + if (have_dir_stat && walk_tree_visited(&args->dirs, dir.dev, dir.ino)) return err; - if (num_dir_handles == 0 && closed->prev != &head) { + if (args->num_dir_handles == 0 && args->closed->prev != &args->dirs) { close_another_dir: /* Close the topmost directory handle still open. */ - closed = closed->prev; - closed->pos = telldir(closed->stream); - closedir(closed->stream); - closed->stream = NULL; - num_dir_handles++; + args->closed = args->closed->prev; + args->closed->pos = telldir(args->closed->stream); + closedir(args->closed->stream); + args->closed->stream = NULL; + args->num_dir_handles++; } - dir.stream = opendir(path); + dir.stream = opendir(args->path); if (!dir.stream) { - if (errno == ENFILE && closed->prev != &head) { + if (errno == ENFILE && args->closed->prev != &args->dirs) { /* Ran out of file descriptors. */ - num_dir_handles = 0; + args->num_dir_handles = 0; goto close_another_dir; } @@ -142,27 +154,27 @@ * symlink which we didn't follow above. */ if (errno != ENOTDIR && errno != ENOENT) - err += func(path, NULL, flags | - WALK_TREE_FAILED, arg); + err += args->func(args->path, NULL, flags | + WALK_TREE_FAILED, args->arg); return err; } /* See walk_tree_visited() comment above... */ if (!have_dir_stat) { - if (stat(path, &st) != 0) + if (stat(args->path, &args->st) != 0) goto skip_dir; - dir.dev = st.st_dev; - dir.ino = st.st_ino; - if (walk_tree_visited(dir.dev, dir.ino)) + dir.dev = args->st.st_dev; + dir.ino = args->st.st_ino; + if (walk_tree_visited(&args->dirs, dir.dev, dir.ino)) goto skip_dir; } /* Insert into the list of handles. */ - dir.next = head.next; - dir.prev = &head; + dir.next = args->dirs.next; + dir.prev = &args->dirs; dir.prev->next = &dir; dir.next->prev = &dir; - num_dir_handles--; + args->num_dir_handles--; while ((entry = readdir(dir.stream)) != NULL) { char *path_end; @@ -170,40 +182,45 @@ if (!strcmp(entry->d_name, ".") || !strcmp(entry->d_name, "..")) continue; - path_end = strchr(path, 0); - if ((path_end - path) + strlen(entry->d_name) + 1 >= + path_end = strchr(args->path, 0); + if ((path_end - args->path) + strlen(entry->d_name) + 1 >= FILENAME_MAX) { errno = ENAMETOOLONG; - err += func(path, NULL, - flags | WALK_TREE_FAILED, arg); + err += args->func(args->path, NULL, + flags | WALK_TREE_FAILED, + args->arg); continue; } *path_end++ = '/'; strcpy(path_end, entry->d_name); - err += walk_tree_rec(path, walk_flags, func, arg, - depth + 1); + args->depth++; + err += walk_tree_rec(args); + args->depth--; *--path_end = 0; if (!dir.stream) { /* Reopen the directory handle. */ - dir.stream = opendir(path); + dir.stream = opendir(args->path); if (!dir.stream) - return err + func(path, NULL, flags | - WALK_TREE_FAILED, arg); + return err + args->func(args->path, + NULL, + flags | WALK_TREE_FAILED, + args->arg); seekdir(dir.stream, dir.pos); - closed = closed->next; - num_dir_handles--; + args->closed = args->closed->next; + args->num_dir_handles--; } } /* Remove from the list of handles. */ dir.prev->next = dir.next; dir.next->prev = dir.prev; - num_dir_handles++; + args->num_dir_handles++; skip_dir: if (closedir(dir.stream) != 0) - err += func(path, NULL, flags | WALK_TREE_FAILED, arg); + err += args->func(args->path, NULL, + flags | WALK_TREE_FAILED, args->arg); } return err; } @@ -212,21 +229,30 @@ int (*func)(const char *, const struct stat *, int, void *), void *arg) { - char path_copy[FILENAME_MAX]; + struct walk_tree_args args; - num_dir_handles = num; - if (num_dir_handles < 1) { + args.num_dir_handles = num; + if (args.num_dir_handles < 1) { struct rlimit rlimit; - num_dir_handles = 1; + args.num_dir_handles = 1; if (getrlimit(RLIMIT_NOFILE, &rlimit) == 0 && rlimit.rlim_cur >= 2) - num_dir_handles = rlimit.rlim_cur / 2; + args.num_dir_handles = rlimit.rlim_cur / 2; } + args.dirs.next = &args.dirs; + args.dirs.prev = &args.dirs; + args.closed = &args.dirs; if (strlen(path) >= FILENAME_MAX) { errno = ENAMETOOLONG; return func(path, NULL, WALK_TREE_FAILED, arg); } - strcpy(path_copy, path); - return walk_tree_rec(path_copy, walk_flags, func, arg, 0); + strcpy(args.path, path); + args.walk_flags = walk_flags; + args.func = func; + args.arg = arg; + args.depth = 0; + args.dev = 0; + + return walk_tree_rec(&args); } diff -Nru acl-2.2.53/m4/libtool.m4 acl-2.3.1/m4/libtool.m4 --- acl-2.2.53/m4/libtool.m4 2018-06-19 03:09:47.000000000 +0000 +++ acl-2.3.1/m4/libtool.m4 2020-08-31 16:19:49.000000000 +0000 @@ -1417,10 +1417,10 @@ x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; - powerpcle-*linux*|powerpc64le-*linux*) + powerpcle-*linux*) LD="${LD-ld} -m elf64lppc" ;; - powerpc-*linux*|powerpc64-*linux*) + powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) @@ -1708,11 +1708,6 @@ lt_cv_sys_max_cmd_len=8192; ;; - mint*) - # On MiNT this can take a long time and run out of memory. - lt_cv_sys_max_cmd_len=8192; - ;; - amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. @@ -2641,11 +2636,11 @@ version_type=darwin need_lib_prefix=no need_version=no - library_names_spec='$libname$release$versuffix$shared_ext $libname$release$major$shared_ext $libname$shared_ext' + library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='`test .$module = .yes && echo .bundle || echo .dylib`' + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' @@ -2671,14 +2666,7 @@ *) objformat=elf ;; esac fi - # Handle Gentoo/FreeBSD as it was Linux - case $host_vendor in - gentoo) - version_type=linux ;; - *) - version_type=freebsd-$objformat ;; - esac - + version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' @@ -2690,12 +2678,6 @@ library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; - linux) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - need_lib_prefix=no - need_version=no - ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in @@ -2885,6 +2867,9 @@ # before this can be enabled. hardcode_into_libs=yes + # Add ABI-specific directories to the system library path. + sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" + # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command @@ -2893,7 +2878,7 @@ # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on diff -Nru acl-2.2.53/Makefile.am acl-2.3.1/Makefile.am --- acl-2.2.53/Makefile.am 2015-07-16 10:39:49.000000000 +0000 +++ acl-2.3.1/Makefile.am 2021-03-02 10:11:44.000000000 +0000 @@ -23,6 +23,9 @@ dist_doc_DATA = dist_man_MANS = +update-po: + $(MAKE) -C po $@ + include doc/Makemodule.am include examples/Makemodule.am include include/Makemodule.am diff -Nru acl-2.2.53/Makefile.in acl-2.3.1/Makefile.in --- acl-2.2.53/Makefile.in 2018-06-19 03:25:47.000000000 +0000 +++ acl-2.3.1/Makefile.in 2021-03-16 06:43:17.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15.1 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2017 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -115,6 +115,12 @@ CONFIG_HEADER = $(top_builddir)/include/config.h CONFIG_CLEAN_FILES = libacl.pc CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libdir)" \ + "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man3dir)" \ + "$(DESTDIR)$(man5dir)" "$(DESTDIR)$(docdir)" \ + "$(DESTDIR)$(pkgconfdir)" "$(DESTDIR)$(pkgincludedir)" \ + "$(DESTDIR)$(sysincludedir)" +PROGRAMS = $(bin_PROGRAMS) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ @@ -142,58 +148,36 @@ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } -am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" \ - "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man3dir)" \ - "$(DESTDIR)$(man5dir)" "$(DESTDIR)$(docdir)" \ - "$(DESTDIR)$(pkgconfdir)" "$(DESTDIR)$(pkgincludedir)" \ - "$(DESTDIR)$(sysincludedir)" LTLIBRARIES = $(lib_LTLIBRARIES) $(noinst_LTLIBRARIES) am__dirstamp = $(am__leading_dot)dirstamp -am__objects_1 = libacl/libacl_la-acl_add_perm.lo \ - libacl/libacl_la-acl_calc_mask.lo \ - libacl/libacl_la-acl_clear_perms.lo \ - libacl/libacl_la-acl_copy_entry.lo \ - libacl/libacl_la-acl_copy_ext.lo \ - libacl/libacl_la-acl_copy_int.lo \ - libacl/libacl_la-acl_create_entry.lo \ - libacl/libacl_la-acl_delete_def_file.lo \ - libacl/libacl_la-acl_delete_entry.lo \ - libacl/libacl_la-acl_delete_perm.lo \ - libacl/libacl_la-acl_dup.lo libacl/libacl_la-acl_free.lo \ - libacl/libacl_la-acl_from_text.lo \ - libacl/libacl_la-acl_get_entry.lo \ - libacl/libacl_la-acl_get_fd.lo \ - libacl/libacl_la-acl_get_file.lo \ - libacl/libacl_la-acl_get_perm.lo \ - libacl/libacl_la-acl_get_permset.lo \ - libacl/libacl_la-acl_get_qualifier.lo \ - libacl/libacl_la-acl_get_tag_type.lo \ - libacl/libacl_la-acl_init.lo libacl/libacl_la-acl_set_fd.lo \ - libacl/libacl_la-acl_set_file.lo \ - libacl/libacl_la-acl_set_permset.lo \ - libacl/libacl_la-acl_set_qualifier.lo \ - libacl/libacl_la-acl_set_tag_type.lo \ - libacl/libacl_la-acl_size.lo libacl/libacl_la-acl_to_text.lo \ - libacl/libacl_la-acl_valid.lo -am__objects_2 = libacl/libacl_la-acl_check.lo \ - libacl/libacl_la-acl_cmp.lo libacl/libacl_la-acl_entries.lo \ - libacl/libacl_la-acl_equiv_mode.lo \ - libacl/libacl_la-acl_error.lo \ - libacl/libacl_la-acl_extended_fd.lo \ - libacl/libacl_la-acl_extended_file.lo \ - libacl/libacl_la-acl_extended_file_nofollow.lo \ - libacl/libacl_la-acl_from_mode.lo \ - libacl/libacl_la-acl_to_any_text.lo \ - libacl/libacl_la-__acl_extended_file.lo -am__objects_3 = libacl/libacl_la-__acl_from_xattr.lo \ - libacl/libacl_la-__acl_reorder_obj_p.lo \ - libacl/libacl_la-__acl_to_any_text.lo \ - libacl/libacl_la-__acl_to_xattr.lo \ - libacl/libacl_la-__apply_mask_to_mode.lo \ - libacl/libacl_la-__libobj.lo +am__objects_1 = libacl/la-acl_add_perm.lo libacl/la-acl_calc_mask.lo \ + libacl/la-acl_clear_perms.lo libacl/la-acl_copy_entry.lo \ + libacl/la-acl_copy_ext.lo libacl/la-acl_copy_int.lo \ + libacl/la-acl_create_entry.lo libacl/la-acl_delete_def_file.lo \ + libacl/la-acl_delete_entry.lo libacl/la-acl_delete_perm.lo \ + libacl/la-acl_dup.lo libacl/la-acl_free.lo \ + libacl/la-acl_from_text.lo libacl/la-acl_get_entry.lo \ + libacl/la-acl_get_fd.lo libacl/la-acl_get_file.lo \ + libacl/la-acl_get_perm.lo libacl/la-acl_get_permset.lo \ + libacl/la-acl_get_qualifier.lo libacl/la-acl_get_tag_type.lo \ + libacl/la-acl_init.lo libacl/la-acl_set_fd.lo \ + libacl/la-acl_set_file.lo libacl/la-acl_set_permset.lo \ + libacl/la-acl_set_qualifier.lo libacl/la-acl_set_tag_type.lo \ + libacl/la-acl_size.lo libacl/la-acl_to_text.lo \ + libacl/la-acl_valid.lo +am__objects_2 = libacl/la-acl_check.lo libacl/la-acl_cmp.lo \ + libacl/la-acl_entries.lo libacl/la-acl_equiv_mode.lo \ + libacl/la-acl_error.lo libacl/la-acl_extended_fd.lo \ + libacl/la-acl_extended_file.lo \ + libacl/la-acl_extended_file_nofollow.lo \ + libacl/la-acl_from_mode.lo libacl/la-acl_to_any_text.lo \ + libacl/la-__acl_extended_file.lo +am__objects_3 = libacl/la-__acl_from_xattr.lo \ + libacl/la-__acl_reorder_obj_p.lo \ + libacl/la-__acl_to_any_text.lo libacl/la-__acl_to_xattr.lo \ + libacl/la-__apply_mask_to_mode.lo libacl/la-__libobj.lo am__objects_4 = $(am__objects_1) $(am__objects_2) $(am__objects_3) \ - libacl/libacl_la-perm_copy_fd.lo \ - libacl/libacl_la-perm_copy_file.lo + libacl/la-perm_copy_fd.lo libacl/la-perm_copy_file.lo am__objects_5 = am_libacl_la_OBJECTS = $(am__objects_4) $(am__objects_5) libacl_la_OBJECTS = $(am_libacl_la_OBJECTS) @@ -217,7 +201,6 @@ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(libtestlookup_la_CFLAGS) $(CFLAGS) \ $(libtestlookup_la_LDFLAGS) $(LDFLAGS) -o $@ -PROGRAMS = $(bin_PROGRAMS) am_chacl_OBJECTS = tools/chacl.$(OBJEXT) chacl_OBJECTS = $(am_chacl_OBJECTS) am__DEPENDENCIES_1 = libacl.la libmisc.la @@ -244,7 +227,64 @@ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = libacl/$(DEPDIR)/la-__acl_extended_file.Plo \ + libacl/$(DEPDIR)/la-__acl_from_xattr.Plo \ + libacl/$(DEPDIR)/la-__acl_reorder_obj_p.Plo \ + libacl/$(DEPDIR)/la-__acl_to_any_text.Plo \ + libacl/$(DEPDIR)/la-__acl_to_xattr.Plo \ + libacl/$(DEPDIR)/la-__apply_mask_to_mode.Plo \ + libacl/$(DEPDIR)/la-__libobj.Plo \ + libacl/$(DEPDIR)/la-acl_add_perm.Plo \ + libacl/$(DEPDIR)/la-acl_calc_mask.Plo \ + libacl/$(DEPDIR)/la-acl_check.Plo \ + libacl/$(DEPDIR)/la-acl_clear_perms.Plo \ + libacl/$(DEPDIR)/la-acl_cmp.Plo \ + libacl/$(DEPDIR)/la-acl_copy_entry.Plo \ + libacl/$(DEPDIR)/la-acl_copy_ext.Plo \ + libacl/$(DEPDIR)/la-acl_copy_int.Plo \ + libacl/$(DEPDIR)/la-acl_create_entry.Plo \ + libacl/$(DEPDIR)/la-acl_delete_def_file.Plo \ + libacl/$(DEPDIR)/la-acl_delete_entry.Plo \ + libacl/$(DEPDIR)/la-acl_delete_perm.Plo \ + libacl/$(DEPDIR)/la-acl_dup.Plo \ + libacl/$(DEPDIR)/la-acl_entries.Plo \ + libacl/$(DEPDIR)/la-acl_equiv_mode.Plo \ + libacl/$(DEPDIR)/la-acl_error.Plo \ + libacl/$(DEPDIR)/la-acl_extended_fd.Plo \ + libacl/$(DEPDIR)/la-acl_extended_file.Plo \ + libacl/$(DEPDIR)/la-acl_extended_file_nofollow.Plo \ + libacl/$(DEPDIR)/la-acl_free.Plo \ + libacl/$(DEPDIR)/la-acl_from_mode.Plo \ + libacl/$(DEPDIR)/la-acl_from_text.Plo \ + libacl/$(DEPDIR)/la-acl_get_entry.Plo \ + libacl/$(DEPDIR)/la-acl_get_fd.Plo \ + libacl/$(DEPDIR)/la-acl_get_file.Plo \ + libacl/$(DEPDIR)/la-acl_get_perm.Plo \ + libacl/$(DEPDIR)/la-acl_get_permset.Plo \ + libacl/$(DEPDIR)/la-acl_get_qualifier.Plo \ + libacl/$(DEPDIR)/la-acl_get_tag_type.Plo \ + libacl/$(DEPDIR)/la-acl_init.Plo \ + libacl/$(DEPDIR)/la-acl_set_fd.Plo \ + libacl/$(DEPDIR)/la-acl_set_file.Plo \ + libacl/$(DEPDIR)/la-acl_set_permset.Plo \ + libacl/$(DEPDIR)/la-acl_set_qualifier.Plo \ + libacl/$(DEPDIR)/la-acl_set_tag_type.Plo \ + libacl/$(DEPDIR)/la-acl_size.Plo \ + libacl/$(DEPDIR)/la-acl_to_any_text.Plo \ + libacl/$(DEPDIR)/la-acl_to_text.Plo \ + libacl/$(DEPDIR)/la-acl_valid.Plo \ + libacl/$(DEPDIR)/la-perm_copy_fd.Plo \ + libacl/$(DEPDIR)/la-perm_copy_file.Plo \ + libmisc/$(DEPDIR)/high_water_alloc.Plo \ + libmisc/$(DEPDIR)/next_line.Plo libmisc/$(DEPDIR)/quote.Plo \ + libmisc/$(DEPDIR)/unquote.Plo libmisc/$(DEPDIR)/walk_tree.Plo \ + test/$(DEPDIR)/libtestlookup_la-test_group.Plo \ + test/$(DEPDIR)/libtestlookup_la-test_passwd.Plo \ + tools/$(DEPDIR)/chacl.Po tools/$(DEPDIR)/do_set.Po \ + tools/$(DEPDIR)/getfacl.Po tools/$(DEPDIR)/parse.Po \ + tools/$(DEPDIR)/sequence.Po tools/$(DEPDIR)/setfacl.Po \ + tools/$(DEPDIR)/user_group.Po am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -298,7 +338,8 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - cscope check recheck distdir dist dist-all distcheck + cscope check recheck distdir distdir-am dist dist-all \ + distcheck 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 @@ -511,7 +552,7 @@ $(top_srcdir)/build-aux/ltmain.sh \ $(top_srcdir)/build-aux/missing \ $(top_srcdir)/build-aux/test-driver \ - $(top_srcdir)/include/config.h.in ABOUT-NLS README \ + $(top_srcdir)/include/config.h.in ABOUT-NLS README TODO \ build-aux/ar-lib build-aux/compile build-aux/config.guess \ build-aux/config.rpath build-aux/config.sub build-aux/depcomp \ build-aux/install-sh build-aux/ltmain.sh build-aux/missing @@ -904,8 +945,8 @@ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \ esac; $(srcdir)/doc/Makemodule.am $(srcdir)/examples/Makemodule.am $(srcdir)/include/Makemodule.am $(srcdir)/libacl/Makemodule.am $(srcdir)/libmisc/Makemodule.am $(srcdir)/man/Makemodule.am $(srcdir)/man/man1/Makemodule.am $(srcdir)/man/man3/Makemodule.am $(srcdir)/man/man5/Makemodule.am $(srcdir)/test/Makemodule.am $(srcdir)/tools/Makemodule.am $(am__empty): @@ -934,6 +975,55 @@ -rm -f include/config.h include/stamp-h1 libacl.pc: $(top_builddir)/config.status $(srcdir)/libacl.pc.in cd $(top_builddir) && $(SHELL) ./config.status $@ +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ + fi; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p \ + || test -f $$p1 \ + ; then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' \ + -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' \ + `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files + +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list clean-checkLTLIBRARIES: -test -z "$(check_LTLIBRARIES)" || rm -f $(check_LTLIBRARIES) @@ -997,101 +1087,101 @@ libacl/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) libacl/$(DEPDIR) @: > libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_add_perm.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_add_perm.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_calc_mask.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_calc_mask.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_clear_perms.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_clear_perms.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_copy_entry.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_copy_entry.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_copy_ext.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_copy_ext.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_copy_int.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_copy_int.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_create_entry.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_create_entry.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_delete_def_file.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_delete_def_file.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_delete_entry.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_delete_entry.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_delete_perm.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_delete_perm.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_dup.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_dup.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_free.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_free.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_from_text.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_from_text.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_get_entry.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_get_entry.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_get_fd.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_get_fd.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_get_file.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_get_file.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_get_perm.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_get_perm.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_get_permset.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_get_permset.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_get_qualifier.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_get_qualifier.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_get_tag_type.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_get_tag_type.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_init.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_init.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_set_fd.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_set_fd.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_set_file.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_set_file.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_set_permset.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_set_permset.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_set_qualifier.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_set_qualifier.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_set_tag_type.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_set_tag_type.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_size.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_size.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_to_text.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_to_text.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_valid.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_valid.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_check.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_check.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_cmp.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_cmp.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_entries.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_entries.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_equiv_mode.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_equiv_mode.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_error.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_error.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_extended_fd.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_extended_fd.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_extended_file.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_extended_file.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_extended_file_nofollow.lo: \ - libacl/$(am__dirstamp) libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_from_mode.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_extended_file_nofollow.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-acl_to_any_text.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_from_mode.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-__acl_extended_file.lo: libacl/$(am__dirstamp) \ +libacl/la-acl_to_any_text.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-__acl_from_xattr.lo: libacl/$(am__dirstamp) \ +libacl/la-__acl_extended_file.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-__acl_reorder_obj_p.lo: libacl/$(am__dirstamp) \ +libacl/la-__acl_from_xattr.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-__acl_to_any_text.lo: libacl/$(am__dirstamp) \ +libacl/la-__acl_reorder_obj_p.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-__acl_to_xattr.lo: libacl/$(am__dirstamp) \ +libacl/la-__acl_to_any_text.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-__apply_mask_to_mode.lo: libacl/$(am__dirstamp) \ +libacl/la-__acl_to_xattr.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-__libobj.lo: libacl/$(am__dirstamp) \ +libacl/la-__apply_mask_to_mode.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-perm_copy_fd.lo: libacl/$(am__dirstamp) \ +libacl/la-__libobj.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) -libacl/libacl_la-perm_copy_file.lo: libacl/$(am__dirstamp) \ +libacl/la-perm_copy_fd.lo: libacl/$(am__dirstamp) \ + libacl/$(DEPDIR)/$(am__dirstamp) +libacl/la-perm_copy_file.lo: libacl/$(am__dirstamp) \ libacl/$(DEPDIR)/$(am__dirstamp) libacl.la: $(libacl_la_OBJECTS) $(libacl_la_DEPENDENCIES) $(EXTRA_libacl_la_DEPENDENCIES) @@ -1128,55 +1218,6 @@ libtestlookup.la: $(libtestlookup_la_OBJECTS) $(libtestlookup_la_DEPENDENCIES) $(EXTRA_libtestlookup_la_DEPENDENCIES) $(AM_V_CCLD)$(libtestlookup_la_LINK) $(libtestlookup_la_OBJECTS) $(libtestlookup_la_LIBADD) $(LIBS) -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ - fi; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p \ - || test -f $$p1 \ - ; then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' \ - -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' \ - `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list tools/$(am__dirstamp): @$(MKDIR_P) tools @: > tools/$(am__dirstamp) @@ -1223,68 +1264,74 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-__acl_extended_file.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-__acl_from_xattr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-__acl_reorder_obj_p.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-__acl_to_any_text.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-__acl_to_xattr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-__apply_mask_to_mode.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-__libobj.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_add_perm.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_calc_mask.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_check.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_clear_perms.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_cmp.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_copy_entry.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_copy_ext.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_copy_int.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_create_entry.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_delete_def_file.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_delete_entry.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_delete_perm.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_dup.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_entries.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_equiv_mode.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_error.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_extended_fd.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_extended_file.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_extended_file_nofollow.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_free.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_from_mode.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_from_text.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_get_entry.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_get_fd.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_get_file.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_get_perm.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_get_permset.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_get_qualifier.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_get_tag_type.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_init.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_set_fd.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_set_file.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_set_permset.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_set_qualifier.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_set_tag_type.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_size.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_to_any_text.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_to_text.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-acl_valid.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-perm_copy_fd.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/libacl_la-perm_copy_file.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libmisc/$(DEPDIR)/high_water_alloc.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libmisc/$(DEPDIR)/next_line.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libmisc/$(DEPDIR)/quote.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libmisc/$(DEPDIR)/unquote.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@libmisc/$(DEPDIR)/walk_tree.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/libtestlookup_la-test_group.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/libtestlookup_la-test_passwd.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/chacl.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/do_set.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/getfacl.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/parse.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/sequence.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/setfacl.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/user_group.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-__acl_extended_file.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-__acl_from_xattr.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-__acl_reorder_obj_p.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-__acl_to_any_text.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-__acl_to_xattr.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-__apply_mask_to_mode.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-__libobj.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_add_perm.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_calc_mask.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_check.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_clear_perms.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_cmp.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_copy_entry.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_copy_ext.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_copy_int.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_create_entry.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_delete_def_file.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_delete_entry.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_delete_perm.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_dup.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_entries.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_equiv_mode.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_error.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_extended_fd.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_extended_file.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_extended_file_nofollow.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_free.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_from_mode.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_from_text.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_get_entry.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_get_fd.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_get_file.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_get_perm.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_get_permset.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_get_qualifier.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_get_tag_type.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_init.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_set_fd.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_set_file.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_set_permset.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_set_qualifier.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_set_tag_type.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_size.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_to_any_text.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_to_text.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-acl_valid.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-perm_copy_fd.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libacl/$(DEPDIR)/la-perm_copy_file.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libmisc/$(DEPDIR)/high_water_alloc.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libmisc/$(DEPDIR)/next_line.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libmisc/$(DEPDIR)/quote.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libmisc/$(DEPDIR)/unquote.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@libmisc/$(DEPDIR)/walk_tree.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/libtestlookup_la-test_group.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/libtestlookup_la-test_passwd.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/chacl.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/do_set.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/getfacl.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/parse.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/sequence.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/setfacl.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/user_group.Po@am__quote@ # am--include-marker + +$(am__depfiles_remade): + @$(MKDIR_P) $(@D) + @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + +am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @@ -1310,341 +1357,341 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< -libacl/libacl_la-acl_add_perm.lo: libacl/acl_add_perm.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_add_perm.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_add_perm.Tpo -c -o libacl/libacl_la-acl_add_perm.lo `test -f 'libacl/acl_add_perm.c' || echo '$(srcdir)/'`libacl/acl_add_perm.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_add_perm.Tpo libacl/$(DEPDIR)/libacl_la-acl_add_perm.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_add_perm.c' object='libacl/libacl_la-acl_add_perm.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_add_perm.lo: libacl/acl_add_perm.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_add_perm.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_add_perm.Tpo -c -o libacl/la-acl_add_perm.lo `test -f 'libacl/acl_add_perm.c' || echo '$(srcdir)/'`libacl/acl_add_perm.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_add_perm.Tpo libacl/$(DEPDIR)/la-acl_add_perm.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_add_perm.c' object='libacl/la-acl_add_perm.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_add_perm.lo `test -f 'libacl/acl_add_perm.c' || echo '$(srcdir)/'`libacl/acl_add_perm.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_add_perm.lo `test -f 'libacl/acl_add_perm.c' || echo '$(srcdir)/'`libacl/acl_add_perm.c -libacl/libacl_la-acl_calc_mask.lo: libacl/acl_calc_mask.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_calc_mask.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_calc_mask.Tpo -c -o libacl/libacl_la-acl_calc_mask.lo `test -f 'libacl/acl_calc_mask.c' || echo '$(srcdir)/'`libacl/acl_calc_mask.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_calc_mask.Tpo libacl/$(DEPDIR)/libacl_la-acl_calc_mask.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_calc_mask.c' object='libacl/libacl_la-acl_calc_mask.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_calc_mask.lo: libacl/acl_calc_mask.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_calc_mask.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_calc_mask.Tpo -c -o libacl/la-acl_calc_mask.lo `test -f 'libacl/acl_calc_mask.c' || echo '$(srcdir)/'`libacl/acl_calc_mask.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_calc_mask.Tpo libacl/$(DEPDIR)/la-acl_calc_mask.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_calc_mask.c' object='libacl/la-acl_calc_mask.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_calc_mask.lo `test -f 'libacl/acl_calc_mask.c' || echo '$(srcdir)/'`libacl/acl_calc_mask.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_calc_mask.lo `test -f 'libacl/acl_calc_mask.c' || echo '$(srcdir)/'`libacl/acl_calc_mask.c -libacl/libacl_la-acl_clear_perms.lo: libacl/acl_clear_perms.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_clear_perms.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_clear_perms.Tpo -c -o libacl/libacl_la-acl_clear_perms.lo `test -f 'libacl/acl_clear_perms.c' || echo '$(srcdir)/'`libacl/acl_clear_perms.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_clear_perms.Tpo libacl/$(DEPDIR)/libacl_la-acl_clear_perms.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_clear_perms.c' object='libacl/libacl_la-acl_clear_perms.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_clear_perms.lo: libacl/acl_clear_perms.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_clear_perms.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_clear_perms.Tpo -c -o libacl/la-acl_clear_perms.lo `test -f 'libacl/acl_clear_perms.c' || echo '$(srcdir)/'`libacl/acl_clear_perms.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_clear_perms.Tpo libacl/$(DEPDIR)/la-acl_clear_perms.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_clear_perms.c' object='libacl/la-acl_clear_perms.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_clear_perms.lo `test -f 'libacl/acl_clear_perms.c' || echo '$(srcdir)/'`libacl/acl_clear_perms.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_clear_perms.lo `test -f 'libacl/acl_clear_perms.c' || echo '$(srcdir)/'`libacl/acl_clear_perms.c -libacl/libacl_la-acl_copy_entry.lo: libacl/acl_copy_entry.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_copy_entry.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_copy_entry.Tpo -c -o libacl/libacl_la-acl_copy_entry.lo `test -f 'libacl/acl_copy_entry.c' || echo '$(srcdir)/'`libacl/acl_copy_entry.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_copy_entry.Tpo libacl/$(DEPDIR)/libacl_la-acl_copy_entry.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_copy_entry.c' object='libacl/libacl_la-acl_copy_entry.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_copy_entry.lo: libacl/acl_copy_entry.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_copy_entry.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_copy_entry.Tpo -c -o libacl/la-acl_copy_entry.lo `test -f 'libacl/acl_copy_entry.c' || echo '$(srcdir)/'`libacl/acl_copy_entry.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_copy_entry.Tpo libacl/$(DEPDIR)/la-acl_copy_entry.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_copy_entry.c' object='libacl/la-acl_copy_entry.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_copy_entry.lo `test -f 'libacl/acl_copy_entry.c' || echo '$(srcdir)/'`libacl/acl_copy_entry.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_copy_entry.lo `test -f 'libacl/acl_copy_entry.c' || echo '$(srcdir)/'`libacl/acl_copy_entry.c -libacl/libacl_la-acl_copy_ext.lo: libacl/acl_copy_ext.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_copy_ext.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_copy_ext.Tpo -c -o libacl/libacl_la-acl_copy_ext.lo `test -f 'libacl/acl_copy_ext.c' || echo '$(srcdir)/'`libacl/acl_copy_ext.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_copy_ext.Tpo libacl/$(DEPDIR)/libacl_la-acl_copy_ext.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_copy_ext.c' object='libacl/libacl_la-acl_copy_ext.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_copy_ext.lo: libacl/acl_copy_ext.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_copy_ext.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_copy_ext.Tpo -c -o libacl/la-acl_copy_ext.lo `test -f 'libacl/acl_copy_ext.c' || echo '$(srcdir)/'`libacl/acl_copy_ext.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_copy_ext.Tpo libacl/$(DEPDIR)/la-acl_copy_ext.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_copy_ext.c' object='libacl/la-acl_copy_ext.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_copy_ext.lo `test -f 'libacl/acl_copy_ext.c' || echo '$(srcdir)/'`libacl/acl_copy_ext.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_copy_ext.lo `test -f 'libacl/acl_copy_ext.c' || echo '$(srcdir)/'`libacl/acl_copy_ext.c -libacl/libacl_la-acl_copy_int.lo: libacl/acl_copy_int.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_copy_int.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_copy_int.Tpo -c -o libacl/libacl_la-acl_copy_int.lo `test -f 'libacl/acl_copy_int.c' || echo '$(srcdir)/'`libacl/acl_copy_int.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_copy_int.Tpo libacl/$(DEPDIR)/libacl_la-acl_copy_int.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_copy_int.c' object='libacl/libacl_la-acl_copy_int.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_copy_int.lo: libacl/acl_copy_int.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_copy_int.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_copy_int.Tpo -c -o libacl/la-acl_copy_int.lo `test -f 'libacl/acl_copy_int.c' || echo '$(srcdir)/'`libacl/acl_copy_int.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_copy_int.Tpo libacl/$(DEPDIR)/la-acl_copy_int.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_copy_int.c' object='libacl/la-acl_copy_int.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_copy_int.lo `test -f 'libacl/acl_copy_int.c' || echo '$(srcdir)/'`libacl/acl_copy_int.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_copy_int.lo `test -f 'libacl/acl_copy_int.c' || echo '$(srcdir)/'`libacl/acl_copy_int.c -libacl/libacl_la-acl_create_entry.lo: libacl/acl_create_entry.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_create_entry.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_create_entry.Tpo -c -o libacl/libacl_la-acl_create_entry.lo `test -f 'libacl/acl_create_entry.c' || echo '$(srcdir)/'`libacl/acl_create_entry.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_create_entry.Tpo libacl/$(DEPDIR)/libacl_la-acl_create_entry.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_create_entry.c' object='libacl/libacl_la-acl_create_entry.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_create_entry.lo: libacl/acl_create_entry.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_create_entry.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_create_entry.Tpo -c -o libacl/la-acl_create_entry.lo `test -f 'libacl/acl_create_entry.c' || echo '$(srcdir)/'`libacl/acl_create_entry.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_create_entry.Tpo libacl/$(DEPDIR)/la-acl_create_entry.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_create_entry.c' object='libacl/la-acl_create_entry.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_create_entry.lo `test -f 'libacl/acl_create_entry.c' || echo '$(srcdir)/'`libacl/acl_create_entry.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_create_entry.lo `test -f 'libacl/acl_create_entry.c' || echo '$(srcdir)/'`libacl/acl_create_entry.c -libacl/libacl_la-acl_delete_def_file.lo: libacl/acl_delete_def_file.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_delete_def_file.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_delete_def_file.Tpo -c -o libacl/libacl_la-acl_delete_def_file.lo `test -f 'libacl/acl_delete_def_file.c' || echo '$(srcdir)/'`libacl/acl_delete_def_file.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_delete_def_file.Tpo libacl/$(DEPDIR)/libacl_la-acl_delete_def_file.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_delete_def_file.c' object='libacl/libacl_la-acl_delete_def_file.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_delete_def_file.lo: libacl/acl_delete_def_file.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_delete_def_file.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_delete_def_file.Tpo -c -o libacl/la-acl_delete_def_file.lo `test -f 'libacl/acl_delete_def_file.c' || echo '$(srcdir)/'`libacl/acl_delete_def_file.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_delete_def_file.Tpo libacl/$(DEPDIR)/la-acl_delete_def_file.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_delete_def_file.c' object='libacl/la-acl_delete_def_file.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_delete_def_file.lo `test -f 'libacl/acl_delete_def_file.c' || echo '$(srcdir)/'`libacl/acl_delete_def_file.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_delete_def_file.lo `test -f 'libacl/acl_delete_def_file.c' || echo '$(srcdir)/'`libacl/acl_delete_def_file.c -libacl/libacl_la-acl_delete_entry.lo: libacl/acl_delete_entry.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_delete_entry.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_delete_entry.Tpo -c -o libacl/libacl_la-acl_delete_entry.lo `test -f 'libacl/acl_delete_entry.c' || echo '$(srcdir)/'`libacl/acl_delete_entry.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_delete_entry.Tpo libacl/$(DEPDIR)/libacl_la-acl_delete_entry.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_delete_entry.c' object='libacl/libacl_la-acl_delete_entry.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_delete_entry.lo: libacl/acl_delete_entry.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_delete_entry.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_delete_entry.Tpo -c -o libacl/la-acl_delete_entry.lo `test -f 'libacl/acl_delete_entry.c' || echo '$(srcdir)/'`libacl/acl_delete_entry.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_delete_entry.Tpo libacl/$(DEPDIR)/la-acl_delete_entry.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_delete_entry.c' object='libacl/la-acl_delete_entry.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_delete_entry.lo `test -f 'libacl/acl_delete_entry.c' || echo '$(srcdir)/'`libacl/acl_delete_entry.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_delete_entry.lo `test -f 'libacl/acl_delete_entry.c' || echo '$(srcdir)/'`libacl/acl_delete_entry.c -libacl/libacl_la-acl_delete_perm.lo: libacl/acl_delete_perm.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_delete_perm.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_delete_perm.Tpo -c -o libacl/libacl_la-acl_delete_perm.lo `test -f 'libacl/acl_delete_perm.c' || echo '$(srcdir)/'`libacl/acl_delete_perm.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_delete_perm.Tpo libacl/$(DEPDIR)/libacl_la-acl_delete_perm.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_delete_perm.c' object='libacl/libacl_la-acl_delete_perm.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_delete_perm.lo: libacl/acl_delete_perm.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_delete_perm.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_delete_perm.Tpo -c -o libacl/la-acl_delete_perm.lo `test -f 'libacl/acl_delete_perm.c' || echo '$(srcdir)/'`libacl/acl_delete_perm.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_delete_perm.Tpo libacl/$(DEPDIR)/la-acl_delete_perm.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_delete_perm.c' object='libacl/la-acl_delete_perm.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_delete_perm.lo `test -f 'libacl/acl_delete_perm.c' || echo '$(srcdir)/'`libacl/acl_delete_perm.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_delete_perm.lo `test -f 'libacl/acl_delete_perm.c' || echo '$(srcdir)/'`libacl/acl_delete_perm.c -libacl/libacl_la-acl_dup.lo: libacl/acl_dup.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_dup.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_dup.Tpo -c -o libacl/libacl_la-acl_dup.lo `test -f 'libacl/acl_dup.c' || echo '$(srcdir)/'`libacl/acl_dup.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_dup.Tpo libacl/$(DEPDIR)/libacl_la-acl_dup.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_dup.c' object='libacl/libacl_la-acl_dup.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_dup.lo: libacl/acl_dup.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_dup.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_dup.Tpo -c -o libacl/la-acl_dup.lo `test -f 'libacl/acl_dup.c' || echo '$(srcdir)/'`libacl/acl_dup.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_dup.Tpo libacl/$(DEPDIR)/la-acl_dup.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_dup.c' object='libacl/la-acl_dup.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_dup.lo `test -f 'libacl/acl_dup.c' || echo '$(srcdir)/'`libacl/acl_dup.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_dup.lo `test -f 'libacl/acl_dup.c' || echo '$(srcdir)/'`libacl/acl_dup.c -libacl/libacl_la-acl_free.lo: libacl/acl_free.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_free.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_free.Tpo -c -o libacl/libacl_la-acl_free.lo `test -f 'libacl/acl_free.c' || echo '$(srcdir)/'`libacl/acl_free.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_free.Tpo libacl/$(DEPDIR)/libacl_la-acl_free.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_free.c' object='libacl/libacl_la-acl_free.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_free.lo: libacl/acl_free.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_free.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_free.Tpo -c -o libacl/la-acl_free.lo `test -f 'libacl/acl_free.c' || echo '$(srcdir)/'`libacl/acl_free.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_free.Tpo libacl/$(DEPDIR)/la-acl_free.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_free.c' object='libacl/la-acl_free.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_free.lo `test -f 'libacl/acl_free.c' || echo '$(srcdir)/'`libacl/acl_free.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_free.lo `test -f 'libacl/acl_free.c' || echo '$(srcdir)/'`libacl/acl_free.c -libacl/libacl_la-acl_from_text.lo: libacl/acl_from_text.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_from_text.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_from_text.Tpo -c -o libacl/libacl_la-acl_from_text.lo `test -f 'libacl/acl_from_text.c' || echo '$(srcdir)/'`libacl/acl_from_text.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_from_text.Tpo libacl/$(DEPDIR)/libacl_la-acl_from_text.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_from_text.c' object='libacl/libacl_la-acl_from_text.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_from_text.lo: libacl/acl_from_text.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_from_text.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_from_text.Tpo -c -o libacl/la-acl_from_text.lo `test -f 'libacl/acl_from_text.c' || echo '$(srcdir)/'`libacl/acl_from_text.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_from_text.Tpo libacl/$(DEPDIR)/la-acl_from_text.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_from_text.c' object='libacl/la-acl_from_text.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_from_text.lo `test -f 'libacl/acl_from_text.c' || echo '$(srcdir)/'`libacl/acl_from_text.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_from_text.lo `test -f 'libacl/acl_from_text.c' || echo '$(srcdir)/'`libacl/acl_from_text.c -libacl/libacl_la-acl_get_entry.lo: libacl/acl_get_entry.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_get_entry.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_get_entry.Tpo -c -o libacl/libacl_la-acl_get_entry.lo `test -f 'libacl/acl_get_entry.c' || echo '$(srcdir)/'`libacl/acl_get_entry.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_get_entry.Tpo libacl/$(DEPDIR)/libacl_la-acl_get_entry.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_get_entry.c' object='libacl/libacl_la-acl_get_entry.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_get_entry.lo: libacl/acl_get_entry.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_get_entry.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_get_entry.Tpo -c -o libacl/la-acl_get_entry.lo `test -f 'libacl/acl_get_entry.c' || echo '$(srcdir)/'`libacl/acl_get_entry.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_get_entry.Tpo libacl/$(DEPDIR)/la-acl_get_entry.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_get_entry.c' object='libacl/la-acl_get_entry.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_get_entry.lo `test -f 'libacl/acl_get_entry.c' || echo '$(srcdir)/'`libacl/acl_get_entry.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_get_entry.lo `test -f 'libacl/acl_get_entry.c' || echo '$(srcdir)/'`libacl/acl_get_entry.c -libacl/libacl_la-acl_get_fd.lo: libacl/acl_get_fd.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_get_fd.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_get_fd.Tpo -c -o libacl/libacl_la-acl_get_fd.lo `test -f 'libacl/acl_get_fd.c' || echo '$(srcdir)/'`libacl/acl_get_fd.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_get_fd.Tpo libacl/$(DEPDIR)/libacl_la-acl_get_fd.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_get_fd.c' object='libacl/libacl_la-acl_get_fd.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_get_fd.lo: libacl/acl_get_fd.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_get_fd.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_get_fd.Tpo -c -o libacl/la-acl_get_fd.lo `test -f 'libacl/acl_get_fd.c' || echo '$(srcdir)/'`libacl/acl_get_fd.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_get_fd.Tpo libacl/$(DEPDIR)/la-acl_get_fd.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_get_fd.c' object='libacl/la-acl_get_fd.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_get_fd.lo `test -f 'libacl/acl_get_fd.c' || echo '$(srcdir)/'`libacl/acl_get_fd.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_get_fd.lo `test -f 'libacl/acl_get_fd.c' || echo '$(srcdir)/'`libacl/acl_get_fd.c -libacl/libacl_la-acl_get_file.lo: libacl/acl_get_file.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_get_file.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_get_file.Tpo -c -o libacl/libacl_la-acl_get_file.lo `test -f 'libacl/acl_get_file.c' || echo '$(srcdir)/'`libacl/acl_get_file.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_get_file.Tpo libacl/$(DEPDIR)/libacl_la-acl_get_file.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_get_file.c' object='libacl/libacl_la-acl_get_file.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_get_file.lo: libacl/acl_get_file.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_get_file.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_get_file.Tpo -c -o libacl/la-acl_get_file.lo `test -f 'libacl/acl_get_file.c' || echo '$(srcdir)/'`libacl/acl_get_file.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_get_file.Tpo libacl/$(DEPDIR)/la-acl_get_file.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_get_file.c' object='libacl/la-acl_get_file.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_get_file.lo `test -f 'libacl/acl_get_file.c' || echo '$(srcdir)/'`libacl/acl_get_file.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_get_file.lo `test -f 'libacl/acl_get_file.c' || echo '$(srcdir)/'`libacl/acl_get_file.c -libacl/libacl_la-acl_get_perm.lo: libacl/acl_get_perm.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_get_perm.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_get_perm.Tpo -c -o libacl/libacl_la-acl_get_perm.lo `test -f 'libacl/acl_get_perm.c' || echo '$(srcdir)/'`libacl/acl_get_perm.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_get_perm.Tpo libacl/$(DEPDIR)/libacl_la-acl_get_perm.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_get_perm.c' object='libacl/libacl_la-acl_get_perm.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_get_perm.lo: libacl/acl_get_perm.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_get_perm.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_get_perm.Tpo -c -o libacl/la-acl_get_perm.lo `test -f 'libacl/acl_get_perm.c' || echo '$(srcdir)/'`libacl/acl_get_perm.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_get_perm.Tpo libacl/$(DEPDIR)/la-acl_get_perm.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_get_perm.c' object='libacl/la-acl_get_perm.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_get_perm.lo `test -f 'libacl/acl_get_perm.c' || echo '$(srcdir)/'`libacl/acl_get_perm.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_get_perm.lo `test -f 'libacl/acl_get_perm.c' || echo '$(srcdir)/'`libacl/acl_get_perm.c -libacl/libacl_la-acl_get_permset.lo: libacl/acl_get_permset.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_get_permset.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_get_permset.Tpo -c -o libacl/libacl_la-acl_get_permset.lo `test -f 'libacl/acl_get_permset.c' || echo '$(srcdir)/'`libacl/acl_get_permset.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_get_permset.Tpo libacl/$(DEPDIR)/libacl_la-acl_get_permset.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_get_permset.c' object='libacl/libacl_la-acl_get_permset.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_get_permset.lo: libacl/acl_get_permset.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_get_permset.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_get_permset.Tpo -c -o libacl/la-acl_get_permset.lo `test -f 'libacl/acl_get_permset.c' || echo '$(srcdir)/'`libacl/acl_get_permset.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_get_permset.Tpo libacl/$(DEPDIR)/la-acl_get_permset.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_get_permset.c' object='libacl/la-acl_get_permset.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_get_permset.lo `test -f 'libacl/acl_get_permset.c' || echo '$(srcdir)/'`libacl/acl_get_permset.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_get_permset.lo `test -f 'libacl/acl_get_permset.c' || echo '$(srcdir)/'`libacl/acl_get_permset.c -libacl/libacl_la-acl_get_qualifier.lo: libacl/acl_get_qualifier.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_get_qualifier.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_get_qualifier.Tpo -c -o libacl/libacl_la-acl_get_qualifier.lo `test -f 'libacl/acl_get_qualifier.c' || echo '$(srcdir)/'`libacl/acl_get_qualifier.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_get_qualifier.Tpo libacl/$(DEPDIR)/libacl_la-acl_get_qualifier.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_get_qualifier.c' object='libacl/libacl_la-acl_get_qualifier.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_get_qualifier.lo: libacl/acl_get_qualifier.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_get_qualifier.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_get_qualifier.Tpo -c -o libacl/la-acl_get_qualifier.lo `test -f 'libacl/acl_get_qualifier.c' || echo '$(srcdir)/'`libacl/acl_get_qualifier.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_get_qualifier.Tpo libacl/$(DEPDIR)/la-acl_get_qualifier.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_get_qualifier.c' object='libacl/la-acl_get_qualifier.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_get_qualifier.lo `test -f 'libacl/acl_get_qualifier.c' || echo '$(srcdir)/'`libacl/acl_get_qualifier.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_get_qualifier.lo `test -f 'libacl/acl_get_qualifier.c' || echo '$(srcdir)/'`libacl/acl_get_qualifier.c -libacl/libacl_la-acl_get_tag_type.lo: libacl/acl_get_tag_type.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_get_tag_type.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_get_tag_type.Tpo -c -o libacl/libacl_la-acl_get_tag_type.lo `test -f 'libacl/acl_get_tag_type.c' || echo '$(srcdir)/'`libacl/acl_get_tag_type.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_get_tag_type.Tpo libacl/$(DEPDIR)/libacl_la-acl_get_tag_type.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_get_tag_type.c' object='libacl/libacl_la-acl_get_tag_type.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_get_tag_type.lo: libacl/acl_get_tag_type.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_get_tag_type.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_get_tag_type.Tpo -c -o libacl/la-acl_get_tag_type.lo `test -f 'libacl/acl_get_tag_type.c' || echo '$(srcdir)/'`libacl/acl_get_tag_type.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_get_tag_type.Tpo libacl/$(DEPDIR)/la-acl_get_tag_type.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_get_tag_type.c' object='libacl/la-acl_get_tag_type.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_get_tag_type.lo `test -f 'libacl/acl_get_tag_type.c' || echo '$(srcdir)/'`libacl/acl_get_tag_type.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_get_tag_type.lo `test -f 'libacl/acl_get_tag_type.c' || echo '$(srcdir)/'`libacl/acl_get_tag_type.c -libacl/libacl_la-acl_init.lo: libacl/acl_init.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_init.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_init.Tpo -c -o libacl/libacl_la-acl_init.lo `test -f 'libacl/acl_init.c' || echo '$(srcdir)/'`libacl/acl_init.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_init.Tpo libacl/$(DEPDIR)/libacl_la-acl_init.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_init.c' object='libacl/libacl_la-acl_init.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_init.lo: libacl/acl_init.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_init.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_init.Tpo -c -o libacl/la-acl_init.lo `test -f 'libacl/acl_init.c' || echo '$(srcdir)/'`libacl/acl_init.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_init.Tpo libacl/$(DEPDIR)/la-acl_init.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_init.c' object='libacl/la-acl_init.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_init.lo `test -f 'libacl/acl_init.c' || echo '$(srcdir)/'`libacl/acl_init.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_init.lo `test -f 'libacl/acl_init.c' || echo '$(srcdir)/'`libacl/acl_init.c -libacl/libacl_la-acl_set_fd.lo: libacl/acl_set_fd.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_set_fd.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_set_fd.Tpo -c -o libacl/libacl_la-acl_set_fd.lo `test -f 'libacl/acl_set_fd.c' || echo '$(srcdir)/'`libacl/acl_set_fd.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_set_fd.Tpo libacl/$(DEPDIR)/libacl_la-acl_set_fd.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_set_fd.c' object='libacl/libacl_la-acl_set_fd.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_set_fd.lo: libacl/acl_set_fd.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_set_fd.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_set_fd.Tpo -c -o libacl/la-acl_set_fd.lo `test -f 'libacl/acl_set_fd.c' || echo '$(srcdir)/'`libacl/acl_set_fd.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_set_fd.Tpo libacl/$(DEPDIR)/la-acl_set_fd.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_set_fd.c' object='libacl/la-acl_set_fd.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_set_fd.lo `test -f 'libacl/acl_set_fd.c' || echo '$(srcdir)/'`libacl/acl_set_fd.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_set_fd.lo `test -f 'libacl/acl_set_fd.c' || echo '$(srcdir)/'`libacl/acl_set_fd.c -libacl/libacl_la-acl_set_file.lo: libacl/acl_set_file.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_set_file.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_set_file.Tpo -c -o libacl/libacl_la-acl_set_file.lo `test -f 'libacl/acl_set_file.c' || echo '$(srcdir)/'`libacl/acl_set_file.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_set_file.Tpo libacl/$(DEPDIR)/libacl_la-acl_set_file.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_set_file.c' object='libacl/libacl_la-acl_set_file.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_set_file.lo: libacl/acl_set_file.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_set_file.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_set_file.Tpo -c -o libacl/la-acl_set_file.lo `test -f 'libacl/acl_set_file.c' || echo '$(srcdir)/'`libacl/acl_set_file.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_set_file.Tpo libacl/$(DEPDIR)/la-acl_set_file.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_set_file.c' object='libacl/la-acl_set_file.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_set_file.lo `test -f 'libacl/acl_set_file.c' || echo '$(srcdir)/'`libacl/acl_set_file.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_set_file.lo `test -f 'libacl/acl_set_file.c' || echo '$(srcdir)/'`libacl/acl_set_file.c -libacl/libacl_la-acl_set_permset.lo: libacl/acl_set_permset.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_set_permset.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_set_permset.Tpo -c -o libacl/libacl_la-acl_set_permset.lo `test -f 'libacl/acl_set_permset.c' || echo '$(srcdir)/'`libacl/acl_set_permset.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_set_permset.Tpo libacl/$(DEPDIR)/libacl_la-acl_set_permset.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_set_permset.c' object='libacl/libacl_la-acl_set_permset.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_set_permset.lo: libacl/acl_set_permset.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_set_permset.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_set_permset.Tpo -c -o libacl/la-acl_set_permset.lo `test -f 'libacl/acl_set_permset.c' || echo '$(srcdir)/'`libacl/acl_set_permset.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_set_permset.Tpo libacl/$(DEPDIR)/la-acl_set_permset.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_set_permset.c' object='libacl/la-acl_set_permset.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_set_permset.lo `test -f 'libacl/acl_set_permset.c' || echo '$(srcdir)/'`libacl/acl_set_permset.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_set_permset.lo `test -f 'libacl/acl_set_permset.c' || echo '$(srcdir)/'`libacl/acl_set_permset.c -libacl/libacl_la-acl_set_qualifier.lo: libacl/acl_set_qualifier.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_set_qualifier.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_set_qualifier.Tpo -c -o libacl/libacl_la-acl_set_qualifier.lo `test -f 'libacl/acl_set_qualifier.c' || echo '$(srcdir)/'`libacl/acl_set_qualifier.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_set_qualifier.Tpo libacl/$(DEPDIR)/libacl_la-acl_set_qualifier.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_set_qualifier.c' object='libacl/libacl_la-acl_set_qualifier.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_set_qualifier.lo: libacl/acl_set_qualifier.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_set_qualifier.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_set_qualifier.Tpo -c -o libacl/la-acl_set_qualifier.lo `test -f 'libacl/acl_set_qualifier.c' || echo '$(srcdir)/'`libacl/acl_set_qualifier.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_set_qualifier.Tpo libacl/$(DEPDIR)/la-acl_set_qualifier.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_set_qualifier.c' object='libacl/la-acl_set_qualifier.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_set_qualifier.lo `test -f 'libacl/acl_set_qualifier.c' || echo '$(srcdir)/'`libacl/acl_set_qualifier.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_set_qualifier.lo `test -f 'libacl/acl_set_qualifier.c' || echo '$(srcdir)/'`libacl/acl_set_qualifier.c -libacl/libacl_la-acl_set_tag_type.lo: libacl/acl_set_tag_type.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_set_tag_type.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_set_tag_type.Tpo -c -o libacl/libacl_la-acl_set_tag_type.lo `test -f 'libacl/acl_set_tag_type.c' || echo '$(srcdir)/'`libacl/acl_set_tag_type.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_set_tag_type.Tpo libacl/$(DEPDIR)/libacl_la-acl_set_tag_type.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_set_tag_type.c' object='libacl/libacl_la-acl_set_tag_type.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_set_tag_type.lo: libacl/acl_set_tag_type.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_set_tag_type.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_set_tag_type.Tpo -c -o libacl/la-acl_set_tag_type.lo `test -f 'libacl/acl_set_tag_type.c' || echo '$(srcdir)/'`libacl/acl_set_tag_type.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_set_tag_type.Tpo libacl/$(DEPDIR)/la-acl_set_tag_type.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_set_tag_type.c' object='libacl/la-acl_set_tag_type.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_set_tag_type.lo `test -f 'libacl/acl_set_tag_type.c' || echo '$(srcdir)/'`libacl/acl_set_tag_type.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_set_tag_type.lo `test -f 'libacl/acl_set_tag_type.c' || echo '$(srcdir)/'`libacl/acl_set_tag_type.c -libacl/libacl_la-acl_size.lo: libacl/acl_size.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_size.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_size.Tpo -c -o libacl/libacl_la-acl_size.lo `test -f 'libacl/acl_size.c' || echo '$(srcdir)/'`libacl/acl_size.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_size.Tpo libacl/$(DEPDIR)/libacl_la-acl_size.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_size.c' object='libacl/libacl_la-acl_size.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_size.lo: libacl/acl_size.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_size.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_size.Tpo -c -o libacl/la-acl_size.lo `test -f 'libacl/acl_size.c' || echo '$(srcdir)/'`libacl/acl_size.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_size.Tpo libacl/$(DEPDIR)/la-acl_size.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_size.c' object='libacl/la-acl_size.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_size.lo `test -f 'libacl/acl_size.c' || echo '$(srcdir)/'`libacl/acl_size.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_size.lo `test -f 'libacl/acl_size.c' || echo '$(srcdir)/'`libacl/acl_size.c -libacl/libacl_la-acl_to_text.lo: libacl/acl_to_text.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_to_text.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_to_text.Tpo -c -o libacl/libacl_la-acl_to_text.lo `test -f 'libacl/acl_to_text.c' || echo '$(srcdir)/'`libacl/acl_to_text.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_to_text.Tpo libacl/$(DEPDIR)/libacl_la-acl_to_text.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_to_text.c' object='libacl/libacl_la-acl_to_text.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_to_text.lo: libacl/acl_to_text.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_to_text.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_to_text.Tpo -c -o libacl/la-acl_to_text.lo `test -f 'libacl/acl_to_text.c' || echo '$(srcdir)/'`libacl/acl_to_text.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_to_text.Tpo libacl/$(DEPDIR)/la-acl_to_text.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_to_text.c' object='libacl/la-acl_to_text.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_to_text.lo `test -f 'libacl/acl_to_text.c' || echo '$(srcdir)/'`libacl/acl_to_text.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_to_text.lo `test -f 'libacl/acl_to_text.c' || echo '$(srcdir)/'`libacl/acl_to_text.c -libacl/libacl_la-acl_valid.lo: libacl/acl_valid.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_valid.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_valid.Tpo -c -o libacl/libacl_la-acl_valid.lo `test -f 'libacl/acl_valid.c' || echo '$(srcdir)/'`libacl/acl_valid.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_valid.Tpo libacl/$(DEPDIR)/libacl_la-acl_valid.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_valid.c' object='libacl/libacl_la-acl_valid.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_valid.lo: libacl/acl_valid.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_valid.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_valid.Tpo -c -o libacl/la-acl_valid.lo `test -f 'libacl/acl_valid.c' || echo '$(srcdir)/'`libacl/acl_valid.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_valid.Tpo libacl/$(DEPDIR)/la-acl_valid.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_valid.c' object='libacl/la-acl_valid.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_valid.lo `test -f 'libacl/acl_valid.c' || echo '$(srcdir)/'`libacl/acl_valid.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_valid.lo `test -f 'libacl/acl_valid.c' || echo '$(srcdir)/'`libacl/acl_valid.c -libacl/libacl_la-acl_check.lo: libacl/acl_check.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_check.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_check.Tpo -c -o libacl/libacl_la-acl_check.lo `test -f 'libacl/acl_check.c' || echo '$(srcdir)/'`libacl/acl_check.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_check.Tpo libacl/$(DEPDIR)/libacl_la-acl_check.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_check.c' object='libacl/libacl_la-acl_check.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_check.lo: libacl/acl_check.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_check.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_check.Tpo -c -o libacl/la-acl_check.lo `test -f 'libacl/acl_check.c' || echo '$(srcdir)/'`libacl/acl_check.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_check.Tpo libacl/$(DEPDIR)/la-acl_check.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_check.c' object='libacl/la-acl_check.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_check.lo `test -f 'libacl/acl_check.c' || echo '$(srcdir)/'`libacl/acl_check.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_check.lo `test -f 'libacl/acl_check.c' || echo '$(srcdir)/'`libacl/acl_check.c -libacl/libacl_la-acl_cmp.lo: libacl/acl_cmp.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_cmp.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_cmp.Tpo -c -o libacl/libacl_la-acl_cmp.lo `test -f 'libacl/acl_cmp.c' || echo '$(srcdir)/'`libacl/acl_cmp.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_cmp.Tpo libacl/$(DEPDIR)/libacl_la-acl_cmp.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_cmp.c' object='libacl/libacl_la-acl_cmp.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_cmp.lo: libacl/acl_cmp.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_cmp.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_cmp.Tpo -c -o libacl/la-acl_cmp.lo `test -f 'libacl/acl_cmp.c' || echo '$(srcdir)/'`libacl/acl_cmp.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_cmp.Tpo libacl/$(DEPDIR)/la-acl_cmp.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_cmp.c' object='libacl/la-acl_cmp.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_cmp.lo `test -f 'libacl/acl_cmp.c' || echo '$(srcdir)/'`libacl/acl_cmp.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_cmp.lo `test -f 'libacl/acl_cmp.c' || echo '$(srcdir)/'`libacl/acl_cmp.c -libacl/libacl_la-acl_entries.lo: libacl/acl_entries.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_entries.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_entries.Tpo -c -o libacl/libacl_la-acl_entries.lo `test -f 'libacl/acl_entries.c' || echo '$(srcdir)/'`libacl/acl_entries.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_entries.Tpo libacl/$(DEPDIR)/libacl_la-acl_entries.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_entries.c' object='libacl/libacl_la-acl_entries.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_entries.lo: libacl/acl_entries.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_entries.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_entries.Tpo -c -o libacl/la-acl_entries.lo `test -f 'libacl/acl_entries.c' || echo '$(srcdir)/'`libacl/acl_entries.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_entries.Tpo libacl/$(DEPDIR)/la-acl_entries.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_entries.c' object='libacl/la-acl_entries.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_entries.lo `test -f 'libacl/acl_entries.c' || echo '$(srcdir)/'`libacl/acl_entries.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_entries.lo `test -f 'libacl/acl_entries.c' || echo '$(srcdir)/'`libacl/acl_entries.c -libacl/libacl_la-acl_equiv_mode.lo: libacl/acl_equiv_mode.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_equiv_mode.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_equiv_mode.Tpo -c -o libacl/libacl_la-acl_equiv_mode.lo `test -f 'libacl/acl_equiv_mode.c' || echo '$(srcdir)/'`libacl/acl_equiv_mode.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_equiv_mode.Tpo libacl/$(DEPDIR)/libacl_la-acl_equiv_mode.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_equiv_mode.c' object='libacl/libacl_la-acl_equiv_mode.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_equiv_mode.lo: libacl/acl_equiv_mode.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_equiv_mode.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_equiv_mode.Tpo -c -o libacl/la-acl_equiv_mode.lo `test -f 'libacl/acl_equiv_mode.c' || echo '$(srcdir)/'`libacl/acl_equiv_mode.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_equiv_mode.Tpo libacl/$(DEPDIR)/la-acl_equiv_mode.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_equiv_mode.c' object='libacl/la-acl_equiv_mode.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_equiv_mode.lo `test -f 'libacl/acl_equiv_mode.c' || echo '$(srcdir)/'`libacl/acl_equiv_mode.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_equiv_mode.lo `test -f 'libacl/acl_equiv_mode.c' || echo '$(srcdir)/'`libacl/acl_equiv_mode.c -libacl/libacl_la-acl_error.lo: libacl/acl_error.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_error.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_error.Tpo -c -o libacl/libacl_la-acl_error.lo `test -f 'libacl/acl_error.c' || echo '$(srcdir)/'`libacl/acl_error.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_error.Tpo libacl/$(DEPDIR)/libacl_la-acl_error.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_error.c' object='libacl/libacl_la-acl_error.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_error.lo: libacl/acl_error.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_error.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_error.Tpo -c -o libacl/la-acl_error.lo `test -f 'libacl/acl_error.c' || echo '$(srcdir)/'`libacl/acl_error.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_error.Tpo libacl/$(DEPDIR)/la-acl_error.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_error.c' object='libacl/la-acl_error.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_error.lo `test -f 'libacl/acl_error.c' || echo '$(srcdir)/'`libacl/acl_error.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_error.lo `test -f 'libacl/acl_error.c' || echo '$(srcdir)/'`libacl/acl_error.c -libacl/libacl_la-acl_extended_fd.lo: libacl/acl_extended_fd.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_extended_fd.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_extended_fd.Tpo -c -o libacl/libacl_la-acl_extended_fd.lo `test -f 'libacl/acl_extended_fd.c' || echo '$(srcdir)/'`libacl/acl_extended_fd.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_extended_fd.Tpo libacl/$(DEPDIR)/libacl_la-acl_extended_fd.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_extended_fd.c' object='libacl/libacl_la-acl_extended_fd.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_extended_fd.lo: libacl/acl_extended_fd.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_extended_fd.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_extended_fd.Tpo -c -o libacl/la-acl_extended_fd.lo `test -f 'libacl/acl_extended_fd.c' || echo '$(srcdir)/'`libacl/acl_extended_fd.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_extended_fd.Tpo libacl/$(DEPDIR)/la-acl_extended_fd.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_extended_fd.c' object='libacl/la-acl_extended_fd.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_extended_fd.lo `test -f 'libacl/acl_extended_fd.c' || echo '$(srcdir)/'`libacl/acl_extended_fd.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_extended_fd.lo `test -f 'libacl/acl_extended_fd.c' || echo '$(srcdir)/'`libacl/acl_extended_fd.c -libacl/libacl_la-acl_extended_file.lo: libacl/acl_extended_file.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_extended_file.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_extended_file.Tpo -c -o libacl/libacl_la-acl_extended_file.lo `test -f 'libacl/acl_extended_file.c' || echo '$(srcdir)/'`libacl/acl_extended_file.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_extended_file.Tpo libacl/$(DEPDIR)/libacl_la-acl_extended_file.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_extended_file.c' object='libacl/libacl_la-acl_extended_file.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_extended_file.lo: libacl/acl_extended_file.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_extended_file.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_extended_file.Tpo -c -o libacl/la-acl_extended_file.lo `test -f 'libacl/acl_extended_file.c' || echo '$(srcdir)/'`libacl/acl_extended_file.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_extended_file.Tpo libacl/$(DEPDIR)/la-acl_extended_file.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_extended_file.c' object='libacl/la-acl_extended_file.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_extended_file.lo `test -f 'libacl/acl_extended_file.c' || echo '$(srcdir)/'`libacl/acl_extended_file.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_extended_file.lo `test -f 'libacl/acl_extended_file.c' || echo '$(srcdir)/'`libacl/acl_extended_file.c -libacl/libacl_la-acl_extended_file_nofollow.lo: libacl/acl_extended_file_nofollow.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_extended_file_nofollow.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_extended_file_nofollow.Tpo -c -o libacl/libacl_la-acl_extended_file_nofollow.lo `test -f 'libacl/acl_extended_file_nofollow.c' || echo '$(srcdir)/'`libacl/acl_extended_file_nofollow.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_extended_file_nofollow.Tpo libacl/$(DEPDIR)/libacl_la-acl_extended_file_nofollow.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_extended_file_nofollow.c' object='libacl/libacl_la-acl_extended_file_nofollow.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_extended_file_nofollow.lo: libacl/acl_extended_file_nofollow.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_extended_file_nofollow.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_extended_file_nofollow.Tpo -c -o libacl/la-acl_extended_file_nofollow.lo `test -f 'libacl/acl_extended_file_nofollow.c' || echo '$(srcdir)/'`libacl/acl_extended_file_nofollow.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_extended_file_nofollow.Tpo libacl/$(DEPDIR)/la-acl_extended_file_nofollow.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_extended_file_nofollow.c' object='libacl/la-acl_extended_file_nofollow.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_extended_file_nofollow.lo `test -f 'libacl/acl_extended_file_nofollow.c' || echo '$(srcdir)/'`libacl/acl_extended_file_nofollow.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_extended_file_nofollow.lo `test -f 'libacl/acl_extended_file_nofollow.c' || echo '$(srcdir)/'`libacl/acl_extended_file_nofollow.c -libacl/libacl_la-acl_from_mode.lo: libacl/acl_from_mode.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_from_mode.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_from_mode.Tpo -c -o libacl/libacl_la-acl_from_mode.lo `test -f 'libacl/acl_from_mode.c' || echo '$(srcdir)/'`libacl/acl_from_mode.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_from_mode.Tpo libacl/$(DEPDIR)/libacl_la-acl_from_mode.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_from_mode.c' object='libacl/libacl_la-acl_from_mode.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_from_mode.lo: libacl/acl_from_mode.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_from_mode.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_from_mode.Tpo -c -o libacl/la-acl_from_mode.lo `test -f 'libacl/acl_from_mode.c' || echo '$(srcdir)/'`libacl/acl_from_mode.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_from_mode.Tpo libacl/$(DEPDIR)/la-acl_from_mode.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_from_mode.c' object='libacl/la-acl_from_mode.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_from_mode.lo `test -f 'libacl/acl_from_mode.c' || echo '$(srcdir)/'`libacl/acl_from_mode.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_from_mode.lo `test -f 'libacl/acl_from_mode.c' || echo '$(srcdir)/'`libacl/acl_from_mode.c -libacl/libacl_la-acl_to_any_text.lo: libacl/acl_to_any_text.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-acl_to_any_text.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-acl_to_any_text.Tpo -c -o libacl/libacl_la-acl_to_any_text.lo `test -f 'libacl/acl_to_any_text.c' || echo '$(srcdir)/'`libacl/acl_to_any_text.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-acl_to_any_text.Tpo libacl/$(DEPDIR)/libacl_la-acl_to_any_text.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_to_any_text.c' object='libacl/libacl_la-acl_to_any_text.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-acl_to_any_text.lo: libacl/acl_to_any_text.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-acl_to_any_text.lo -MD -MP -MF libacl/$(DEPDIR)/la-acl_to_any_text.Tpo -c -o libacl/la-acl_to_any_text.lo `test -f 'libacl/acl_to_any_text.c' || echo '$(srcdir)/'`libacl/acl_to_any_text.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-acl_to_any_text.Tpo libacl/$(DEPDIR)/la-acl_to_any_text.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/acl_to_any_text.c' object='libacl/la-acl_to_any_text.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-acl_to_any_text.lo `test -f 'libacl/acl_to_any_text.c' || echo '$(srcdir)/'`libacl/acl_to_any_text.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-acl_to_any_text.lo `test -f 'libacl/acl_to_any_text.c' || echo '$(srcdir)/'`libacl/acl_to_any_text.c -libacl/libacl_la-__acl_extended_file.lo: libacl/__acl_extended_file.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-__acl_extended_file.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-__acl_extended_file.Tpo -c -o libacl/libacl_la-__acl_extended_file.lo `test -f 'libacl/__acl_extended_file.c' || echo '$(srcdir)/'`libacl/__acl_extended_file.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-__acl_extended_file.Tpo libacl/$(DEPDIR)/libacl_la-__acl_extended_file.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/__acl_extended_file.c' object='libacl/libacl_la-__acl_extended_file.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-__acl_extended_file.lo: libacl/__acl_extended_file.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-__acl_extended_file.lo -MD -MP -MF libacl/$(DEPDIR)/la-__acl_extended_file.Tpo -c -o libacl/la-__acl_extended_file.lo `test -f 'libacl/__acl_extended_file.c' || echo '$(srcdir)/'`libacl/__acl_extended_file.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-__acl_extended_file.Tpo libacl/$(DEPDIR)/la-__acl_extended_file.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/__acl_extended_file.c' object='libacl/la-__acl_extended_file.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-__acl_extended_file.lo `test -f 'libacl/__acl_extended_file.c' || echo '$(srcdir)/'`libacl/__acl_extended_file.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-__acl_extended_file.lo `test -f 'libacl/__acl_extended_file.c' || echo '$(srcdir)/'`libacl/__acl_extended_file.c -libacl/libacl_la-__acl_from_xattr.lo: libacl/__acl_from_xattr.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-__acl_from_xattr.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-__acl_from_xattr.Tpo -c -o libacl/libacl_la-__acl_from_xattr.lo `test -f 'libacl/__acl_from_xattr.c' || echo '$(srcdir)/'`libacl/__acl_from_xattr.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-__acl_from_xattr.Tpo libacl/$(DEPDIR)/libacl_la-__acl_from_xattr.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/__acl_from_xattr.c' object='libacl/libacl_la-__acl_from_xattr.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-__acl_from_xattr.lo: libacl/__acl_from_xattr.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-__acl_from_xattr.lo -MD -MP -MF libacl/$(DEPDIR)/la-__acl_from_xattr.Tpo -c -o libacl/la-__acl_from_xattr.lo `test -f 'libacl/__acl_from_xattr.c' || echo '$(srcdir)/'`libacl/__acl_from_xattr.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-__acl_from_xattr.Tpo libacl/$(DEPDIR)/la-__acl_from_xattr.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/__acl_from_xattr.c' object='libacl/la-__acl_from_xattr.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-__acl_from_xattr.lo `test -f 'libacl/__acl_from_xattr.c' || echo '$(srcdir)/'`libacl/__acl_from_xattr.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-__acl_from_xattr.lo `test -f 'libacl/__acl_from_xattr.c' || echo '$(srcdir)/'`libacl/__acl_from_xattr.c -libacl/libacl_la-__acl_reorder_obj_p.lo: libacl/__acl_reorder_obj_p.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-__acl_reorder_obj_p.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-__acl_reorder_obj_p.Tpo -c -o libacl/libacl_la-__acl_reorder_obj_p.lo `test -f 'libacl/__acl_reorder_obj_p.c' || echo '$(srcdir)/'`libacl/__acl_reorder_obj_p.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-__acl_reorder_obj_p.Tpo libacl/$(DEPDIR)/libacl_la-__acl_reorder_obj_p.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/__acl_reorder_obj_p.c' object='libacl/libacl_la-__acl_reorder_obj_p.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-__acl_reorder_obj_p.lo: libacl/__acl_reorder_obj_p.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-__acl_reorder_obj_p.lo -MD -MP -MF libacl/$(DEPDIR)/la-__acl_reorder_obj_p.Tpo -c -o libacl/la-__acl_reorder_obj_p.lo `test -f 'libacl/__acl_reorder_obj_p.c' || echo '$(srcdir)/'`libacl/__acl_reorder_obj_p.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-__acl_reorder_obj_p.Tpo libacl/$(DEPDIR)/la-__acl_reorder_obj_p.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/__acl_reorder_obj_p.c' object='libacl/la-__acl_reorder_obj_p.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-__acl_reorder_obj_p.lo `test -f 'libacl/__acl_reorder_obj_p.c' || echo '$(srcdir)/'`libacl/__acl_reorder_obj_p.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-__acl_reorder_obj_p.lo `test -f 'libacl/__acl_reorder_obj_p.c' || echo '$(srcdir)/'`libacl/__acl_reorder_obj_p.c -libacl/libacl_la-__acl_to_any_text.lo: libacl/__acl_to_any_text.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-__acl_to_any_text.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-__acl_to_any_text.Tpo -c -o libacl/libacl_la-__acl_to_any_text.lo `test -f 'libacl/__acl_to_any_text.c' || echo '$(srcdir)/'`libacl/__acl_to_any_text.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-__acl_to_any_text.Tpo libacl/$(DEPDIR)/libacl_la-__acl_to_any_text.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/__acl_to_any_text.c' object='libacl/libacl_la-__acl_to_any_text.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-__acl_to_any_text.lo: libacl/__acl_to_any_text.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-__acl_to_any_text.lo -MD -MP -MF libacl/$(DEPDIR)/la-__acl_to_any_text.Tpo -c -o libacl/la-__acl_to_any_text.lo `test -f 'libacl/__acl_to_any_text.c' || echo '$(srcdir)/'`libacl/__acl_to_any_text.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-__acl_to_any_text.Tpo libacl/$(DEPDIR)/la-__acl_to_any_text.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/__acl_to_any_text.c' object='libacl/la-__acl_to_any_text.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-__acl_to_any_text.lo `test -f 'libacl/__acl_to_any_text.c' || echo '$(srcdir)/'`libacl/__acl_to_any_text.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-__acl_to_any_text.lo `test -f 'libacl/__acl_to_any_text.c' || echo '$(srcdir)/'`libacl/__acl_to_any_text.c -libacl/libacl_la-__acl_to_xattr.lo: libacl/__acl_to_xattr.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-__acl_to_xattr.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-__acl_to_xattr.Tpo -c -o libacl/libacl_la-__acl_to_xattr.lo `test -f 'libacl/__acl_to_xattr.c' || echo '$(srcdir)/'`libacl/__acl_to_xattr.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-__acl_to_xattr.Tpo libacl/$(DEPDIR)/libacl_la-__acl_to_xattr.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/__acl_to_xattr.c' object='libacl/libacl_la-__acl_to_xattr.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-__acl_to_xattr.lo: libacl/__acl_to_xattr.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-__acl_to_xattr.lo -MD -MP -MF libacl/$(DEPDIR)/la-__acl_to_xattr.Tpo -c -o libacl/la-__acl_to_xattr.lo `test -f 'libacl/__acl_to_xattr.c' || echo '$(srcdir)/'`libacl/__acl_to_xattr.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-__acl_to_xattr.Tpo libacl/$(DEPDIR)/la-__acl_to_xattr.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/__acl_to_xattr.c' object='libacl/la-__acl_to_xattr.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-__acl_to_xattr.lo `test -f 'libacl/__acl_to_xattr.c' || echo '$(srcdir)/'`libacl/__acl_to_xattr.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-__acl_to_xattr.lo `test -f 'libacl/__acl_to_xattr.c' || echo '$(srcdir)/'`libacl/__acl_to_xattr.c -libacl/libacl_la-__apply_mask_to_mode.lo: libacl/__apply_mask_to_mode.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-__apply_mask_to_mode.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-__apply_mask_to_mode.Tpo -c -o libacl/libacl_la-__apply_mask_to_mode.lo `test -f 'libacl/__apply_mask_to_mode.c' || echo '$(srcdir)/'`libacl/__apply_mask_to_mode.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-__apply_mask_to_mode.Tpo libacl/$(DEPDIR)/libacl_la-__apply_mask_to_mode.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/__apply_mask_to_mode.c' object='libacl/libacl_la-__apply_mask_to_mode.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-__apply_mask_to_mode.lo: libacl/__apply_mask_to_mode.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-__apply_mask_to_mode.lo -MD -MP -MF libacl/$(DEPDIR)/la-__apply_mask_to_mode.Tpo -c -o libacl/la-__apply_mask_to_mode.lo `test -f 'libacl/__apply_mask_to_mode.c' || echo '$(srcdir)/'`libacl/__apply_mask_to_mode.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-__apply_mask_to_mode.Tpo libacl/$(DEPDIR)/la-__apply_mask_to_mode.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/__apply_mask_to_mode.c' object='libacl/la-__apply_mask_to_mode.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-__apply_mask_to_mode.lo `test -f 'libacl/__apply_mask_to_mode.c' || echo '$(srcdir)/'`libacl/__apply_mask_to_mode.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-__apply_mask_to_mode.lo `test -f 'libacl/__apply_mask_to_mode.c' || echo '$(srcdir)/'`libacl/__apply_mask_to_mode.c -libacl/libacl_la-__libobj.lo: libacl/__libobj.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-__libobj.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-__libobj.Tpo -c -o libacl/libacl_la-__libobj.lo `test -f 'libacl/__libobj.c' || echo '$(srcdir)/'`libacl/__libobj.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-__libobj.Tpo libacl/$(DEPDIR)/libacl_la-__libobj.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/__libobj.c' object='libacl/libacl_la-__libobj.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-__libobj.lo: libacl/__libobj.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-__libobj.lo -MD -MP -MF libacl/$(DEPDIR)/la-__libobj.Tpo -c -o libacl/la-__libobj.lo `test -f 'libacl/__libobj.c' || echo '$(srcdir)/'`libacl/__libobj.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-__libobj.Tpo libacl/$(DEPDIR)/la-__libobj.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/__libobj.c' object='libacl/la-__libobj.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-__libobj.lo `test -f 'libacl/__libobj.c' || echo '$(srcdir)/'`libacl/__libobj.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-__libobj.lo `test -f 'libacl/__libobj.c' || echo '$(srcdir)/'`libacl/__libobj.c -libacl/libacl_la-perm_copy_fd.lo: libacl/perm_copy_fd.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-perm_copy_fd.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-perm_copy_fd.Tpo -c -o libacl/libacl_la-perm_copy_fd.lo `test -f 'libacl/perm_copy_fd.c' || echo '$(srcdir)/'`libacl/perm_copy_fd.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-perm_copy_fd.Tpo libacl/$(DEPDIR)/libacl_la-perm_copy_fd.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/perm_copy_fd.c' object='libacl/libacl_la-perm_copy_fd.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-perm_copy_fd.lo: libacl/perm_copy_fd.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-perm_copy_fd.lo -MD -MP -MF libacl/$(DEPDIR)/la-perm_copy_fd.Tpo -c -o libacl/la-perm_copy_fd.lo `test -f 'libacl/perm_copy_fd.c' || echo '$(srcdir)/'`libacl/perm_copy_fd.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-perm_copy_fd.Tpo libacl/$(DEPDIR)/la-perm_copy_fd.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/perm_copy_fd.c' object='libacl/la-perm_copy_fd.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-perm_copy_fd.lo `test -f 'libacl/perm_copy_fd.c' || echo '$(srcdir)/'`libacl/perm_copy_fd.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-perm_copy_fd.lo `test -f 'libacl/perm_copy_fd.c' || echo '$(srcdir)/'`libacl/perm_copy_fd.c -libacl/libacl_la-perm_copy_file.lo: libacl/perm_copy_file.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/libacl_la-perm_copy_file.lo -MD -MP -MF libacl/$(DEPDIR)/libacl_la-perm_copy_file.Tpo -c -o libacl/libacl_la-perm_copy_file.lo `test -f 'libacl/perm_copy_file.c' || echo '$(srcdir)/'`libacl/perm_copy_file.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/libacl_la-perm_copy_file.Tpo libacl/$(DEPDIR)/libacl_la-perm_copy_file.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/perm_copy_file.c' object='libacl/libacl_la-perm_copy_file.lo' libtool=yes @AMDEPBACKSLASH@ +libacl/la-perm_copy_file.lo: libacl/perm_copy_file.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -MT libacl/la-perm_copy_file.lo -MD -MP -MF libacl/$(DEPDIR)/la-perm_copy_file.Tpo -c -o libacl/la-perm_copy_file.lo `test -f 'libacl/perm_copy_file.c' || echo '$(srcdir)/'`libacl/perm_copy_file.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) libacl/$(DEPDIR)/la-perm_copy_file.Tpo libacl/$(DEPDIR)/la-perm_copy_file.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libacl/perm_copy_file.c' object='libacl/la-perm_copy_file.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/libacl_la-perm_copy_file.lo `test -f 'libacl/perm_copy_file.c' || echo '$(srcdir)/'`libacl/perm_copy_file.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libacl_la_CFLAGS) $(CFLAGS) -c -o libacl/la-perm_copy_file.lo `test -f 'libacl/perm_copy_file.c' || echo '$(srcdir)/'`libacl/perm_copy_file.c test/libtestlookup_la-test_passwd.lo: test/test_passwd.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtestlookup_la_CFLAGS) $(CFLAGS) -MT test/libtestlookup_la-test_passwd.lo -MD -MP -MF test/$(DEPDIR)/libtestlookup_la-test_passwd.Tpo -c -o test/libtestlookup_la-test_passwd.lo `test -f 'test/test_passwd.c' || echo '$(srcdir)/'`test/test_passwd.c @@ -2111,7 +2158,7 @@ fi; \ $$success || exit 1 -check-TESTS: +check-TESTS: $(check_LTLIBRARIES) @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) @@ -2147,7 +2194,10 @@ @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT) -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ @@ -2338,12 +2388,12 @@ $(MAKE) $(AM_MAKEFLAGS) $(check_LTLIBRARIES) $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: check-recursive -all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(MANS) $(DATA) $(HEADERS) +all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) $(MANS) $(DATA) $(HEADERS) install-binPROGRAMS: install-libLTLIBRARIES installdirs: installdirs-recursive installdirs-am: - for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man3dir)" "$(DESTDIR)$(man5dir)" "$(DESTDIR)$(docdir)" "$(DESTDIR)$(pkgconfdir)" "$(DESTDIR)$(pkgincludedir)" "$(DESTDIR)$(sysincludedir)"; do \ + for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libdir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man3dir)" "$(DESTDIR)$(man5dir)" "$(DESTDIR)$(docdir)" "$(DESTDIR)$(pkgconfdir)" "$(DESTDIR)$(pkgincludedir)" "$(DESTDIR)$(sysincludedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive @@ -2395,7 +2445,68 @@ distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) - -rm -rf libacl/$(DEPDIR) libmisc/$(DEPDIR) test/$(DEPDIR) tools/$(DEPDIR) + -rm -f libacl/$(DEPDIR)/la-__acl_extended_file.Plo + -rm -f libacl/$(DEPDIR)/la-__acl_from_xattr.Plo + -rm -f libacl/$(DEPDIR)/la-__acl_reorder_obj_p.Plo + -rm -f libacl/$(DEPDIR)/la-__acl_to_any_text.Plo + -rm -f libacl/$(DEPDIR)/la-__acl_to_xattr.Plo + -rm -f libacl/$(DEPDIR)/la-__apply_mask_to_mode.Plo + -rm -f libacl/$(DEPDIR)/la-__libobj.Plo + -rm -f libacl/$(DEPDIR)/la-acl_add_perm.Plo + -rm -f libacl/$(DEPDIR)/la-acl_calc_mask.Plo + -rm -f libacl/$(DEPDIR)/la-acl_check.Plo + -rm -f libacl/$(DEPDIR)/la-acl_clear_perms.Plo + -rm -f libacl/$(DEPDIR)/la-acl_cmp.Plo + -rm -f libacl/$(DEPDIR)/la-acl_copy_entry.Plo + -rm -f libacl/$(DEPDIR)/la-acl_copy_ext.Plo + -rm -f libacl/$(DEPDIR)/la-acl_copy_int.Plo + -rm -f libacl/$(DEPDIR)/la-acl_create_entry.Plo + -rm -f libacl/$(DEPDIR)/la-acl_delete_def_file.Plo + -rm -f libacl/$(DEPDIR)/la-acl_delete_entry.Plo + -rm -f libacl/$(DEPDIR)/la-acl_delete_perm.Plo + -rm -f libacl/$(DEPDIR)/la-acl_dup.Plo + -rm -f libacl/$(DEPDIR)/la-acl_entries.Plo + -rm -f libacl/$(DEPDIR)/la-acl_equiv_mode.Plo + -rm -f libacl/$(DEPDIR)/la-acl_error.Plo + -rm -f libacl/$(DEPDIR)/la-acl_extended_fd.Plo + -rm -f libacl/$(DEPDIR)/la-acl_extended_file.Plo + -rm -f libacl/$(DEPDIR)/la-acl_extended_file_nofollow.Plo + -rm -f libacl/$(DEPDIR)/la-acl_free.Plo + -rm -f libacl/$(DEPDIR)/la-acl_from_mode.Plo + -rm -f libacl/$(DEPDIR)/la-acl_from_text.Plo + -rm -f libacl/$(DEPDIR)/la-acl_get_entry.Plo + -rm -f libacl/$(DEPDIR)/la-acl_get_fd.Plo + -rm -f libacl/$(DEPDIR)/la-acl_get_file.Plo + -rm -f libacl/$(DEPDIR)/la-acl_get_perm.Plo + -rm -f libacl/$(DEPDIR)/la-acl_get_permset.Plo + -rm -f libacl/$(DEPDIR)/la-acl_get_qualifier.Plo + -rm -f libacl/$(DEPDIR)/la-acl_get_tag_type.Plo + -rm -f libacl/$(DEPDIR)/la-acl_init.Plo + -rm -f libacl/$(DEPDIR)/la-acl_set_fd.Plo + -rm -f libacl/$(DEPDIR)/la-acl_set_file.Plo + -rm -f libacl/$(DEPDIR)/la-acl_set_permset.Plo + -rm -f libacl/$(DEPDIR)/la-acl_set_qualifier.Plo + -rm -f libacl/$(DEPDIR)/la-acl_set_tag_type.Plo + -rm -f libacl/$(DEPDIR)/la-acl_size.Plo + -rm -f libacl/$(DEPDIR)/la-acl_to_any_text.Plo + -rm -f libacl/$(DEPDIR)/la-acl_to_text.Plo + -rm -f libacl/$(DEPDIR)/la-acl_valid.Plo + -rm -f libacl/$(DEPDIR)/la-perm_copy_fd.Plo + -rm -f libacl/$(DEPDIR)/la-perm_copy_file.Plo + -rm -f libmisc/$(DEPDIR)/high_water_alloc.Plo + -rm -f libmisc/$(DEPDIR)/next_line.Plo + -rm -f libmisc/$(DEPDIR)/quote.Plo + -rm -f libmisc/$(DEPDIR)/unquote.Plo + -rm -f libmisc/$(DEPDIR)/walk_tree.Plo + -rm -f test/$(DEPDIR)/libtestlookup_la-test_group.Plo + -rm -f test/$(DEPDIR)/libtestlookup_la-test_passwd.Plo + -rm -f tools/$(DEPDIR)/chacl.Po + -rm -f tools/$(DEPDIR)/do_set.Po + -rm -f tools/$(DEPDIR)/getfacl.Po + -rm -f tools/$(DEPDIR)/parse.Po + -rm -f tools/$(DEPDIR)/sequence.Po + -rm -f tools/$(DEPDIR)/setfacl.Po + -rm -f tools/$(DEPDIR)/user_group.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-hdr distclean-libtool distclean-tags @@ -2445,7 +2556,68 @@ maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache - -rm -rf libacl/$(DEPDIR) libmisc/$(DEPDIR) test/$(DEPDIR) tools/$(DEPDIR) + -rm -f libacl/$(DEPDIR)/la-__acl_extended_file.Plo + -rm -f libacl/$(DEPDIR)/la-__acl_from_xattr.Plo + -rm -f libacl/$(DEPDIR)/la-__acl_reorder_obj_p.Plo + -rm -f libacl/$(DEPDIR)/la-__acl_to_any_text.Plo + -rm -f libacl/$(DEPDIR)/la-__acl_to_xattr.Plo + -rm -f libacl/$(DEPDIR)/la-__apply_mask_to_mode.Plo + -rm -f libacl/$(DEPDIR)/la-__libobj.Plo + -rm -f libacl/$(DEPDIR)/la-acl_add_perm.Plo + -rm -f libacl/$(DEPDIR)/la-acl_calc_mask.Plo + -rm -f libacl/$(DEPDIR)/la-acl_check.Plo + -rm -f libacl/$(DEPDIR)/la-acl_clear_perms.Plo + -rm -f libacl/$(DEPDIR)/la-acl_cmp.Plo + -rm -f libacl/$(DEPDIR)/la-acl_copy_entry.Plo + -rm -f libacl/$(DEPDIR)/la-acl_copy_ext.Plo + -rm -f libacl/$(DEPDIR)/la-acl_copy_int.Plo + -rm -f libacl/$(DEPDIR)/la-acl_create_entry.Plo + -rm -f libacl/$(DEPDIR)/la-acl_delete_def_file.Plo + -rm -f libacl/$(DEPDIR)/la-acl_delete_entry.Plo + -rm -f libacl/$(DEPDIR)/la-acl_delete_perm.Plo + -rm -f libacl/$(DEPDIR)/la-acl_dup.Plo + -rm -f libacl/$(DEPDIR)/la-acl_entries.Plo + -rm -f libacl/$(DEPDIR)/la-acl_equiv_mode.Plo + -rm -f libacl/$(DEPDIR)/la-acl_error.Plo + -rm -f libacl/$(DEPDIR)/la-acl_extended_fd.Plo + -rm -f libacl/$(DEPDIR)/la-acl_extended_file.Plo + -rm -f libacl/$(DEPDIR)/la-acl_extended_file_nofollow.Plo + -rm -f libacl/$(DEPDIR)/la-acl_free.Plo + -rm -f libacl/$(DEPDIR)/la-acl_from_mode.Plo + -rm -f libacl/$(DEPDIR)/la-acl_from_text.Plo + -rm -f libacl/$(DEPDIR)/la-acl_get_entry.Plo + -rm -f libacl/$(DEPDIR)/la-acl_get_fd.Plo + -rm -f libacl/$(DEPDIR)/la-acl_get_file.Plo + -rm -f libacl/$(DEPDIR)/la-acl_get_perm.Plo + -rm -f libacl/$(DEPDIR)/la-acl_get_permset.Plo + -rm -f libacl/$(DEPDIR)/la-acl_get_qualifier.Plo + -rm -f libacl/$(DEPDIR)/la-acl_get_tag_type.Plo + -rm -f libacl/$(DEPDIR)/la-acl_init.Plo + -rm -f libacl/$(DEPDIR)/la-acl_set_fd.Plo + -rm -f libacl/$(DEPDIR)/la-acl_set_file.Plo + -rm -f libacl/$(DEPDIR)/la-acl_set_permset.Plo + -rm -f libacl/$(DEPDIR)/la-acl_set_qualifier.Plo + -rm -f libacl/$(DEPDIR)/la-acl_set_tag_type.Plo + -rm -f libacl/$(DEPDIR)/la-acl_size.Plo + -rm -f libacl/$(DEPDIR)/la-acl_to_any_text.Plo + -rm -f libacl/$(DEPDIR)/la-acl_to_text.Plo + -rm -f libacl/$(DEPDIR)/la-acl_valid.Plo + -rm -f libacl/$(DEPDIR)/la-perm_copy_fd.Plo + -rm -f libacl/$(DEPDIR)/la-perm_copy_file.Plo + -rm -f libmisc/$(DEPDIR)/high_water_alloc.Plo + -rm -f libmisc/$(DEPDIR)/next_line.Plo + -rm -f libmisc/$(DEPDIR)/quote.Plo + -rm -f libmisc/$(DEPDIR)/unquote.Plo + -rm -f libmisc/$(DEPDIR)/walk_tree.Plo + -rm -f test/$(DEPDIR)/libtestlookup_la-test_group.Plo + -rm -f test/$(DEPDIR)/libtestlookup_la-test_passwd.Plo + -rm -f tools/$(DEPDIR)/chacl.Po + -rm -f tools/$(DEPDIR)/do_set.Po + -rm -f tools/$(DEPDIR)/getfacl.Po + -rm -f tools/$(DEPDIR)/parse.Po + -rm -f tools/$(DEPDIR)/sequence.Po + -rm -f tools/$(DEPDIR)/setfacl.Po + -rm -f tools/$(DEPDIR)/user_group.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -2472,15 +2644,16 @@ .MAKE: $(am__recursive_targets) check-am install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ - am--refresh check check-TESTS check-am clean clean-binPROGRAMS \ - clean-checkLTLIBRARIES clean-cscope clean-generic \ - clean-libLTLIBRARIES clean-libtool clean-noinstLTLIBRARIES \ - cscope cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \ - dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \ - distcheck distclean distclean-compile distclean-generic \ - distclean-hdr distclean-libtool distclean-tags distcleancheck \ - distdir distuninstallcheck dvi dvi-am html html-am info \ - info-am install install-am install-binPROGRAMS install-data \ + am--depfiles am--refresh check check-TESTS check-am clean \ + clean-binPROGRAMS clean-checkLTLIBRARIES clean-cscope \ + clean-generic clean-libLTLIBRARIES clean-libtool \ + clean-noinstLTLIBRARIES cscope cscopelist-am ctags ctags-am \ + dist dist-all dist-bzip2 dist-gzip dist-lzip dist-shar \ + dist-tarZ dist-xz dist-zip distcheck distclean \ + distclean-compile distclean-generic distclean-hdr \ + distclean-libtool distclean-tags distcleancheck distdir \ + distuninstallcheck dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ install-data-am install-data-local install-dist_docDATA \ install-dvi install-dvi-am install-exec install-exec-am \ install-html install-html-am install-info install-info-am \ @@ -2501,6 +2674,9 @@ .PRECIOUS: Makefile +update-po: + $(MAKE) -C po $@ + install-libacl_h: include/libacl.h $(SUBST_INSTALL_HEADER) "$<" "$(DESTDIR)$(pkgincludedir)" install-acl_h: include/acl.h diff -Nru acl-2.2.53/man/man1/getfacl.1 acl-2.3.1/man/man1/getfacl.1 --- acl-2.2.53/man/man1/getfacl.1 2011-05-16 05:57:00.000000000 +0000 +++ acl-2.3.1/man/man1/getfacl.1 2020-08-25 12:34:39.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2000 Andreas Gruenbacher, +.\" (C) 2000 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -162,10 +162,10 @@ option is given. If no command line parameter is given, .I getfacl behaves as if it was invoked as ``getfacl \-''. -No flags comments indicating the setuid, setgit, and sticky bits are generated. +No flags comments indicating the setuid, setgid, and sticky bits are generated. .SH AUTHOR Andreas Gruenbacher, -.RI < a.gruenbacher@bestbits.at >. +.RI < andreas.gruenbacher@gmail.com >. Please send your bug reports and comments to the above address. .SH SEE ALSO diff -Nru acl-2.2.53/man/man1/setfacl.1 acl-2.3.1/man/man1/setfacl.1 --- acl-2.2.53/man/man1/setfacl.1 2016-12-09 19:10:25.000000000 +0000 +++ acl-2.3.1/man/man1/setfacl.1 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2000 Andreas Gruenbacher, +.\" (C) 2000 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -309,7 +309,7 @@ options also accept permission fields (and ignore them). .SH AUTHOR Andreas Gruenbacher, -.RI < a.gruenbacher@bestbits.at >. +.RI < andreas.gruenbacher@gmail.com >. Please send your bug reports, suggested features and comments to the above address. diff -Nru acl-2.2.53/man/man3/acl_add_perm.3 acl-2.3.1/man/man3/acl_add_perm.3 --- acl-2.2.53/man/man3/acl_add_perm.3 2016-12-09 19:10:25.000000000 +0000 +++ acl-2.3.1/man/man3/acl_add_perm.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -83,4 +83,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_calc_mask.3 acl-2.3.1/man/man3/acl_calc_mask.3 --- acl-2.2.53/man/man3/acl_calc_mask.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_calc_mask.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -98,4 +98,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_check.3 acl-2.3.1/man/man3/acl_check.3 --- acl-2.2.53/man/man3/acl_check.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_check.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -119,4 +119,4 @@ .Xr acl 5 .Sh AUTHOR Written by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_clear_perms.3 acl-2.3.1/man/man3/acl_clear_perms.3 --- acl-2.2.53/man/man3/acl_clear_perms.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_clear_perms.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -72,4 +72,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_cmp.3 acl-2.3.1/man/man3/acl_cmp.3 --- acl-2.2.53/man/man3/acl_cmp.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_cmp.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -87,4 +87,4 @@ .Xr acl 5 .Sh AUTHOR Written by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_copy_entry.3 acl-2.3.1/man/man3/acl_copy_entry.3 --- acl-2.2.53/man/man3/acl_copy_entry.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_copy_entry.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -79,4 +79,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_copy_ext.3 acl-2.3.1/man/man3/acl_copy_ext.3 --- acl-2.2.53/man/man3/acl_copy_ext.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_copy_ext.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -105,4 +105,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_copy_int.3 acl-2.3.1/man/man3/acl_copy_int.3 --- acl-2.2.53/man/man3/acl_copy_int.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_copy_int.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -86,4 +86,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_create_entry.3 acl-2.3.1/man/man3/acl_create_entry.3 --- acl-2.2.53/man/man3/acl_create_entry.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_create_entry.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -101,4 +101,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_delete_def_file.3 acl-2.3.1/man/man3/acl_delete_def_file.3 --- acl-2.2.53/man/man3/acl_delete_def_file.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_delete_def_file.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -83,4 +83,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_delete_entry.3 acl-2.3.1/man/man3/acl_delete_entry.3 --- acl-2.2.53/man/man3/acl_delete_entry.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_delete_entry.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -83,4 +83,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_delete_perm.3 acl-2.3.1/man/man3/acl_delete_perm.3 --- acl-2.2.53/man/man3/acl_delete_perm.3 2016-12-09 19:10:25.000000000 +0000 +++ acl-2.3.1/man/man3/acl_delete_perm.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -83,4 +83,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_dup.3 acl-2.3.1/man/man3/acl_dup.3 --- acl-2.2.53/man/man3/acl_dup.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_dup.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -84,4 +84,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_entries.3 acl-2.3.1/man/man3/acl_entries.3 --- acl-2.2.53/man/man3/acl_entries.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_entries.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -70,4 +70,4 @@ .Xr acl 5 .Sh AUTHOR Written by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_equiv_mode.3 acl-2.3.1/man/man3/acl_equiv_mode.3 --- acl-2.2.53/man/man3/acl_equiv_mode.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_equiv_mode.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -93,4 +93,4 @@ .Xr acl 5 .Sh AUTHOR Written by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_error.3 acl-2.3.1/man/man3/acl_error.3 --- acl-2.2.53/man/man3/acl_error.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_error.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -68,4 +68,4 @@ .Xr acl 5 .Sh AUTHOR Written by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_extended_fd.3 acl-2.3.1/man/man3/acl_extended_fd.3 --- acl-2.2.53/man/man3/acl_extended_fd.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_extended_fd.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -102,4 +102,4 @@ .Xr acl 5 .Sh AUTHOR Written by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_extended_file.3 acl-2.3.1/man/man3/acl_extended_file.3 --- acl-2.2.53/man/man3/acl_extended_file.3 2011-05-16 05:57:00.000000000 +0000 +++ acl-2.3.1/man/man3/acl_extended_file.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -121,4 +121,4 @@ .Xr acl 5 .Sh AUTHOR Written by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_free.3 acl-2.3.1/man/man3/acl_free.3 --- acl-2.2.53/man/man3/acl_free.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_free.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -79,4 +79,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_from_mode.3 acl-2.3.1/man/man3/acl_from_mode.3 --- acl-2.2.53/man/man3/acl_from_mode.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_from_mode.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -71,4 +71,4 @@ .Xr acl 5 .Sh AUTHOR Written by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_from_text.3 acl-2.3.1/man/man3/acl_from_text.3 --- acl-2.2.53/man/man3/acl_from_text.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_from_text.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -90,4 +90,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_get_entry.3 acl-2.3.1/man/man3/acl_get_entry.3 --- acl-2.2.53/man/man3/acl_get_entry.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_get_entry.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -139,4 +139,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_get_fd.3 acl-2.3.1/man/man3/acl_get_fd.3 --- acl-2.2.53/man/man3/acl_get_fd.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_get_fd.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -93,4 +93,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_get_file.3 acl-2.3.1/man/man3/acl_get_file.3 --- acl-2.2.53/man/man3/acl_get_file.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_get_file.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -133,4 +133,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_get_perm.3 acl-2.3.1/man/man3/acl_get_perm.3 --- acl-2.2.53/man/man3/acl_get_perm.3 2016-12-09 19:10:25.000000000 +0000 +++ acl-2.3.1/man/man3/acl_get_perm.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -95,4 +95,4 @@ .Xr acl 5 .Sh AUTHOR Written by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_get_permset.3 acl-2.3.1/man/man3/acl_get_permset.3 --- acl-2.2.53/man/man3/acl_get_permset.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_get_permset.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -79,4 +79,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_get_qualifier.3 acl-2.3.1/man/man3/acl_get_qualifier.3 --- acl-2.2.53/man/man3/acl_get_qualifier.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_get_qualifier.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -122,4 +122,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_get_tag_type.3 acl-2.3.1/man/man3/acl_get_tag_type.3 --- acl-2.2.53/man/man3/acl_get_tag_type.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_get_tag_type.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -78,4 +78,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_init.3 acl-2.3.1/man/man3/acl_init.3 --- acl-2.2.53/man/man3/acl_init.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_init.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -84,4 +84,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_set_fd.3 acl-2.3.1/man/man3/acl_set_fd.3 --- acl-2.2.53/man/man3/acl_set_fd.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_set_fd.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -88,4 +88,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_set_file.3 acl-2.3.1/man/man3/acl_set_file.3 --- acl-2.2.53/man/man3/acl_set_file.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_set_file.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -165,4 +165,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_set_permset.3 acl-2.3.1/man/man3/acl_set_permset.3 --- acl-2.2.53/man/man3/acl_set_permset.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_set_permset.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -95,4 +95,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_set_qualifier.3 acl-2.3.1/man/man3/acl_set_qualifier.3 --- acl-2.2.53/man/man3/acl_set_qualifier.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_set_qualifier.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -110,4 +110,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_set_tag_type.3 acl-2.3.1/man/man3/acl_set_tag_type.3 --- acl-2.2.53/man/man3/acl_set_tag_type.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_set_tag_type.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -80,4 +80,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_size.3 acl-2.3.1/man/man3/acl_size.3 --- acl-2.2.53/man/man3/acl_size.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_size.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -82,4 +82,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_to_any_text.3 acl-2.3.1/man/man3/acl_to_any_text.3 --- acl-2.2.53/man/man3/acl_to_any_text.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_to_any_text.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -166,4 +166,4 @@ .Xr acl 5 .Sh AUTHOR Written by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_to_text.3 acl-2.3.1/man/man3/acl_to_text.3 --- acl-2.2.53/man/man3/acl_to_text.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_to_text.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -108,4 +108,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man3/acl_valid.3 acl-2.3.1/man/man3/acl_valid.3 --- acl-2.2.53/man/man3/acl_valid.3 2009-07-02 01:20:04.000000000 +0000 +++ acl-2.3.1/man/man3/acl_valid.3 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -83,4 +83,4 @@ Derived from the FreeBSD manual pages written by .An "Robert N M Watson" Aq rwatson@FreeBSD.org , and adapted for Linux by -.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at . +.An "Andreas Gruenbacher" Aq andreas.gruenbacher@gmail.com . diff -Nru acl-2.2.53/man/man5/acl.5 acl-2.3.1/man/man5/acl.5 --- acl-2.2.53/man/man5/acl.5 2018-06-19 01:52:57.000000000 +0000 +++ acl-2.3.1/man/man5/acl.5 2020-02-06 16:03:31.000000000 +0000 @@ -1,6 +1,6 @@ .\" Access Control Lists manual pages .\" -.\" (C) 2002 Andreas Gruenbacher, +.\" (C) 2002 Andreas Gruenbacher, .\" .\" This is free documentation; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License as @@ -493,4 +493,4 @@ .Xr acl_get_perm 3 , .Xr acl_to_any_text 3 .Sh AUTHOR -Andreas Gruenbacher, +Andreas Gruenbacher, diff -Nru acl-2.2.53/po/acl.pot acl-2.3.1/po/acl.pot --- acl-2.2.53/po/acl.pot 2018-06-19 03:10:14.000000000 +0000 +++ acl-2.3.1/po/acl.pot 2021-03-16 06:43:21.000000000 +0000 @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: acl 2.2.53\n" +"Project-Id-Version: acl 2.3.1\n" "Report-Msgid-Bugs-To: acl-devel@nongnu.org\n" -"POT-Creation-Date: 2018-06-18 23:10-0400\n" +"POT-Creation-Date: 2021-03-16 07:43+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,20 +17,6 @@ "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: libacl/perm_copy_fd.c:124 libacl/perm_copy_fd.c:136 -#: libacl/perm_copy_fd.c:198 libacl/perm_copy_file.c:124 -#: libacl/perm_copy_file.c:139 libacl/perm_copy_file.c:150 -#: libacl/perm_copy_file.c:235 -#, c-format -msgid "setting permissions for %s" -msgstr "" - -#: libacl/perm_copy_fd.c:186 libacl/perm_copy_file.c:199 -#: libacl/perm_copy_file.c:224 -#, c-format -msgid "preserving permissions for %s" -msgstr "" - #: libacl/acl_error.c:33 msgid "Multiple entries of same type" msgstr "" @@ -47,6 +33,20 @@ msgid "Invalid entry type" msgstr "" +#: libacl/perm_copy_fd.c:124 libacl/perm_copy_fd.c:136 +#: libacl/perm_copy_fd.c:198 libacl/perm_copy_file.c:124 +#: libacl/perm_copy_file.c:139 libacl/perm_copy_file.c:150 +#: libacl/perm_copy_file.c:235 +#, c-format +msgid "setting permissions for %s" +msgstr "" + +#: libacl/perm_copy_fd.c:186 libacl/perm_copy_file.c:199 +#: libacl/perm_copy_file.c:224 +#, c-format +msgid "preserving permissions for %s" +msgstr "" + #: tools/chacl.c:46 #, c-format msgid "Usage:\n" @@ -147,60 +147,6 @@ msgid "%s: malloc failed: %s\n" msgstr "" -#: tools/getfacl.c:497 -#, c-format -msgid "%s: Removing leading '/' from absolute path names\n" -msgstr "" - -#: tools/getfacl.c:568 -#, c-format -msgid "%s %s -- get file access control lists\n" -msgstr "" - -#: tools/getfacl.c:570 tools/getfacl.c:750 -#, c-format -msgid "Usage: %s [-%s] file ...\n" -msgstr "" - -#: tools/getfacl.c:576 -#, c-format -msgid " -d, --default display the default access control list\n" -msgstr "" - -#: tools/getfacl.c:580 -#, c-format -msgid "" -" -a, --access display the file access control list only\n" -" -d, --default display the default access control list only\n" -" -c, --omit-header do not display the comment header\n" -" -e, --all-effective print all effective rights\n" -" -E, --no-effective print no effective rights\n" -" -s, --skip-base skip files that only have the base entries\n" -" -R, --recursive recurse into subdirectories\n" -" -L, --logical logical walk, follow symbolic links\n" -" -P, --physical physical walk, do not follow symbolic links\n" -" -t, --tabular use tabular output format\n" -" -n, --numeric print numeric user/group identifiers\n" -" -p, --absolute-names don't strip leading '/' in pathnames\n" -msgstr "" - -#: tools/getfacl.c:595 tools/setfacl.c:299 -#, c-format -msgid "" -" -v, --version print version and exit\n" -" -h, --help this help text\n" -msgstr "" - -#: tools/getfacl.c:737 tools/setfacl.c:316 -#, c-format -msgid "%s: Standard input: %s\n" -msgstr "" - -#: tools/getfacl.c:752 tools/setfacl.c:655 -#, c-format -msgid "Try `%s --help' for more information.\n" -msgstr "" - #: tools/do_set.c:410 #, c-format msgid "%s: %s: Malformed access ACL `%s': %s at entry %d\n" @@ -287,6 +233,18 @@ " --test test mode (ACLs are not modified)\n" msgstr "" +#: tools/setfacl.c:299 tools/getfacl.c:597 +#, c-format +msgid "" +" -v, --version print version and exit\n" +" -h, --help this help text\n" +msgstr "" + +#: tools/setfacl.c:316 tools/getfacl.c:743 +#, c-format +msgid "%s: Standard input: %s\n" +msgstr "" + #: tools/setfacl.c:452 #, c-format msgid "%s: Option -%c incomplete\n" @@ -306,3 +264,46 @@ #, c-format msgid "%s: %s in line %d of standard input\n" msgstr "" + +#: tools/setfacl.c:655 tools/getfacl.c:758 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "" + +#: tools/getfacl.c:498 +#, c-format +msgid "%s: Removing leading '/' from absolute path names\n" +msgstr "" + +#: tools/getfacl.c:569 +#, c-format +msgid "%s %s -- get file access control lists\n" +msgstr "" + +#: tools/getfacl.c:571 tools/getfacl.c:756 +#, c-format +msgid "Usage: %s [-%s] file ...\n" +msgstr "" + +#: tools/getfacl.c:577 +#, c-format +msgid " -d, --default display the default access control list\n" +msgstr "" + +#: tools/getfacl.c:581 +#, c-format +msgid "" +" -a, --access display the file access control list only\n" +" -d, --default display the default access control list only\n" +" -c, --omit-header do not display the comment header\n" +" -e, --all-effective print all effective rights\n" +" -E, --no-effective print no effective rights\n" +" -s, --skip-base skip files that only have the base entries\n" +" -R, --recursive recurse into subdirectories\n" +" -L, --logical logical walk, follow symbolic links\n" +" -P, --physical physical walk, do not follow symbolic links\n" +" -t, --tabular use tabular output format\n" +" -n, --numeric print numeric user/group identifiers\n" +" --one-file-system skip files on different filesystems\n" +" -p, --absolute-names don't strip leading '/' in pathnames\n" +msgstr "" Binary files /tmp/tmpj_kkcm8e/2d9B11F6fV/acl-2.2.53/po/de.gmo and /tmp/tmpj_kkcm8e/BpVElq6AJR/acl-2.3.1/po/de.gmo differ diff -Nru acl-2.2.53/po/de.po acl-2.3.1/po/de.po --- acl-2.2.53/po/de.po 2018-06-19 03:10:14.000000000 +0000 +++ acl-2.3.1/po/de.po 2021-03-16 06:43:21.000000000 +0000 @@ -19,7 +19,7 @@ msgstr "" "Project-Id-Version: acl-2.1.2\n" "Report-Msgid-Bugs-To: acl-devel@nongnu.org\n" -"POT-Creation-Date: 2018-06-18 23:10-0400\n" +"POT-Creation-Date: 2021-03-16 07:43+0100\n" "PO-Revision-Date: 2003-01-23 00:08GMT\n" "Last-Translator: Andreas Grünbacher \n" "Language-Team: \n" @@ -28,20 +28,6 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: libacl/perm_copy_fd.c:124 libacl/perm_copy_fd.c:136 -#: libacl/perm_copy_fd.c:198 libacl/perm_copy_file.c:124 -#: libacl/perm_copy_file.c:139 libacl/perm_copy_file.c:150 -#: libacl/perm_copy_file.c:235 -#, c-format -msgid "setting permissions for %s" -msgstr "Setzen der Zugriffsrechte für %s" - -#: libacl/perm_copy_fd.c:186 libacl/perm_copy_file.c:199 -#: libacl/perm_copy_file.c:224 -#, c-format -msgid "preserving permissions for %s" -msgstr "Erhalten der Zugriffsrechte für %s" - #: libacl/acl_error.c:33 msgid "Multiple entries of same type" msgstr "Mehrere Einträge gleichen Typs" @@ -58,6 +44,20 @@ msgid "Invalid entry type" msgstr "Ungültiger Eintragstyp" +#: libacl/perm_copy_fd.c:124 libacl/perm_copy_fd.c:136 +#: libacl/perm_copy_fd.c:198 libacl/perm_copy_file.c:124 +#: libacl/perm_copy_file.c:139 libacl/perm_copy_file.c:150 +#: libacl/perm_copy_file.c:235 +#, c-format +msgid "setting permissions for %s" +msgstr "Setzen der Zugriffsrechte für %s" + +#: libacl/perm_copy_fd.c:186 libacl/perm_copy_file.c:199 +#: libacl/perm_copy_file.c:224 +#, c-format +msgid "preserving permissions for %s" +msgstr "Erhalten der Zugriffsrechte für %s" + #: tools/chacl.c:46 #, c-format msgid "Usage:\n" @@ -158,74 +158,6 @@ msgid "%s: malloc failed: %s\n" msgstr "%s: malloc ist fehlgeschlagen: %s\n" -#: tools/getfacl.c:497 -#, c-format -msgid "%s: Removing leading '/' from absolute path names\n" -msgstr "%s: Entferne führende '/' von absoluten Pfadnamen\n" - -#: tools/getfacl.c:568 -#, c-format -msgid "%s %s -- get file access control lists\n" -msgstr "%s %s -- Datei-Zugriffskontrollisten (ACLs) anzeigen\n" - -#: tools/getfacl.c:570 tools/getfacl.c:750 -#, c-format -msgid "Usage: %s [-%s] file ...\n" -msgstr "Aufruf: %s [-%s] datei ...\n" - -#: tools/getfacl.c:576 -#, c-format -msgid " -d, --default display the default access control list\n" -msgstr " -d, --default Die Vorgabe-ACL ausgeben\n" - -#: tools/getfacl.c:580 -#, fuzzy, c-format -msgid "" -" -a, --access display the file access control list only\n" -" -d, --default display the default access control list only\n" -" -c, --omit-header do not display the comment header\n" -" -e, --all-effective print all effective rights\n" -" -E, --no-effective print no effective rights\n" -" -s, --skip-base skip files that only have the base entries\n" -" -R, --recursive recurse into subdirectories\n" -" -L, --logical logical walk, follow symbolic links\n" -" -P, --physical physical walk, do not follow symbolic links\n" -" -t, --tabular use tabular output format\n" -" -n, --numeric print numeric user/group identifiers\n" -" -p, --absolute-names don't strip leading '/' in pathnames\n" -msgstr "" -" --access Nur die Zugriffs-ACL ausgeben\n" -" -d, --default Nur die Vorgabe-ACL ausgeben\n" -" --omit-header Keine Datei-Kommentare ausgeben\n" -" --all-effective Alle Effektivrechte-Kommentare ausgeben\n" -" --no-effective Keine Effektivrechte-Kommentare ausgeben\n" -" --skip-base Ãœberspringe Dateien mit Basiseinträgen\n" -" -R, --recursive In Unterverzeichnisse wechseln\n" -" -L, --logical Symbolische Links verfolgen\n" -" -P, --physical Symbolische Links nicht verfolgen\n" -" --tabular Tabellarisches Ausgabeformat verwenden\n" -" --numeric Numerische Benutzer-/Gruppenkennungen ausgeben\n" -" --absolute-names Führende '/' in Pfadnamen nicht entfernen\n" - -#: tools/getfacl.c:595 tools/setfacl.c:299 -#, fuzzy, c-format -msgid "" -" -v, --version print version and exit\n" -" -h, --help this help text\n" -msgstr "" -" --version Die Version ausgeben\n" -" --help Diese Hilfe\n" - -#: tools/getfacl.c:737 tools/setfacl.c:316 -#, c-format -msgid "%s: Standard input: %s\n" -msgstr "%s: Standardeingabe: %s\n" - -#: tools/getfacl.c:752 tools/setfacl.c:655 -#, c-format -msgid "Try `%s --help' for more information.\n" -msgstr "Weiterführende Informationen mit `%s --help'.\n" - #: tools/do_set.c:410 #, c-format msgid "%s: %s: Malformed access ACL `%s': %s at entry %d\n" @@ -262,9 +194,9 @@ msgstr "%s: %s: Kann Besitzer/Gruppe nicht ändern: %s\n" #: tools/setfacl.c:224 -#, fuzzy, c-format +#, c-format msgid "%s: %s: Cannot change mode: %s\n" -msgstr "%s: %s: Kann Besitzer/Gruppe nicht ändern: %s\n" +msgstr "%s: %s: Kann Modus nicht ändern: %s\n" #: tools/setfacl.c:266 #, c-format @@ -328,6 +260,20 @@ " --restore=datei ACLs wiederherstellen (Umkehr von `getfacl -R')\n" " --test Testmodus (ACLs werden nicht verändert)\n" +#: tools/setfacl.c:299 tools/getfacl.c:597 +#, c-format +msgid "" +" -v, --version print version and exit\n" +" -h, --help this help text\n" +msgstr "" +" -v, --version Die Version ausgeben und beenden\n" +" -h, --help Diese Hilfe\n" + +#: tools/setfacl.c:316 tools/getfacl.c:743 +#, c-format +msgid "%s: Standard input: %s\n" +msgstr "%s: Standardeingabe: %s\n" + #: tools/setfacl.c:452 #, c-format msgid "%s: Option -%c incomplete\n" @@ -347,3 +293,59 @@ #, c-format msgid "%s: %s in line %d of standard input\n" msgstr "%s: %s in Zeile %d der Standardeingabe\n" + +#: tools/setfacl.c:655 tools/getfacl.c:758 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Weiterführende Informationen mit `%s --help'.\n" + +#: tools/getfacl.c:498 +#, c-format +msgid "%s: Removing leading '/' from absolute path names\n" +msgstr "%s: Entferne führende '/' von absoluten Pfadnamen\n" + +#: tools/getfacl.c:569 +#, c-format +msgid "%s %s -- get file access control lists\n" +msgstr "%s %s -- Datei-Zugriffskontrollisten (ACLs) anzeigen\n" + +#: tools/getfacl.c:571 tools/getfacl.c:756 +#, c-format +msgid "Usage: %s [-%s] file ...\n" +msgstr "Aufruf: %s [-%s] datei ...\n" + +#: tools/getfacl.c:577 +#, c-format +msgid " -d, --default display the default access control list\n" +msgstr " -d, --default Die Vorgabe-ACL ausgeben\n" + +#: tools/getfacl.c:581 +#, c-format +msgid "" +" -a, --access display the file access control list only\n" +" -d, --default display the default access control list only\n" +" -c, --omit-header do not display the comment header\n" +" -e, --all-effective print all effective rights\n" +" -E, --no-effective print no effective rights\n" +" -s, --skip-base skip files that only have the base entries\n" +" -R, --recursive recurse into subdirectories\n" +" -L, --logical logical walk, follow symbolic links\n" +" -P, --physical physical walk, do not follow symbolic links\n" +" -t, --tabular use tabular output format\n" +" -n, --numeric print numeric user/group identifiers\n" +" --one-file-system skip files on different filesystems\n" +" -p, --absolute-names don't strip leading '/' in pathnames\n" +msgstr "" +" -a, --access Nur die Zugriffs-ACL ausgeben\n" +" -d, --default Nur die Vorgabe-ACL ausgeben\n" +" -c, --omit-header Keine Datei-Kommentare ausgeben\n" +" -e, --all-effective Alle Effektivrechte-Kommentare ausgeben\n" +" -E, --no-effective Keine Effektivrechte-Kommentare ausgeben\n" +" -s, --skip-base Ãœberspringe Dateien mit Basiseinträgen\n" +" -R, --recursive In Unterverzeichnisse wechseln\n" +" -L, --logical Symbolische Links verfolgen\n" +" -P, --physical Symbolische Links nicht verfolgen\n" +" -t, --tabular Tabellarisches Ausgabeformat verwenden\n" +" -n, --numeric Numerische Benutzer-/Gruppenkennungen ausgeben\n" +" --one-file-system Dateien auf anderen Dateisystemen überspringen\n" +" -p, --absolute-names Führende '/' in Pfadnamen nicht entfernen\n" Binary files /tmp/tmpj_kkcm8e/2d9B11F6fV/acl-2.2.53/po/en@boldquot.gmo and /tmp/tmpj_kkcm8e/BpVElq6AJR/acl-2.3.1/po/en@boldquot.gmo differ diff -Nru acl-2.2.53/po/en@boldquot.po acl-2.3.1/po/en@boldquot.po --- acl-2.2.53/po/en@boldquot.po 2018-06-19 03:10:14.000000000 +0000 +++ acl-2.3.1/po/en@boldquot.po 2021-03-16 06:43:22.000000000 +0000 @@ -1,7 +1,7 @@ # English translations for acl package. -# Copyright (C) 2018 Silicon Graphics, Inc. +# Copyright (C) 2021 Silicon Graphics, Inc. # This file is distributed under the same license as the acl package. -# Automatically generated, 2018. +# Automatically generated, 2021. # # All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation @@ -30,10 +30,10 @@ # msgid "" msgstr "" -"Project-Id-Version: acl 2.2.53\n" +"Project-Id-Version: acl 2.3.1\n" "Report-Msgid-Bugs-To: acl-devel@nongnu.org\n" -"POT-Creation-Date: 2018-06-18 23:10-0400\n" -"PO-Revision-Date: 2018-06-18 23:10-0400\n" +"POT-Creation-Date: 2021-03-16 07:43+0100\n" +"PO-Revision-Date: 2021-03-16 07:43+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: en@boldquot\n" @@ -42,20 +42,6 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: libacl/perm_copy_fd.c:124 libacl/perm_copy_fd.c:136 -#: libacl/perm_copy_fd.c:198 libacl/perm_copy_file.c:124 -#: libacl/perm_copy_file.c:139 libacl/perm_copy_file.c:150 -#: libacl/perm_copy_file.c:235 -#, c-format -msgid "setting permissions for %s" -msgstr "setting permissions for %s" - -#: libacl/perm_copy_fd.c:186 libacl/perm_copy_file.c:199 -#: libacl/perm_copy_file.c:224 -#, c-format -msgid "preserving permissions for %s" -msgstr "preserving permissions for %s" - #: libacl/acl_error.c:33 msgid "Multiple entries of same type" msgstr "Multiple entries of same type" @@ -72,6 +58,20 @@ msgid "Invalid entry type" msgstr "Invalid entry type" +#: libacl/perm_copy_fd.c:124 libacl/perm_copy_fd.c:136 +#: libacl/perm_copy_fd.c:198 libacl/perm_copy_file.c:124 +#: libacl/perm_copy_file.c:139 libacl/perm_copy_file.c:150 +#: libacl/perm_copy_file.c:235 +#, c-format +msgid "setting permissions for %s" +msgstr "setting permissions for %s" + +#: libacl/perm_copy_fd.c:186 libacl/perm_copy_file.c:199 +#: libacl/perm_copy_file.c:224 +#, c-format +msgid "preserving permissions for %s" +msgstr "preserving permissions for %s" + #: tools/chacl.c:46 #, c-format msgid "Usage:\n" @@ -172,74 +172,6 @@ msgid "%s: malloc failed: %s\n" msgstr "%s: malloc failed: %s\n" -#: tools/getfacl.c:497 -#, c-format -msgid "%s: Removing leading '/' from absolute path names\n" -msgstr "%s: Removing leading ‘/’ from absolute path names\n" - -#: tools/getfacl.c:568 -#, c-format -msgid "%s %s -- get file access control lists\n" -msgstr "%s %s -- get file access control lists\n" - -#: tools/getfacl.c:570 tools/getfacl.c:750 -#, c-format -msgid "Usage: %s [-%s] file ...\n" -msgstr "Usage: %s [-%s] file ...\n" - -#: tools/getfacl.c:576 -#, c-format -msgid " -d, --default display the default access control list\n" -msgstr " -d, --default display the default access control list\n" - -#: tools/getfacl.c:580 -#, c-format -msgid "" -" -a, --access display the file access control list only\n" -" -d, --default display the default access control list only\n" -" -c, --omit-header do not display the comment header\n" -" -e, --all-effective print all effective rights\n" -" -E, --no-effective print no effective rights\n" -" -s, --skip-base skip files that only have the base entries\n" -" -R, --recursive recurse into subdirectories\n" -" -L, --logical logical walk, follow symbolic links\n" -" -P, --physical physical walk, do not follow symbolic links\n" -" -t, --tabular use tabular output format\n" -" -n, --numeric print numeric user/group identifiers\n" -" -p, --absolute-names don't strip leading '/' in pathnames\n" -msgstr "" -" -a, --access display the file access control list only\n" -" -d, --default display the default access control list only\n" -" -c, --omit-header do not display the comment header\n" -" -e, --all-effective print all effective rights\n" -" -E, --no-effective print no effective rights\n" -" -s, --skip-base skip files that only have the base entries\n" -" -R, --recursive recurse into subdirectories\n" -" -L, --logical logical walk, follow symbolic links\n" -" -P, --physical physical walk, do not follow symbolic links\n" -" -t, --tabular use tabular output format\n" -" -n, --numeric print numeric user/group identifiers\n" -" -p, --absolute-names don't strip leading ‘/’ in pathnames\n" - -#: tools/getfacl.c:595 tools/setfacl.c:299 -#, c-format -msgid "" -" -v, --version print version and exit\n" -" -h, --help this help text\n" -msgstr "" -" -v, --version print version and exit\n" -" -h, --help this help text\n" - -#: tools/getfacl.c:737 tools/setfacl.c:316 -#, c-format -msgid "%s: Standard input: %s\n" -msgstr "%s: Standard input: %s\n" - -#: tools/getfacl.c:752 tools/setfacl.c:655 -#, c-format -msgid "Try `%s --help' for more information.\n" -msgstr "Try ‘%s --help’ for more information.\n" - #: tools/do_set.c:410 #, c-format msgid "%s: %s: Malformed access ACL `%s': %s at entry %d\n" @@ -342,6 +274,20 @@ " --restore=file restore ACLs (inverse of ‘getfacl -R’)\n" " --test test mode (ACLs are not modified)\n" +#: tools/setfacl.c:299 tools/getfacl.c:597 +#, c-format +msgid "" +" -v, --version print version and exit\n" +" -h, --help this help text\n" +msgstr "" +" -v, --version print version and exit\n" +" -h, --help this help text\n" + +#: tools/setfacl.c:316 tools/getfacl.c:743 +#, c-format +msgid "%s: Standard input: %s\n" +msgstr "%s: Standard input: %s\n" + #: tools/setfacl.c:452 #, c-format msgid "%s: Option -%c incomplete\n" @@ -361,3 +307,59 @@ #, c-format msgid "%s: %s in line %d of standard input\n" msgstr "%s: %s in line %d of standard input\n" + +#: tools/setfacl.c:655 tools/getfacl.c:758 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Try ‘%s --help’ for more information.\n" + +#: tools/getfacl.c:498 +#, c-format +msgid "%s: Removing leading '/' from absolute path names\n" +msgstr "%s: Removing leading ‘/’ from absolute path names\n" + +#: tools/getfacl.c:569 +#, c-format +msgid "%s %s -- get file access control lists\n" +msgstr "%s %s -- get file access control lists\n" + +#: tools/getfacl.c:571 tools/getfacl.c:756 +#, c-format +msgid "Usage: %s [-%s] file ...\n" +msgstr "Usage: %s [-%s] file ...\n" + +#: tools/getfacl.c:577 +#, c-format +msgid " -d, --default display the default access control list\n" +msgstr " -d, --default display the default access control list\n" + +#: tools/getfacl.c:581 +#, c-format +msgid "" +" -a, --access display the file access control list only\n" +" -d, --default display the default access control list only\n" +" -c, --omit-header do not display the comment header\n" +" -e, --all-effective print all effective rights\n" +" -E, --no-effective print no effective rights\n" +" -s, --skip-base skip files that only have the base entries\n" +" -R, --recursive recurse into subdirectories\n" +" -L, --logical logical walk, follow symbolic links\n" +" -P, --physical physical walk, do not follow symbolic links\n" +" -t, --tabular use tabular output format\n" +" -n, --numeric print numeric user/group identifiers\n" +" --one-file-system skip files on different filesystems\n" +" -p, --absolute-names don't strip leading '/' in pathnames\n" +msgstr "" +" -a, --access display the file access control list only\n" +" -d, --default display the default access control list only\n" +" -c, --omit-header do not display the comment header\n" +" -e, --all-effective print all effective rights\n" +" -E, --no-effective print no effective rights\n" +" -s, --skip-base skip files that only have the base entries\n" +" -R, --recursive recurse into subdirectories\n" +" -L, --logical logical walk, follow symbolic links\n" +" -P, --physical physical walk, do not follow symbolic links\n" +" -t, --tabular use tabular output format\n" +" -n, --numeric print numeric user/group identifiers\n" +" --one-file-system skip files on different filesystems\n" +" -p, --absolute-names don't strip leading ‘/’ in pathnames\n" Binary files /tmp/tmpj_kkcm8e/2d9B11F6fV/acl-2.2.53/po/en@quot.gmo and /tmp/tmpj_kkcm8e/BpVElq6AJR/acl-2.3.1/po/en@quot.gmo differ diff -Nru acl-2.2.53/po/en@quot.po acl-2.3.1/po/en@quot.po --- acl-2.2.53/po/en@quot.po 2018-06-19 03:10:14.000000000 +0000 +++ acl-2.3.1/po/en@quot.po 2021-03-16 06:43:22.000000000 +0000 @@ -1,7 +1,7 @@ # English translations for acl package. -# Copyright (C) 2018 Silicon Graphics, Inc. +# Copyright (C) 2021 Silicon Graphics, Inc. # This file is distributed under the same license as the acl package. -# Automatically generated, 2018. +# Automatically generated, 2021. # # All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation @@ -27,10 +27,10 @@ # msgid "" msgstr "" -"Project-Id-Version: acl 2.2.53\n" +"Project-Id-Version: acl 2.3.1\n" "Report-Msgid-Bugs-To: acl-devel@nongnu.org\n" -"POT-Creation-Date: 2018-06-18 23:10-0400\n" -"PO-Revision-Date: 2018-06-18 23:10-0400\n" +"POT-Creation-Date: 2021-03-16 07:43+0100\n" +"PO-Revision-Date: 2021-03-16 07:43+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: en@quot\n" @@ -39,20 +39,6 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: libacl/perm_copy_fd.c:124 libacl/perm_copy_fd.c:136 -#: libacl/perm_copy_fd.c:198 libacl/perm_copy_file.c:124 -#: libacl/perm_copy_file.c:139 libacl/perm_copy_file.c:150 -#: libacl/perm_copy_file.c:235 -#, c-format -msgid "setting permissions for %s" -msgstr "setting permissions for %s" - -#: libacl/perm_copy_fd.c:186 libacl/perm_copy_file.c:199 -#: libacl/perm_copy_file.c:224 -#, c-format -msgid "preserving permissions for %s" -msgstr "preserving permissions for %s" - #: libacl/acl_error.c:33 msgid "Multiple entries of same type" msgstr "Multiple entries of same type" @@ -69,6 +55,20 @@ msgid "Invalid entry type" msgstr "Invalid entry type" +#: libacl/perm_copy_fd.c:124 libacl/perm_copy_fd.c:136 +#: libacl/perm_copy_fd.c:198 libacl/perm_copy_file.c:124 +#: libacl/perm_copy_file.c:139 libacl/perm_copy_file.c:150 +#: libacl/perm_copy_file.c:235 +#, c-format +msgid "setting permissions for %s" +msgstr "setting permissions for %s" + +#: libacl/perm_copy_fd.c:186 libacl/perm_copy_file.c:199 +#: libacl/perm_copy_file.c:224 +#, c-format +msgid "preserving permissions for %s" +msgstr "preserving permissions for %s" + #: tools/chacl.c:46 #, c-format msgid "Usage:\n" @@ -169,74 +169,6 @@ msgid "%s: malloc failed: %s\n" msgstr "%s: malloc failed: %s\n" -#: tools/getfacl.c:497 -#, c-format -msgid "%s: Removing leading '/' from absolute path names\n" -msgstr "%s: Removing leading ‘/’ from absolute path names\n" - -#: tools/getfacl.c:568 -#, c-format -msgid "%s %s -- get file access control lists\n" -msgstr "%s %s -- get file access control lists\n" - -#: tools/getfacl.c:570 tools/getfacl.c:750 -#, c-format -msgid "Usage: %s [-%s] file ...\n" -msgstr "Usage: %s [-%s] file ...\n" - -#: tools/getfacl.c:576 -#, c-format -msgid " -d, --default display the default access control list\n" -msgstr " -d, --default display the default access control list\n" - -#: tools/getfacl.c:580 -#, c-format -msgid "" -" -a, --access display the file access control list only\n" -" -d, --default display the default access control list only\n" -" -c, --omit-header do not display the comment header\n" -" -e, --all-effective print all effective rights\n" -" -E, --no-effective print no effective rights\n" -" -s, --skip-base skip files that only have the base entries\n" -" -R, --recursive recurse into subdirectories\n" -" -L, --logical logical walk, follow symbolic links\n" -" -P, --physical physical walk, do not follow symbolic links\n" -" -t, --tabular use tabular output format\n" -" -n, --numeric print numeric user/group identifiers\n" -" -p, --absolute-names don't strip leading '/' in pathnames\n" -msgstr "" -" -a, --access display the file access control list only\n" -" -d, --default display the default access control list only\n" -" -c, --omit-header do not display the comment header\n" -" -e, --all-effective print all effective rights\n" -" -E, --no-effective print no effective rights\n" -" -s, --skip-base skip files that only have the base entries\n" -" -R, --recursive recurse into subdirectories\n" -" -L, --logical logical walk, follow symbolic links\n" -" -P, --physical physical walk, do not follow symbolic links\n" -" -t, --tabular use tabular output format\n" -" -n, --numeric print numeric user/group identifiers\n" -" -p, --absolute-names don't strip leading ‘/’ in pathnames\n" - -#: tools/getfacl.c:595 tools/setfacl.c:299 -#, c-format -msgid "" -" -v, --version print version and exit\n" -" -h, --help this help text\n" -msgstr "" -" -v, --version print version and exit\n" -" -h, --help this help text\n" - -#: tools/getfacl.c:737 tools/setfacl.c:316 -#, c-format -msgid "%s: Standard input: %s\n" -msgstr "%s: Standard input: %s\n" - -#: tools/getfacl.c:752 tools/setfacl.c:655 -#, c-format -msgid "Try `%s --help' for more information.\n" -msgstr "Try ‘%s --help’ for more information.\n" - #: tools/do_set.c:410 #, c-format msgid "%s: %s: Malformed access ACL `%s': %s at entry %d\n" @@ -339,6 +271,20 @@ " --restore=file restore ACLs (inverse of ‘getfacl -R’)\n" " --test test mode (ACLs are not modified)\n" +#: tools/setfacl.c:299 tools/getfacl.c:597 +#, c-format +msgid "" +" -v, --version print version and exit\n" +" -h, --help this help text\n" +msgstr "" +" -v, --version print version and exit\n" +" -h, --help this help text\n" + +#: tools/setfacl.c:316 tools/getfacl.c:743 +#, c-format +msgid "%s: Standard input: %s\n" +msgstr "%s: Standard input: %s\n" + #: tools/setfacl.c:452 #, c-format msgid "%s: Option -%c incomplete\n" @@ -358,3 +304,59 @@ #, c-format msgid "%s: %s in line %d of standard input\n" msgstr "%s: %s in line %d of standard input\n" + +#: tools/setfacl.c:655 tools/getfacl.c:758 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Try ‘%s --help’ for more information.\n" + +#: tools/getfacl.c:498 +#, c-format +msgid "%s: Removing leading '/' from absolute path names\n" +msgstr "%s: Removing leading ‘/’ from absolute path names\n" + +#: tools/getfacl.c:569 +#, c-format +msgid "%s %s -- get file access control lists\n" +msgstr "%s %s -- get file access control lists\n" + +#: tools/getfacl.c:571 tools/getfacl.c:756 +#, c-format +msgid "Usage: %s [-%s] file ...\n" +msgstr "Usage: %s [-%s] file ...\n" + +#: tools/getfacl.c:577 +#, c-format +msgid " -d, --default display the default access control list\n" +msgstr " -d, --default display the default access control list\n" + +#: tools/getfacl.c:581 +#, c-format +msgid "" +" -a, --access display the file access control list only\n" +" -d, --default display the default access control list only\n" +" -c, --omit-header do not display the comment header\n" +" -e, --all-effective print all effective rights\n" +" -E, --no-effective print no effective rights\n" +" -s, --skip-base skip files that only have the base entries\n" +" -R, --recursive recurse into subdirectories\n" +" -L, --logical logical walk, follow symbolic links\n" +" -P, --physical physical walk, do not follow symbolic links\n" +" -t, --tabular use tabular output format\n" +" -n, --numeric print numeric user/group identifiers\n" +" --one-file-system skip files on different filesystems\n" +" -p, --absolute-names don't strip leading '/' in pathnames\n" +msgstr "" +" -a, --access display the file access control list only\n" +" -d, --default display the default access control list only\n" +" -c, --omit-header do not display the comment header\n" +" -e, --all-effective print all effective rights\n" +" -E, --no-effective print no effective rights\n" +" -s, --skip-base skip files that only have the base entries\n" +" -R, --recursive recurse into subdirectories\n" +" -L, --logical logical walk, follow symbolic links\n" +" -P, --physical physical walk, do not follow symbolic links\n" +" -t, --tabular use tabular output format\n" +" -n, --numeric print numeric user/group identifiers\n" +" --one-file-system skip files on different filesystems\n" +" -p, --absolute-names don't strip leading ‘/’ in pathnames\n" Binary files /tmp/tmpj_kkcm8e/2d9B11F6fV/acl-2.2.53/po/es.gmo and /tmp/tmpj_kkcm8e/BpVElq6AJR/acl-2.3.1/po/es.gmo differ diff -Nru acl-2.2.53/po/es.po acl-2.3.1/po/es.po --- acl-2.2.53/po/es.po 2018-06-19 03:10:14.000000000 +0000 +++ acl-2.3.1/po/es.po 2021-03-16 06:43:21.000000000 +0000 @@ -19,7 +19,7 @@ msgstr "" "Project-Id-Version: acl-2.2.43.1\n" "Report-Msgid-Bugs-To: acl-devel@nongnu.org\n" -"POT-Creation-Date: 2018-06-18 23:10-0400\n" +"POT-Creation-Date: 2021-03-16 07:43+0100\n" "PO-Revision-Date: 2007-03-16 23:25+0100\n" "Last-Translator: Antonio Trueba \n" "Language-Team: Spanish\n" @@ -29,20 +29,6 @@ "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Spanish\n" -#: libacl/perm_copy_fd.c:124 libacl/perm_copy_fd.c:136 -#: libacl/perm_copy_fd.c:198 libacl/perm_copy_file.c:124 -#: libacl/perm_copy_file.c:139 libacl/perm_copy_file.c:150 -#: libacl/perm_copy_file.c:235 -#, c-format -msgid "setting permissions for %s" -msgstr "estableciendo permisos a %s" - -#: libacl/perm_copy_fd.c:186 libacl/perm_copy_file.c:199 -#: libacl/perm_copy_file.c:224 -#, c-format -msgid "preserving permissions for %s" -msgstr "manteniendo permisos a %s" - #: libacl/acl_error.c:33 msgid "Multiple entries of same type" msgstr "Múltiples entradas del mismo tipo" @@ -59,6 +45,20 @@ msgid "Invalid entry type" msgstr "Tipo de posición inválido" +#: libacl/perm_copy_fd.c:124 libacl/perm_copy_fd.c:136 +#: libacl/perm_copy_fd.c:198 libacl/perm_copy_file.c:124 +#: libacl/perm_copy_file.c:139 libacl/perm_copy_file.c:150 +#: libacl/perm_copy_file.c:235 +#, c-format +msgid "setting permissions for %s" +msgstr "estableciendo permisos a %s" + +#: libacl/perm_copy_fd.c:186 libacl/perm_copy_file.c:199 +#: libacl/perm_copy_file.c:224 +#, c-format +msgid "preserving permissions for %s" +msgstr "manteniendo permisos a %s" + #: tools/chacl.c:46 #, c-format msgid "Usage:\n" @@ -159,79 +159,6 @@ msgid "%s: malloc failed: %s\n" msgstr "%s: falló la asignación de memoria: %s\n" -#: tools/getfacl.c:497 -#, c-format -msgid "%s: Removing leading '/' from absolute path names\n" -msgstr "%s: Eliminando '/' inicial en nombres de ruta absolutos\n" - -#: tools/getfacl.c:568 -#, c-format -msgid "%s %s -- get file access control lists\n" -msgstr "%s %s -- obtener listas de control de acceso a archivo\n" - -#: tools/getfacl.c:570 tools/getfacl.c:750 -#, c-format -msgid "Usage: %s [-%s] file ...\n" -msgstr "Uso: %s [-%s] archivo ...\n" - -#: tools/getfacl.c:576 -#, c-format -msgid " -d, --default display the default access control list\n" -msgstr "" -" -d, --default mostrar la lista de control de acceso " -"predeterminada\n" - -#: tools/getfacl.c:580 -#, fuzzy, c-format -msgid "" -" -a, --access display the file access control list only\n" -" -d, --default display the default access control list only\n" -" -c, --omit-header do not display the comment header\n" -" -e, --all-effective print all effective rights\n" -" -E, --no-effective print no effective rights\n" -" -s, --skip-base skip files that only have the base entries\n" -" -R, --recursive recurse into subdirectories\n" -" -L, --logical logical walk, follow symbolic links\n" -" -P, --physical physical walk, do not follow symbolic links\n" -" -t, --tabular use tabular output format\n" -" -n, --numeric print numeric user/group identifiers\n" -" -p, --absolute-names don't strip leading '/' in pathnames\n" -msgstr "" -" --access sólo mostrar la lista de control de acceso a " -"fichero\n" -" -d, --default sólo mostrar la lista de acceso predeterminada\n" -" --omit-header no mostrar el encabezado de comentarios\n" -" --all-effective mostrar todos los permisos efectivos\n" -" --no-effective mostrar los permisos no efectivos\n" -" --skip-base ignorar archivos que sólo tienen las entradas " -"básicas\n" -" -R, --recursive descender recursivamente en los subdirectorios\n" -" -L, --logical recorrido lógico, siguiendo enlaces simbólicos\n" -" -P --physical recorrido físico, sin seguir enlaces simbólicos\n" -" --tabular usar formato de salida tabular\n" -" --numeric mostrar identificadores numéricos de usuario/" -"grupo\n" -" --absolute-names no eliminar '/' inicial en nombres de ruta\n" - -#: tools/getfacl.c:595 tools/setfacl.c:299 -#, fuzzy, c-format -msgid "" -" -v, --version print version and exit\n" -" -h, --help this help text\n" -msgstr "" -" --version escribir versión y salir\n" -" --help este texto de ayuda\n" - -#: tools/getfacl.c:737 tools/setfacl.c:316 -#, c-format -msgid "%s: Standard input: %s\n" -msgstr "%s: Entrada estándar: %s\n" - -#: tools/getfacl.c:752 tools/setfacl.c:655 -#, c-format -msgid "Try `%s --help' for more information.\n" -msgstr "Escriba `%s --help' para más información.\n" - #: tools/do_set.c:410 #, c-format msgid "%s: %s: Malformed access ACL `%s': %s at entry %d\n" @@ -337,6 +264,20 @@ " --restore=file restaurar ACLs (inverso de `getfacl -R')\n" " --test modo de prueba (los ACLs no se modifican)\n" +#: tools/setfacl.c:299 tools/getfacl.c:597 +#, fuzzy, c-format +msgid "" +" -v, --version print version and exit\n" +" -h, --help this help text\n" +msgstr "" +" --version escribir versión y salir\n" +" --help este texto de ayuda\n" + +#: tools/setfacl.c:316 tools/getfacl.c:743 +#, c-format +msgid "%s: Standard input: %s\n" +msgstr "%s: Entrada estándar: %s\n" + #: tools/setfacl.c:452 #, c-format msgid "%s: Option -%c incomplete\n" @@ -356,3 +297,63 @@ #, c-format msgid "%s: %s in line %d of standard input\n" msgstr "%s: %s en línea %d de entrada estándar\n" + +#: tools/setfacl.c:655 tools/getfacl.c:758 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Escriba `%s --help' para más información.\n" + +#: tools/getfacl.c:498 +#, c-format +msgid "%s: Removing leading '/' from absolute path names\n" +msgstr "%s: Eliminando '/' inicial en nombres de ruta absolutos\n" + +#: tools/getfacl.c:569 +#, c-format +msgid "%s %s -- get file access control lists\n" +msgstr "%s %s -- obtener listas de control de acceso a archivo\n" + +#: tools/getfacl.c:571 tools/getfacl.c:756 +#, c-format +msgid "Usage: %s [-%s] file ...\n" +msgstr "Uso: %s [-%s] archivo ...\n" + +#: tools/getfacl.c:577 +#, c-format +msgid " -d, --default display the default access control list\n" +msgstr "" +" -d, --default mostrar la lista de control de acceso " +"predeterminada\n" + +#: tools/getfacl.c:581 +#, fuzzy, c-format +msgid "" +" -a, --access display the file access control list only\n" +" -d, --default display the default access control list only\n" +" -c, --omit-header do not display the comment header\n" +" -e, --all-effective print all effective rights\n" +" -E, --no-effective print no effective rights\n" +" -s, --skip-base skip files that only have the base entries\n" +" -R, --recursive recurse into subdirectories\n" +" -L, --logical logical walk, follow symbolic links\n" +" -P, --physical physical walk, do not follow symbolic links\n" +" -t, --tabular use tabular output format\n" +" -n, --numeric print numeric user/group identifiers\n" +" --one-file-system skip files on different filesystems\n" +" -p, --absolute-names don't strip leading '/' in pathnames\n" +msgstr "" +" --access sólo mostrar la lista de control de acceso a " +"fichero\n" +" -d, --default sólo mostrar la lista de acceso predeterminada\n" +" --omit-header no mostrar el encabezado de comentarios\n" +" --all-effective mostrar todos los permisos efectivos\n" +" --no-effective mostrar los permisos no efectivos\n" +" --skip-base ignorar archivos que sólo tienen las entradas " +"básicas\n" +" -R, --recursive descender recursivamente en los subdirectorios\n" +" -L, --logical recorrido lógico, siguiendo enlaces simbólicos\n" +" -P --physical recorrido físico, sin seguir enlaces simbólicos\n" +" --tabular usar formato de salida tabular\n" +" --numeric mostrar identificadores numéricos de usuario/" +"grupo\n" +" --absolute-names no eliminar '/' inicial en nombres de ruta\n" Binary files /tmp/tmpj_kkcm8e/2d9B11F6fV/acl-2.2.53/po/fr.gmo and /tmp/tmpj_kkcm8e/BpVElq6AJR/acl-2.3.1/po/fr.gmo differ diff -Nru acl-2.2.53/po/fr.po acl-2.3.1/po/fr.po --- acl-2.2.53/po/fr.po 2018-06-19 03:10:14.000000000 +0000 +++ acl-2.3.1/po/fr.po 2021-03-16 06:43:21.000000000 +0000 @@ -19,7 +19,7 @@ msgstr "" "Project-Id-Version: Acl\n" "Report-Msgid-Bugs-To: acl-devel@nongnu.org\n" -"POT-Creation-Date: 2018-06-18 23:10-0400\n" +"POT-Creation-Date: 2021-03-16 07:43+0100\n" "PO-Revision-Date: 2005-09-24 15:46+0200\n" "Last-Translator: Sylvain Archenault \n" "Language-Team: french \n" @@ -29,20 +29,6 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: \n" -#: libacl/perm_copy_fd.c:124 libacl/perm_copy_fd.c:136 -#: libacl/perm_copy_fd.c:198 libacl/perm_copy_file.c:124 -#: libacl/perm_copy_file.c:139 libacl/perm_copy_file.c:150 -#: libacl/perm_copy_file.c:235 -#, c-format -msgid "setting permissions for %s" -msgstr "modifier les permissions pour %s" - -#: libacl/perm_copy_fd.c:186 libacl/perm_copy_file.c:199 -#: libacl/perm_copy_file.c:224 -#, c-format -msgid "preserving permissions for %s" -msgstr "conserver les permissions pour %s" - #: libacl/acl_error.c:33 msgid "Multiple entries of same type" msgstr "Plusieurs entrées de même type" @@ -59,6 +45,20 @@ msgid "Invalid entry type" msgstr "Type d'entrée non valable" +#: libacl/perm_copy_fd.c:124 libacl/perm_copy_fd.c:136 +#: libacl/perm_copy_fd.c:198 libacl/perm_copy_file.c:124 +#: libacl/perm_copy_file.c:139 libacl/perm_copy_file.c:150 +#: libacl/perm_copy_file.c:235 +#, c-format +msgid "setting permissions for %s" +msgstr "modifier les permissions pour %s" + +#: libacl/perm_copy_fd.c:186 libacl/perm_copy_file.c:199 +#: libacl/perm_copy_file.c:224 +#, c-format +msgid "preserving permissions for %s" +msgstr "conserver les permissions pour %s" + #: tools/chacl.c:46 #, c-format msgid "Usage:\n" @@ -159,78 +159,6 @@ msgid "%s: malloc failed: %s\n" msgstr "%s : échec de malloc : %s\n" -#: tools/getfacl.c:497 -#, c-format -msgid "%s: Removing leading '/' from absolute path names\n" -msgstr "%s : suppression du premier « / » des noms de chemins absolus\n" - -#: tools/getfacl.c:568 -#, c-format -msgid "%s %s -- get file access control lists\n" -msgstr "%s %s -- obtenir les listes de contrôle d'accès du fichier\n" - -#: tools/getfacl.c:570 tools/getfacl.c:750 -#, c-format -msgid "Usage: %s [-%s] file ...\n" -msgstr "Utilisation : %s [-%s] fichier...\n" - -#: tools/getfacl.c:576 -#, c-format -msgid " -d, --default display the default access control list\n" -msgstr "" -"-d, --default afficher la liste de contrôle d'accès par défaut\n" - -#: tools/getfacl.c:580 -#, fuzzy, c-format -msgid "" -" -a, --access display the file access control list only\n" -" -d, --default display the default access control list only\n" -" -c, --omit-header do not display the comment header\n" -" -e, --all-effective print all effective rights\n" -" -E, --no-effective print no effective rights\n" -" -s, --skip-base skip files that only have the base entries\n" -" -R, --recursive recurse into subdirectories\n" -" -L, --logical logical walk, follow symbolic links\n" -" -P, --physical physical walk, do not follow symbolic links\n" -" -t, --tabular use tabular output format\n" -" -n, --numeric print numeric user/group identifiers\n" -" -p, --absolute-names don't strip leading '/' in pathnames\n" -msgstr "" -" --access affiche seulement le fichier ACL\n" -" -d, --default affiche seulement le fichier ACL par défaut\n" -" --omit-header n'affiche pas les commentaires d'en-tête\n" -" --all-effective affiche tous les droits en vigueur\n" -" --no-effective affiche les droits inactifs\n" -" --skip-base ignorer les fichiers qui ont seulement les " -"entrées\n" -" de base\n" -" -R, --recursive parcourir récursivement les sous-répertoires\n" -" -L, --logical suivre les liens symboliques\n" -" -P, --physical ne pas suivre les liens symboliques\n" -" --tabular sortie tabulée\n" -" --numeric afficher les identifiants numériques des\n" -" utilisateurs/groupes\n" -" --absolute-names ne pas enlever le premier « / » dans les chemins\n" - -#: tools/getfacl.c:595 tools/setfacl.c:299 -#, fuzzy, c-format -msgid "" -" -v, --version print version and exit\n" -" -h, --help this help text\n" -msgstr "" -" --version afficher la version et quitter\n" -" --help afficher ce message d'aide\n" - -#: tools/getfacl.c:737 tools/setfacl.c:316 -#, c-format -msgid "%s: Standard input: %s\n" -msgstr "%s : Sortie standard : %s\n" - -#: tools/getfacl.c:752 tools/setfacl.c:655 -#, c-format -msgid "Try `%s --help' for more information.\n" -msgstr "Essayer « %s --help » pour plus d'informations.\n" - #: tools/do_set.c:410 #, c-format msgid "%s: %s: Malformed access ACL `%s': %s at entry %d\n" @@ -339,6 +267,20 @@ " --restore=fichier restaurer les ACL (inverse de « getfacl -R »)\n" " --test mode test (les ACL ne sont pas modifiés)\n" +#: tools/setfacl.c:299 tools/getfacl.c:597 +#, fuzzy, c-format +msgid "" +" -v, --version print version and exit\n" +" -h, --help this help text\n" +msgstr "" +" --version afficher la version et quitter\n" +" --help afficher ce message d'aide\n" + +#: tools/setfacl.c:316 tools/getfacl.c:743 +#, c-format +msgid "%s: Standard input: %s\n" +msgstr "%s : Sortie standard : %s\n" + #: tools/setfacl.c:452 #, c-format msgid "%s: Option -%c incomplete\n" @@ -358,3 +300,62 @@ #, c-format msgid "%s: %s in line %d of standard input\n" msgstr "%s : %s à la ligne %d de la sortie standard\n" + +#: tools/setfacl.c:655 tools/getfacl.c:758 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Essayer « %s --help » pour plus d'informations.\n" + +#: tools/getfacl.c:498 +#, c-format +msgid "%s: Removing leading '/' from absolute path names\n" +msgstr "%s : suppression du premier « / » des noms de chemins absolus\n" + +#: tools/getfacl.c:569 +#, c-format +msgid "%s %s -- get file access control lists\n" +msgstr "%s %s -- obtenir les listes de contrôle d'accès du fichier\n" + +#: tools/getfacl.c:571 tools/getfacl.c:756 +#, c-format +msgid "Usage: %s [-%s] file ...\n" +msgstr "Utilisation : %s [-%s] fichier...\n" + +#: tools/getfacl.c:577 +#, c-format +msgid " -d, --default display the default access control list\n" +msgstr "" +"-d, --default afficher la liste de contrôle d'accès par défaut\n" + +#: tools/getfacl.c:581 +#, fuzzy, c-format +msgid "" +" -a, --access display the file access control list only\n" +" -d, --default display the default access control list only\n" +" -c, --omit-header do not display the comment header\n" +" -e, --all-effective print all effective rights\n" +" -E, --no-effective print no effective rights\n" +" -s, --skip-base skip files that only have the base entries\n" +" -R, --recursive recurse into subdirectories\n" +" -L, --logical logical walk, follow symbolic links\n" +" -P, --physical physical walk, do not follow symbolic links\n" +" -t, --tabular use tabular output format\n" +" -n, --numeric print numeric user/group identifiers\n" +" --one-file-system skip files on different filesystems\n" +" -p, --absolute-names don't strip leading '/' in pathnames\n" +msgstr "" +" --access affiche seulement le fichier ACL\n" +" -d, --default affiche seulement le fichier ACL par défaut\n" +" --omit-header n'affiche pas les commentaires d'en-tête\n" +" --all-effective affiche tous les droits en vigueur\n" +" --no-effective affiche les droits inactifs\n" +" --skip-base ignorer les fichiers qui ont seulement les " +"entrées\n" +" de base\n" +" -R, --recursive parcourir récursivement les sous-répertoires\n" +" -L, --logical suivre les liens symboliques\n" +" -P, --physical ne pas suivre les liens symboliques\n" +" --tabular sortie tabulée\n" +" --numeric afficher les identifiants numériques des\n" +" utilisateurs/groupes\n" +" --absolute-names ne pas enlever le premier « / » dans les chemins\n" Binary files /tmp/tmpj_kkcm8e/2d9B11F6fV/acl-2.2.53/po/gl.gmo and /tmp/tmpj_kkcm8e/BpVElq6AJR/acl-2.3.1/po/gl.gmo differ diff -Nru acl-2.2.53/po/gl.po acl-2.3.1/po/gl.po --- acl-2.2.53/po/gl.po 2018-06-19 03:10:14.000000000 +0000 +++ acl-2.3.1/po/gl.po 2021-03-16 06:43:21.000000000 +0000 @@ -19,7 +19,7 @@ msgstr "" "Project-Id-Version: acl-2.2.43.1\n" "Report-Msgid-Bugs-To: acl-devel@nongnu.org\n" -"POT-Creation-Date: 2018-06-18 23:10-0400\n" +"POT-Creation-Date: 2021-03-16 07:43+0100\n" "PO-Revision-Date: 2007-03-16 18:52+0100\n" "Last-Translator: Antonio Trueba \n" "Language-Team: Galician\n" @@ -29,20 +29,6 @@ "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Galician\n" -#: libacl/perm_copy_fd.c:124 libacl/perm_copy_fd.c:136 -#: libacl/perm_copy_fd.c:198 libacl/perm_copy_file.c:124 -#: libacl/perm_copy_file.c:139 libacl/perm_copy_file.c:150 -#: libacl/perm_copy_file.c:235 -#, c-format -msgid "setting permissions for %s" -msgstr "establecendo permisos para %s" - -#: libacl/perm_copy_fd.c:186 libacl/perm_copy_file.c:199 -#: libacl/perm_copy_file.c:224 -#, c-format -msgid "preserving permissions for %s" -msgstr "mantendo permisos de %s" - #: libacl/acl_error.c:33 msgid "Multiple entries of same type" msgstr "Varias entradas do mesmo tipo" @@ -59,6 +45,20 @@ msgid "Invalid entry type" msgstr "Tipo de entrada non válido" +#: libacl/perm_copy_fd.c:124 libacl/perm_copy_fd.c:136 +#: libacl/perm_copy_fd.c:198 libacl/perm_copy_file.c:124 +#: libacl/perm_copy_file.c:139 libacl/perm_copy_file.c:150 +#: libacl/perm_copy_file.c:235 +#, c-format +msgid "setting permissions for %s" +msgstr "establecendo permisos para %s" + +#: libacl/perm_copy_fd.c:186 libacl/perm_copy_file.c:199 +#: libacl/perm_copy_file.c:224 +#, c-format +msgid "preserving permissions for %s" +msgstr "mantendo permisos de %s" + #: tools/chacl.c:46 #, c-format msgid "Usage:\n" @@ -159,78 +159,6 @@ msgid "%s: malloc failed: %s\n" msgstr "%s: a chamada a malloc fallou: %s\n" -#: tools/getfacl.c:497 -#, c-format -msgid "%s: Removing leading '/' from absolute path names\n" -msgstr "%s: Eliminando '/' iniciais en nomes de ruta absolutos\n" - -#: tools/getfacl.c:568 -#, c-format -msgid "%s %s -- get file access control lists\n" -msgstr "%s %s -- obter listas de control de acceso a ficheiro\n" - -#: tools/getfacl.c:570 tools/getfacl.c:750 -#, c-format -msgid "Usage: %s [-%s] file ...\n" -msgstr "Uso: %s [-%s] ficheiro ...\n" - -#: tools/getfacl.c:576 -#, c-format -msgid " -d, --default display the default access control list\n" -msgstr "" -" -d, --default amosá-la lista de control de acceso " -"predeterminada\n" - -#: tools/getfacl.c:580 -#, fuzzy, c-format -msgid "" -" -a, --access display the file access control list only\n" -" -d, --default display the default access control list only\n" -" -c, --omit-header do not display the comment header\n" -" -e, --all-effective print all effective rights\n" -" -E, --no-effective print no effective rights\n" -" -s, --skip-base skip files that only have the base entries\n" -" -R, --recursive recurse into subdirectories\n" -" -L, --logical logical walk, follow symbolic links\n" -" -P, --physical physical walk, do not follow symbolic links\n" -" -t, --tabular use tabular output format\n" -" -n, --numeric print numeric user/group identifiers\n" -" -p, --absolute-names don't strip leading '/' in pathnames\n" -msgstr "" -" --access só amosá-la lista de control de acceso ó ficheiro\n" -" -d, --default só mostrá-la lista de control de acceso " -"predeterminada\n" -" --omit-header non amosá-lo comentario de encabezamento\n" -" --all-effective amosar tódolos dereitos efectivos\n" -" --no-effective non amosar ningún dereito efectivo\n" -" --skip-base saltar ficheiros que só teñan as entradas básicas\n" -" -R, --recursive descender recursivamente nos subdirectorios\n" -" -L, --logical percorrido lóxico, seguindo enlaces simbólicos\n" -" -P --physical percorrido físico, non seguir enlaces simbólicos\n" -" --tabular usar formato de saída tabular\n" -" --numeric amosar identificadores numéricos de propietario/" -"grupo\n" -" --absolute-names non eliminá-la '/' en nomes de ruta\n" - -#: tools/getfacl.c:595 tools/setfacl.c:299 -#, fuzzy, c-format -msgid "" -" -v, --version print version and exit\n" -" -h, --help this help text\n" -msgstr "" -" --version amosar versión e sair\n" -" --help este texto de axuda\n" - -#: tools/getfacl.c:737 tools/setfacl.c:316 -#, c-format -msgid "%s: Standard input: %s\n" -msgstr "%s: Entrada estándar: %s\n" - -#: tools/getfacl.c:752 tools/setfacl.c:655 -#, c-format -msgid "Try `%s --help' for more information.\n" -msgstr "Escriba \"%s --help\" para máis información.\n" - #: tools/do_set.c:410 #, c-format msgid "%s: %s: Malformed access ACL `%s': %s at entry %d\n" @@ -336,6 +264,20 @@ " --restore=fich restaurar ACLs (inverso de 'getfacl -R')\n" " --test modo de proba (os ACLs non son modificados)\n" +#: tools/setfacl.c:299 tools/getfacl.c:597 +#, fuzzy, c-format +msgid "" +" -v, --version print version and exit\n" +" -h, --help this help text\n" +msgstr "" +" --version amosar versión e sair\n" +" --help este texto de axuda\n" + +#: tools/setfacl.c:316 tools/getfacl.c:743 +#, c-format +msgid "%s: Standard input: %s\n" +msgstr "%s: Entrada estándar: %s\n" + #: tools/setfacl.c:452 #, c-format msgid "%s: Option -%c incomplete\n" @@ -355,3 +297,62 @@ #, c-format msgid "%s: %s in line %d of standard input\n" msgstr "%s: %s na liña %d da entrada estándar\n" + +#: tools/setfacl.c:655 tools/getfacl.c:758 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Escriba \"%s --help\" para máis información.\n" + +#: tools/getfacl.c:498 +#, c-format +msgid "%s: Removing leading '/' from absolute path names\n" +msgstr "%s: Eliminando '/' iniciais en nomes de ruta absolutos\n" + +#: tools/getfacl.c:569 +#, c-format +msgid "%s %s -- get file access control lists\n" +msgstr "%s %s -- obter listas de control de acceso a ficheiro\n" + +#: tools/getfacl.c:571 tools/getfacl.c:756 +#, c-format +msgid "Usage: %s [-%s] file ...\n" +msgstr "Uso: %s [-%s] ficheiro ...\n" + +#: tools/getfacl.c:577 +#, c-format +msgid " -d, --default display the default access control list\n" +msgstr "" +" -d, --default amosá-la lista de control de acceso " +"predeterminada\n" + +#: tools/getfacl.c:581 +#, fuzzy, c-format +msgid "" +" -a, --access display the file access control list only\n" +" -d, --default display the default access control list only\n" +" -c, --omit-header do not display the comment header\n" +" -e, --all-effective print all effective rights\n" +" -E, --no-effective print no effective rights\n" +" -s, --skip-base skip files that only have the base entries\n" +" -R, --recursive recurse into subdirectories\n" +" -L, --logical logical walk, follow symbolic links\n" +" -P, --physical physical walk, do not follow symbolic links\n" +" -t, --tabular use tabular output format\n" +" -n, --numeric print numeric user/group identifiers\n" +" --one-file-system skip files on different filesystems\n" +" -p, --absolute-names don't strip leading '/' in pathnames\n" +msgstr "" +" --access só amosá-la lista de control de acceso ó ficheiro\n" +" -d, --default só mostrá-la lista de control de acceso " +"predeterminada\n" +" --omit-header non amosá-lo comentario de encabezamento\n" +" --all-effective amosar tódolos dereitos efectivos\n" +" --no-effective non amosar ningún dereito efectivo\n" +" --skip-base saltar ficheiros que só teñan as entradas básicas\n" +" -R, --recursive descender recursivamente nos subdirectorios\n" +" -L, --logical percorrido lóxico, seguindo enlaces simbólicos\n" +" -P --physical percorrido físico, non seguir enlaces simbólicos\n" +" --tabular usar formato de saída tabular\n" +" --numeric amosar identificadores numéricos de propietario/" +"grupo\n" +" --absolute-names non eliminá-la '/' en nomes de ruta\n" Binary files /tmp/tmpj_kkcm8e/2d9B11F6fV/acl-2.2.53/po/pl.gmo and /tmp/tmpj_kkcm8e/BpVElq6AJR/acl-2.3.1/po/pl.gmo differ diff -Nru acl-2.2.53/po/pl.po acl-2.3.1/po/pl.po --- acl-2.2.53/po/pl.po 2018-06-19 03:10:14.000000000 +0000 +++ acl-2.3.1/po/pl.po 2021-03-16 06:43:21.000000000 +0000 @@ -19,7 +19,7 @@ msgstr "" "Project-Id-Version: acl-2.2.22\n" "Report-Msgid-Bugs-To: acl-devel@nongnu.org\n" -"POT-Creation-Date: 2018-06-18 23:10-0400\n" +"POT-Creation-Date: 2021-03-16 07:43+0100\n" "PO-Revision-Date: 2004-01-28 22:31+0100\n" "Last-Translator: Jakub Bogusz \n" "Language-Team: Polish \n" @@ -28,20 +28,6 @@ "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" -#: libacl/perm_copy_fd.c:124 libacl/perm_copy_fd.c:136 -#: libacl/perm_copy_fd.c:198 libacl/perm_copy_file.c:124 -#: libacl/perm_copy_file.c:139 libacl/perm_copy_file.c:150 -#: libacl/perm_copy_file.c:235 -#, c-format -msgid "setting permissions for %s" -msgstr "ustawianie uprawnieñ dla %s" - -#: libacl/perm_copy_fd.c:186 libacl/perm_copy_file.c:199 -#: libacl/perm_copy_file.c:224 -#, c-format -msgid "preserving permissions for %s" -msgstr "zachowywanie uprawnieñ dla %s" - #: libacl/acl_error.c:33 msgid "Multiple entries of same type" msgstr "Wiele pozycji tego samego typu" @@ -58,6 +44,20 @@ msgid "Invalid entry type" msgstr "Nieprawid³owy typ pozycji" +#: libacl/perm_copy_fd.c:124 libacl/perm_copy_fd.c:136 +#: libacl/perm_copy_fd.c:198 libacl/perm_copy_file.c:124 +#: libacl/perm_copy_file.c:139 libacl/perm_copy_file.c:150 +#: libacl/perm_copy_file.c:235 +#, c-format +msgid "setting permissions for %s" +msgstr "ustawianie uprawnieñ dla %s" + +#: libacl/perm_copy_fd.c:186 libacl/perm_copy_file.c:199 +#: libacl/perm_copy_file.c:224 +#, c-format +msgid "preserving permissions for %s" +msgstr "zachowywanie uprawnieñ dla %s" + #: tools/chacl.c:46 #, c-format msgid "Usage:\n" @@ -158,81 +158,6 @@ msgid "%s: malloc failed: %s\n" msgstr "%s: malloc nie powiód³ siê: %s\n" -#: tools/getfacl.c:497 -#, c-format -msgid "%s: Removing leading '/' from absolute path names\n" -msgstr "%s: Usuniêcie wiod±cego '/' ze ¶cie¿ek bezwzglêdnych\n" - -#: tools/getfacl.c:568 -#, c-format -msgid "%s %s -- get file access control lists\n" -msgstr "%s %s -- odczyt list kontroli dostêpu do plików (ACL-i)\n" - -#: tools/getfacl.c:570 tools/getfacl.c:750 -#, c-format -msgid "Usage: %s [-%s] file ...\n" -msgstr "Sk³adnia: %s [-%s] plik ...\n" - -#: tools/getfacl.c:576 -#, c-format -msgid " -d, --default display the default access control list\n" -msgstr "" -" -d, --default wy¶wietlenie domy¶lnej listy kontroli dostêpu\n" - -#: tools/getfacl.c:580 -#, fuzzy, c-format -msgid "" -" -a, --access display the file access control list only\n" -" -d, --default display the default access control list only\n" -" -c, --omit-header do not display the comment header\n" -" -e, --all-effective print all effective rights\n" -" -E, --no-effective print no effective rights\n" -" -s, --skip-base skip files that only have the base entries\n" -" -R, --recursive recurse into subdirectories\n" -" -L, --logical logical walk, follow symbolic links\n" -" -P, --physical physical walk, do not follow symbolic links\n" -" -t, --tabular use tabular output format\n" -" -n, --numeric print numeric user/group identifiers\n" -" -p, --absolute-names don't strip leading '/' in pathnames\n" -msgstr "" -" --access wy¶wietlenie tylko listy kontroli dostêpu do " -"pliku\n" -" -d, --default wy¶wietlenie tylko domy¶lnej listy kontroli " -"dostêpu\n" -" --omit-header nie wy¶wietlanie nag³ówka z komentarzem\n" -" --all-effective wy¶wietlanie wszystkich efektywnych uprawnieñ\n" -" --no-effective nie wy¶wietlanie efektywnych uprawnieñ\n" -" --skip-base pominiêcie plików z sam± podstawow± pozycj±\n" -" -R, --recursive rekurencyjne wchodzenie do katalogów\n" -" -L, --logical przechodzenie logiczne, pod±¿anie za dowi±zaniami\n" -" symbolicznymi\n" -" -P, --physical przechodzenie fizyczne, nie pod±¿anie za " -"dowi±zaniami\n" -" symbolicznymi\n" -" --tabular wyj¶cie w formacie tabeli\n" -" --numeric wy¶wietlanie liczbowych identyfikatorów\n" -" u¿ytkowników/grup\n" -" --absolute-names nie usuwanie wiod±cego '/' z nazw plików\n" - -#: tools/getfacl.c:595 tools/setfacl.c:299 -#, fuzzy, c-format -msgid "" -" -v, --version print version and exit\n" -" -h, --help this help text\n" -msgstr "" -" --version wy¶wietlenie informacji o wersji i zakoñczenie\n" -" --help ten tekst pomocy\n" - -#: tools/getfacl.c:737 tools/setfacl.c:316 -#, c-format -msgid "%s: Standard input: %s\n" -msgstr "%s: Standardowe wej¶cie: %s\n" - -#: tools/getfacl.c:752 tools/setfacl.c:655 -#, c-format -msgid "Try `%s --help' for more information.\n" -msgstr "`%s --help' wy¶wietli wiêcej informacji.\n" - #: tools/do_set.c:410 #, c-format msgid "%s: %s: Malformed access ACL `%s': %s at entry %d\n" @@ -340,6 +265,20 @@ " --restore=plik odtworzenie ACL-i (odwrotno¶æ `getfacl -R')\n" " --test tryb testowy (ACL-e nie s± modyfikowane)\n" +#: tools/setfacl.c:299 tools/getfacl.c:597 +#, fuzzy, c-format +msgid "" +" -v, --version print version and exit\n" +" -h, --help this help text\n" +msgstr "" +" --version wy¶wietlenie informacji o wersji i zakoñczenie\n" +" --help ten tekst pomocy\n" + +#: tools/setfacl.c:316 tools/getfacl.c:743 +#, c-format +msgid "%s: Standard input: %s\n" +msgstr "%s: Standardowe wej¶cie: %s\n" + #: tools/setfacl.c:452 #, c-format msgid "%s: Option -%c incomplete\n" @@ -359,3 +298,65 @@ #, c-format msgid "%s: %s in line %d of standard input\n" msgstr "%s: %s w linii %d standardowego wej¶cia\n" + +#: tools/setfacl.c:655 tools/getfacl.c:758 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "`%s --help' wy¶wietli wiêcej informacji.\n" + +#: tools/getfacl.c:498 +#, c-format +msgid "%s: Removing leading '/' from absolute path names\n" +msgstr "%s: Usuniêcie wiod±cego '/' ze ¶cie¿ek bezwzglêdnych\n" + +#: tools/getfacl.c:569 +#, c-format +msgid "%s %s -- get file access control lists\n" +msgstr "%s %s -- odczyt list kontroli dostêpu do plików (ACL-i)\n" + +#: tools/getfacl.c:571 tools/getfacl.c:756 +#, c-format +msgid "Usage: %s [-%s] file ...\n" +msgstr "Sk³adnia: %s [-%s] plik ...\n" + +#: tools/getfacl.c:577 +#, c-format +msgid " -d, --default display the default access control list\n" +msgstr "" +" -d, --default wy¶wietlenie domy¶lnej listy kontroli dostêpu\n" + +#: tools/getfacl.c:581 +#, fuzzy, c-format +msgid "" +" -a, --access display the file access control list only\n" +" -d, --default display the default access control list only\n" +" -c, --omit-header do not display the comment header\n" +" -e, --all-effective print all effective rights\n" +" -E, --no-effective print no effective rights\n" +" -s, --skip-base skip files that only have the base entries\n" +" -R, --recursive recurse into subdirectories\n" +" -L, --logical logical walk, follow symbolic links\n" +" -P, --physical physical walk, do not follow symbolic links\n" +" -t, --tabular use tabular output format\n" +" -n, --numeric print numeric user/group identifiers\n" +" --one-file-system skip files on different filesystems\n" +" -p, --absolute-names don't strip leading '/' in pathnames\n" +msgstr "" +" --access wy¶wietlenie tylko listy kontroli dostêpu do " +"pliku\n" +" -d, --default wy¶wietlenie tylko domy¶lnej listy kontroli " +"dostêpu\n" +" --omit-header nie wy¶wietlanie nag³ówka z komentarzem\n" +" --all-effective wy¶wietlanie wszystkich efektywnych uprawnieñ\n" +" --no-effective nie wy¶wietlanie efektywnych uprawnieñ\n" +" --skip-base pominiêcie plików z sam± podstawow± pozycj±\n" +" -R, --recursive rekurencyjne wchodzenie do katalogów\n" +" -L, --logical przechodzenie logiczne, pod±¿anie za dowi±zaniami\n" +" symbolicznymi\n" +" -P, --physical przechodzenie fizyczne, nie pod±¿anie za " +"dowi±zaniami\n" +" symbolicznymi\n" +" --tabular wyj¶cie w formacie tabeli\n" +" --numeric wy¶wietlanie liczbowych identyfikatorów\n" +" u¿ytkowników/grup\n" +" --absolute-names nie usuwanie wiod±cego '/' z nazw plików\n" diff -Nru acl-2.2.53/po/POTFILES.in acl-2.3.1/po/POTFILES.in --- acl-2.2.53/po/POTFILES.in 2018-06-19 03:09:37.000000000 +0000 +++ acl-2.3.1/po/POTFILES.in 2021-03-02 04:40:43.000000000 +0000 @@ -1,78 +1,78 @@ # updated automatically by po/update-potfiles include/acl.h +include/acl_ea.h include/libacl.h include/misc.h include/walk_tree.h -include/acl_ea.h -libacl/acl_calc_mask.c -libacl/__acl_extended_file.c +libacl/__acl_extended_file.h libacl/__acl_from_xattr.h +libacl/__acl_to_xattr.h libacl/acl_delete_def_file.c -libacl/acl_check.c -libacl/__libobj.c -libacl/perm_copy_fd.c +libacl/acl_delete_entry.c +libacl/acl_delete_perm.c +libacl/acl_dup.c +libacl/acl_entries.c libacl/acl_equiv_mode.c -libacl/acl_copy_int.c -libacl/acl_copy_entry.c -libacl/acl_get_permset.c +libacl/acl_error.c libacl/acl_extended_fd.c -libacl/acl_delete_perm.c -libacl/__acl_extended_file.h +libacl/acl_extended_file.c +libacl/acl_extended_file_nofollow.c +libacl/acl_free.c +libacl/acl_from_text.c +libacl/acl_get_entry.c +libacl/acl_get_fd.c +libacl/acl_get_file.c +libacl/acl_get_perm.c +libacl/acl_get_permset.c +libacl/acl_get_qualifier.c +libacl/acl_get_tag_type.c libacl/acl_init.c -libacl/acl_copy_ext.c -libacl/acl_cmp.c -libacl/__acl_to_xattr.c -libacl/perm_copy.h +libacl/acl_set_fd.c +libacl/acl_set_file.c +libacl/acl_set_permset.c +libacl/acl_set_qualifier.c libacl/acl_set_tag_type.c +libacl/acl_size.c +libacl/acl_to_any_text.c +libacl/acl_to_text.c +libacl/acl_valid.c libacl/byteorder.h libacl/libacl.h -libacl/acl_error.c -libacl/acl_to_any_text.c +libacl/libobj.h +libacl/perm_copy.h +libacl/perm_copy_fd.c +libacl/perm_copy_file.c +libacl/__acl_extended_file.c +libacl/__acl_from_xattr.c libacl/__acl_reorder_obj_p.c +libacl/__acl_to_any_text.c +libacl/__acl_to_xattr.c libacl/__apply_mask_to_mode.c -libacl/acl_dup.c -libacl/acl_get_fd.c -libacl/acl_to_text.c -libacl/acl_delete_entry.c -libacl/acl_extended_file_nofollow.c -libacl/acl_get_tag_type.c +libacl/__libobj.c libacl/acl_add_perm.c -libacl/acl_get_file.c -libacl/acl_valid.c +libacl/acl_calc_mask.c +libacl/acl_check.c libacl/acl_clear_perms.c -libacl/acl_free.c -libacl/acl_entries.c -libacl/acl_from_text.c -libacl/__acl_to_xattr.h +libacl/acl_cmp.c +libacl/acl_copy_entry.c +libacl/acl_copy_ext.c +libacl/acl_copy_int.c libacl/acl_from_mode.c -libacl/acl_set_qualifier.c -libacl/acl_get_entry.c -libacl/libobj.h -libacl/acl_set_file.c -libacl/acl_extended_file.c -libacl/acl_get_qualifier.c -libacl/__acl_to_any_text.c -libacl/__acl_from_xattr.c -libacl/acl_set_fd.c -libacl/acl_get_perm.c libacl/acl_create_entry.c -libacl/perm_copy_file.c -libacl/acl_size.c -libacl/acl_set_permset.c -libmisc/unquote.c -libmisc/walk_tree.c -libmisc/next_line.c libmisc/high_water_alloc.c +libmisc/next_line.c libmisc/quote.c +libmisc/unquote.c +libmisc/walk_tree.c tools/chacl.c -tools/parse.h +tools/do_set.c tools/do_set.h +tools/parse.c +tools/parse.h tools/sequence.c -tools/getfacl.c tools/sequence.h -tools/user_group.h tools/user_group.c -tools/do_set.c +tools/user_group.h tools/setfacl.c -tools/parse.c +tools/getfacl.c Binary files /tmp/tmpj_kkcm8e/2d9B11F6fV/acl-2.2.53/po/sv.gmo and /tmp/tmpj_kkcm8e/BpVElq6AJR/acl-2.3.1/po/sv.gmo differ diff -Nru acl-2.2.53/po/sv.po acl-2.3.1/po/sv.po --- acl-2.2.53/po/sv.po 2018-06-19 03:10:14.000000000 +0000 +++ acl-2.3.1/po/sv.po 2021-03-16 06:43:21.000000000 +0000 @@ -19,7 +19,7 @@ msgstr "" "Project-Id-Version: acl 2.2.37\n" "Report-Msgid-Bugs-To: acl-devel@nongnu.org\n" -"POT-Creation-Date: 2018-06-18 23:10-0400\n" +"POT-Creation-Date: 2021-03-16 07:43+0100\n" "PO-Revision-Date: 2006-05-23 22:45+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -28,20 +28,6 @@ "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: libacl/perm_copy_fd.c:124 libacl/perm_copy_fd.c:136 -#: libacl/perm_copy_fd.c:198 libacl/perm_copy_file.c:124 -#: libacl/perm_copy_file.c:139 libacl/perm_copy_file.c:150 -#: libacl/perm_copy_file.c:235 -#, c-format -msgid "setting permissions for %s" -msgstr "ställer in rättigheter för %s" - -#: libacl/perm_copy_fd.c:186 libacl/perm_copy_file.c:199 -#: libacl/perm_copy_file.c:224 -#, c-format -msgid "preserving permissions for %s" -msgstr "bevarar rättigheter för %s" - #: libacl/acl_error.c:33 msgid "Multiple entries of same type" msgstr "Flera poster av samma typ" @@ -58,6 +44,20 @@ msgid "Invalid entry type" msgstr "Ogiltig posttyp" +#: libacl/perm_copy_fd.c:124 libacl/perm_copy_fd.c:136 +#: libacl/perm_copy_fd.c:198 libacl/perm_copy_file.c:124 +#: libacl/perm_copy_file.c:139 libacl/perm_copy_file.c:150 +#: libacl/perm_copy_file.c:235 +#, c-format +msgid "setting permissions for %s" +msgstr "ställer in rättigheter för %s" + +#: libacl/perm_copy_fd.c:186 libacl/perm_copy_file.c:199 +#: libacl/perm_copy_file.c:224 +#, c-format +msgid "preserving permissions for %s" +msgstr "bevarar rättigheter för %s" + #: tools/chacl.c:46 #, c-format msgid "Usage:\n" @@ -159,75 +159,6 @@ msgid "%s: malloc failed: %s\n" msgstr "%s: malloc misslyckades: %s\n" -#: tools/getfacl.c:497 -#, c-format -msgid "%s: Removing leading '/' from absolute path names\n" -msgstr "%s: Tar bort inledande \"/\" från absoluta sökvägar\n" - -#: tools/getfacl.c:568 -#, c-format -msgid "%s %s -- get file access control lists\n" -msgstr "%s %s -- hämta filåtkomstkontrollistor\n" - -#: tools/getfacl.c:570 tools/getfacl.c:750 -#, c-format -msgid "Usage: %s [-%s] file ...\n" -msgstr "Användning: %s [-%s] fil ...\n" - -#: tools/getfacl.c:576 -#, c-format -msgid " -d, --default display the default access control list\n" -msgstr " -d, --default visa standardåtkomstkontrollistan\n" - -#: tools/getfacl.c:580 -#, fuzzy, c-format -msgid "" -" -a, --access display the file access control list only\n" -" -d, --default display the default access control list only\n" -" -c, --omit-header do not display the comment header\n" -" -e, --all-effective print all effective rights\n" -" -E, --no-effective print no effective rights\n" -" -s, --skip-base skip files that only have the base entries\n" -" -R, --recursive recurse into subdirectories\n" -" -L, --logical logical walk, follow symbolic links\n" -" -P, --physical physical walk, do not follow symbolic links\n" -" -t, --tabular use tabular output format\n" -" -n, --numeric print numeric user/group identifiers\n" -" -p, --absolute-names don't strip leading '/' in pathnames\n" -msgstr "" -" --access visa endast filåtkomstkontrollistan\n" -" -d, --default visa endast standardåtkomstkontrollistan\n" -" --omit-header visa inte kommentarshuvudet\n" -" --all-effective skriv ut alla effektiva rättigheter\n" -" --no-effective skriv inte ut några effektiva rättigheter\n" -" --skip-base hoppa över filer som endast har basposterna\n" -" -R, --recursive gå rekursivt ner i underkataloger\n" -" -L, --logical logisk väg, följ symboliska länkar\n" -" -P --physical fysisk väg, följ inte symboliska länkar\n" -" --tabular använd tabulerat utformat\n" -" --numeric skriv ut numeriska identifierare för användare/" -"grupp\n" -" --absolute-names ta inte bort inledande \"/\" i sökvägar\n" - -#: tools/getfacl.c:595 tools/setfacl.c:299 -#, fuzzy, c-format -msgid "" -" -v, --version print version and exit\n" -" -h, --help this help text\n" -msgstr "" -" --version skriv ut version och avsluta\n" -" --help denna hjälptext\n" - -#: tools/getfacl.c:737 tools/setfacl.c:316 -#, c-format -msgid "%s: Standard input: %s\n" -msgstr "%s: Standard in: %s\n" - -#: tools/getfacl.c:752 tools/setfacl.c:655 -#, c-format -msgid "Try `%s --help' for more information.\n" -msgstr "Prova \"%s --help\" för mer information.\n" - #: tools/do_set.c:410 #, c-format msgid "%s: %s: Malformed access ACL `%s': %s at entry %d\n" @@ -330,6 +261,20 @@ " --restore=fil återställ ACL:er (invers av \"getfacl -R\")\n" " --test testläge (ACL:er ändras inte)\n" +#: tools/setfacl.c:299 tools/getfacl.c:597 +#, fuzzy, c-format +msgid "" +" -v, --version print version and exit\n" +" -h, --help this help text\n" +msgstr "" +" --version skriv ut version och avsluta\n" +" --help denna hjälptext\n" + +#: tools/setfacl.c:316 tools/getfacl.c:743 +#, c-format +msgid "%s: Standard input: %s\n" +msgstr "%s: Standard in: %s\n" + #: tools/setfacl.c:452 #, c-format msgid "%s: Option -%c incomplete\n" @@ -349,3 +294,59 @@ #, c-format msgid "%s: %s in line %d of standard input\n" msgstr "%s: %s på rad %d i standard in\n" + +#: tools/setfacl.c:655 tools/getfacl.c:758 +#, c-format +msgid "Try `%s --help' for more information.\n" +msgstr "Prova \"%s --help\" för mer information.\n" + +#: tools/getfacl.c:498 +#, c-format +msgid "%s: Removing leading '/' from absolute path names\n" +msgstr "%s: Tar bort inledande \"/\" från absoluta sökvägar\n" + +#: tools/getfacl.c:569 +#, c-format +msgid "%s %s -- get file access control lists\n" +msgstr "%s %s -- hämta filåtkomstkontrollistor\n" + +#: tools/getfacl.c:571 tools/getfacl.c:756 +#, c-format +msgid "Usage: %s [-%s] file ...\n" +msgstr "Användning: %s [-%s] fil ...\n" + +#: tools/getfacl.c:577 +#, c-format +msgid " -d, --default display the default access control list\n" +msgstr " -d, --default visa standardåtkomstkontrollistan\n" + +#: tools/getfacl.c:581 +#, fuzzy, c-format +msgid "" +" -a, --access display the file access control list only\n" +" -d, --default display the default access control list only\n" +" -c, --omit-header do not display the comment header\n" +" -e, --all-effective print all effective rights\n" +" -E, --no-effective print no effective rights\n" +" -s, --skip-base skip files that only have the base entries\n" +" -R, --recursive recurse into subdirectories\n" +" -L, --logical logical walk, follow symbolic links\n" +" -P, --physical physical walk, do not follow symbolic links\n" +" -t, --tabular use tabular output format\n" +" -n, --numeric print numeric user/group identifiers\n" +" --one-file-system skip files on different filesystems\n" +" -p, --absolute-names don't strip leading '/' in pathnames\n" +msgstr "" +" --access visa endast filåtkomstkontrollistan\n" +" -d, --default visa endast standardåtkomstkontrollistan\n" +" --omit-header visa inte kommentarshuvudet\n" +" --all-effective skriv ut alla effektiva rättigheter\n" +" --no-effective skriv inte ut några effektiva rättigheter\n" +" --skip-base hoppa över filer som endast har basposterna\n" +" -R, --recursive gå rekursivt ner i underkataloger\n" +" -L, --logical logisk väg, följ symboliska länkar\n" +" -P --physical fysisk väg, följ inte symboliska länkar\n" +" --tabular använd tabulerat utformat\n" +" --numeric skriv ut numeriska identifierare för användare/" +"grupp\n" +" --absolute-names ta inte bort inledande \"/\" i sökvägar\n" diff -Nru acl-2.2.53/TODO acl-2.3.1/TODO --- acl-2.2.53/TODO 1970-01-01 00:00:00.000000000 +0000 +++ acl-2.3.1/TODO 2021-03-02 04:58:20.000000000 +0000 @@ -0,0 +1 @@ +* Add makefile boilerplate code for updating files in po/ diff -Nru acl-2.2.53/tools/do_set.c acl-2.3.1/tools/do_set.c --- acl-2.2.53/tools/do_set.c 2016-12-09 19:10:25.000000000 +0000 +++ acl-2.3.1/tools/do_set.c 2020-02-06 16:03:31.000000000 +0000 @@ -3,7 +3,7 @@ (Linux Access Control List Management) Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/tools/getfacl.c acl-2.3.1/tools/getfacl.c --- acl-2.2.53/tools/getfacl.c 2015-09-19 07:05:06.000000000 +0000 +++ acl-2.3.1/tools/getfacl.c 2021-03-02 04:46:29.000000000 +0000 @@ -3,7 +3,7 @@ (Linux Access Control List Management) Copyright (C) 1999-2002 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -59,6 +59,7 @@ { "tabular", 0, 0, 't' }, { "absolute-names", 0, 0, 'p' }, { "numeric", 0, 0, 'n' }, + { "one-file-system", 0, 0, 1 }, #endif { "default", 0, 0, 'd' }, { "version", 0, 0, 'v' }, @@ -577,7 +578,7 @@ #if !POSIXLY_CORRECT } else { printf(_( -" -a, --access display the file access control list only\n" +" -a, --access display the file access control list only\n" " -d, --default display the default access control list only\n" " -c, --omit-header do not display the comment header\n" " -e, --all-effective print all effective rights\n" @@ -588,6 +589,7 @@ " -P, --physical physical walk, do not follow symbolic links\n" " -t, --tabular use tabular output format\n" " -n, --numeric print numeric user/group identifiers\n" +" --one-file-system skip files on different filesystems\n" " -p, --absolute-names don't strip leading '/' in pathnames\n")); } #endif @@ -699,6 +701,10 @@ print_options |= TEXT_NUMERIC_IDS; break; + case 1: /* one filesystem */ + walk_flags |= WALK_TREE_ONE_FILESYSTEM; + break; + case 'v': /* print version */ printf("%s " VERSION "\n", progname); return 0; diff -Nru acl-2.2.53/tools/parse.c acl-2.3.1/tools/parse.c --- acl-2.2.53/tools/parse.c 2018-01-21 05:29:22.000000000 +0000 +++ acl-2.3.1/tools/parse.c 2020-02-06 16:03:31.000000000 +0000 @@ -3,7 +3,7 @@ (Linux Access Control List Management) Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/tools/sequence.c acl-2.3.1/tools/sequence.c --- acl-2.2.53/tools/sequence.c 2018-01-21 05:18:26.000000000 +0000 +++ acl-2.3.1/tools/sequence.c 2020-02-06 16:03:31.000000000 +0000 @@ -3,7 +3,7 @@ (Linux Access Control List Management) Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/tools/setfacl.c acl-2.3.1/tools/setfacl.c --- acl-2.2.53/tools/setfacl.c 2014-08-12 12:35:13.000000000 +0000 +++ acl-2.3.1/tools/setfacl.c 2020-11-14 19:33:27.000000000 +0000 @@ -3,7 +3,7 @@ (Linux Access Control List Management) Copyright (C) 1999-2002 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -Nru acl-2.2.53/tools/user_group.c acl-2.3.1/tools/user_group.c --- acl-2.2.53/tools/user_group.c 2016-02-15 17:42:44.000000000 +0000 +++ acl-2.3.1/tools/user_group.c 2020-02-06 16:03:31.000000000 +0000 @@ -3,7 +3,7 @@ (Linux Access Control List Management) Copyright (C) 1999, 2000 - Andreas Gruenbacher, + Andreas Gruenbacher, This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by