--- samba-3.3.0.orig/source/lib/netapi/examples/Makefile +++ samba-3.3.0/source/lib/netapi/examples/Makefile @@ -0,0 +1,106 @@ +GTK_FLAGS=`pkg-config gtk+-2.0 --cflags` +GTK_LIBS=`pkg-config gtk+-2.0 --libs` + +KRB5LIBS=-Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err +LDAP_LIBS=-lldap -llber +LIBS=-lcrypt -lresolv -lnsl -ldl -lnetapi -ltdb -ltalloc +DEVELOPER_CFLAGS=-g -Wall -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -DDEBUG_PASSWORD -DDEVELOPER -Wdeclaration-after-statement -Werror-implicit-function-declaration +FLAGS=-I../ -L../../../bin -O -D_SAMBA_BUILD_=3 $(GTK_FLAGS) +CC=gcc +PICFLAG=-fPIC +LDFLAGS=-pie -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -L./bin -L/usr/lib32 +DYNEXP=-Wl,--export-dynamic +NETAPI_LIBS=$(LIBS) $(KRB5LIBS) $(LDAP_LIBS) +CMDLINE_LIBS=$(NETAPI_LIBS) -lpopt + +# Compile a source file. +COMPILE_CC = $(CC) -I. $(FLAGS) $(PICFLAG) -c $< -o $@ +COMPILE = $(COMPILE_CC) + +PROGS = bin/getdc \ + bin/dsgetdc \ + bin/netdomjoin \ + bin/netdomjoin-gui \ + bin/getjoinableous \ + bin/user_add \ + bin/user_del \ + bin/user_enum \ + bin/user_dispinfo + +all: $(PROGS) + +MAKEDIR = || exec false; \ + if test -d "$$dir"; then :; else \ + echo mkdir "$$dir"; \ + mkdir -p "$$dir" >/dev/null 2>&1 || \ + test -d "$$dir" || \ + mkdir "$$dir" || \ + exec false; fi || exec false + +BINARY_PREREQS = bin/.dummy + +bin/.dummy: + @if (: >> $@ || : > $@) >/dev/null 2>&1; then :; else \ + dir=bin $(MAKEDIR); fi + @: >> $@ || : > $@ # what a fancy emoticon! + +.c.o: + @if (: >> $@ || : > $@) >/dev/null 2>&1; then rm -f $@; else \ + dir=`echo $@ | sed 's,/[^/]*$$,,;s,^$$,.,'` $(MAKEDIR); fi + @echo Compiling $*.c + @$(COMPILE) && exit 0;\ + echo "The following command failed:" 1>&2;\ + echo "$(COMPILE_CC)" 1>&2;\ + $(COMPILE_CC) >/dev/null 2>&1 + +CMDLINE_OBJ = common.o +GETDC_OBJ = getdc/getdc.o $(CMDLINE_OBJ) +DSGETDC_OBJ = dsgetdc/dsgetdc.o $(CMDLINE_OBJ) +NETDOMJOIN_OBJ = netdomjoin/netdomjoin.o $(CMDLINE_OBJ) +NETDOMJOIN_GUI_OBJ = netdomjoin-gui/netdomjoin-gui.o +GETJOINABLEOUS_OBJ = getjoinableous/getjoinableous.o $(CMDLINE_OBJ) +USERADD_OBJ = user/user_add.o $(CMDLINE_OBJ) +USERDEL_OBJ = user/user_del.o $(CMDLINE_OBJ) +USERENUM_OBJ = user/user_enum.o $(CMDLINE_OBJ) +USERDISPINFO_OBJ = user/user_dispinfo.o $(CMDLINE_OBJ) + +bin/getdc: $(BINARY_PREREQS) $(GETDC_OBJ) + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(GETDC_OBJ) $(LDFLAGS) $(DYNEXP) $(CMDLINE_LIBS) + +bin/dsgetdc: $(BINARY_PREREQS) $(DSGETDC_OBJ) + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(DSGETDC_OBJ) $(LDFLAGS) $(DYNEXP) $(CMDLINE_LIBS) + +bin/getjoinableous: $(BINARY_PREREQS) $(GETJOINABLEOUS_OBJ) + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(GETJOINABLEOUS_OBJ) $(LDFLAGS) $(DYNEXP) $(CMDLINE_LIBS) + +bin/netdomjoin: $(BINARY_PREREQS) $(NETDOMJOIN_OBJ) + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(NETDOMJOIN_OBJ) $(LDFLAGS) $(DYNEXP) $(CMDLINE_LIBS) + +bin/netdomjoin-gui: $(BINARY_PREREQS) $(NETDOMJOIN_GUI_OBJ) + @echo Linking $@ + @$(CC) $(FLAGS) $(GTK_FLAGS) -o $@ $(NETDOMJOIN_GUI_OBJ) $(LDFLAGS) $(DYNEXP) $(LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(GTK_LIBS) + +bin/user_add: $(BINARY_PREREQS) $(USERADD_OBJ) + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(USERADD_OBJ) $(LDFLAGS) $(DYNEXP) $(CMDLINE_LIBS) + +bin/user_del: $(BINARY_PREREQS) $(USERDEL_OBJ) + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(USERDEL_OBJ) $(LDFLAGS) $(DYNEXP) $(CMDLINE_LIBS) + +bin/user_enum: $(BINARY_PREREQS) $(USERENUM_OBJ) + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(USERENUM_OBJ) $(LDFLAGS) $(DYNEXP) $(CMDLINE_LIBS) + +bin/user_dispinfo: $(BINARY_PREREQS) $(USERDISPINFO_OBJ) + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(USERDISPINFO_OBJ) $(LDFLAGS) $(DYNEXP) $(CMDLINE_LIBS) + +clean: + -rm -f $(PROGS) + -rm -f core */*~ *~ \ + */*.o */*/*.o */*/*/*.o --- samba-3.3.0.orig/source/pkgconfig/smbclient.pc +++ samba-3.3.0/source/pkgconfig/smbclient.pc @@ -0,0 +1,14 @@ +prefix=/usr +exec_prefix=${prefix} +libdir=/usr/lib/samba +includedir=${prefix}/include + +Name: Samba libsmbclient +Description: A library to access CIFS servers +Version: 0 +URL: http://www.samba.org/ +#Libs: -L/usr/lib/samba -lsmbclient +Libs: -lsmbclient +Libs.private: -lsmbclient -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lldap -llber -lcrypt -lresolv -lnsl -ldl +Cflags: -I${prefix}/include + --- samba-3.3.0.orig/source/pkgconfig/wbclient.pc +++ samba-3.3.0/source/pkgconfig/wbclient.pc @@ -0,0 +1,13 @@ +prefix=/usr +exec_prefix=${prefix} +libdir=/usr/lib/samba +includedir=${prefix}/include + +Name: Samba libwbclient +Description: A library to access winbindd +Version: 0 +URL: http://www.samba.org/ +#Libs: -L/usr/lib/samba -lwbclient +Libs: -lwbclient +Libs.private: -lwbclient +Cflags: -I${prefix}/include --- samba-3.3.0.orig/source/pkgconfig/netapi.pc +++ samba-3.3.0/source/pkgconfig/netapi.pc @@ -0,0 +1,14 @@ +prefix=/usr +exec_prefix=${prefix} +libdir=/usr/lib/samba +includedir=${prefix}/include + +Name: Samba libnetapi +Description: A library to control CIFS servers +Version: 0 +URL: http://www.samba.org/ +#Libs: -L/usr/lib/samba -lnetapi +Libs: -lnetapi +Libs.private: -lnetapi -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lldap -llber -lcrypt -lresolv -lnsl -ldl +Cflags: -I${prefix}/include + --- samba-3.3.0.orig/source/pkgconfig/smbsharemodes.pc +++ samba-3.3.0/source/pkgconfig/smbsharemodes.pc @@ -0,0 +1,14 @@ +prefix=/usr +exec_prefix=${prefix} +libdir=/usr/lib/samba +includedir=${prefix}/include + +Name: Samba libsmbsharemodes +Description: A library +Version: 0 +URL: http://www.samba.org/ +#Libs: -L/usr/lib/samba -lsmbsharemodes +Libs: -lsmbsharemodes +Libs.private: -lsmbsharemodes -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lldap -llber -lcrypt -lresolv -lnsl -ldl +Cflags: -I${prefix}/include + --- samba-3.3.0.orig/debian/samba.config +++ samba-3.3.0/debian/samba.config @@ -0,0 +1,84 @@ +#!/bin/sh -e +# +# + +# Source debconf library. +. /usr/share/debconf/confmodule + +RCFILE=/etc/default/samba + +# Function for grabbing a parameter from an smb.conf file +smbconf_retr() { + if [ -z "$1" ]; then + return + fi + + if [ -n "$2" ]; then + local FILE + FILE="$2" + fi + + if [ -z "$FILE" ]; then + return + fi + + sed -n -e" + s/^[[:space:]]*\[global\]/\[global\]/i + /^\[global\]/,/^[[:space:]]*\[/ { + s/^[[:space:]]*$1[[:space:]]*=[[:space:]]*//pi + }" $FILE \ + | tail -n 1 +} + +read_rcfile() { + # Default values + if [ -f $RCFILE ]; then + . $RCFILE || true + fi +} + +set_debconf() { + if [ -n "$RUN_MODE" ]; then + db_set samba/run_mode "$RUN_MODE" || true + fi +} + +FILE=/etc/samba/smb.conf + +db_title "Samba Server" + +# We first read the settings file +# in order to get admin-modified settings +read_rcfile +# Debconf-stored values are updated accordingly +set_debconf +db_input medium samba/run_mode || true +db_go + +# We vary the priority of the next question depending on whether +# the password database already exists... +if [ -e /etc/samba/smbpasswd -o -e /var/lib/samba/passdb.tdb ]; then + PRIORITY="low" +else + # If 'encrypt passwords' is true in smb.conf, and smbpasswd + # does not exist, default to yes here. + FILE=/etc/samba/smb.conf + db_fget samba/generate_smbpasswd seen + if [ "$RET" = "false" ] && [ -f "$FILE" ]; then + ENCRYPT=`smbconf_retr "encrypt passwords"` + if [ "$ENCRYPT" ]; then + ENCRYPT=`echo $ENCRYPT | tr '[A-Z]' '[a-z]'` + if [ "$ENCRYPT" = "yes" ]; then + ENCRYPT=true + fi + if [ "$ENCRYPT" = "no" ]; then + ENCRYPT=false + fi + fi + db_set samba/generate_smbpasswd "$ENCRYPT" + fi + PRIORITY="medium" +fi + +db_input $PRIORITY samba/generate_smbpasswd || true +db_go --- samba-3.3.0.orig/debian/samba.templates +++ samba-3.3.0/debian/samba.templates @@ -0,0 +1,25 @@ +Template: samba/generate_smbpasswd +Type: boolean +Default: false +_Description: Create samba password database, /var/lib/samba/passdb.tdb? + To be compatible with the defaults in most versions of Windows, Samba must + be configured to use encrypted passwords. This requires user passwords to + be stored in a file separate from /etc/passwd. This file can be created + automatically, but the passwords must be added manually by running + smbpasswd and be kept up-to-date in the future. + . + If you do not create it, you will have to reconfigure Samba (and probably + your client machines) to use plaintext passwords. + . + See + /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html + from the samba-doc package for more details. + +Template: samba/run_mode +Type: select +__Choices: daemons, inetd +Default: daemons +_Description: How do you want to run Samba? + The Samba daemon smbd can run as a normal daemon or from inetd. Running as + a daemon is the recommended approach. + --- samba-3.3.0.orig/debian/samba-doc.doc-base.samba-by-example +++ samba-3.3.0/debian/samba-doc.doc-base.samba-by-example @@ -0,0 +1,9 @@ +Document: samba-by-example +Title: Samba-3 by Example +Author: John H. Terpstra +Abstract: Practical Exercises in Successful Samba Deployment +Section: Network/File Transfer + +Format: HTML +Index: /usr/share/doc/samba-doc/htmldocs/Samba3-ByExample/index.html +Files: /usr/share/doc/samba-doc/htmldocs/Samba3-ByExample/* --- samba-3.3.0.orig/debian/mksmbpasswd.8 +++ samba-3.3.0/debian/mksmbpasswd.8 @@ -0,0 +1,28 @@ +.TH MKSMBPASSWD 8 12-Apr-1998 +.SH NAME +mksmbpasswd \- formats a /etc/passwd entry for a smbpasswd file +.SH SYNOPSIS +mksmbpasswd cat /etc/passwd | /usr/sbin/mksmbpasswd > /etc/samba/smbpasswd +.SH DESCRIPTION +.B mksmbpasswd +should be used only once, the first time Samba is installed. The idea +is to ease accounts creation by transferring all user accounts from +/etc/passwd to /etc/samba/smbpasswd. +.PP +Please note that passwords are not transferred automatically from +/etc/passwd to the new /etc/samba/smbpasswd file. After running +.B mksmbpasswd +all accounts are disabled so the system administrator must run +smbpasswd for each account that needs to be enable. +.SH FILES +.TP +/etc/passwd +System wide accounts file +.TP +/etc/samba/smbpasswd +Encrypted passwords file for the Samba daemons +.SH SEE ALSO +samba(7), nmbd(8), smbd(8) +.SH AUTHOR +Eloy A. Paris (man page based on sendmailconfig's man page +by Robert Leslie ) --- samba-3.3.0.orig/debian/samba-common.lintian +++ samba-3.3.0/debian/samba-common.lintian @@ -0,0 +1,2 @@ +# This is on purpose to hide sensitive information +samba-common: non-standard-dir-perm var/log/samba/ 0750 != 0755 --- samba-3.3.0.orig/debian/samba-common.config +++ samba-3.3.0/debian/samba-common.config @@ -0,0 +1,108 @@ +#!/bin/sh -e + +# Source debconf library. +. /usr/share/debconf/confmodule + +# Function for grabbing a parameter from an smb.conf file +smbconf_retr() { + if [ -z "$1" ]; then + return + fi + + if [ -n "$2" ]; then + local FILE + FILE="$2" + fi + + if [ -z "$FILE" ]; then + return + fi + + sed -n -e" + s/^[[:space:]]*\[global\]/\[global\]/i + /^\[global\]/,/^[[:space:]]*\[/ { + s/^[[:space:]]*$1[[:space:]]*=[[:space:]]*//pi + }" $FILE \ + | tail -n 1 +} + +FILE=/etc/samba/smb.conf + +db_title "Samba Server" + +# We ask the question IFF the config contains complex options that could +# cause us to break the config. +if [ -f "$FILE" ] && grep -v dhcp.conf $FILE \ + | grep -qEi '\\$|^[[:space:]]*include[[:space:]]*=' +then + db_input high samba-common/do_debconf || true + db_go +else + db_set samba-common/do_debconf true +fi + +# If user doesn't want to use debconf to configure Samba the leave... +db_get samba-common/do_debconf || true +if [ "${RET}" = "false" ]; then + exit 0 +fi + +# User wants to use debconf, let's continue... + +# Preload any values from the existing smb.conf file +if [ -f $FILE ]; then + WORKGROUP=`smbconf_retr workgroup` + if [ "$WORKGROUP" ]; then + db_set samba-common/workgroup "$WORKGROUP" + fi + + ENCRYPT=`smbconf_retr "encrypt passwords"` + if [ "$ENCRYPT" ]; then + ENCRYPT=`echo $ENCRYPT | tr '[A-Z]' '[a-z]'` + if [ "$ENCRYPT" = "yes" ]; then + ENCRYPT=true + elif [ "$ENCRYPT" = "no" ]; then + ENCRYPT=false + fi + + db_set samba-common/encrypt_passwords "$ENCRYPT" + fi +fi + +# Get workgroup name +db_input medium samba-common/workgroup || true +db_go + +# Use encrypted passwords? +db_input medium samba-common/encrypt_passwords || true +db_go + +DHCPPRIORITY=medium +#if [ "$DEBCONF_RECONFIGURE" = 1 ] && [ -f /sbin/dhclient3 ] +#if [ -f /sbin/dhclient3 ] +#then +# DHCPPRIORITY=high +# TODO: see if we can detect that dhcp3-client is *going* to be installed, +# even if it isn't yet. +#elif dpkg-query -W --showformat='${Status}\n' dhcp3-client | grep ??? +# unknown ok not-installed ? +# DHCPPRIORITY=high +#fi + +FOUND=false +if [ -f $FILE ]; then + if grep -q 'include[[:space:]]*=[[:space:]]*/etc/samba/dhcp.conf' $FILE + then + FOUND=true + fi + db_set samba-common/dhcp $FOUND +fi + +# we only prompt in one of three cases: the file doesn't exist yet, it +# has the context we need to add our include line, or the include line +# is already present. +if [ ! -f $FILE ] || grep -q -i 'wins server' $FILE || [ "$FOUND" = "true" ]; +then + db_input $DHCPPRIORITY samba-common/dhcp || true + db_go +fi --- samba-3.3.0.orig/debian/smbclient.files +++ samba-3.3.0/debian/smbclient.files @@ -0,0 +1,20 @@ +usr/bin/findsmb +usr/bin/smbclient +usr/bin/smbget +usr/bin/smbtar +usr/bin/rpcclient +usr/bin/smbspool +usr/bin/smbtree +usr/bin/smbcacls +usr/bin/smbcquotas +usr/share/man/man1/findsmb.1 +usr/share/man/man1/smbclient.1 +usr/share/man/man1/smbget.1 +usr/share/man/man1/smbtar.1 +usr/share/man/man1/rpcclient.1 +usr/share/man/man5/smbgetrc.5 +usr/share/man/man8/smbspool.8 +usr/share/man/man1/smbcacls.1 +usr/share/man/man1/smbcquotas.1 +usr/share/man/man1/smbtree.1 +usr/lib/cups/backend/smb --- samba-3.3.0.orig/debian/samba.dirs +++ samba-3.3.0/debian/samba.dirs @@ -0,0 +1,12 @@ +usr/bin +usr/sbin +var/lib/samba/printers/COLOR +var/lib/samba/printers/IA64 +var/lib/samba/printers/W32ALPHA +var/lib/samba/printers/W32MIPS +var/lib/samba/printers/W32PPC +var/lib/samba/printers/W32X86 +var/lib/samba/printers/WIN40 +var/lib/samba/printers/x64 +var/spool/samba +etc/ufw/applications.d --- samba-3.3.0.orig/debian/samba.prerm +++ samba-3.3.0/debian/samba.prerm @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +case "$1" in + remove|upgrade|deconfigure) + update-alternatives --remove smbstatus /usr/bin/smbstatus.samba3 + ;; +esac + +#DEBHELPER# + +exit 0 --- samba-3.3.0.orig/debian/winbind.dirs +++ samba-3.3.0/debian/winbind.dirs @@ -0,0 +1 @@ +usr/lib/samba/nss_info --- samba-3.3.0.orig/debian/watch +++ samba-3.3.0/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://www.samba.org/samba/ftp/stable/samba-(\d[\w.]+).tar.gz --- samba-3.3.0.orig/debian/winbind.files +++ samba-3.3.0/debian/winbind.files @@ -0,0 +1,24 @@ +usr/sbin/winbindd +usr/bin/wbinfo +usr/bin/ntlm_auth +usr/lib/samba/idmap/rid.so +usr/lib/samba/idmap/ad.so +usr/lib/samba/idmap/adex.so +usr/lib/samba/idmap/hash.so +usr/share/man/man1/wbinfo.1 +usr/share/man/man1/ntlm_auth.1 +usr/share/man/man7/pam_winbind.7 +usr/share/man/man8/winbindd.8 +usr/share/man/man8/idmap_ad.8 +usr/share/man/man8/idmap_ldap.8 +usr/share/man/man8/idmap_nss.8 +usr/share/man/man8/idmap_rid.8 +usr/share/man/man8/idmap_tdb.8 +usr/share/man/man8/idmap_adex.8 +usr/share/man/man8/idmap_hash.8 +lib/security/pam_winbind.so +lib/libnss_winbind.so.2 +lib/libnss_wins.so.2 +usr/lib/samba/nss_info/*.so +usr/share/man/man8/idmap_rid.8 +usr/share/man/man8/idmap_ad.8 --- samba-3.3.0.orig/debian/winbind.postinst +++ samba-3.3.0/debian/winbind.postinst @@ -0,0 +1,16 @@ +#! /bin/sh + +set -e + +getent group winbindd_priv >/dev/null 2>&1 || + addgroup --system --force-badname --quiet winbindd_priv + +# move a tdb that should have been in /var/cache all along +if dpkg --compare-versions "$2" lt-nl 3.0.25b-2 \ + && [ -e /var/run/samba/idmap_cache.tdb ] \ + && ! [ -e /var/cache/samba/idmap_cache.tdb ] +then + mv /var/run/samba/idmap_cache.tdb /var/cache/samba/idmap_cache.tdb +fi + +#DEBHELPER# --- samba-3.3.0.orig/debian/wins2dns.awk +++ samba-3.3.0/debian/wins2dns.awk @@ -0,0 +1,38 @@ +#!/usr/bin/awk -f +# +# Date: Wed, 26 Aug 1998 10:37:39 -0600 (MDT) +# From: Jason Gunthorpe +# To: samba@packages.debian.org +# Subject: Nifty samba script +# +# Here is a really nifty script I just wrote for samba, it takes the wins +# database in /var/samba/wins and writes out two dns files for it. In this +# way network wide wins clients can get into the dns for use by unix +# machines. +# +# Perhaps this could be included in /usr/doc/examples or somesuch. +# + +BEGIN { + FS="#|\""; +FORWARD="/tmp/wins.hosts" +REVERSE="/tmp/wins.rev" +DOMAIN="ven.ra.rockwell.com" +} +$3 == "00" { + split($4,a," " ); + split(a[2],b,"."); + while (sub(" ","-",$2)); + $2=tolower($2); + if (b[1] == "255") + next; + if (length($2) >= 8) + print $2"\ta\t"a[2] > FORWARD + else + print $2"\t\ta\t"a[2] > FORWARD + print b[4]"."b[3]"\t\tptr\t"$2"."DOMAIN"." > REVERSE +} +END { + system("echo killall -HUP named"); +} + --- samba-3.3.0.orig/debian/libpam-smbpass.postinst +++ samba-3.3.0/debian/libpam-smbpass.postinst @@ -0,0 +1,7 @@ +#!/bin/sh + +set -e + +pam-auth-update --package + +#DEBHELPER# --- samba-3.3.0.orig/debian/samba.postinst +++ samba-3.3.0/debian/samba.postinst @@ -0,0 +1,143 @@ +#!/bin/sh -e +# +# Post-installation script for the Samba package for Debian GNU/Linux +# +# + +case "$1" in + configure) + update-alternatives --install /usr/bin/smbstatus smbstatus /usr/bin/smbstatus.samba3 10 + # continue below + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + exit 0 + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +# Handle debconf +. /usr/share/debconf/confmodule + +INITCONFFILE=/etc/default/samba + +# We generate several files during the postinst, and we don't want +# them to be readable only by root. +umask 022 + + +# Generate configuration file if it does not exist, using default values. +[ -r "${INITCONFFILE}" ] || { + echo Generating ${INITCONFFILE}... >&2 + cat >${INITCONFFILE} <<'EOFMAGICNUMBER1234' +# Defaults for samba initscript +# sourced by /etc/init.d/samba +# installed at /etc/default/samba by the maintainer scripts +# + +# +# This is a POSIX shell fragment +# + +# How should Samba (smbd) run? Possible values are "daemons" +# or "inetd". +RUN_MODE="" +EOFMAGICNUMBER1234 +} + +# ------------------------- Debconf questions start --------------------- + +# Run Samba as daemons or from inetd? +db_get samba/run_mode || true +RUN_MODE="${RET}" + +TMPFILE=/etc/default/samba.dpkg-tmp +sed -e "s/^[[:space:]]*RUN_MODE[[:space:]]*=.*/RUN_MODE=\"${RUN_MODE}\"/" \ + < ${INITCONFFILE} >${TMPFILE} +chmod a+r ${TMPFILE} +mv -f ${TMPFILE} ${INITCONFFILE} + +# Generate a smbpasswd file? +db_get samba/generate_smbpasswd || true +GENERATE_SMBPASSWD="${RET}" + +# Done with debconf now. +db_stop + +umask 066 + +# FIXME: disable if ldapsam support is enabled? +# FIXME: we don't want to pass these through the smbpasswd backend, +# some of the faking can cause us problems! +if [ "${GENERATE_SMBPASSWD}" = "true" -a ! -e /var/lib/samba/passdb.tdb -a ! -e /etc/samba/smbpasswd ]; then + getent passwd | /usr/sbin/mksmbpasswd > /etc/samba/smbpasswd + pdbedit -i smbpasswd -e tdbsam + rm /etc/samba/smbpasswd +fi + +umask 022 + +# ------------------------- Debconf questions end --------------------- + +# move a tdb that should have been in /var/lib all along +if dpkg --compare-versions "$2" lt-nl 3.0.25b-2 \ + && dpkg --compare-versions "$2" ge 3.0.23-1 \ + && [ -e /var/run/samba/share_info.tdb ] \ + && ! [ -e /var/lib/samba/share_info.tdb ] +then + mv /var/run/samba/share_info.tdb /var/lib/samba/share_info.tdb +fi + +if dpkg --compare-versions "$2" lt-nl 2:3.2.0-3 \ + && dpkg --compare-versions "$2" ge 3.0.24 \ + && [ -e /etc/samba/schannel_store.tdb ] \ + && ! [ -e /var/lib/samba/schannel_store.tdb ] +then + mv /etc/samba/schannel_store.tdb /var/lib/samba/schannel_store.tdb +fi + +# We want to add these entries to inetd.conf commented out. Otherwise +# UDP traffic could make inetd to start nmbd or smbd right during +# the configuration stage. +if [ -z "$2" ]; then + update-inetd --add "## netbios-ssn stream tcp nowait root /usr/sbin/tcpd /usr/sbin/smbd" +fi + +if [ "$RUN_MODE" = "daemons" ]; then + update-inetd --disable netbios-ssn +else + update-inetd --enable netbios-ssn +fi + +# add the sambashare group +if ! getent group sambashare > /dev/null 2>&1 +then + addgroup --system sambashare + # Only on Ubuntu, use the "admin" group as a template for the + # initial users for this group; Debian has no equivalent group, + # so leaving the sambashare group empty is the more secure default + if [ -x "`which lsb_release 2>/dev/null`" ] \ + && [ "`lsb_release -s -i`" = "Ubuntu" ] + then + OLDIFS="$IFS" + IFS="," + for USER in `getent group admin | cut -f4 -d:`; do + adduser "$USER" sambashare \ + || ! getent passwd "$USER" >/dev/null + done + IFS="$OLDIFS" + fi +fi + +if [ ! -e /var/lib/samba/usershares ] +then + install -d -m 1770 -g sambashare /var/lib/samba/usershares +fi + +#DEBHELPER# + +exit 0 --- samba-3.3.0.orig/debian/compat +++ samba-3.3.0/debian/compat @@ -0,0 +1 @@ +5 --- samba-3.3.0.orig/debian/source.lintian-overrides +++ samba-3.3.0/debian/source.lintian-overrides @@ -0,0 +1,6 @@ +# These are *not* configure-generated files +samba source: configure-generated-file-in-source debian/config.cache +# Those aren't even part of the diff.gz +samba source: configure-generated-file-in-source packaging/Debian/debian-sarge/config.cache +samba source: configure-generated-file-in-source packaging/Debian/debian-unstable/config.cache +samba source: configure-generated-file-in-source packaging/Debian/debian-woody/config.cache --- samba-3.3.0.orig/debian/libpam-smbpass.pam-config +++ samba-3.3.0/debian/libpam-smbpass.pam-config @@ -0,0 +1,14 @@ +Name: SMB password synchronization +Default: yes +Priority: 0 +Conflicts: smbpasswd-auth +Auth-Type: Additional +Auth-Initial: + optional pam_smbpass.so migrate +Auth-Final: + optional pam_smbpass.so migrate +Password-Type: Additional +Password-Initial: + optional pam_smbpass.so nullok use_authtok use_first_pass +Password-Final: + optional pam_smbpass.so nullok use_authtok use_first_pass --- samba-3.3.0.orig/debian/samba-doc-pdf.doc-base.samba-developers-guide +++ samba-3.3.0/debian/samba-doc-pdf.doc-base.samba-developers-guide @@ -0,0 +1,13 @@ +Document: samba-developers-guide-pdf +Title: SAMBA Developers Guide +Author: Jelmer R. Vernooij +Abstract: This book is a collection of documents that might be useful + for people developing samba or those interested in doing so. It's + nothing more than a collection of documents written by Samba developers + about the internals of various parts of Samba and the SMB protocol. + It's still (and will always be) incomplete. The most recent version of + this document can be found at http://devel.samba.org/. +Section: Network/File Transfer + +Format: PDF +Files: /usr/share/doc/samba-doc-pdf/Samba3-Developers-Guide.pdf.gz --- samba-3.3.0.orig/debian/smbwrapper.dirs +++ samba-3.3.0/debian/smbwrapper.dirs @@ -0,0 +1,2 @@ +usr/bin +usr/share/samba --- samba-3.3.0.orig/debian/samba-doc-pdf.doc-base.samba-by-example +++ samba-3.3.0/debian/samba-doc-pdf.doc-base.samba-by-example @@ -0,0 +1,8 @@ +Document: samba-by-example-pdf +Title: Samba-3 by Example +Author: John H. Terpstra +Abstract: Practical Exercises in Successful Samba Deployment +Section: Network/File Transfer + +Format: PDF +Files: /usr/share/doc/samba-doc-pdf/Samba3-ByExample.pdf.gz --- samba-3.3.0.orig/debian/samba-common.prerm +++ samba-3.3.0/debian/samba-common.prerm @@ -0,0 +1,20 @@ +#!/bin/sh + +set -e + +case "$1" in + remove|upgrade|deconfigure) + update-alternatives --remove nmblookup /usr/bin/nmblookup.samba3 + update-alternatives --remove net /usr/bin/net.samba3 + update-alternatives --remove testparm /usr/bin/testparm.samba3 + for N in valid.dat upcase.dat lowcase.dat + do + update-alternatives --remove $N /usr/share/samba/$N.samba3 + done + update-alternatives --remove samba-panic-action /usr/share/samba/panic-action.samba3 + ;; +esac + +#DEBHELPER# + +exit 0 --- samba-3.3.0.orig/debian/swat.files +++ samba-3.3.0/debian/swat.files @@ -0,0 +1,7 @@ +usr/sbin/swat +usr/share/samba/*.msg +usr/share/samba/swat/help/welcome.html +usr/share/samba/swat/images +usr/share/samba/swat/include +usr/share/samba/swat/lang +usr/share/man/man8/swat.8 --- samba-3.3.0.orig/debian/swat.postinst +++ samba-3.3.0/debian/swat.postinst @@ -0,0 +1,19 @@ +#!/bin/sh -e + +action="$1" +oldversion="$2" + +# Set up swat, turned off by default. +update-inetd --group OTHER --add \ + 'swat\t\tstream\ttcp\tnowait.400\troot\t/usr/sbin/tcpd\t/usr/sbin/swat' + +# Fix symlinks +for dir in manpages Samba3-ByExample Samba3-Developers-Guide Samba3-HOWTO; do + if [ ! -L /usr/share/samba/swat/help/$dir ] && \ + dpkg --compare-versions "$oldversion" lt-nl 3.0.20b-3; then + rm -rf /usr/share/samba/swat/help/$dir + ln -s ../../../doc/samba-doc/htmldocs/$dir /usr/share/samba/swat/help/$dir + fi +done + +#DEBHELPER# --- samba-3.3.0.orig/debian/control +++ samba-3.3.0/debian/control @@ -0,0 +1,212 @@ +Source: samba +Section: net +Priority: optional +Maintainer: Ubuntu Core Developers +XSBC-Original-Maintainer: Debian Samba Maintainers +Uploaders: Eloy A. Paris , Steve Langasek , Christian Perrier , Noèl Köthe , Adam Conrad , Jelmer Vernooij +Build-Depends: debhelper, libpam0g-dev, libreadline5-dev, libcups2-dev | libcupsys2-dev, libacl1-dev [alpha amd64 arm armeb armel hppa i386 ia64 lpia m32r m68k mips mipsel powerpc ppc64 s390 s390x sh3 sh3eb sh4 sh4eb sparc], libkrb5-dev, libldap2-dev, po-debconf, libpopt-dev, quilt, uuid-dev, libtalloc-dev (>= 1.2.0~git20080616), libkeyutils-dev [alpha amd64 arm armeb armel hppa i386 ia64 lpia m32r m68k mips mipsel powerpc ppc64 s390 s390x sh3 sh3eb sh4 sh4eb sparc] +Build-Conflicts: libfam-dev +Standards-Version: 3.8.0 +Homepage: http://www.samba.org + +Package: samba +Architecture: any +Depends: samba-common (= ${binary:Version}), logrotate, ${shlibs:Depends}, ${misc:Depends}, libpam-runtime (>= 0.76-13.1), libpam-modules, lsb-base (>= 3.2-13), procps, update-inetd, adduser +Suggests: openbsd-inetd | inet-superserver, smbldap-tools, ldb-tools, ufw +Replaces: samba-common (<= 2.0.5a-2) +Conflicts: samba4 (<< 4.0.0~alpha6-2) +Description: SMB/CIFS file, print, and login server for Unix + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file and printer sharing with + Microsoft Windows, OS X, and other Unix systems. Samba can also function + as an NT4-style domain controller, and can integrate with both NT4 domains + and Active Directory realms as a member server. + . + This package provides the components necessary to use Samba as a + stand-alone file and print server. For use in an NT4 domain or Active + Directory realm, you will also need the winbind package. + . + This package is not required for connecting to existing SMB/CIFS servers + (see smbclient) or for mounting remote filesystems (see smbfs). + +Package: samba-common +Architecture: any +Depends: libpam-modules, ucf, ${shlibs:Depends}, ${misc:Depends} +Replaces: samba (<< 3.0.20b-1) +Description: common files used by both the Samba server and client + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file and printer sharing with + Microsoft Windows, OS X, and other Unix systems. + . + This package contains files and programs needed by Samba when used as + either a client or a server. + +Package: samba-tools +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Conflicts: samba4, samba4-testsuite +Description: Samba testing utilities + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file and printer sharing with + Microsoft Windows, OS X, and other Unix systems. + . + This package contains extra command-line tools such as smbtorture for + performance-testing CIFS servers and clients. + +Package: smbclient +Architecture: any +Depends: samba-common (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} +Replaces: samba (<< 2.999+3.0.alpha21-4), smbget +Provides: samba-client +Suggests: smbfs +Conflicts: samba4-clients +Description: command-line SMB/CIFS clients for Unix + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file and printer sharing with + Microsoft Windows, OS X, and other Unix systems. + . + This package contains command-line utilities for accessing Microsoft + Windows and Samba servers, including smbclient, smbtar, and smbspool. + Utilities for mounting shares locally are found in the package smbfs. + +Package: swat +Architecture: any +Depends: samba (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}, openbsd-inetd | inet-superserver +Recommends: samba-doc (= ${source:Version}) +Description: Samba Web Administration Tool + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file and printer sharing with + Microsoft Windows, OS X, and other Unix systems. + . + This package allows you to administer a Samba server via a web browser. + . + SWAT is no longer actively maintained, and its default configuration is + not secure for use over an untrusted network. SWAT will also rewrite + smb.conf, rearranging the entries and deleting all comments as well as + include= and copy= options, so is not suitable for use in conjunction + with hand-edited smb.conf files or the default package-managed + configuration. + +Package: samba-doc +Section: doc +Architecture: all +Suggests: samba-doc-pdf +Depends: ${misc:Depends} +Description: Samba documentation + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file and printer sharing with + Microsoft Windows, OS X, and other Unix systems. + . + This package contains all the non-PDF documentation for the Samba + suite. See also samba-doc-pdf. + +Package: samba-doc-pdf +Section: doc +Architecture: all +Depends: ${misc:Depends} +Description: Samba documentation in PDF format + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file and printer sharing with + Microsoft Windows, OS X, and other Unix systems. + . + This package contains all the PDF documentation for the Samba suite. + +Package: smbfs +Section: otherosfs +Priority: optional +Architecture: any +Depends: netbase (>= 2.02), samba-common (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} +Suggests: smbclient +Replaces: smbfsx +Description: Samba file system utilities + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file and printer sharing with + Microsoft Windows, OS X, and other Unix systems. + . + This package provides utilities for mounting and unmounting cifs network + file systems. Other command-line utilities such as smbclient, smbtar + and smbspool are in the package smbclient. + +Package: libpam-smbpass +Section: admin +Priority: extra +Architecture: any +Depends: ${shlibs:Depends}, samba-common (= ${binary:Version}), ${misc:Depends}, + libpam-runtime (>= 1.0.1-2ubuntu1) +Suggests: samba +Description: pluggable authentication module for Samba + This is a module for PAM that enables a system administrator to migrate + user passwords from the Unix password database to the SMB password + database as used by Samba, and to subsequently keep the two databases in + sync. Unlike other solutions, it does this without needing users to log + in to Samba using cleartext passwords, or requiring them to change their + existing passwords. + +Package: libsmbclient +Section: libs +Priority: optional +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: shared library for communication with SMB/CIFS servers + This package provides a shared library that enables client applications + to talk to Microsoft Windows and Samba servers using the SMB/CIFS + protocol. + +Package: libsmbclient-dev +Section: libdevel +Priority: extra +Architecture: any +Depends: libsmbclient (= ${binary:Version}), ${misc:Depends} +Description: development files for libsmbclient + This package provides the development files (static library and headers) + required for building applications against libsmbclient, a library that + enables client applications to talk to Microsoft Windows and Samba servers + using the SMB/CIFS protocol. + +Package: winbind +Section: net +Priority: optional +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, samba-common (= ${binary:Version}), lsb-base (>= 3.0-6), adduser +Replaces: samba (<= 2.2.3-2) +Description: Samba nameservice integration server + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file and printer sharing with + Microsoft Windows, OS X, and other Unix systems. Samba can also function + as an NT4-style domain controller, and can integrate with both NT4 domains + and Active Directory realms as a member server. + . + This package provides winbindd, a daemon which integrates authentication + and directory service (user/group lookup) mechanisms from a Windows + domain on a Linux system. User/group lookups are configured via + /etc/nsswitch.conf, and authentication is integrated using the winbind + module for PAM. + +Package: samba-dbg +Section: devel +Priority: extra +Architecture: any +Depends: samba (= ${binary:Version}), ${misc:Depends} +Description: Samba debugging symbols + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file and printer sharing with + Microsoft Windows, OS X, and other Unix systems. + . + This package provides debugging information for the software in the + Samba suite. Install it to get a better backtrace in the event of a + crash. + +Package: libwbclient0 +Section: libs +Priority: optional +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Replaces: likewise-open (<< 4.1.0.2956) +Conflicts: likewise-open (<< 4.1.0.2956) +Description: Samba winbind client library + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file and printer sharing with + Microsoft Windows, OS X, and other Unix systems. + . + This package provides a library for client applications that interact + via the winbind pipe protocol with a Samba winbind server. --- samba-3.3.0.orig/debian/NEWS +++ samba-3.3.0/debian/NEWS @@ -0,0 +1,46 @@ +samba (3.0.27a-2) unstable; urgency=low + + * Weak authentication methods are disabled by default + + Beginning with this version, plaintext authentication is disabled for + clients and lanman authentication is disabled for both clients and + servers. Lanman authentication is not needed for Windows + NT/2000/XP/Vista, Mac OS X or Samba, but if you still have Windows + 95/98/ME clients (or servers) you may need to set lanman auth (or client + lanman auth) to yes in your smb.conf. + + The "lanman auth = no" setting will also cause lanman password hashes to + be deleted from smbpasswd and prevent new ones from being written, so + that these can't be subjected to brute-force password attacks. This + means that re-enabling lanman auth after it has been disabled is more + difficult; it is therefore advisable that you re-enable the option as + soon as possible if you think you will need to support Win9x clients. + + Client support for plaintext passwords is not needed for recent Windows + servers, and in fact this behavior change makes the Samba client behave + in a manner consistent with all Windows clients later than Windows 98. + However, if you need to connect to a Samba server that does not have + encrypted password support enabled, or to another server that does not + support NTLM authentication, you will need to set + "client plaintext auth = yes" and "client lanman auth = yes" in smb.conf. + + -- Steve Langasek Sat, 24 Nov 2007 00:23:37 -0800 + +samba (3.0.26a-2) unstable; urgency=low + + * Default printing system has changed from BSD to CUPS + + Previous versions of this package were configured to use BSD lpr as the + default printing system. With this version of Samba, the default has + been changed to CUPS for consistency with the current default printer + handling in the rest of the system. + + If you wish to continue using the BSD printing interface from Samba, you + will need to set "printing = bsd" manually in /etc/samba/smb.conf. If + you wish to use CUPS printing but have previously set any of the + "print command", "lpq command", or "lprm command" options in smb.conf, + you will want to remove these settings from your config. Otherwise, if + you have the cupsys package installed, Samba should begin to use it + automatically with no action on your part. + + -- Steve Langasek Wed, 14 Nov 2007 17:19:36 -0800 --- samba-3.3.0.orig/debian/smb.conf +++ samba-3.3.0/debian/smb.conf @@ -0,0 +1,336 @@ +# +# Sample configuration file for the Samba suite for Debian GNU/Linux. +# +# +# This is the main Samba configuration file. You should read the +# smb.conf(5) manual page in order to understand the options listed +# here. Samba has a huge number of configurable options most of which +# are not shown in this example +# +# Some options that are often worth tuning have been included as +# commented-out examples in this file. +# - When such options are commented with ";", the proposed setting +# differs from the default Samba behaviour +# - When commented with "#", the proposed setting is the default +# behaviour of Samba but the option is considered important +# enough to be mentioned here +# +# NOTE: Whenever you modify this file you should run the command +# "testparm" to check that you have not made any basic syntactic +# errors. +# A well-established practice is to name the original file +# "smb.conf.master" and create the "real" config file with +# testparm -s smb.conf.master >smb.conf +# This minimizes the size of the really used smb.conf file +# which, according to the Samba Team, impacts performance +# However, use this with caution if your smb.conf file contains nested +# "include" statements. See Debian bug #483187 for a case +# where using a master file is not a good idea. +# + +#======================= Global Settings ======================= + +[global] + +## Browsing/Identification ### + +# Change this to the workgroup/NT-domain name your Samba server will part of + workgroup = WORKGROUP + +# server string is the equivalent of the NT Description field + server string = %h server (Samba, Ubuntu) + +# Windows Internet Name Serving Support Section: +# WINS Support - Tells the NMBD component of Samba to enable its WINS Server +# wins support = no + +# WINS Server - Tells the NMBD components of Samba to be a WINS Client +# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both +; wins server = w.x.y.z + +# This will prevent nmbd to search for NetBIOS names through DNS. + dns proxy = no + +# What naming service and in what order should we use to resolve host names +# to IP addresses +; name resolve order = lmhosts host wins bcast + +#### Networking #### + +# The specific set of interfaces / networks to bind to +# This can be either the interface name or an IP address/netmask; +# interface names are normally preferred +; interfaces = 127.0.0.0/8 eth0 + +# Only bind to the named interfaces and/or networks; you must use the +# 'interfaces' option above to use this. +# It is recommended that you enable this feature if your Samba machine is +# not protected by a firewall or is a firewall itself. However, this +# option cannot handle dynamic or non-broadcast interfaces correctly. +; bind interfaces only = yes + + + +#### Debugging/Accounting #### + +# This tells Samba to use a separate log file for each machine +# that connects + log file = /var/log/samba/log.%m + +# Cap the size of the individual log files (in KiB). + max log size = 1000 + +# If you want Samba to only log through syslog then set the following +# parameter to 'yes'. +# syslog only = no + +# We want Samba to log a minimum amount of information to syslog. Everything +# should go to /var/log/samba/log.{smbd,nmbd} instead. If you want to log +# through syslog you should set the following parameter to something higher. + syslog = 0 + +# Do something sensible when Samba crashes: mail the admin a backtrace + panic action = /usr/share/samba/panic-action %d + + +####### Authentication ####### + +# "security = user" is always a good idea. This will require a Unix account +# in this server for every user accessing the server. See +# /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/ServerType.html +# in the samba-doc package for details. +# security = user + +# You may wish to use password encryption. See the section on +# 'encrypt passwords' in the smb.conf(5) manpage before enabling. + encrypt passwords = no + +# If you are using encrypted passwords, Samba will need to know what +# password database type you are using. + passdb backend = tdbsam + + obey pam restrictions = yes + +# This boolean parameter controls whether Samba attempts to sync the Unix +# password with the SMB password when the encrypted SMB password in the +# passdb is changed. + unix password sync = yes + +# For Unix password sync to work on a Debian GNU/Linux system, the following +# parameters must be set (thanks to Ian Kahan < for +# sending the correct chat script for the passwd program in Debian Sarge). + passwd program = /usr/bin/passwd %u + passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* . + +# This boolean controls whether PAM will be used for password changes +# when requested by an SMB client instead of the program listed in +# 'passwd program'. The default is 'no'. + pam password change = yes + +# This option controls how unsuccessful authentication attempts are mapped +# to anonymous connections +map to guest = bad user + +########## Domains ########### + +# Is this machine able to authenticate users. Both PDC and BDC +# must have this setting enabled. If you are the BDC you must +# change the 'domain master' setting to no +# +; domain logons = yes +# +# The following setting only takes effect if 'domain logons' is set +# It specifies the location of the user's profile directory +# from the client point of view) +# The following required a [profiles] share to be setup on the +# samba server (see below) +; logon path = \\%N\profiles\%U +# Another common choice is storing the profile in the user's home directory +# (this is Samba's default) +# logon path = \\%N\%U\profile + +# The following setting only takes effect if 'domain logons' is set +# It specifies the location of a user's home directory (from the client +# point of view) +; logon drive = H: +# logon home = \\%N\%U + +# The following setting only takes effect if 'domain logons' is set +# It specifies the script to run during logon. The script must be stored +# in the [netlogon] share +# NOTE: Must be store in 'DOS' file format convention +; logon script = logon.cmd + +# This allows Unix users to be created on the domain controller via the SAMR +# RPC pipe. The example command creates a user account with a disabled Unix +# password; please adapt to your needs +; add user script = /usr/sbin/adduser --quiet --disabled-password --gecos "" %u + +# This allows machine accounts to be created on the domain controller via the +# SAMR RPC pipe. +# The following assumes a "machines" group exists on the system +; add machine script = /usr/sbin/useradd -g machines -c "%u machine account" -d /var/lib/samba -s /bin/false %u + +# This allows Unix groups to be created on the domain controller via the SAMR +# RPC pipe. +; add group script = /usr/sbin/addgroup --force-badname %g + +########## Printing ########## + +# If you want to automatically load your printer list rather +# than setting them up individually then you'll need this +# load printers = yes + +# lpr(ng) printing. You may wish to override the location of the +# printcap file +; printing = bsd +; printcap name = /etc/printcap + +# CUPS printing. See also the cupsaddsmb(8) manpage in the +# cupsys-client package. +; printing = cups +; printcap name = cups + +############ Misc ############ + +# Using the following line enables you to customise your configuration +# on a per machine basis. The %m gets replaced with the netbios name +# of the machine that is connecting +; include = /home/samba/etc/smb.conf.%m + +# Most people will find that this option gives better performance. +# See smb.conf(5) and /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/speed.html +# for details +# You may want to add the following on a Linux system: +# SO_RCVBUF=8192 SO_SNDBUF=8192 +# socket options = TCP_NODELAY + +# The following parameter is useful only if you have the linpopup package +# installed. The samba maintainer and the linpopup maintainer are +# working to ease installation and configuration of linpopup and samba. +; message command = /bin/sh -c '/usr/bin/linpopup "%f" "%m" %s; rm %s' & + +# Domain Master specifies Samba to be the Domain Master Browser. If this +# machine will be configured as a BDC (a secondary logon server), you +# must set this to 'no'; otherwise, the default behavior is recommended. +# domain master = auto + +# Some defaults for winbind (make sure you're not using the ranges +# for something else.) +; idmap uid = 10000-20000 +; idmap gid = 10000-20000 +; template shell = /bin/bash + +# The following was the default behaviour in sarge, +# but samba upstream reverted the default because it might induce +# performance issues in large organizations. +# See Debian bug #368251 for some of the consequences of *not* +# having this setting and smb.conf(5) for details. +; winbind enum groups = yes +; winbind enum users = yes + +# Setup usershare options to enable non-root users to share folders +# with the net usershare command. + +# Maximum number of usershare. 0 (default) means that usershare is disabled. +; usershare max shares = 100 + +# Allow users who've been granted usershare privileges to create +# public shares, not just authenticated ones + usershare allow guests = yes + +#======================= Share Definitions ======================= + +# Un-comment the following (and tweak the other settings below to suit) +# to enable the default home directory shares. This will share each +# user's home directory as \\server\username +;[homes] +; comment = Home Directories +; browseable = no + +# By default, the home directories are exported read-only. Change the +# next parameter to 'no' if you want to be able to write to them. +; read only = yes + +# File creation mask is set to 0700 for security reasons. If you want to +# create files with group=rw permissions, set next parameter to 0775. +; create mask = 0700 + +# Directory creation mask is set to 0700 for security reasons. If you want to +# create dirs. with group=rw permissions, set next parameter to 0775. +; directory mask = 0700 + +# By default, \\server\username shares can be connected to by anyone +# with access to the samba server. Un-comment the following parameter +# to make sure that only "username" can connect to \\server\username +# This might need tweaking when using external authentication schemes +; valid users = %S + +# Un-comment the following and create the netlogon directory for Domain Logons +# (you need to configure Samba to act as a domain controller too.) +;[netlogon] +; comment = Network Logon Service +; path = /home/samba/netlogon +; guest ok = yes +; read only = yes +; share modes = no + +# Un-comment the following and create the profiles directory to store +# users profiles (see the "logon path" option above) +# (you need to configure Samba to act as a domain controller too.) +# The path below should be writable by all users so that their +# profile directory may be created the first time they log on +;[profiles] +; comment = Users profiles +; path = /home/samba/profiles +; guest ok = no +; browseable = no +; create mask = 0600 +; directory mask = 0700 + +[printers] + comment = All Printers + browseable = no + path = /var/spool/samba + printable = yes + guest ok = no + read only = yes + create mask = 0700 + +# Windows clients look for this share name as a source of downloadable +# printer drivers +[print$] + comment = Printer Drivers + path = /var/lib/samba/printers + browseable = yes + read only = yes + guest ok = no +# Uncomment to allow remote administration of Windows print drivers. +# You may need to replace 'lpadmin' with the name of the group your +# admin users are members of. +# Please note that you also need to set appropriate Unix permissions +# to the drivers directory for these users to have write rights in it +; write list = root, @lpadmin + +# A sample share for sharing your CD-ROM with others. +;[cdrom] +; comment = Samba server's CD-ROM +; read only = yes +; locking = no +; path = /cdrom +; guest ok = yes + +# The next two parameters show how to auto-mount a CD-ROM when the +# cdrom share is accesed. For this to work /etc/fstab must contain +# an entry like this: +# +# /dev/scd0 /cdrom iso9660 defaults,noauto,ro,user 0 0 +# +# The CD-ROM gets unmounted automatically after the connection to the +# +# If you don't want to use auto-mounting/unmounting make sure the CD +# is mounted on /cdrom +# +; preexec = /bin/mount /cdrom +; postexec = /bin/umount /cdrom + --- samba-3.3.0.orig/debian/smbfs.links +++ samba-3.3.0/debian/smbfs.links @@ -0,0 +1,5 @@ +sbin/mount.smbfs usr/bin/smbmount +sbin/umount.cifs usr/bin/smbumount +usr/share/man/man8/umount.cifs.8 usr/share/man/man8/smbumount.8 +usr/share/man/man8/mount.cifs.8 usr/share/man/man8/smbmount.8 +usr/share/man/man8/mount.cifs.8 usr/share/man/man8/mount.smbfs.8 --- samba-3.3.0.orig/debian/samba-common.templates +++ samba-3.3.0/debian/samba-common.templates @@ -0,0 +1,49 @@ +Template: samba-common/dhcp +Type: boolean +Default: false +_Description: Modify smb.conf to use WINS settings from DHCP? + If your computer gets IP address information from a DHCP server on the + network, the DHCP server may also provide information about WINS servers + ("NetBIOS name servers") present on the network. This requires a + change to your smb.conf file so that DHCP-provided WINS settings will + automatically be read from /etc/samba/dhcp.conf. + . + The dhcp3-client package must be installed to take advantage of this + feature. + +Template: samba-common/do_debconf +Type: boolean +Default: true +_Description: Configure smb.conf automatically? + The rest of the configuration of Samba deals with questions that + affect parameters in /etc/samba/smb.conf, which is the file used to + configure the Samba programs (nmbd and smbd). Your current smb.conf + contains an "include" line or an option that spans multiple lines, + which could confuse the automated configuration process and require + you to edit your smb.conf by hand to get it working again. + . + If you do not choose this option, you will have to handle + any configuration changes yourself, and will not be able to take + advantage of periodic configuration enhancements. + +Template: samba-common/workgroup +Type: string +Default: WORKGROUP +_Description: Workgroup/Domain Name: + Please specify the workgroup for this system. This setting controls which + workgroup the system will appear in when used as a server, the default + workgroup to be used when browsing with various frontends, and the domain + name used with the "security=domain" setting. + +Template: samba-common/encrypt_passwords +Type: boolean +Default: true +_Description: Use password encryption? + All recent Windows clients communicate with SMB/CIFS servers using encrypted + passwords. If you want to use clear text passwords you will need to change + a parameter in your Windows registry. + . + Enabling this option is highly recommended as support for plain text + passwords is no longer maintained in Microsoft Windows products. If + you do, make sure you have a valid /etc/samba/smbpasswd file and that + you set passwords in there for each user using the smbpasswd command. --- samba-3.3.0.orig/debian/config.cache +++ samba-3.3.0/debian/config.cache @@ -0,0 +1,215 @@ +# +# 22 August 2001 Steve Langasek +# +# This file is a shell script that caches the results of configure +# tests run on this system so they can be shared between configure +# scripts and configure runs. It is not useful on other systems. +# If it contains results you don't want to keep, you may remove or edit it. +# +# By default, configure uses ./config.cache as the cache file, +# creating it if it does not exist already. You can give configure +# the --cache-file=FILE option to use a different cache file; that is +# what configure does when it calls configure scripts in +# subdirectories, so they share the cache. +# Giving --cache-file=/dev/null disables caching, for debugging configure. +# config.status only pays attention to the cache file if you give it the +# --recheck option to rerun configure. +# +# +# This config.cache file contains a list of acceptable autoconf +# values which can be used in compiling Samba for Debian woody/sid. +# +# Autoconf sorts options alphabetically in its output. This file +# groups options logically. + + +# Load any architecture-specific settings +if [ -n "$DEB_HOST_GNU_TYPE" \ + -a -f ../debian/config.cache.${DEB_HOST_GNU_TYPE} ]; then + . ../debian/config.cache.${DEB_HOST_GNU_TYPE} +fi + + +# These are present in 2.2 kernels, but not in 2.0... + +samba_cv_have_setresuid=${samba_cv_have_setresuid=yes} +samba_cv_have_setresgid=${samba_cv_have_setresgid=yes} +samba_cv_USE_SETRESUID=${samba_cv_USE_SETRESUID=yes} + + +# Various basic libc/compiler stuff that it's blindingly obvious that +# Linux supports (now watch me get bitten for saying that) + +ac_cv_c_const=${ac_cv_c_const=yes} +ac_cv_c_inline=${ac_cv_c_inline=inline} +samba_cv_volatile=${samba_cv_volatile=yes} +ac_cv_dirent_d_off=${ac_cv_dirent_d_off=yes} +ac_cv_func_bzero=${ac_cv_func_bzero=yes} +ac_cv_func_chmod=${ac_cv_func_chmod=yes} +ac_cv_func_chown=${ac_cv_func_chown=yes} +ac_cv_func_chroot=${ac_cv_func_chroot=yes} +ac_cv_func_connect=${ac_cv_func_connect=yes} +ac_cv_func_dup2=${ac_cv_func_dup2=yes} +ac_cv_func_execl=${ac_cv_func_execl=yes} +ac_cv_func_fchmod=${ac_cv_func_fchmod=yes} +ac_cv_func_fchown=${ac_cv_func_fchown=yes} +ac_cv_func_fstat=${ac_cv_func_fstat=yes} +ac_cv_func_fsync=${ac_cv_func_fsync=yes} +ac_cv_func_ftruncate=${ac_cv_func_ftruncate=yes} +ac_cv_func_getcwd=${ac_cv_func_getcwd=yes} +ac_cv_func_getgrent=${ac_cv_func_getgrent=yes} +ac_cv_func_getgrnam=${ac_cv_func_getgrnam=yes} +ac_cv_func_getspnam=${ac_cv_func_getspnam=yes} +ac_cv_func_glob=${ac_cv_func_glob=yes} +ac_cv_func_grantpt=${ac_cv_func_grantpt=yes} +ac_cv_func_initgroups=${ac_cv_func_initgroups=yes} +ac_cv_func_llseek=${ac_cv_func_llseek=yes} +ac_cv_func_memcmp_clean=${ac_cv_func_memcmp_clean=yes} +ac_cv_func_memmove=${ac_cv_func_memmove=yes} +ac_cv_func_memset=${ac_cv_func_memset=yes} +ac_cv_func_mktime=${ac_cv_func_mktime=yes} +ac_cv_func_pipe=${ac_cv_func_pipe=yes} +ac_cv_func_poll=${ac_cv_func_poll=yes} +ac_cv_func_pread=${ac_cv_func_pread=yes} +ac_cv_func_pwrite=${ac_cv_func_pwrite=yes} +ac_cv_func_rand=${ac_cv_func_rand=yes} +ac_cv_func_random=${ac_cv_func_random=yes} +ac_cv_func_readlink=${ac_cv_func_readlink=yes} +ac_cv_func_rename=${ac_cv_func_rename=yes} +ac_cv_func_select=${ac_cv_func_select=yes} +ac_cv_func_setenv=${ac_cv_func_setenv=yes} +ac_cv_func_setgroups=${ac_cv_func_setgroups=yes} +ac_cv_func_setsid=${ac_cv_func_setsid=yes} +ac_cv_func_sigaction=${ac_cv_func_sigaction=yes} +ac_cv_func_sigblock=${ac_cv_func_sigblock=yes} +ac_cv_func_sigprocmask=${ac_cv_func_sigprocmask=yes} +ac_cv_func_snprintf=${ac_cv_func_snprintf=yes} +ac_cv_func_srand=${ac_cv_func_srand=yes} +ac_cv_func_srandom=${ac_cv_func_srandom=yes} +ac_cv_func_strcasecmp=${ac_cv_func_strcasecmp=yes} +ac_cv_func_strchr=${ac_cv_func_strchr=yes} +ac_cv_func_strdup=${ac_cv_func_strdup=yes} +ac_cv_func_strerror=${ac_cv_func_strerror=yes} +ac_cv_func_strftime=${ac_cv_func_strftime=yes} +ac_cv_func_strpbrk=${ac_cv_func_strpbrk=yes} +ac_cv_func_strtoul=${ac_cv_func_strtoul=yes} +ac_cv_func_symlink=${ac_cv_func_symlink=yes} +ac_cv_func_usleep=${ac_cv_func_usleep=yes} +ac_cv_func_utime=${ac_cv_func_utime=yes} +ac_cv_func_utimes=${ac_cv_func_utimes=yes} +ac_cv_func_vsnprintf=${ac_cv_func_vsnprintf=yes} +ac_cv_func_waitpid=${ac_cv_func_waitpid=yes} +ac_cv_type_ino_t=${ac_cv_type_ino_t=yes} +ac_cv_type_mode_t=${ac_cv_type_mode_t=yes} +ac_cv_type_pid_t=${ac_cv_type_pid_t=yes} +ac_cv_type_size_t=${ac_cv_type_size_t=yes} +ac_cv_type_uid_t=${ac_cv_type_uid_t=yes} +samba_cv_socklen_t=${samba_cv_socklen_t=yes} + +# Yes, we know Linux supports fcntl locking. Just ignore +# any errors caused by building on an NFS mount. +samba_cv_HAVE_FCNTL_LOCK=${samba_cv_HAVE_FCNTL_LOCK=yes} + +# Force the method to detect interfaces, which might fail if there are +# no interfaces configured at build time (bug #382429). +samba_cv_HAVE_IFACE_IFCONF=${samba_cv_HAVE_IFACE_IFCONF=yes} + +# smbwrapper doesn't work because the glibc maintainers don't want +# to support transparent userland VFS. We might as well preempt +# any checks for shadowed symbols that are only useful for smbwrapper. + +ac_cv_func___chdir=${ac_cv_func___chdir=no} +ac_cv_func__chdir=${ac_cv_func__chdir=no} +ac_cv_func___close=${ac_cv_func___close=no} +ac_cv_func__close=${ac_cv_func__close=no} +ac_cv_func___closedir=${ac_cv_func___closedir=no} +ac_cv_func__closedir=${ac_cv_func__closedir=no} +ac_cv_func___dup=${ac_cv_func___dup=no} +ac_cv_func__dup=${ac_cv_func__dup=no} +ac_cv_func___dup2=${ac_cv_func___dup2=no} +ac_cv_func__dup2=${ac_cv_func__dup2=no} +ac_cv_func___fchdir=${ac_cv_func___fchdir=no} +ac_cv_func__fchdir=${ac_cv_func__fchdir=no} +ac_cv_func___fcntl=${ac_cv_func___fcntl=no} +ac_cv_func__fcntl=${ac_cv_func__fcntl=no} +ac_cv_func___fork=${ac_cv_func___fork=no} +ac_cv_func__fork=${ac_cv_func__fork=no} +ac_cv_func___fstat=${ac_cv_func___fstat=no} +ac_cv_func__fstat=${ac_cv_func__fstat=no} +ac_cv_func___fstat64=${ac_cv_func___fstat64=no} +ac_cv_func__fstat64=${ac_cv_func__fstat64=no} +ac_cv_func___fxstat=${ac_cv_func___fxstat=no} +ac_cv_func___getcwd=${ac_cv_func___getcwd=no} +ac_cv_func__getcwd=${ac_cv_func__getcwd=no} +ac_cv_func___getdents=${ac_cv_func___getdents=no} +ac_cv_func__getdents=${ac_cv_func__getdents=no} +ac_cv_func___llseek=${ac_cv_func___llseek=no} +ac_cv_func___sys_llseek=${ac_cv_func___sys_llseek=no} +ac_cv_func__llseek=${ac_cv_func__llseek=no} +ac_cv_func___lseek=${ac_cv_func___lseek=no} +ac_cv_func__lseek=${ac_cv_func__lseek=no} +ac_cv_func___lstat=${ac_cv_func___lstat=no} +ac_cv_func__lstat=${ac_cv_func__lstat=no} +ac_cv_func___lstat64=${ac_cv_func___lstat64=no} +ac_cv_func__lstat64=${ac_cv_func__lstat64=no} +ac_cv_func___lxstat=${ac_cv_func___lxstat=no} +ac_cv_func___open=${ac_cv_func___open=no} +ac_cv_func__open=${ac_cv_func__open=no} +ac_cv_func___open64=${ac_cv_func___open64=no} +ac_cv_func__open64=${ac_cv_func__open64=no} +ac_cv_func___opendir=${ac_cv_func___opendir=no} +ac_cv_func__opendir=${ac_cv_func__opendir=no} +ac_cv_func___pread=${ac_cv_func___pread=no} +ac_cv_func__pread=${ac_cv_func__pread=no} +ac_cv_func___pread64=${ac_cv_func___pread64=no} +ac_cv_func__pread64=${ac_cv_func__pread64=no} +ac_cv_func___pwrite=${ac_cv_func___pwrite=no} +ac_cv_func__pwrite=${ac_cv_func__pwrite=no} +ac_cv_func___pwrite64=${ac_cv_func___pwrite64=no} +ac_cv_func__pwrite64=${ac_cv_func__pwrite64=no} +ac_cv_func___read=${ac_cv_func___read=no} +ac_cv_func__read=${ac_cv_func__read=no} +ac_cv_func___readdir=${ac_cv_func___readdir=no} +ac_cv_func__readdir=${ac_cv_func__readdir=no} +ac_cv_func___readdir64=${ac_cv_func___readdir64=no} +ac_cv_func__readdir64=${ac_cv_func__readdir64=no} +ac_cv_func___seekdir=${ac_cv_func___seekdir=no} +ac_cv_func__seekdir=${ac_cv_func__seekdir=no} +ac_cv_func___stat=${ac_cv_func___stat=no} +ac_cv_func__stat=${ac_cv_func__stat=no} +ac_cv_func___stat64=${ac_cv_func___stat64=no} +ac_cv_func__stat64=${ac_cv_func__stat64=no} +ac_cv_func___telldir=${ac_cv_func___telldir=no} +ac_cv_func__telldir=${ac_cv_func__telldir=no} +ac_cv_func___write=${ac_cv_func___write=no} +ac_cv_func__write=${ac_cv_func__write=no} +ac_cv_func___xstat=${ac_cv_func___xstat=no} + + + +# Miscellaneous stuff that isn't, and shouldn't be, available +# in Debian. Those interested in building debs for other systems may +# need to remove some of these defines. + +ac_cv_func_bigcrypt=${ac_cv_func_bigcrypt=no} +ac_cv_func_crypt16=${ac_cv_func_crypt16=no} +ac_cv_func_getauthuid=${ac_cv_func_getauthuid=no} +ac_cv_func_getprpwnam=${ac_cv_func_getprpwnam=no} +ac_cv_func_getpwanam=${ac_cv_func_getpwanam=no} +ac_cv_func_putprpwnam=${ac_cv_func_putprpwnam=no} +ac_cv_func_rdchk=${ac_cv_func_rdchk=no} +ac_cv_func_set_auth_parameters=${ac_cv_func_set_auth_parameters=no} +ac_cv_func_setgidx=${ac_cv_func_setgidx=no} +ac_cv_func_setluid=${ac_cv_func_setluid=no} +ac_cv_func_setpriv=${ac_cv_func_setpriv=no} +ac_cv_func_setuidx=${ac_cv_func_setuidx=no} +ac_cv_lib_sec_bigcrypt=${ac_cv_lib_sec_bigcrypt=no} +ac_cv_lib_sec_getprpwnam=${ac_cv_lib_sec_getprpwnam=no} +ac_cv_lib_sec_getspnam=${ac_cv_lib_sec_getspnam=no} +ac_cv_lib_sec_putprpwnam=${ac_cv_lib_sec_putprpwnam=no} +ac_cv_lib_sec_set_auth_parameters=${ac_cv_lib_sec_set_auth_parameters=no} +ac_cv_lib_security_bigcrypt=${ac_cv_lib_security_bigcrypt=no} +ac_cv_lib_security_getprpwnam=${ac_cv_lib_security_getprpwnam=no} +ac_cv_lib_security_getspnam=${ac_cv_lib_security_getspnam=no} +ac_cv_lib_security_putprpwnam=${ac_cv_lib_security_putprpwnam=no} +ac_cv_lib_security_set_auth_parameters=${ac_cv_lib_security_set_auth_parameters=no} --- samba-3.3.0.orig/debian/gdbcommands +++ samba-3.3.0/debian/gdbcommands @@ -0,0 +1,2 @@ +bt +quit --- samba-3.3.0.orig/debian/samba-doc.doc-base.samba-using +++ samba-3.3.0/debian/samba-doc.doc-base.samba-using @@ -0,0 +1,15 @@ +Document: samba-using +Title: Using Samba, 2nd Edition +Author: Jay Ts, Robert Eckstein, and David Collier-Brown +Abstract: This is a book about Samba, a software suite that networks + Windows, Unix, and other operating systems using Windows' native + networking protocol. Samba allows Unix servers to offer Windows + networking services by matching the filesystem and networking models + of Unix to those of Windows. Samba acts as a bridge between the two + systems, connecting the corresponding parts of their architectures and + providing a translation wherever necessary. +Section: Network/File Transfer + +Format: HTML +Index: /usr/share/doc/samba-doc/htmldocs/using_samba/toc.html +Files: /usr/share/doc/samba-doc/htmldocs/using_samba/* --- samba-3.3.0.orig/debian/mount.smbfs +++ samba-3.3.0/debian/mount.smbfs @@ -0,0 +1,115 @@ +#!/bin/bash +# Debian mount.smbfs compatibility wrapper +# Copyright 2007, Steve Langasek +# Licensed under the GNU General Public License, version 2. See the +# file /usr/share/common-licenses/GPL or . + +# This script accepts all documented mount options for mount.smbfs, +# passing through those that are also recognized by mount.cifs, +# converting those that are not recognized but map to available cifs +# options, and warning about the use of options for which no equivalent +# exists. + +# known bugs: quoted spaces in arguments are not passed intact + +set -e + +# reverse the order of username and password in a "username" parameter, +# taking care to leave any "%password" bit intact + +reverse_username_workgroup() { + local workgroup password username + + username="$1" + case "$username" in + *%*) password="${username#*%}" + username="${username%%%*}" + ;; + *) ;; + esac + case "$username" in + */*) workgroup="${username#*/}" + username="${username%%/*}" + ;; + *) ;; + esac + if [ -n "$workgroup" ]; then + username="$workgroup\\$username" + fi + if [ -n "$password" ]; then + username="$username%$password" + fi + echo "$username" +} + + +# parse out the mount options that have been specified using -o, and if +# necessary, convert them for use by mount.cifs + +parse_mount_options () { + local OLD_IFS IFS options option username + OLD_IFS="$IFS" + IFS="," + options="" + workgroup="" + password="" + + for option in $@; do + case "$option" in + sockopt=* | scope=* | codepage=* | ttl=* | debug=*) + echo "Warning: ignoring deprecated smbfs option '$option'" >&2 + ;; + + krb) + options="$options${options:+,}sec=krb5" + ;; + + guest) + echo "Warning: mapping 'guest' to 'guest,sec=none'" >&2 + options="$options${options:+,}guest,sec=none" + ;; + + # username and workgroup are reversed in username= arguments, + # so need to be parsed out + username=*/*) + IFS="$OLD_IFS" + username="${option#username=}" + username="$(reverse_username_workgroup "$username")" + IFS="," + options="$options${options:+,}username=$username" + ;; + + *) + options="$options${options:+,}$option" + ;; + esac + done + IFS="$OLD_IFS" + echo $options +} + +args=() +while [ "$#" -gt 0 ]; do + case "$1" in + -o*) + arg=${1#-o} + shift + if [ -z "$arg" ]; then + arg=$1 + shift + fi + arg="$(parse_mount_options "$arg")" + if [ -n "$arg" ]; then + args=("${args[@]}" "-o" "$arg") + fi + ;; + *) + args=("${args[@]}" "$1") + shift + ;; + esac +done + +USER="$(reverse_username_workgroup "$USER")" + +exec /sbin/mount.cifs "${args[@]}" --- samba-3.3.0.orig/debian/samba.pamd +++ samba-3.3.0/debian/samba.pamd @@ -0,0 +1,3 @@ +@include common-auth +@include common-account +@include common-session --- samba-3.3.0.orig/debian/smbwrapper.docs +++ samba-3.3.0/debian/smbwrapper.docs @@ -0,0 +1,2 @@ +source/smbwrapper/README +source/smbwrapper/PORTING --- samba-3.3.0.orig/debian/samba-doc-pdf.docs +++ samba-3.3.0/debian/samba-doc-pdf.docs @@ -0,0 +1,3 @@ +docs/Samba3-ByExample.pdf +docs/Samba3-Developers-Guide.pdf +docs/Samba3-HOWTO.pdf --- samba-3.3.0.orig/debian/libpam-smbpass.logcheck.ignore.server +++ samba-3.3.0/debian/libpam-smbpass.logcheck.ignore.server @@ -0,0 +1 @@ +^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ PAM_smbpass\[[[:digit:]]+\]: username \[[^]]+\] obtained$ --- samba-3.3.0.orig/debian/swat.links +++ samba-3.3.0/debian/swat.links @@ -0,0 +1,5 @@ +usr/share/doc/samba-doc/htmldocs/manpages usr/share/samba/swat/help/manpages +usr/share/doc/samba-doc/htmldocs/Samba3-ByExample usr/share/samba/swat/help/Samba3-ByExample +usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide usr/share/samba/swat/help/Samba3-Developers-Guide +usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO usr/share/samba/swat/help/Samba3-HOWTO +usr/share/doc/samba-doc/htmldocs/using_samba usr/share/samba/swat/help/using_samba --- samba-3.3.0.orig/debian/libsmbclient-dev.files +++ samba-3.3.0/debian/libsmbclient-dev.files @@ -0,0 +1,3 @@ +usr/lib/libsmbclient.a +usr/lib/libsmbclient.so +usr/include/libsmbclient.h --- samba-3.3.0.orig/debian/smbfs.TODO +++ samba-3.3.0/debian/smbfs.TODO @@ -0,0 +1,7 @@ +- There is concern about the setuid status of binaries in this package. + The audit status of the concerned binaries is unclear. We should + figure out whether it is reasonable to provide the flexible user mount + capabilities or whether a more restricted setup is better, at least by + default. + +Last change: 2006-01-25 --- samba-3.3.0.orig/debian/libpam-smbpass.examples +++ samba-3.3.0/debian/libpam-smbpass.examples @@ -0,0 +1,5 @@ +source/pam_smbpass/samples/README +source/pam_smbpass/samples/kdc-pdc +source/pam_smbpass/samples/password-mature +source/pam_smbpass/samples/password-migration +source/pam_smbpass/samples/password-sync --- samba-3.3.0.orig/debian/libpam-smbpass.files +++ samba-3.3.0/debian/libpam-smbpass.files @@ -0,0 +1,2 @@ +lib/security/pam_smbpass.so +usr/share/pam-configs/smbpasswd-migrate --- samba-3.3.0.orig/debian/samba.lintian +++ samba-3.3.0/debian/samba.lintian @@ -0,0 +1 @@ +samba: non-standard-dir-perm var/spool/samba/ 1777 != 0755 --- samba-3.3.0.orig/debian/libwbclient0.files +++ samba-3.3.0/debian/libwbclient0.files @@ -0,0 +1 @@ +usr/lib/libwbclient.so.0 --- samba-3.3.0.orig/debian/smb.conf.gutsy +++ samba-3.3.0/debian/smb.conf.gutsy @@ -0,0 +1,309 @@ +# +# Sample configuration file for the Samba suite for Debian GNU/Linux. +# +# +# This is the main Samba configuration file. You should read the +# smb.conf(5) manual page in order to understand the options listed +# here. Samba has a huge number of configurable options most of which +# are not shown in this example +# +# Any line which starts with a ; (semi-colon) or a # (hash) +# is a comment and is ignored. In this example we will use a # +# for commentary and a ; for parts of the config file that you +# may wish to enable +# +# NOTE: Whenever you modify this file you should run the command +# "testparm" to check that you have not made any basic syntactic +# errors. +# + +#======================= Global Settings ======================= + +[global] + +## Browsing/Identification ### + +# Change this to the workgroup/NT-domain name your Samba server will part of + workgroup = WORKGROUP + +# server string is the equivalent of the NT Description field + server string = %h server (Samba, Ubuntu) + +# Windows Internet Name Serving Support Section: +# WINS Support - Tells the NMBD component of Samba to enable its WINS Server +; wins support = no + +# WINS Server - Tells the NMBD components of Samba to be a WINS Client +# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both +; wins server = w.x.y.z + +# This will prevent nmbd to search for NetBIOS names through DNS. + dns proxy = no + +# What naming service and in what order should we use to resolve host names +# to IP addresses +; name resolve order = lmhosts host wins bcast + +#### Networking #### + +# The specific set of interfaces / networks to bind to +# This can be either the interface name or an IP address/netmask; +# interface names are normally preferred +; interfaces = 127.0.0.0/8 eth0 + +# Only bind to the named interfaces and/or networks; you must use the +# 'interfaces' option above to use this. +# It is recommended that you enable this feature if your Samba machine is +# not protected by a firewall or is a firewall itself. However, this +# option cannot handle dynamic or non-broadcast interfaces correctly. +; bind interfaces only = true + + + +#### Debugging/Accounting #### + +# This tells Samba to use a separate log file for each machine +# that connects + log file = /var/log/samba/log.%m + +# Put a capping on the size of the log files (in Kb). + max log size = 1000 + +# If you want Samba to only log through syslog then set the following +# parameter to 'yes'. +; syslog only = no + +# We want Samba to log a minimum amount of information to syslog. Everything +# should go to /var/log/samba/log.{smbd,nmbd} instead. If you want to log +# through syslog you should set the following parameter to something higher. + syslog = 0 + +# Do something sensible when Samba crashes: mail the admin a backtrace + panic action = /usr/share/samba/panic-action %d + + +####### Authentication ####### + +# "security = user" is always a good idea. This will require a Unix account +# in this server for every user accessing the server. See +# /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/ServerType.html +# in the samba-doc package for details. +; security = user + +# You may wish to use password encryption. See the section on +# 'encrypt passwords' in the smb.conf(5) manpage before enabling. + encrypt passwords = no + +# If you are using encrypted passwords, Samba will need to know what +# password database type you are using. + passdb backend = tdbsam + + obey pam restrictions = yes + +; guest account = nobody + invalid users = root + +# This boolean parameter controls whether Samba attempts to sync the Unix +# password with the SMB password when the encrypted SMB password in the +# passdb is changed. +; unix password sync = no + +# For Unix password sync to work on a Debian GNU/Linux system, the following +# parameters must be set (thanks to Ian Kahan < for +# sending the correct chat script for the passwd program in Debian Sarge). + passwd program = /usr/bin/passwd %u + passwd chat = *Enter\snew\sUNIX\spassword:* %n\n *Retype\snew\sUNIX\spassword:* %n\n *passwd:*password\supdated\ssuccessfully* . + +# This boolean controls whether PAM will be used for password changes +# when requested by an SMB client instead of the program listed in +# 'passwd program'. The default is 'no'. +; pam password change = no + +########## Domains ########### + +# Is this machine able to authenticate users. Both PDC and BDC +# must have this setting enabled. If you are the BDC you must +# change the 'domain master' setting to no +# +; domain logons = yes +# +# The following setting only takes effect if 'domain logons' is set +# It specifies the location of the user's profile directory +# from the client point of view) +# The following required a [profiles] share to be setup on the +# samba server (see below) +; logon path = \\%N\profiles\%U +# Another common choice is storing the profile in the user's home directory +; logon path = \\%N\%U\profile + +# The following setting only takes effect if 'domain logons' is set +# It specifies the location of a user's home directory (from the client +# point of view) +; logon drive = H: +; logon home = \\%N\%U + +# The following setting only takes effect if 'domain logons' is set +# It specifies the script to run during logon. The script must be stored +# in the [netlogon] share +# NOTE: Must be store in 'DOS' file format convention +; logon script = logon.cmd + +# This allows Unix users to be created on the domain controller via the SAMR +# RPC pipe. The example command creates a user account with a disabled Unix +# password; please adapt to your needs +; add user script = /usr/sbin/adduser --quiet --disabled-password --gecos "" %u + +########## Printing ########## + +# If you want to automatically load your printer list rather +# than setting them up individually then you'll need this +; load printers = yes + +# lpr(ng) printing. You may wish to override the location of the +# printcap file +; printing = bsd +; printcap name = /etc/printcap + +# CUPS printing. See also the cupsaddsmb(8) manpage in the +# cupsys-client package. +; printing = cups +; printcap name = cups + +# When using [print$], root is implicitly a 'printer admin', but you can +# also give this right to other users to add drivers and set printer +# properties +; printer admin = @lpadmin + + +############ Misc ############ + +# Using the following line enables you to customise your configuration +# on a per machine basis. The %m gets replaced with the netbios name +# of the machine that is connecting +; include = /home/samba/etc/smb.conf.%m + +# Most people will find that this option gives better performance. +# See smb.conf(5) and /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/speed.html +# for details +# You may want to add the following on a Linux system: +# SO_RCVBUF=8192 SO_SNDBUF=8192 + socket options = TCP_NODELAY + +# The following parameter is useful only if you have the linpopup package +# installed. The samba maintainer and the linpopup maintainer are +# working to ease installation and configuration of linpopup and samba. +; message command = /bin/sh -c '/usr/bin/linpopup "%f" "%m" %s; rm %s' & + +# Domain Master specifies Samba to be the Domain Master Browser. If this +# machine will be configured as a BDC (a secondary logon server), you +# must set this to 'no'; otherwise, the default behavior is recommended. +; domain master = auto + +# Some defaults for winbind (make sure you're not using the ranges +# for something else.) +; idmap uid = 10000-20000 +; idmap gid = 10000-20000 +; template shell = /bin/bash +; +; The following was the default behaviour in sarge +; but samba upstream reverted the default because it might induce +; performance issues in large organizations +; See #368251 for some of the consequences of *not* having +; this setting and smb.conf(5) for all details +; +; winbind enum groups = yes +; winbind enum users = yes + +#======================= Share Definitions ======================= + +# Un-comment the following (and tweak the other settings below to suit) +# to enable the default home directory shares. This will share each +# user's home directory as \\server\username +;[homes] +; comment = Home Directories +; browseable = no + +# By default, \\server\username shares can be connected to by anyone +# with access to the samba server. Un-comment the following parameter +# to make sure that only "username" can connect to \\server\username +# This might need tweaking when using external authentication schemes +; valid users = %S + +# By default, the home directories are exported read-only. Change next +# parameter to 'yes' if you want to be able to write to them. +; writable = no + +# File creation mask is set to 0700 for security reasons. If you want to +# create files with group=rw permissions, set next parameter to 0775. +; create mask = 0700 + +# Directory creation mask is set to 0700 for security reasons. If you want to +# create dirs. with group=rw permissions, set next parameter to 0775. +; directory mask = 0700 + +# Un-comment the following and create the netlogon directory for Domain Logons +# (you need to configure Samba to act as a domain controller too.) +;[netlogon] +; comment = Network Logon Service +; path = /home/samba/netlogon +; guest ok = yes +; writable = no +; share modes = no + +# Un-comment the following and create the profiles directory to store +# users profiles (see the "logon path" option above) +# (you need to configure Samba to act as a domain controller too.) +# The path below should be writable by all users so that their +# profile directory may be created the first time they log on +;[profiles] +; comment = Users profiles +; path = /home/samba/profiles +; guest ok = no +; browseable = no +; create mask = 0600 +; directory mask = 0700 + +[printers] + comment = All Printers + browseable = no + path = /var/spool/samba + printable = yes + public = no + writable = no + create mode = 0700 + +# Windows clients look for this share name as a source of downloadable +# printer drivers +[print$] + comment = Printer Drivers + path = /var/lib/samba/printers + browseable = yes + read only = yes + guest ok = no +# Uncomment to allow remote administration of Windows print drivers. +# Replace 'ntadmin' with the name of the group your admin users are +# members of. +; write list = root, @ntadmin + +# A sample share for sharing your CD-ROM with others. +;[cdrom] +; comment = Samba server's CD-ROM +; writable = no +; locking = no +; path = /cdrom +; public = yes + +# The next two parameters show how to auto-mount a CD-ROM when the +# cdrom share is accesed. For this to work /etc/fstab must contain +# an entry like this: +# +# /dev/scd0 /cdrom iso9660 defaults,noauto,ro,user 0 0 +# +# The CD-ROM gets unmounted automatically after the connection to the +# +# If you don't want to use auto-mounting/unmounting make sure the CD +# is mounted on /cdrom +# +; preexec = /bin/mount /cdrom +; postexec = /bin/umount /cdrom + --- samba-3.3.0.orig/debian/libsmbclient.files +++ samba-3.3.0/debian/libsmbclient.files @@ -0,0 +1,2 @@ +usr/lib/libsmbclient.so.0 +usr/share/man/man7/libsmbclient.7 --- samba-3.3.0.orig/debian/samba.postrm +++ samba-3.3.0/debian/samba.postrm @@ -0,0 +1,23 @@ +#!/bin/sh -e + +if [ "$1" = purge ]; then + rm -rf /var/cache/samba/browse.dat + rm -rf /var/lib/samba/printers/ + rm -rf /var/log/samba/log.nmbd* /var/log/samba/log.smbd* /var/log/samba/cores/ + rm -rf /var/run/samba/nmbd.pid /var/run/samba/smbd.pid /var/run/samba/*.tdb + + # Remove init.d configuration file + echo Removing configuration file /etc/default/samba... >&2 + rm -f /etc/default/samba + + # Remove NetBIOS entries from /etc/inetd.conf + if [ -x /usr/sbin/update-inetd ]; then + update-inetd --remove netbios-ssn + fi +else + # Not purging, do not remove NetBIOS entries from /etc/inetd.conf + update-inetd --disable netbios-ssn + +fi + +#DEBHELPER# --- samba-3.3.0.orig/debian/libsmbclient.symbols +++ samba-3.3.0/debian/libsmbclient.symbols @@ -0,0 +1,162 @@ +libsmbclient.so.0 libsmbclient #MINVER# + smbc_chmod@Base 3.0.24 + smbc_close@Base 3.0.24 + smbc_closedir@Base 3.0.24 + smbc_creat@Base 3.0.24 + smbc_fgetxattr@Base 3.0.24 + smbc_flistxattr@Base 3.0.24 + smbc_free_context@Base 3.0.24 + smbc_fremovexattr@Base 3.0.24 + smbc_fsetxattr@Base 3.0.24 + smbc_fstat@Base 3.0.24 + smbc_ftruncate@Base 2:3.2.0 + smbc_getDebug@Base 2:3.2.0 + smbc_getFunctionAddCachedServer@Base 2:3.2.0 + smbc_getFunctionAuthData@Base 2:3.2.0 + smbc_getFunctionAuthDataWithContext@Base 2:3.2.0 + smbc_getFunctionCheckServer@Base 2:3.2.0 + smbc_getFunctionChmod@Base 2:3.2.0 + smbc_getFunctionClose@Base 2:3.2.0 + smbc_getFunctionClosedir@Base 2:3.2.0 + smbc_getFunctionCreat@Base 2:3.2.0 + smbc_getFunctionFstat@Base 2:3.2.0 + smbc_getFunctionFstatdir@Base 2:3.2.0 + smbc_getFunctionFtruncate@Base 2:3.2.0 + smbc_getFunctionGetCachedServer@Base 2:3.2.0 + smbc_getFunctionGetdents@Base 2:3.2.0 + smbc_getFunctionGetxattr@Base 2:3.2.0 + smbc_getFunctionListPrintJobs@Base 2:3.2.0 + smbc_getFunctionListxattr@Base 2:3.2.0 + smbc_getFunctionLseek@Base 2:3.2.0 + smbc_getFunctionLseekdir@Base 2:3.2.0 + smbc_getFunctionMkdir@Base 2:3.2.0 + smbc_getFunctionOpen@Base 2:3.2.0 + smbc_getFunctionOpenPrintJob@Base 2:3.2.0 + smbc_getFunctionOpendir@Base 2:3.2.0 + smbc_getFunctionPrintFile@Base 2:3.2.0 + smbc_getFunctionPurgeCachedServers@Base 2:3.2.0 + smbc_getFunctionRead@Base 2:3.2.0 + smbc_getFunctionReaddir@Base 2:3.2.0 + smbc_getFunctionRemoveCachedServer@Base 2:3.2.0 + smbc_getFunctionRemoveUnusedServer@Base 2:3.2.0 + smbc_getFunctionRemovexattr@Base 2:3.2.0 + smbc_getFunctionRename@Base 2:3.2.0 + smbc_getFunctionRmdir@Base 2:3.2.0 + smbc_getFunctionSetxattr@Base 2:3.2.0 + smbc_getFunctionStat@Base 2:3.2.0 + smbc_getFunctionTelldir@Base 2:3.2.0 + smbc_getFunctionUnlink@Base 2:3.2.0 + smbc_getFunctionUnlinkPrintJob@Base 2:3.2.0 + smbc_getFunctionUtimes@Base 2:3.2.0 + smbc_getFunctionWrite@Base 2:3.2.0 + smbc_getNetbiosName@Base 2:3.2.0 + smbc_getOptionBrowseMaxLmbCount@Base 2:3.2.0 + smbc_getOptionDebugToStderr@Base 2:3.2.0 + smbc_getOptionFallbackAfterKerberos@Base 2:3.2.0 + smbc_getOptionFullTimeNames@Base 2:3.2.0 + smbc_getOptionNoAutoAnonymousLogin@Base 2:3.2.0 + smbc_getOptionOneSharePerServer@Base 2:3.2.0 + smbc_getOptionOpenShareMode@Base 2:3.2.0 + smbc_getOptionSmbEncryptionLevel@Base 2:3.2.0 + smbc_getOptionUrlEncodeReaddirEntries@Base 2:3.2.0 + smbc_getOptionUseKerberos@Base 2:3.2.0 + smbc_getOptionUserData@Base 2:3.2.0 + smbc_getServerCacheData@Base 2:3.2.0 + smbc_getTimeout@Base 2:3.2.0 + smbc_getUser@Base 2:3.2.0 + smbc_getWorkgroup@Base 2:3.2.0 + smbc_getdents@Base 3.0.24 + smbc_getxattr@Base 3.0.24 + smbc_init@Base 3.0.24 + smbc_init_context@Base 3.0.24 + smbc_lgetxattr@Base 3.0.24 + smbc_list_print_jobs@Base 3.0.24 + smbc_listxattr@Base 3.0.24 + smbc_llistxattr@Base 3.0.24 + smbc_lremovexattr@Base 3.0.24 + smbc_lseek@Base 3.0.24 + smbc_lseekdir@Base 3.0.24 + smbc_lsetxattr@Base 3.0.24 + smbc_mkdir@Base 3.0.24 + smbc_new_context@Base 3.0.24 + smbc_open@Base 3.0.24 + smbc_open_print_job@Base 3.0.24 + smbc_opendir@Base 3.0.24 + smbc_option_get@Base 3.0.24 + smbc_option_set@Base 3.0.24 + smbc_print_file@Base 3.0.24 + smbc_read@Base 3.0.24 + smbc_readdir@Base 3.0.24 + smbc_removexattr@Base 3.0.24 + smbc_rename@Base 3.0.24 + smbc_rmdir@Base 3.0.24 + smbc_setDebug@Base 2:3.2.0 + smbc_setFunctionAddCachedServer@Base 2:3.2.0 + smbc_setFunctionAuthData@Base 2:3.2.0 + smbc_setFunctionAuthDataWithContext@Base 2:3.2.0 + smbc_setFunctionCheckServer@Base 2:3.2.0 + smbc_setFunctionChmod@Base 2:3.2.0 + smbc_setFunctionClose@Base 2:3.2.0 + smbc_setFunctionClosedir@Base 2:3.2.0 + smbc_setFunctionCreat@Base 2:3.2.0 + smbc_setFunctionFstat@Base 2:3.2.0 + smbc_setFunctionFstatdir@Base 2:3.2.0 + smbc_setFunctionFtruncate@Base 2:3.2.0 + smbc_setFunctionGetCachedServer@Base 2:3.2.0 + smbc_setFunctionGetdents@Base 2:3.2.0 + smbc_setFunctionGetxattr@Base 2:3.2.0 + smbc_setFunctionListPrintJobs@Base 2:3.2.0 + smbc_setFunctionListxattr@Base 2:3.2.0 + smbc_setFunctionLseek@Base 2:3.2.0 + smbc_setFunctionLseekdir@Base 2:3.2.0 + smbc_setFunctionMkdir@Base 2:3.2.0 + smbc_setFunctionOpen@Base 2:3.2.0 + smbc_setFunctionOpenPrintJob@Base 2:3.2.0 + smbc_setFunctionOpendir@Base 2:3.2.0 + smbc_setFunctionPrintFile@Base 2:3.2.0 + smbc_setFunctionPurgeCachedServers@Base 2:3.2.0 + smbc_setFunctionRead@Base 2:3.2.0 + smbc_setFunctionReaddir@Base 2:3.2.0 + smbc_setFunctionRemoveCachedServer@Base 2:3.2.0 + smbc_setFunctionRemoveUnusedServer@Base 2:3.2.0 + smbc_setFunctionRemovexattr@Base 2:3.2.0 + smbc_setFunctionRename@Base 2:3.2.0 + smbc_setFunctionRmdir@Base 2:3.2.0 + smbc_setFunctionSetxattr@Base 2:3.2.0 + smbc_setFunctionStat@Base 2:3.2.0 + smbc_setFunctionTelldir@Base 2:3.2.0 + smbc_setFunctionUnlink@Base 2:3.2.0 + smbc_setFunctionUnlinkPrintJob@Base 2:3.2.0 + smbc_setFunctionUtimes@Base 2:3.2.0 + smbc_setFunctionWrite@Base 2:3.2.0 + smbc_setNetbiosName@Base 2:3.2.0 + smbc_setOptionBrowseMaxLmbCount@Base 2:3.2.0 + smbc_setOptionDebugToStderr@Base 2:3.2.0 + smbc_setOptionFallbackAfterKerberos@Base 2:3.2.0 + smbc_setOptionFullTimeNames@Base 2:3.2.0 + smbc_setOptionNoAutoAnonymousLogin@Base 2:3.2.0 + smbc_setOptionOneSharePerServer@Base 2:3.2.0 + smbc_setOptionOpenShareMode@Base 2:3.2.0 + smbc_setOptionSmbEncryptionLevel@Base 2:3.2.0 + smbc_setOptionUrlEncodeReaddirEntries@Base 2:3.2.0 + smbc_setOptionUseKerberos@Base 2:3.2.0 + smbc_setOptionUserData@Base 2:3.2.0 + smbc_setServerCacheData@Base 2:3.2.0 + smbc_setTimeout@Base 2:3.2.0 + smbc_setUser@Base 2:3.2.0 + smbc_setWorkgroup@Base 2:3.2.0 + smbc_set_context@Base 3.0.24 + smbc_setxattr@Base 3.0.24 + smbc_stat@Base 3.0.24 + smbc_telldir@Base 3.0.24 + smbc_unlink@Base 3.0.24 + smbc_unlink_print_job@Base 3.0.24 + smbc_utime@Base 3.0.24 + smbc_utimes@Base 3.0.24 + smbc_version@Base 3.0.24 + smbc_write@Base 3.0.24 + smbc_getOptionCaseSensitive@Base 2:3.3.0 + smbc_setOptionCaseSensitive@Base 2:3.3.0 + smbc_set_credentials@Base 2:3.3.0 + smbc_urldecode@Base 2:3.3.0 + smbc_urlencode@Base 2:3.3.0 --- samba-3.3.0.orig/debian/libpam-smbpass.docs +++ samba-3.3.0/debian/libpam-smbpass.docs @@ -0,0 +1,2 @@ +source/pam_smbpass/README +source/pam_smbpass/TODO --- samba-3.3.0.orig/debian/README.build +++ samba-3.3.0/debian/README.build @@ -0,0 +1,397 @@ +From: Steve Langasek +To: "Eloy A. Paris" +Date: Thu, 23 Aug 2001 21:20:05 -0500 (CDT) +Subject: Re: autobuilder failure on arm for samba-2.2.1a-3 +In-Reply-To: <20010823100906.A1092@antenas> +Message-ID: +MIME-Version: 1.0 +Content-Type: TEXT/PLAIN; charset=US-ASCII + +On Thu, 23 Aug 2001, Eloy A. Paris wrote: + +> On Wed, Aug 22, 2001 at 03:01:01PM -0500, Steve Langasek wrote: + +> > Hmm. Maybe the thing to do is to focus on getting config.cache (not log, +> > cache) support into the package. Issues like this are frequent enough with +> > Samba, and the configure tests add enough time to the build process, that I +> > think there'd be much benefit in being able to step past a lot of these. + +> Uhhmmm... I don't know, I guess I don't like much the idea of +> maintaining a config.cache. It looks like extra work plus a +> compilation process that is "synthetic" or atificial. What happens if +> the Samba Team adds a new test, or modifies the configure script, will +> the config.cache pick those up? + +> In any case, you are the expert, so if you think that's the way to go, +> and the burden far exceeds the problems we have right now I say let's +> go for it. I am not well versed on autoconf and the configure process, +> that's all... + +Well, I'll attach my work to the bottom of this message and let you judge it +for yourself. + +The config.cache I'm trying to generate here is not equivalent to what +a configure script outputs. The only values I'm including are those which 1) +are no-brainers on any glibc-based platform, 2) are questions we need to force +a particular value for regardless of the kernel being built against, or 3) are +questions about specific bizarre features of proprietary Unices that we'll +always get an answer of 'no' to. + +I've removed all of the config.cache variables related to headers, or to +checks for particular libraries; I think it's pretty safe to assert that glibc +provides basic C functions like select(), setenv(), and waitpid() on all our +build targets, but I think it's less safe to assert that they'll always be +provided by particular header files. + +So the config.cache won't automatically be updated with answers to new +configure tests, but it also doesn't need to in order to be useful. There's +really only a handful of variables in there that we /need/ in order to +guarantee correctly-built packages, and if you want to leave out everything +else, that's perfectly ok too. Everything from the fifth stanza on down is +just a build-time speed-up for some of the slower architectures. Well, it +also has the fringe benefit that the packages will FAIL to build if someone +tries rebuilding for a really bizarre (non-Linux, non-glibc) architecture. I +see that as a plus :), you may disagree, but in any case my next trick would +be to add a global variable developers can set to bypass the provided +config.cache. + + +It is a little artificial, but the whole point of .debs is to be able to build +binaries in a controlled environment. Right now, we don't really have control +over what happens in the autobuilders. We have even /less/ control over what +happens in a stable release: it's been two weeks now since I built binaries +for bug #94380, and they haven't been uploaded to security.d.o yet. I'm +guessing they won't be uploaded until Wichert is back from vacation, either -- +which is fine, but it would be nice if we didn't have to worry about +mis-builds by the security team, or about putting the security team to extra +trouble after the fact to get packages fixed. + +With a pre-loaded config.cache, we can ensure that bugs of this kind don't +happen in woody. We can take the arm autobuilder problem into our own hands, +and not have to worry about quirkiness in the build environment. We can even +close bug #109773, since we no longer have to worry about detecting the +setuid() routines. + + +So to me, it definitely seems worth it. But you're the maintainer, and I +won't ask you to put anything in the package that you're not comfortable with. + + +> By the way, I think I remember someone was able to build 2.2.x succesfully on +> the ARM. If this is the case, could it be that there's something weird +> with Phillip's setup? + +It could be. There are arm packages for 2.2.1a-1, so at /some/ point the +autobuilder was able to pass the locking test. + + +> P.S. How did you know about the ARM build problems? I don't see any +> bugs about this... + +, follow the links for samba... The +exact reference for the arm autobuilder is at +. + +Regards, +Steve Langasek +postmodern programmer + + +diff -uNrw samba-2.2.1a-bak/debian/changelog samba-2.2.1a/debian/changelog +--- samba-2.2.1a-bak/debian/changelog Thu Aug 23 10:27:54 2001 ++++ samba-2.2.1a/debian/changelog Thu Aug 23 10:28:08 2001 +@@ -1,3 +1,12 @@ ++samba (2.2.1a-4.1) unstable; urgency=low ++ ++ * Fix up the build system to avoid needing to run configure as root to ++ answer questions we already know the answers to. ++ * In the process, make surprising progress towards being able to ++ cross-compile the samba packages. ++ ++ -- Steve Langasek Wed, 22 Aug 2001 23:35:00 -0500 ++ + samba (2.2.1a-4) unstable; urgency=low + + * Fixed typo in smbmount's mount page. +diff -uNrw samba-2.2.1a-bak/debian/config.cache samba-2.2.1a/debian/config.cache +--- samba-2.2.1a-bak/debian/config.cache Wed Dec 31 18:00:00 1969 ++++ samba-2.2.1a/debian/config.cache Thu Aug 23 10:28:08 2001 +@@ -0,0 +1,231 @@ ++# ++# 22 August 2001 Steve Langasek ++# ++# This file is a shell script that caches the results of configure ++# tests run on this system so they can be shared between configure ++# scripts and configure runs. It is not useful on other systems. ++# If it contains results you don't want to keep, you may remove or edit it. ++# ++# By default, configure uses ./config.cache as the cache file, ++# creating it if it does not exist already. You can give configure ++# the --cache-file=FILE option to use a different cache file; that is ++# what configure does when it calls configure scripts in ++# subdirectories, so they share the cache. ++# Giving --cache-file=/dev/null disables caching, for debugging configure. ++# config.status only pays attention to the cache file if you give it the ++# --recheck option to rerun configure. ++# ++# ++# This config.cache file contains a list of acceptable autoconf ++# values which can be used in compiling Samba for Debian woody/sid. ++# ++# Autoconf sorts options alphabetically in its output. This file ++# groups options logically. ++ ++ ++# Load any architecture-specific settings ++if [ -n "$DEB_HOST_GNU_TYPE" \ ++ -a -f ../debian/config.cache.${DEB_HOST_GNU_TYPE} ]; then ++ . ../debian/config.cache.${DEB_HOST_GNU_TYPE} ++fi ++ ++ ++# This is at the top because it's most in need of regular tweaking. ++# These are options which are supported on 2.4 kernels, but not on 2.2 ++# kernels. ++ ++samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=${samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=no} ++samba_cv_HAVE_KERNEL_CHANGE_NOTIFY=${samba_cv_HAVE_KERNEL_CHANGE_NOTIFY=no} ++samba_cv_HAVE_KERNEL_SHARE_MODES=${samba_cv_HAVE_KERNEL_SHARE_MODES=no} ++ ++ ++# These are present in 2.2 kernels, but not in 2.0... ++ ++samba_cv_have_setresuid=${samba_cv_have_setresuid=yes} ++samba_cv_have_setresgid=${samba_cv_have_setresgid=yes} ++samba_cv_USE_SETRESUID=${samba_cv_USE_SETRESUID=yes} ++ ++ ++# POSIX ACL support not present in Linux 2.2; not allowed in the ++# Debian packages, even if present on the build machine. ++ ++ac_cv_header_sys_acl_h=${ac_cv_header_sys_acl_h=no} ++ ++ ++# Various basic libc/compiler stuff that it's blindingly obvious that ++# Linux supports (now watch me get bitten for saying that) ++ ++ac_cv_c_const=${ac_cv_c_const=yes} ++ac_cv_c_inline=${ac_cv_c_inline=inline} ++samba_cv_volatile=${samba_cv_volatile=yes} ++ac_cv_dirent_d_off=${ac_cv_dirent_d_off=yes} ++ac_cv_func_bzero=${ac_cv_func_bzero=yes} ++ac_cv_func_chmod=${ac_cv_func_chmod=yes} ++ac_cv_func_chown=${ac_cv_func_chown=yes} ++ac_cv_func_chroot=${ac_cv_func_chroot=yes} ++ac_cv_func_connect=${ac_cv_func_connect=yes} ++ac_cv_func_dup2=${ac_cv_func_dup2=yes} ++ac_cv_func_execl=${ac_cv_func_execl=yes} ++ac_cv_func_fchmod=${ac_cv_func_fchmod=yes} ++ac_cv_func_fchown=${ac_cv_func_fchown=yes} ++ac_cv_func_fstat=${ac_cv_func_fstat=yes} ++ac_cv_func_fsync=${ac_cv_func_fsync=yes} ++ac_cv_func_ftruncate=${ac_cv_func_ftruncate=yes} ++ac_cv_func_getcwd=${ac_cv_func_getcwd=yes} ++ac_cv_func_getgrent=${ac_cv_func_getgrent=yes} ++ac_cv_func_getgrnam=${ac_cv_func_getgrnam=yes} ++ac_cv_func_getspnam=${ac_cv_func_getspnam=yes} ++ac_cv_func_glob=${ac_cv_func_glob=yes} ++ac_cv_func_grantpt=${ac_cv_func_grantpt=yes} ++ac_cv_func_initgroups=${ac_cv_func_initgroups=yes} ++ac_cv_func_llseek=${ac_cv_func_llseek=yes} ++ac_cv_func_memcmp_clean=${ac_cv_func_memcmp_clean=yes} ++ac_cv_func_memmove=${ac_cv_func_memmove=yes} ++ac_cv_func_memset=${ac_cv_func_memset=yes} ++ac_cv_func_mktime=${ac_cv_func_mktime=yes} ++ac_cv_func_pipe=${ac_cv_func_pipe=yes} ++ac_cv_func_poll=${ac_cv_func_poll=yes} ++ac_cv_func_pread=${ac_cv_func_pread=yes} ++ac_cv_func_pwrite=${ac_cv_func_pwrite=yes} ++ac_cv_func_rand=${ac_cv_func_rand=yes} ++ac_cv_func_random=${ac_cv_func_random=yes} ++ac_cv_func_readlink=${ac_cv_func_readlink=yes} ++ac_cv_func_rename=${ac_cv_func_rename=yes} ++ac_cv_func_select=${ac_cv_func_select=yes} ++ac_cv_func_setenv=${ac_cv_func_setenv=yes} ++ac_cv_func_setgroups=${ac_cv_func_setgroups=yes} ++ac_cv_func_setsid=${ac_cv_func_setsid=yes} ++ac_cv_func_sigaction=${ac_cv_func_sigaction=yes} ++ac_cv_func_sigblock=${ac_cv_func_sigblock=yes} ++ac_cv_func_sigprocmask=${ac_cv_func_sigprocmask=yes} ++ac_cv_func_snprintf=${ac_cv_func_snprintf=yes} ++ac_cv_func_srand=${ac_cv_func_srand=yes} ++ac_cv_func_srandom=${ac_cv_func_srandom=yes} ++ac_cv_func_strcasecmp=${ac_cv_func_strcasecmp=yes} ++ac_cv_func_strchr=${ac_cv_func_strchr=yes} ++ac_cv_func_strdup=${ac_cv_func_strdup=yes} ++ac_cv_func_strerror=${ac_cv_func_strerror=yes} ++ac_cv_func_strftime=${ac_cv_func_strftime=yes} ++ac_cv_func_strpbrk=${ac_cv_func_strpbrk=yes} ++ac_cv_func_strtoul=${ac_cv_func_strtoul=yes} ++ac_cv_func_symlink=${ac_cv_func_symlink=yes} ++ac_cv_func_usleep=${ac_cv_func_usleep=yes} ++ac_cv_func_utime=${ac_cv_func_utime=yes} ++ac_cv_func_utimes=${ac_cv_func_utimes=yes} ++ac_cv_func_vsnprintf=${ac_cv_func_vsnprintf=yes} ++ac_cv_func_waitpid=${ac_cv_func_waitpid=yes} ++ac_cv_type_ino_t=${ac_cv_type_ino_t=yes} ++ac_cv_type_mode_t=${ac_cv_type_mode_t=yes} ++ac_cv_type_pid_t=${ac_cv_type_pid_t=yes} ++ac_cv_type_size_t=${ac_cv_type_size_t=yes} ++ac_cv_type_uid_t=${ac_cv_type_uid_t=yes} ++samba_cv_socklen_t=${samba_cv_socklen_t=yes} ++ ++# Yes, we know Linux supports fcntl locking. Just ignore ++# any errors caused by building on an NFS mount. ++samba_cv_HAVE_FCNTL_LOCK=${samba_cv_HAVE_FCNTL_LOCK=yes} ++ ++ ++# smbwrapper doesn't work because the glibc maintainers don't want ++# to support transparent userland VFS. We might as well preempt ++# any checks for shadowed symbols that are only useful for smbwrapper. ++ ++ac_cv_func___acl=${ac_cv_func___acl=no} ++ac_cv_func__acl=${ac_cv_func__acl=no} ++ac_cv_func___chdir=${ac_cv_func___chdir=no} ++ac_cv_func__chdir=${ac_cv_func__chdir=no} ++ac_cv_func___close=${ac_cv_func___close=no} ++ac_cv_func__close=${ac_cv_func__close=no} ++ac_cv_func___closedir=${ac_cv_func___closedir=no} ++ac_cv_func__closedir=${ac_cv_func__closedir=no} ++ac_cv_func___dup=${ac_cv_func___dup=no} ++ac_cv_func__dup=${ac_cv_func__dup=no} ++ac_cv_func___dup2=${ac_cv_func___dup2=no} ++ac_cv_func__dup2=${ac_cv_func__dup2=no} ++ac_cv_func___facl=${ac_cv_func___facl=no} ++ac_cv_func__facl=${ac_cv_func__facl=no} ++ac_cv_func___fchdir=${ac_cv_func___fchdir=no} ++ac_cv_func__fchdir=${ac_cv_func__fchdir=no} ++ac_cv_func___fcntl=${ac_cv_func___fcntl=no} ++ac_cv_func__fcntl=${ac_cv_func__fcntl=no} ++ac_cv_func___fork=${ac_cv_func___fork=no} ++ac_cv_func__fork=${ac_cv_func__fork=no} ++ac_cv_func___fstat=${ac_cv_func___fstat=no} ++ac_cv_func__fstat=${ac_cv_func__fstat=no} ++ac_cv_func___fstat64=${ac_cv_func___fstat64=no} ++ac_cv_func__fstat64=${ac_cv_func__fstat64=no} ++ac_cv_func___fxstat=${ac_cv_func___fxstat=no} ++ac_cv_func___getcwd=${ac_cv_func___getcwd=no} ++ac_cv_func__getcwd=${ac_cv_func__getcwd=no} ++ac_cv_func___getdents=${ac_cv_func___getdents=no} ++ac_cv_func__getdents=${ac_cv_func__getdents=no} ++ac_cv_func___llseek=${ac_cv_func___llseek=no} ++ac_cv_func___sys_llseek=${ac_cv_func___sys_llseek=no} ++ac_cv_func__llseek=${ac_cv_func__llseek=no} ++ac_cv_func___lseek=${ac_cv_func___lseek=no} ++ac_cv_func__lseek=${ac_cv_func__lseek=no} ++ac_cv_func___lstat=${ac_cv_func___lstat=no} ++ac_cv_func__lstat=${ac_cv_func__lstat=no} ++ac_cv_func___lstat64=${ac_cv_func___lstat64=no} ++ac_cv_func__lstat64=${ac_cv_func__lstat64=no} ++ac_cv_func___lxstat=${ac_cv_func___lxstat=no} ++ac_cv_func___open=${ac_cv_func___open=no} ++ac_cv_func__open=${ac_cv_func__open=no} ++ac_cv_func___open64=${ac_cv_func___open64=no} ++ac_cv_func__open64=${ac_cv_func__open64=no} ++ac_cv_func___opendir=${ac_cv_func___opendir=no} ++ac_cv_func__opendir=${ac_cv_func__opendir=no} ++ac_cv_func___pread=${ac_cv_func___pread=no} ++ac_cv_func__pread=${ac_cv_func__pread=no} ++ac_cv_func___pread64=${ac_cv_func___pread64=no} ++ac_cv_func__pread64=${ac_cv_func__pread64=no} ++ac_cv_func___pwrite=${ac_cv_func___pwrite=no} ++ac_cv_func__pwrite=${ac_cv_func__pwrite=no} ++ac_cv_func___pwrite64=${ac_cv_func___pwrite64=no} ++ac_cv_func__pwrite64=${ac_cv_func__pwrite64=no} ++ac_cv_func___read=${ac_cv_func___read=no} ++ac_cv_func__read=${ac_cv_func__read=no} ++ac_cv_func___readdir=${ac_cv_func___readdir=no} ++ac_cv_func__readdir=${ac_cv_func__readdir=no} ++ac_cv_func___readdir64=${ac_cv_func___readdir64=no} ++ac_cv_func__readdir64=${ac_cv_func__readdir64=no} ++ac_cv_func___seekdir=${ac_cv_func___seekdir=no} ++ac_cv_func__seekdir=${ac_cv_func__seekdir=no} ++ac_cv_func___stat=${ac_cv_func___stat=no} ++ac_cv_func__stat=${ac_cv_func__stat=no} ++ac_cv_func___stat64=${ac_cv_func___stat64=no} ++ac_cv_func__stat64=${ac_cv_func__stat64=no} ++ac_cv_func___telldir=${ac_cv_func___telldir=no} ++ac_cv_func__telldir=${ac_cv_func__telldir=no} ++ac_cv_func___write=${ac_cv_func___write=no} ++ac_cv_func__write=${ac_cv_func__write=no} ++ac_cv_func___xstat=${ac_cv_func___xstat=no} ++ ++ ++ ++# Miscellaneous stuff that isn't, and shouldn't be, available ++# in Debian. Those interested in building debs for other systems may ++# need to remove some of these defines. ++ ++ac_cv_func_bigcrypt=${ac_cv_func_bigcrypt=no} ++ac_cv_func_crypt16=${ac_cv_func_crypt16=no} ++ac_cv_func_getauthuid=${ac_cv_func_getauthuid=no} ++ac_cv_func_getprpwnam=${ac_cv_func_getprpwnam=no} ++ac_cv_func_getpwanam=${ac_cv_func_getpwanam=no} ++ac_cv_func_putprpwnam=${ac_cv_func_putprpwnam=no} ++ac_cv_func_rdchk=${ac_cv_func_rdchk=no} ++ac_cv_func_set_auth_parameters=${ac_cv_func_set_auth_parameters=no} ++ac_cv_func_setgidx=${ac_cv_func_setgidx=no} ++ac_cv_func_setluid=${ac_cv_func_setluid=no} ++ac_cv_func_setpriv=${ac_cv_func_setpriv=no} ++ac_cv_func_setuidx=${ac_cv_func_setuidx=no} ++ac_cv_lib_sec_bigcrypt=${ac_cv_lib_sec_bigcrypt=no} ++ac_cv_lib_sec_getprpwnam=${ac_cv_lib_sec_getprpwnam=no} ++ac_cv_lib_sec_getspnam=${ac_cv_lib_sec_getspnam=no} ++ac_cv_lib_sec_putprpwnam=${ac_cv_lib_sec_putprpwnam=no} ++ac_cv_lib_sec_set_auth_parameters=${ac_cv_lib_sec_set_auth_parameters=no} ++ac_cv_lib_security_bigcrypt=${ac_cv_lib_security_bigcrypt=no} ++ac_cv_lib_security_getprpwnam=${ac_cv_lib_security_getprpwnam=no} ++ac_cv_lib_security_getspnam=${ac_cv_lib_security_getspnam=no} ++ac_cv_lib_security_putprpwnam=${ac_cv_lib_security_putprpwnam=no} ++ac_cv_lib_security_set_auth_parameters=${ac_cv_lib_security_set_auth_parameters=no} +diff -uNrw samba-2.2.1a-bak/debian/config.cache.alpha-linux samba-2.2.1a/debian/config.cache.alpha-linux +--- samba-2.2.1a-bak/debian/config.cache.alpha-linux Wed Dec 31 18:00:00 1969 ++++ samba-2.2.1a/debian/config.cache.alpha-linux Thu Aug 23 10:28:08 2001 +@@ -0,0 +1,12 @@ ++# 22 Aug 2001 Steve Langasek ++ ++# This file contains autoconf settings specific to the alpha-linux ++# platform that should be preloaded when building for this architecture. ++ ++ ++# Linux 2.2 on Alpha doesn't have a functional setresgid() call, but ++# Linux 2.4 does. Ensure that packages compiled for woody remain ++# compatible with 2.2 kernels, even if the build machine is running 2.4. ++samba_cv_have_setresgid=${samba_cv_have_setresgid=no} ++samba_cv_USE_SETRESUID=${samba_cv_USE_SETRESUID=no} ++samba_cv_USE_SETREUID=${samba_cv_USE_SETREUID=yes} +diff -uNrw samba-2.2.1a-bak/debian/rules samba-2.2.1a/debian/rules +--- samba-2.2.1a-bak/debian/rules Thu Aug 23 10:27:54 2001 ++++ samba-2.2.1a/debian/rules Thu Aug 23 10:28:08 2001 +@@ -15,6 +15,14 @@ + # This has to be exported to make some magic below work. + export DH_OPTIONS + ++# Set the host and build architectures for use with config.cache loading, ++# cross-building, etc. ++DEB_HOST_GNU_TYPE := $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) ++DEB_BUILD_GNU_TYPE := $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) ++ ++export DEB_HOST_GNU_TYPE ++export DEB_BUILD_GNU_TYPE ++ + BVARS = SMBLOGFILE=/var/log/smb NMBLOGFILE=/var/log/nmb + + DESTDIR=`pwd`/debian/samba +@@ -48,8 +56,11 @@ + # ./configure --with-fhs --prefix=/usr --sysconfdir=/etc \ + # --localstatedir=/var + ++ if [ -f debian/config.cache ]; then \ ++ cp -f debian/config.cache source/config.cache; \ ++ fi + # [ -f source/Makefile ] || (cd source && ./configure --with-fhs --prefix=/usr --exec-prefix=/usr --with-netatalk --with-smbmount --with-pam --with-syslog --with-sambabook --with-utmp) +- [ -f source/Makefile ] || (cd source && ./configure --with-fhs --prefix=/usr --sysconfdir=/etc --with-privatedir=/etc/samba --with-lockdir=/var/state/samba --localstatedir=/var --with-netatalk --with-smbmount --with-pam --with-syslog --with-sambabook --with-utmp --with-readline --with-pam_smbpass) ++ [ -f source/Makefile ] || (cd source && ./configure --host=$(DEB_HOST_GNU_TYPE)-gnu --build=$(DEB_BUILD_GNU_TYPE)-gnu --with-fhs --prefix=/usr --sysconfdir=/etc --with-privatedir=/etc/samba --with-lockdir=/var/state/samba --localstatedir=/var --with-netatalk --with-smbmount --with-pam --with-syslog --with-sambabook --with-utmp --with-readline --with-pam_smbpass) + + touch configure-stamp + --- samba-3.3.0.orig/debian/samba-doc.docs +++ samba-3.3.0/debian/samba-doc.docs @@ -0,0 +1,5 @@ +README +#docs/THANKS +#docs/history +docs/htmldocs/ +#docs/registry/ --- samba-3.3.0.orig/debian/samba.ufw.profile +++ samba-3.3.0/debian/samba.ufw.profile @@ -0,0 +1,4 @@ +[Samba] +title=LanManager-like file and printer server for Unix +description=The Samba software suite is a collection of programs that implements the SMB/CIFS protocol for unix systems, allowing you to serve files and printers to Windows, NT, OS/2 and DOS clients. This protocol is sometimes also referred to as the LanManager or NetBIOS protocol. +ports=137,138/udp|139,445/tcp --- samba-3.3.0.orig/debian/swat.dirs +++ samba-3.3.0/debian/swat.dirs @@ -0,0 +1,2 @@ +usr/sbin +usr/share/samba/swat --- samba-3.3.0.orig/debian/samba-common.postinst +++ samba-3.3.0/debian/samba-common.postinst @@ -0,0 +1,149 @@ +#!/bin/sh +# +# + +set -e + +if [ "$1" = "configure" ] +then + update-alternatives --install /usr/bin/nmblookup nmblookup /usr/bin/nmblookup.samba3 0 \ + --slave /usr/share/man/man1/nmblookup.1 nmblookup.1 /usr/share/man/man1/nmblookup.samba3.1 + update-alternatives --install /usr/bin/net net /usr/bin/net.samba3 10 \ + --slave /usr/share/man/man1/net.8 net.8 /usr/share/man/man1/net.samba3.8 + update-alternatives --install /usr/bin/testparm testparm /usr/bin/testparm.samba3 10 \ + --slave /usr/share/man/man1/testparm.1 testparm.1 /usr/share/man/man1/testparm.samba3.1 + for N in valid.dat upcase.dat lowcase.dat + do + update-alternatives --install /usr/share/samba/$N $N /usr/share/samba/$N.samba3 0 + done + update-alternatives --install /usr/share/samba/panic-action samba-panic-action /usr/share/samba/panic-action.samba3 0 +fi + +# Do debconf stuff here +. /usr/share/debconf/confmodule + +TEMPDIR=/var/run/samba/upgrades +NEWFILE=$TEMPDIR/smb.conf +CONFIG=/etc/samba/smb.conf + +# ------------------------- Debconf questions start --------------------- + +configure_smb_conf() { + local CONFIG + CONFIG="$1" + + # Is the user configuring with debconf, or he/she prefers + # swat/manual config? + db_get samba-common/do_debconf || true + if [ "${RET}" != "true" ]; then + return 0 + fi + + # Get workgroup name + db_get samba-common/workgroup || true + WORKGROUP="${RET}" + + # Oh my GOD, this is ugly. Why would anyone put these + # characters in a workgroup name? Why, Lord, why??? + WORKGROUP=`echo $WORKGROUP | \ + sed -e's/\\\\/\\\\\\\\/g + s#/#\\\\/#g + s/&/\\\&/g + s/\\\$/\\\\\\\$/g'` + + sed -i -e "s/^\([[:space:]]*\)\[global\]/\1\[global\]/i + /^[[:space:]]*\[global\]/,/^[[:space:]]*\[/ \ + s/^\([[:space:]]*\)workgroup[[:space:]]*=.*/\1workgroup = ${WORKGROUP}/i" \ + "$CONFIG" + + # Encrypt passwords? + db_get samba-common/encrypt_passwords || true + ENCRYPT_PASSWORDS="${RET}" + + sed -i -e "s/^\([[:space:]]*\)\[global\]/\1\[global\]/i + /^[[:space:]]*\[global\]/,/^[[:space:]]*\[/ \ + s/^\([[:space:]]*\)encrypt passwords[[:space:]]*=.*/\1encrypt passwords = ${ENCRYPT_PASSWORDS}/i" \ + "$CONFIG" + + # Install DHCP support + db_get samba-common/dhcp + if [ "$RET" = true ] && \ + ! grep -q dhcp.conf "$CONFIG" + then + sed -i -e "s/^\([[:space:]]*\)\[global\]/\1\[global\]/i + /^[[:space:]]*\[global\]/,/^[[:space:]]*\[/ { + /wins server[[:space:]]*=/a \\ +\\ +# If we receive WINS server info from DHCP, override the options above. \\ + include = /etc/samba/dhcp.conf +}" "$CONFIG" + elif [ "$RET" != true ]; then + sed -i -e ' + /^#[[:space:]]*If we receive WINS server info from DHCP, override the options above/d + /^#*[[:space:]]*include[[:space:]]*=[[:space:]]*\/etc\/samba\/dhcp.conf/,/[^[:space:]]/ { + /^#*[[:space:]]*include[[:space:]]*=[[:space:]]*\/etc\/samba\/dhcp.conf/d + /^[[:space:]]*$/d + }' "$CONFIG" + fi + + if [ -n "$2" ] && dpkg --compare-versions "$2" lt 3.0.23b-2 \ + && grep -qi "^[[:space:]]*passdb backend[[:space:]]*=.*guest" "$CONFIG" + then + sed -i -e "s/^\([[:space:]]*\)\[global\]/\1\[global\]/i + /^[[:space:]]*\[global\]/,/^[[:space:]]*\[/ \ + s/^\([[:space:]]*passdb backend[[:space:]]*=[^,]*\),\?[[:space:]]*guest[[:space:]]*$/\1/i" \ + "$CONFIG" + fi +} + + +if [ -e "$CONFIG" ]; then + configure_smb_conf "$CONFIG" +fi + +mkdir -p "$TEMPDIR" + +if [ -n "$2" ] && dpkg --compare-versions "$2" lt 3.0.28-3; then + if dpkg --compare-versions "$2" lt 3.0.26a-1 && [ "$2" != "${2%ubuntu*}" ] + then + base=dapper + elif [ "$2" != "${2%ubuntu*}" ] + then + base=gutsy + else + base=etch + fi + + TEMPLATE=/usr/share/samba/smb.conf.${base} + + cp "$TEMPLATE" "$NEWFILE" + configure_smb_conf "$NEWFILE" + + if [ -e "$CONFIG" ]; then + sed -e '1,/^[;#[:space:]]*\[cdrom\]/ { d } + 1,/^[[:space:]]*\[/ { /^[^[]/d; /^$/d } + ' "$CONFIG" >> "$NEWFILE" + fi + + ucf --three-way --debconf-ok "$NEWFILE" "$CONFIG" +fi + +cp /usr/share/samba/smb.conf "$NEWFILE" +configure_smb_conf "$NEWFILE" + +if [ -e "$CONFIG" ]; then + sed -e '1,/^[;#[:space:]]*\[cdrom\]/ { d } + 1,/^[[:space:]]*\[/ { /^[^[]/d; /^$/d } + ' "$CONFIG" >> "$NEWFILE" +fi + +ucf --three-way --debconf-ok "$NEWFILE" "$CONFIG" +ucfr samba-common "$CONFIG" + +chmod a+r "$CONFIG" + +# ------------------------- Debconf questions end --------------------- + +db_stop + +#DEBHELPER# --- samba-3.3.0.orig/debian/smbfs.lintian +++ samba-3.3.0/debian/smbfs.lintian @@ -0,0 +1,2 @@ +smbfs: setuid-binary sbin/mount.cifs 4755 root/root +smbfs: setuid-binary sbin/umount.cifs 4755 root/root --- samba-3.3.0.orig/debian/samba-common.files +++ samba-3.3.0/debian/samba-common.files @@ -0,0 +1,20 @@ +etc/samba/ +etc/dhcp3/ +etc/pam.d/ +usr/bin/net.samba3 +usr/bin/nmblookup.samba3 +usr/bin/smbpasswd +usr/bin/testparm.samba3 +usr/share/man/man1/nmblookup.samba3.1 +usr/share/man/man1/testparm.samba3.1 +usr/share/man/man5/lmhosts.5 +usr/share/man/man5/smb.conf.5 +usr/share/man/man5/smbpasswd.5 +usr/share/man/man7/samba.7 +usr/share/man/man8/net.samba3.8 +usr/share/man/man8/smbpasswd.8 +usr/share/samba/lowcase.dat.samba3 +usr/share/samba/panic-action.samba3 +usr/share/samba/smb.conf* +usr/share/samba/upcase.dat.samba3 +usr/share/samba/valid.dat.samba3 --- samba-3.3.0.orig/debian/swat.postrm +++ samba-3.3.0/debian/swat.postrm @@ -0,0 +1,22 @@ +#!/bin/sh -e +# +# + +case "$1" in + purge) + ;; + remove) + update-inetd --remove swat + ;; + upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + ;; + *) + echo "$0: unknown action \"$1\"" + exit 0 + ;; +esac + +#DEBHELPER# + +exit 0 + --- samba-3.3.0.orig/debian/README.build-upstream +++ samba-3.3.0/debian/README.build-upstream @@ -0,0 +1,78 @@ +Building Samba Packages for Debian GNU/Linux +-------------------------------------------- + +Building Debian packages is not as hard as some people might think. +The following instructions will allow you to build your own Samba +Debian packages. These instructions and the files in packaging/Debian/ +should be current as of Samba 3.0.2, and allow you to build Debian +packages for Debian unstable (so you need some development packages +available only in Debian unstable.) If you are using something newer +than 3.0.2 you might want to try to follow the instructions to see if +patches apply cleanly. If some patches don't apply cleanly please e-mail +samba@packages.debian.org since we might have fixed patches that we have +not yet integrated into upstream Samba. + +We try to maintain as much compatibility with previous releases +of Debian as possible, so it is possible that the files in +packaging/Debian/ can also be used to build Samba Debian packages for +other Debian releases. However, sometimes this is just not possible +because we need to use stuff that is only available on Debian unstable. + +Instructions +------------ + +If you want to build Samba packages for Debian and you just want to use +upstream sources, i.e. you don't want to wait for us to put official +packages out, or you want packages for a Debian version for which we +don't provide deb's, or you don't want to use official packages, or +you want to add --this-cool-switch to configure, or whatever, follow +these instructions: + +0) Make sure you have the following packages installed (in addition +to the normal Debian development packages -- dpkg-dev, libc6-dev, +devscripts, etc.): + + autoconf + debhelper (>= 4.1.13) + libpam0g-dev + libreadline4-dev + libcupsys2-dev + libacl1-dev, libacl1 (>= 2.2.11-1) + libkrb5-dev + libldap2-dev + po-debconf + python2.3-dev + + Notes regarding the packages required to build Samba Debian packages: + + * The libcupsys2-dev is not available in Debian Potato (Debian 2.2). + That's fine; the configure script won't detect CUPS support and the + resulting binaries won't support CUPS. + + * The list above is current as of samba-3.0.0rc2, but it can get + out of date. The best way to check what packages are required to + build the samba packages on Debian is to look for the Build-Depends: + field in the file debian/control. + +1) cd samba[-]. For example, "cd samba-3.0.2". +2) cp -a packaging/Debian/debian/ . + It's important that you copy instead of symlink because the build + tools in Potato have a problem that prevents the build to work with + a symlink. If you are running a recent Debian distribution you don't + have to copy the directory and you can use a symlink instead: + "ln -s packaging/Debian/debian/ ." +3) dch -i (this is completely optional - only do it if you understand + Debian version numbers! Don't complain later if you can't upgrade + to official versions of the Samba packages for Debian.) + - Edit the changelog and make sure the version is right. For example, + for Samba 3.0.2, the version number should something like 3.0.2-0.1. +4) Run 'fakeroot debian/rules binary'. +5) That's it. Your new packages should be in ../. Install with dpkg. + +Please e-mail samba@packages.debian.org with comments, questions or +suggestions. Please talk to us and not to the Samba Team. They have +better things to do and know nothing about the Debian packaging system. + +Eloy A. Paris +Steve Langasek + --- samba-3.3.0.orig/debian/smbfs.files +++ samba-3.3.0/debian/smbfs.files @@ -0,0 +1,7 @@ +sbin/mount.smbfs +sbin/mount.cifs +sbin/umount.cifs +usr/sbin/cifs.upcall +usr/share/man/man8/mount.cifs.8 +usr/share/man/man8/umount.cifs.8 +usr/share/man/man8/cifs.upcall.8 --- samba-3.3.0.orig/debian/samba-doc.doc-base.samba-howto +++ samba-3.3.0/debian/samba-doc.doc-base.samba-howto @@ -0,0 +1,8 @@ +Document: samba-howto +Title: The Official Samba-3 HOWTO and Reference Guide +Author: Jelmer R. Vernooij, John H. Terpstra, Gerald (Jerry) Carter +Section: Network/File Transfer + +Format: HTML +Index: /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/index.html +Files: /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/* --- samba-3.3.0.orig/debian/samba-doc.examples +++ samba-3.3.0/debian/samba-doc.examples @@ -0,0 +1,3 @@ +debian/wins2dns.awk +source/smbadduser +examples/* --- samba-3.3.0.orig/debian/samba-common.dhcp +++ samba-3.3.0/debian/samba-common.dhcp @@ -0,0 +1,77 @@ +#!/bin/sh + +SAMBA_DHCP_CONF=/etc/samba/dhcp.conf + +netbios_setup() { + # No need to continue if we're called with an unsupported option + + case $reason in + BOUND|RENEW|REBIND|REBOOT|EXPIRE|FAIL|RELEASE|STOP) + ;; + *) + return + ;; + esac + + umask 022 + + local other_servers + other_servers=="" + local serverlist + serverlist=="" + + # the destination file won't exist yet on the first run after + # installing samba + if [ -e $SAMBA_DHCP_CONF ] + then + # don't continue if no settings have changed + if [ "$new_netbios_name_servers" = "$old_netbios_name_servers" ] \ + && [ "$new_netbios_scope" = "$old_netbios_scope" ] \ + && [ -n "$new_netbios_name_servers" ] + then + return + fi + + # reparse our own file + other_servers=`sed -n -e"s/[[:space:]]$interface:[^[:space:]]*//g; \ + s/^[[:space:]]*wins server[[:space:]]*=[[:space:]]*//pi" \ + $SAMBA_DHCP_CONF` + + serverlist="$other_servers" + fi + + for server in $new_netbios_name_servers + do + serverlist="$serverlist $interface:$server" + done + + echo -n > ${SAMBA_DHCP_CONF}.new + + # If we're updating on failure/expire, AND there are no WINS + # servers for other interfaces, leave the file empty. + if [ -z "$other_servers" ] + then + if [ "$reason" = FAIL ] || [ "$reason" = EXPIRE ] + then + mv ${SAMBA_DHCP_CONF}.new $SAMBA_DHCP_CONF + return + fi + fi + + if [ -n "$serverlist" ] + then + echo " wins server =$serverlist" >> ${SAMBA_DHCP_CONF}.new + fi + if [ -n "$new_netbios_scope" ] + then + echo " netbios scope = $new_netbios_scope" >> ${SAMBA_DHCP_CONF}.new + fi + mv ${SAMBA_DHCP_CONF}.new $SAMBA_DHCP_CONF + + # reload the samba server + # We don't necessarily have the samba package installed. #414841 + [ -x /etc/init.d/samba ] && /usr/sbin/invoke-rc.d samba reload + +} + +netbios_setup --- samba-3.3.0.orig/debian/libpam-smbpass.prerm +++ samba-3.3.0/debian/libpam-smbpass.prerm @@ -0,0 +1,7 @@ +#!/bin/sh + +set -e + +if [ "$1" = "remove" ]; then + pam-auth-update --package --remove smbpasswd-migrate +fi --- samba-3.3.0.orig/debian/libsmbclient-dev.examples +++ samba-3.3.0/debian/libsmbclient-dev.examples @@ -0,0 +1 @@ +examples/libsmbclient/* --- samba-3.3.0.orig/debian/winbind.lintian +++ samba-3.3.0/debian/winbind.lintian @@ -0,0 +1,5 @@ +winbind: no-shlibs-control-file lib/libnss_winbind.so.2 +winbind: no-shlibs-control-file lib/libnss_wins.so.2 +winbind: postinst-must-call-ldconfig lib/libnss_wins.so.2 +winbind: postrm-should-call-ldconfig lib/libnss_wins.so.2 +winbind: package-name-doesnt-match-sonames libnss-winbind2 libnss-wins2 --- samba-3.3.0.orig/debian/samba.docs +++ samba-3.3.0/debian/samba.docs @@ -0,0 +1 @@ +docs/htmldocs/Samba3-HOWTO/diagnosis.html --- samba-3.3.0.orig/debian/README.debian +++ samba-3.3.0/debian/README.debian @@ -0,0 +1,76 @@ +Samba for Debian +---------------- + +This package was built by Eloy Paris , Steve +Langasek , Noèl Köthe and +Christian Perrier , current maintainers of the +Samba packages for Debian, based on previous work from Peter +Eisentraut , Bruce Perens , Andrew +Howell , Klee Dienes and Michael +Meskes , all previous maintainers of the packages +samba and sambades (merged together for longer than we can remember.) + +Contents of this README file: + +1. Packages Generated from the Samba Sources +2. Reporting bugs + + +1. Packages Generated from the Samba Sources +-------------------------------------------- + +Currently, the Samba sources produce the following binary packages: + +samba: A LanManager like file and printer server for Unix. +samba-common: Samba common files used by both the server and the client. +smbclient: A LanManager like simple client for Unix. +swat: Samba Web Administration Tool +samba-doc: Samba documentation. +samba-doc-pdf: Samba documentation (PDF format). +smbfs: Mount and umount commands for cifs (smbfs is removed) +samba-tools: Tools provided by the Samba suite +libpam-smbpass: pluggable authentication module for SMB password database. +libsmbclient: Shared library that allows applications to talk to SMB servers. +libsmbclient-dev: libsmbclient shared libraries. +winbind: Service to resolve user and group information from a Windows NT server. +samba-dbg: binaries with debugging symbols + + +2. Reporting Bugs +----------------- + +If you believe you have found a bug please make sure the possible bug +also exists in the latest version of Samba that is available for the +unstable Debian distribution. If you are running Debian stable this +means that you will probably have to build your own packages. And if the +problem does not exist in the latest version of Samba we have packaged it +means that you will have to run the version of Samba you built yourself +since it is not easy to upload new packages to the stable distribution, +unless they fix critical security problems. + +If you can reproduce the problem in the latest version of Samba then +it is likely to be a real bug. Your best shot is to search the Samba +mailing lists to see if it is something that has already been reported +and fixed - if it is a simple fix we can add the patch to our packages +without waiting for a new Samba release. + +If you decide that your problem deserves to be submitted to the Debian +Bug Tracking System (BTS) we expect you to be responsive if we request +more information. If we request more information and do not receive +any in a reasonable time frame expect to see your bug closed without +explanation - we can't fix bugs we can't reproduce, and most of the +time we need more information to be able to reproduce them. + +When submitting a bug to the Debian BTS please include the version of +the Debian package you are using as well as the Debian distribution you +are using. Think _twice_ about the severity you assign to the bug: we +are _very_ sensitive about bug severities; the fact that it doesn't +work for you doesn't mean that the severity must be such that it holds +a major Debian release. In fact, that it doesn't work for you it +doesn't mean that it doesn't work for others. So again: think _twice_. + + +Eloy A. Paris +Steve Langasek +Noèl Köthe +Christian Perrier --- samba-3.3.0.orig/debian/samba-common.postrm +++ samba-3.3.0/debian/samba-common.postrm @@ -0,0 +1,13 @@ +#!/bin/sh -e + +if [ "$1" = purge ]; then + rm -rf /etc/samba/ /var/cache/samba/ /var/lib/samba/ /var/run/samba/ + if [ -x "`which ucf 2>/dev/null`" ]; then + ucf --purge /etc/samba/smb.conf + fi + if [ -x "`which ucfr 2>/dev/null`" ]; then + ucfr --purge samba-common /etc/samba/smb.conf + fi +fi + +#DEBHELPER# --- samba-3.3.0.orig/debian/libwbclient0.symbols +++ samba-3.3.0/debian/libwbclient0.symbols @@ -0,0 +1,61 @@ +libwbclient.so.0 libwbclient0 #MINVER# + wbcAllocateGid@Base 2:3.2.0 + wbcAllocateUid@Base 2:3.2.0 + wbcAuthenticateUser@Base 2:3.2.0 + wbcAuthenticateUserEx@Base 2:3.2.0 + wbcCheckTrustCredentials@Base 2:3.2.0 + wbcDomainInfo@Base 2:3.2.0 + wbcEndgrent@Base 2:3.2.0 + wbcEndpwent@Base 2:3.2.0 + wbcErrorString@Base 2:3.2.0 + wbcFreeMemory@Base 2:3.2.0 + wbcGetGroups@Base 2:3.2.0 + wbcGetgrent@Base 2:3.2.0 + wbcGetgrgid@Base 2:3.2.0 + wbcGetgrnam@Base 2:3.2.0 + wbcGetpwent@Base 2:3.2.0 + wbcGetpwnam@Base 2:3.2.0 + wbcGetpwuid@Base 2:3.2.0 + wbcGidToSid@Base 2:3.2.0 + wbcInterfaceDetails@Base 2:3.2.0 + wbcLibraryDetails@Base 2:3.2.0 + wbcListGroups@Base 2:3.2.0 + wbcListTrusts@Base 2:3.2.0 + wbcListUsers@Base 2:3.2.0 + wbcLookupName@Base 2:3.2.0 + wbcLookupRids@Base 2:3.2.0 + wbcLookupSid@Base 2:3.2.0 + wbcLookupUserSids@Base 2:3.2.0 + wbcPing@Base 2:3.2.0 + wbcResolveWinsByIP@Base 2:3.2.0 + wbcResolveWinsByName@Base 2:3.2.0 + wbcSetGidHwm@Base 2:3.2.0 + wbcSetGidMapping@Base 2:3.2.0 + wbcSetUidHwm@Base 2:3.2.0 + wbcSetUidMapping@Base 2:3.2.0 + wbcSetgrent@Base 2:3.2.0 + wbcSetpwent@Base 2:3.2.0 + wbcSidToGid@Base 2:3.2.0 + wbcSidToString@Base 2:3.2.0 + wbcSidToUid@Base 2:3.2.0 + wbcStringToSid@Base 2:3.2.0 + wbcUidToSid@Base 2:3.2.0 + wbcAddNamedBlob@Base 2:3.3.0 + wbcChangeUserPassword@Base 2:3.3.0 + wbcChangeUserPasswordEx@Base 2:3.3.0 + wbcCredentialCache@Base 2:3.3.0 + wbcGetDisplayName@Base 2:3.3.0 + wbcGetgrlist@Base 2:3.3.0 + wbcGuidToString@Base 2:3.3.0 + wbcLogoffUser@Base 2:3.3.0 + wbcLogoffUserEx@Base 2:3.3.0 + wbcLogonUser@Base 2:3.3.0 + wbcLookupDomainController@Base 2:3.3.0 + wbcLookupDomainControllerEx@Base 2:3.3.0 + wbcQueryGidToSid@Base 2:3.3.0 + wbcQuerySidToGid@Base 2:3.3.0 + wbcQuerySidToUid@Base 2:3.3.0 + wbcQueryUidToSid@Base 2:3.3.0 + wbcRemoveGidMapping@Base 2:3.3.0 + wbcRemoveUidMapping@Base 2:3.3.0 + wbcStringToGuid@Base 2:3.3.0 --- samba-3.3.0.orig/debian/winbind.links +++ samba-3.3.0/debian/winbind.links @@ -0,0 +1,3 @@ +usr/lib/samba/idmap/ad.so usr/lib/samba/nss_info/rfc2307.so +usr/lib/samba/idmap/ad.so usr/lib/samba/nss_info/sfu.so +usr/lib/samba/idmap/ad.so usr/lib/samba/nss_info/sfu20.so --- samba-3.3.0.orig/debian/smbfs.dirs +++ samba-3.3.0/debian/smbfs.dirs @@ -0,0 +1 @@ +sbin --- samba-3.3.0.orig/debian/samba-common.docs +++ samba-3.3.0/debian/samba-common.docs @@ -0,0 +1,3 @@ +README +Roadmap +WHATSNEW.txt --- samba-3.3.0.orig/debian/mksmbpasswd.awk +++ samba-3.3.0/debian/mksmbpasswd.awk @@ -0,0 +1,6 @@ +#!/usr/bin/awk -f +BEGIN {FS=":" + printf("#\n# SMB password file.\n#\n") + } +{ if ($3 >= 1000) { +printf( "%s:%s:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:[U ]:LCT-00000000:%s\n", $1, $3, $5) } } --- samba-3.3.0.orig/debian/samba-doc.doc-base.samba-developers-guide +++ samba-3.3.0/debian/samba-doc.doc-base.samba-developers-guide @@ -0,0 +1,14 @@ +Document: samba-developers-guide +Title: SAMBA Developers Guide +Author: Jelmer R. Vernooij +Abstract: This book is a collection of documents that might be useful + for people developing samba or those interested in doing so. It's + nothing more than a collection of documents written by Samba developers + about the internals of various parts of Samba and the SMB protocol. + It's still (and will always be) incomplete. The most recent version of + this document can be found at http://devel.samba.org/. +Section: Network/File Transfer + +Format: HTML +Index: /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/index.html +Files: /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/* --- samba-3.3.0.orig/debian/samba-doc-pdf.doc-base.samba-howto +++ samba-3.3.0/debian/samba-doc-pdf.doc-base.samba-howto @@ -0,0 +1,7 @@ +Document: samba-howto-pdf +Title: The Official Samba-3 HOWTO and Reference Guide +Author: Jelmer R. Vernooij, John H. Terpstra, Gerald (Jerry) Carter +Section: Network/File Transfer + +Format: PDF +Files: /usr/share/doc/samba-doc-pdf/Samba3-HOWTO.pdf.gz --- samba-3.3.0.orig/debian/samba.cron.daily +++ samba-3.3.0/debian/samba.cron.daily @@ -0,0 +1,16 @@ +#!/bin/sh +# +# cron script to save a backup copy of /etc/samba/smbpasswd in /var/backups. +# +# Written by Eloy A. Paris for the Debian project. +# + +BAK=/var/backups + +umask 022 +if cd $BAK; then + # Make sure /etc/samba/smbpasswd exists + if [ -f /etc/samba/smbpasswd ]; then + cmp -s smbpasswd.bak /etc/samba/smbpasswd || cp -p /etc/samba/smbpasswd smbpasswd.bak + fi +fi --- samba-3.3.0.orig/debian/samba.logrotate +++ samba-3.3.0/debian/samba.logrotate @@ -0,0 +1,21 @@ +/var/log/samba/log.smbd { + weekly + missingok + rotate 7 + postrotate + invoke-rc.d --quiet samba reload > /dev/null + endscript + compress + notifempty +} + +/var/log/samba/log.nmbd { + weekly + missingok + rotate 7 + postrotate + [ ! -f /var/run/samba/nmbd.pid ] || kill -HUP `cat /var/run/samba/nmbd.pid` + endscript + compress + notifempty +} --- samba-3.3.0.orig/debian/smb.conf.dapper +++ samba-3.3.0/debian/smb.conf.dapper @@ -0,0 +1,299 @@ +# +# Sample configuration file for the Samba suite for Debian GNU/Linux. +# +# +# This is the main Samba configuration file. You should read the +# smb.conf(5) manual page in order to understand the options listed +# here. Samba has a huge number of configurable options most of which +# are not shown in this example +# +# Any line which starts with a ; (semi-colon) or a # (hash) +# is a comment and is ignored. In this example we will use a # +# for commentary and a ; for parts of the config file that you +# may wish to enable +# +# NOTE: Whenever you modify this file you should run the command +# "testparm" to check that you have not made any basic syntactic +# errors. +# + +#======================= Global Settings ======================= + +[global] + +## Browsing/Identification ### + +# Change this to the workgroup/NT-domain name your Samba server will part of + workgroup = DEBIAN_FANS + +# server string is the equivalent of the NT Description field + server string = %h server (Samba, Ubuntu) + +# Windows Internet Name Serving Support Section: +# WINS Support - Tells the NMBD component of Samba to enable its WINS Server +; wins support = no + +# WINS Server - Tells the NMBD components of Samba to be a WINS Client +# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both +; wins server = w.x.y.z + +# This will prevent nmbd to search for NetBIOS names through DNS. + dns proxy = no + +# What naming service and in what order should we use to resolve host names +# to IP addresses +; name resolve order = lmhosts host wins bcast + +#### Networking #### + +# The specific set of interfaces / networks to bind to +# This can be either the interface name or an IP address/netmask; +# interface names are normally preferred +; interfaces = 127.0.0.0/8 eth0 + +# Only bind to the named interfaces and/or networks; you must use the +# 'interfaces' option above to use this. +# It is recommended that you enable this feature if your Samba machine is +# not protected by a firewall or is a firewall itself. However, this +# option cannot handle dynamic or non-broadcast interfaces correctly. +; bind interfaces only = true + + + +#### Debugging/Accounting #### + +# This tells Samba to use a separate log file for each machine +# that connects + log file = /var/log/samba/log.%m + +# Put a capping on the size of the log files (in Kb). + max log size = 1000 + +# If you want Samba to only log through syslog then set the following +# parameter to 'yes'. +; syslog only = no + +# We want Samba to log a minimum amount of information to syslog. Everything +# should go to /var/log/samba/log.{smbd,nmbd} instead. If you want to log +# through syslog you should set the following parameter to something higher. + syslog = 0 + +# Do something sensible when Samba crashes: mail the admin a backtrace + panic action = /usr/share/samba/panic-action %d + + +####### Authentication ####### + +# "security = user" is always a good idea. This will require a Unix account +# in this server for every user accessing the server. See +# /usr/share/doc/samba-doc/htmldocs/Samba-HOWTO-Collection/ServerType.html +# in the samba-doc package for details. +; security = user + +# You may wish to use password encryption. See the section on +# 'encrypt passwords' in the smb.conf(5) manpage before enabling. + encrypt passwords = no + +# If you are using encrypted passwords, Samba will need to know what +# password database type you are using. + passdb backend = tdbsam + + obey pam restrictions = yes + +; guest account = nobody + invalid users = root + +# This boolean parameter controls whether Samba attempts to sync the Unix +# password with the SMB password when the encrypted SMB password in the +# passdb is changed. +; unix password sync = no + +# For Unix password sync to work on a Debian GNU/Linux system, the following +# parameters must be set (thanks to Ian Kahan < for +# sending the correct chat script for the passwd program in Debian Sarge). + passwd program = /usr/bin/passwd %u + passwd chat = *Enter\snew\sUNIX\spassword:* %n\n *Retype\snew\sUNIX\spassword:* %n\n *password\supdated\ssuccessfully* . + +# This boolean controls whether PAM will be used for password changes +# when requested by an SMB client instead of the program listed in +# 'passwd program'. The default is 'no'. +; pam password change = no + +########## Domains ########### + +# Is this machine able to authenticate users. Both PDC and BDC +# must have this setting enabled. If you are the BDC you must +# change the 'domain master' setting to no +# +; domain logons = yes +# +# The following setting only takes effect if 'domain logons' is set +# It specifies the location of the user's profile directory +# from the client point of view) +# The following required a [profiles] share to be setup on the +# samba server (see below) +; logon path = \\%N\profiles\%U +# Another common choice is storing the profile in the user's home directory +; logon path = \\%N\%U\profile + +# The following setting only takes effect if 'domain logons' is set +# It specifies the location of a user's home directory (from the client +# point of view) +; logon drive = H: +; logon home = \\%N\%U + +# The following setting only takes effect if 'domain logons' is set +# It specifies the script to run during logon. The script must be stored +# in the [netlogon] share +# NOTE: Must be store in 'DOS' file format convention +; logon script = logon.cmd + +# This allows Unix users to be created on the domain controller via the SAMR +# RPC pipe. The example command creates a user account with a disabled Unix +# password; please adapt to your needs +; add user script = /usr/sbin/adduser --quiet --disabled-password --gecos "" %u + +########## Printing ########## + +# If you want to automatically load your printer list rather +# than setting them up individually then you'll need this +; load printers = yes + +# lpr(ng) printing. You may wish to override the location of the +# printcap file +; printing = bsd +; printcap name = /etc/printcap + +# CUPS printing. See also the cupsaddsmb(8) manpage in the +# cupsys-client package. +; printing = cups +; printcap name = cups + +# When using [print$], root is implicitly a 'printer admin', but you can +# also give this right to other users to add drivers and set printer +# properties +; printer admin = @lpadmin + + +############ Misc ############ + +# Using the following line enables you to customise your configuration +# on a per machine basis. The %m gets replaced with the netbios name +# of the machine that is connecting +; include = /home/samba/etc/smb.conf.%m + +# Most people will find that this option gives better performance. +# See smb.conf(5) and /usr/share/doc/samba-doc/htmldocs/speed.html +# for details +# You may want to add the following on a Linux system: +# SO_RCVBUF=8192 SO_SNDBUF=8192 + socket options = TCP_NODELAY + +# The following parameter is useful only if you have the linpopup package +# installed. The samba maintainer and the linpopup maintainer are +# working to ease installation and configuration of linpopup and samba. +; message command = /bin/sh -c '/usr/bin/linpopup "%f" "%m" %s; rm %s' & + +# Domain Master specifies Samba to be the Domain Master Browser. If this +# machine will be configured as a BDC (a secondary logon server), you +# must set this to 'no'; otherwise, the default behavior is recommended. +; domain master = auto + +# Some defaults for winbind (make sure you're not using the ranges +# for something else.) +; idmap uid = 10000-20000 +; idmap gid = 10000-20000 +; template shell = /bin/bash + +#======================= Share Definitions ======================= + +# Un-comment the following (and tweak the other settings below to suit) +# to enable the default home directory shares. This will share each +# user's home directory as \\server\username +;[homes] +; comment = Home Directories +; browseable = no + +# By default, \\server\username shares can be connected to by anyone +# with access to the samba server. Un-comment the following parameter +# to make sure that only "username" can connect to \\server\username +; valid users = %S + +# By default, the home directories are exported read-only. Change next +# parameter to 'yes' if you want to be able to write to them. +; writable = no + +# File creation mask is set to 0600 for security reasons. If you want to +# create files with group=rw permissions, set next parameter to 0664. +; create mask = 0600 + +# Directory creation mask is set to 0700 for security reasons. If you want to +# create dirs. with group=rw permissions, set next parameter to 0775. +; directory mask = 0700 + +# Un-comment the following and create the netlogon directory for Domain Logons +# (you need to configure Samba to act as a domain controller too.) +;[netlogon] +; comment = Network Logon Service +; path = /home/samba/netlogon +; guest ok = yes +; writable = no +; share modes = no + +# Un-comment the following and create the profiles directory to store +# users profiles (see the "logon path" option above) +# (you need to configure Samba to act as a domain controller too.) +# The path below should be writable by all users so that their +# profile directory may be created the first time they log on +;[profiles] +; comment = Users profiles +; path = /home/samba/profiles +; guest ok = no +; browseable = no +; create mask = 0600 +; directory mask = 0700 + +[printers] + comment = All Printers + browseable = no + path = /tmp + printable = yes + public = no + writable = no + create mode = 0700 + +# Windows clients look for this share name as a source of downloadable +# printer drivers +[print$] + comment = Printer Drivers + path = /var/lib/samba/printers + browseable = yes + read only = yes + guest ok = no +# Uncomment to allow remote administration of Windows print drivers. +# Replace 'ntadmin' with the name of the group your admin users are +# members of. +; write list = root, @ntadmin + +# A sample share for sharing your CD-ROM with others. +;[cdrom] +; comment = Samba server's CD-ROM +; writable = no +; locking = no +; path = /cdrom +; public = yes + +# The next two parameters show how to auto-mount a CD-ROM when the +# cdrom share is accesed. For this to work /etc/fstab must contain +# an entry like this: +# +# /dev/scd0 /cdrom iso9660 defaults,noauto,ro,user 0 0 +# +# The CD-ROM gets unmounted automatically after the connection to the +# +# If you don't want to use auto-mounting/unmounting make sure the CD +# is mounted on /cdrom +# +; preexec = /bin/mount /cdrom +; postexec = /bin/umount /cdrom + --- samba-3.3.0.orig/debian/panic-action +++ samba-3.3.0/debian/panic-action @@ -0,0 +1,63 @@ +#!/bin/sh + +# bail out if there's no "mail" command +type mail >/dev/null 2>&1 || exit 0 + +# Redirect all output to our mail command +( + # We must be given a pid to look at + if [ -z "$1" ]; then + echo "$0 called with no arguments." + exit 1 + fi + + if [ ! -d "/proc/$1" ]; then + echo "$0: No such process: $1" + exit 1 + fi + + # Find out what binary we're debugging + BINARYNAME=`readlink "/proc/$1/exe"` + + # Generic header for our email + echo "The Samba 'panic action' script, $0," + echo "was called for PID $1 ($BINARYNAME)." + echo + + echo "This means there was a problem with the program, such as a segfault." + + if [ -z "$BINARYNAME" ]; then + echo "However, the executable could not be found for process $1." + echo "It may have died unexpectedly, or you may not have permission to debug" + echo "the process." + exit 1 + fi + + # No debugger + if [ ! -x /usr/bin/gdb ]; then + echo "However, gdb was not found on your system, so the error could not be" + echo "debugged. Please install the gdb package so that debugging information" + echo "is available the next time such a problem occurs." + exit 1 + fi + + echo "Below is a backtrace for this process generated with gdb, which shows" + echo "the state of the program at the time the error occurred. The Samba log" + echo "files may contain additional information about the problem." + echo + echo "If the problem persists, you are encouraged to first install the" + echo "samba-dbg package, which contains the debugging symbols for the Samba" + echo "binaries. Then submit the provided information as a bug report to" + if [ -x "`which lsb_release 2>/dev/null`" ] \ + && [ "`lsb_release -s -i`" = "Ubuntu" ] + then + echo "Ubuntu by visiting this link:" + echo "https://launchpad.net/ubuntu/+source/samba/+filebug" + else + echo "Debian. For information about the procedure for submitting bug reports," + echo "please see http://www.debian.org/Bugs/Reporting or the reportbug(1)" + echo "manual page." + fi + echo + gdb -x /etc/samba/gdbcommands -batch "$BINARYNAME" "$1" +) | mail -s "Panic or segfault in Samba" root --- samba-3.3.0.orig/debian/samba-tools.files +++ samba-3.3.0/debian/samba-tools.files @@ -0,0 +1,13 @@ +usr/bin/smbtorture +usr/bin/msgtest +usr/bin/masktest +usr/bin/locktest +usr/bin/locktest2 +usr/bin/nsstest +usr/bin/vfstest +usr/bin/pdbtest +usr/bin/talloctort +usr/bin/replacetort +usr/bin/tdbtorture +usr/bin/smbconftort + --- samba-3.3.0.orig/debian/README.source +++ samba-3.3.0/debian/README.source @@ -0,0 +1,24 @@ +Merging upstream releases +========================= + +$ svn-load -t tags/samba/upstream_${version} \ +svn+ssh://svn.debian.org/svn/pkg-samba branches/samba/upstream . + +The svn-load command is in the aptly-named "svn-load" package. The +above is the simplest use of svn-load to merge a new upstream version +into the "upstream" branch and copy it to a per-version tag directory; +please see "svn-load --help" for a list of other options that are of +interest. In particular, you may find that the --wc option saves time +if you're on a slow connection, and the "-m" option may be needed if +files are moved around in the upstream repository and this needs to be +indicated to prevent subversion treating this as addition and deletion +of unrelated files. + +Note that this only imports the new upstream version into the branch, it +doesn't merge it onto the trunk. For this, you should go to your +(clean) working copy of the trunk and run: + +$ svn merge \ +svn+ssh://svn.debian.org/svn/pkg-samba/tags/samba/upstream_{prev_version,new_version} +$ svn diff # (to make sure the diff makes sense) +$ svn commit -m "merge upstream $version" --- samba-3.3.0.orig/debian/samba.files +++ samba-3.3.0/debian/samba.files @@ -0,0 +1,20 @@ +usr/bin/eventlogadm +usr/bin/smbstatus.samba3 +usr/bin/smbcontrol +usr/bin/profiles +usr/bin/tdbbackup +usr/bin/pdbedit +usr/sbin/smbd +usr/sbin/nmbd +usr/sbin/mksmbpasswd +usr/lib/samba/vfs +usr/share/man/man1/smbcontrol.1 +usr/share/man/man1/profiles.1 +usr/share/man/man1/smbstatus.1 +usr/share/man/man8/nmbd.8 +usr/share/man/man8/pdbedit.8 +usr/share/man/man8/smbd.8 +usr/share/man/man8/mksmbpasswd.8 +usr/share/man/man8/tdbbackup.8 +usr/share/man/man8/eventlogadm.8 +etc/ufw/applications.d/samba --- samba-3.3.0.orig/debian/smb.conf.etch +++ samba-3.3.0/debian/smb.conf.etch @@ -0,0 +1,305 @@ +# +# Sample configuration file for the Samba suite for Debian GNU/Linux. +# +# +# This is the main Samba configuration file. You should read the +# smb.conf(5) manual page in order to understand the options listed +# here. Samba has a huge number of configurable options most of which +# are not shown in this example +# +# Any line which starts with a ; (semi-colon) or a # (hash) +# is a comment and is ignored. In this example we will use a # +# for commentary and a ; for parts of the config file that you +# may wish to enable +# +# NOTE: Whenever you modify this file you should run the command +# "testparm" to check that you have not made any basic syntactic +# errors. +# + +#======================= Global Settings ======================= + +[global] + +## Browsing/Identification ### + +# Change this to the workgroup/NT-domain name your Samba server will part of + workgroup = WORKGROUP + +# server string is the equivalent of the NT Description field + server string = %h server + +# Windows Internet Name Serving Support Section: +# WINS Support - Tells the NMBD component of Samba to enable its WINS Server +; wins support = no + +# WINS Server - Tells the NMBD components of Samba to be a WINS Client +# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both +; wins server = w.x.y.z + +# This will prevent nmbd to search for NetBIOS names through DNS. + dns proxy = no + +# What naming service and in what order should we use to resolve host names +# to IP addresses +; name resolve order = lmhosts host wins bcast + +#### Networking #### + +# The specific set of interfaces / networks to bind to +# This can be either the interface name or an IP address/netmask; +# interface names are normally preferred +; interfaces = 127.0.0.0/8 eth0 + +# Only bind to the named interfaces and/or networks; you must use the +# 'interfaces' option above to use this. +# It is recommended that you enable this feature if your Samba machine is +# not protected by a firewall or is a firewall itself. However, this +# option cannot handle dynamic or non-broadcast interfaces correctly. +; bind interfaces only = true + + + +#### Debugging/Accounting #### + +# This tells Samba to use a separate log file for each machine +# that connects + log file = /var/log/samba/log.%m + +# Put a capping on the size of the log files (in Kb). + max log size = 1000 + +# If you want Samba to only log through syslog then set the following +# parameter to 'yes'. +; syslog only = no + +# We want Samba to log a minimum amount of information to syslog. Everything +# should go to /var/log/samba/log.{smbd,nmbd} instead. If you want to log +# through syslog you should set the following parameter to something higher. + syslog = 0 + +# Do something sensible when Samba crashes: mail the admin a backtrace + panic action = /usr/share/samba/panic-action %d + + +####### Authentication ####### + +# "security = user" is always a good idea. This will require a Unix account +# in this server for every user accessing the server. See +# /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/ServerType.html +# in the samba-doc package for details. +; security = user + +# You may wish to use password encryption. See the section on +# 'encrypt passwords' in the smb.conf(5) manpage before enabling. + encrypt passwords = no + +# If you are using encrypted passwords, Samba will need to know what +# password database type you are using. + passdb backend = tdbsam + + obey pam restrictions = yes + +; guest account = nobody + invalid users = root + +# This boolean parameter controls whether Samba attempts to sync the Unix +# password with the SMB password when the encrypted SMB password in the +# passdb is changed. +; unix password sync = no + +# For Unix password sync to work on a Debian GNU/Linux system, the following +# parameters must be set (thanks to Ian Kahan < for +# sending the correct chat script for the passwd program in Debian Sarge). + passwd program = /usr/bin/passwd %u + passwd chat = *Enter\snew\sUNIX\spassword:* %n\n *Retype\snew\sUNIX\spassword:* %n\n *password\supdated\ssuccessfully* . + +# This boolean controls whether PAM will be used for password changes +# when requested by an SMB client instead of the program listed in +# 'passwd program'. The default is 'no'. +; pam password change = no + +########## Domains ########### + +# Is this machine able to authenticate users. Both PDC and BDC +# must have this setting enabled. If you are the BDC you must +# change the 'domain master' setting to no +# +; domain logons = yes +# +# The following setting only takes effect if 'domain logons' is set +# It specifies the location of the user's profile directory +# from the client point of view) +# The following required a [profiles] share to be setup on the +# samba server (see below) +; logon path = \\%N\profiles\%U +# Another common choice is storing the profile in the user's home directory +; logon path = \\%N\%U\profile + +# The following setting only takes effect if 'domain logons' is set +# It specifies the location of a user's home directory (from the client +# point of view) +; logon drive = H: +; logon home = \\%N\%U + +# The following setting only takes effect if 'domain logons' is set +# It specifies the script to run during logon. The script must be stored +# in the [netlogon] share +# NOTE: Must be store in 'DOS' file format convention +; logon script = logon.cmd + +# This allows Unix users to be created on the domain controller via the SAMR +# RPC pipe. The example command creates a user account with a disabled Unix +# password; please adapt to your needs +; add user script = /usr/sbin/adduser --quiet --disabled-password --gecos "" %u + +########## Printing ########## + +# If you want to automatically load your printer list rather +# than setting them up individually then you'll need this +; load printers = yes + +# lpr(ng) printing. You may wish to override the location of the +# printcap file +; printing = bsd +; printcap name = /etc/printcap + +# CUPS printing. See also the cupsaddsmb(8) manpage in the +# cupsys-client package. +; printing = cups +; printcap name = cups + +# When using [print$], root is implicitly a 'printer admin', but you can +# also give this right to other users to add drivers and set printer +# properties +; printer admin = @ntadmin + + +############ Misc ############ + +# Using the following line enables you to customise your configuration +# on a per machine basis. The %m gets replaced with the netbios name +# of the machine that is connecting +; include = /home/samba/etc/smb.conf.%m + +# Most people will find that this option gives better performance. +# See smb.conf(5) and /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/speed.html +# for details +# You may want to add the following on a Linux system: +# SO_RCVBUF=8192 SO_SNDBUF=8192 + socket options = TCP_NODELAY + +# The following parameter is useful only if you have the linpopup package +# installed. The samba maintainer and the linpopup maintainer are +# working to ease installation and configuration of linpopup and samba. +; message command = /bin/sh -c '/usr/bin/linpopup "%f" "%m" %s; rm %s' & + +# Domain Master specifies Samba to be the Domain Master Browser. If this +# machine will be configured as a BDC (a secondary logon server), you +# must set this to 'no'; otherwise, the default behavior is recommended. +; domain master = auto + +# Some defaults for winbind (make sure you're not using the ranges +# for something else.) +; idmap uid = 10000-20000 +; idmap gid = 10000-20000 +; template shell = /bin/bash +; +; The following was the default behaviour in sarge +; but samba upstream reverted the default because it might induce +; performance issues in large organizations +; See #368251 for some of the consequences of *not* having +; this setting and smb.conf(5) for all details +; +; winbind enum groups = yes +; winbind enum users = yes + +#======================= Share Definitions ======================= + +[homes] + comment = Home Directories + browseable = no + +# By default, the home directories are exported read-only. Change next +# parameter to 'yes' if you want to be able to write to them. + writable = no + +# File creation mask is set to 0700 for security reasons. If you want to +# create files with group=rw permissions, set next parameter to 0775. + create mask = 0700 + +# Directory creation mask is set to 0700 for security reasons. If you want to +# create dirs. with group=rw permissions, set next parameter to 0775. + directory mask = 0700 + +# Restrict access to home directories +# to the one of the authenticated user +# This might need tweaking when using external authentication schemes + valid users = %S + +# Un-comment the following and create the netlogon directory for Domain Logons +# (you need to configure Samba to act as a domain controller too.) +;[netlogon] +; comment = Network Logon Service +; path = /home/samba/netlogon +; guest ok = yes +; writable = no +; share modes = no + +# Un-comment the following and create the profiles directory to store +# users profiles (see the "logon path" option above) +# (you need to configure Samba to act as a domain controller too.) +# The path below should be writable by all users so that their +# profile directory may be created the first time they log on +;[profiles] +; comment = Users profiles +; path = /home/samba/profiles +; guest ok = no +; browseable = no +; create mask = 0600 +; directory mask = 0700 + +[printers] + comment = All Printers + browseable = no + path = /var/spool/samba + printable = yes + public = no + writable = no + create mode = 0700 + +# Windows clients look for this share name as a source of downloadable +# printer drivers +[print$] + comment = Printer Drivers + path = /var/lib/samba/printers + browseable = yes + read only = yes + guest ok = no +# Uncomment to allow remote administration of Windows print drivers. +# Replace 'ntadmin' with the name of the group your admin users are +# members of. +; write list = root, @ntadmin + +# A sample share for sharing your CD-ROM with others. +;[cdrom] +; comment = Samba server's CD-ROM +; writable = no +; locking = no +; path = /cdrom +; public = yes + +# The next two parameters show how to auto-mount a CD-ROM when the +# cdrom share is accesed. For this to work /etc/fstab must contain +# an entry like this: +# +# /dev/scd0 /cdrom iso9660 defaults,noauto,ro,user 0 0 +# +# The CD-ROM gets unmounted automatically after the connection to the +# +# If you don't want to use auto-mounting/unmounting make sure the CD +# is mounted on /cdrom +# +; preexec = /bin/mount /cdrom +; postexec = /bin/umount /cdrom + --- samba-3.3.0.orig/debian/samba.init +++ samba-3.3.0/debian/samba.init @@ -0,0 +1,122 @@ +#!/bin/sh + +### BEGIN INIT INFO +# Provides: samba +# Required-Start: $network $local_fs $remote_fs +# Required-Stop: $network $local_fs $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Should-Start: slapd +# Should-Stop: slapd +# Short-Description: start Samba daemons (nmbd and smbd) +### END INIT INFO + + +# Defaults +RUN_MODE="daemons" + +# Reads config file (will override defaults above) +[ -r /etc/default/samba ] && . /etc/default/samba + +DAEMON=/usr/sbin/smbd +PIDDIR=/var/run/samba +NMBDPID=$PIDDIR/nmbd.pid +SMBDPID=$PIDDIR/smbd.pid + +# clear conflicting settings from the environment +unset TMPDIR + +# See if the daemons are there +test -x /usr/sbin/nmbd -a -x /usr/sbin/smbd || exit 0 + +. /lib/lsb/init-functions + +case "$1" in + start) + log_daemon_msg "Starting Samba daemons" + # Make sure we have our PIDDIR, even if it's on a tmpfs + install -o root -g root -m 755 -d $PIDDIR + + NMBD_DISABLED=`testparm -s --parameter-name='disable netbios' 2>/dev/null` + if [ "$NMBD_DISABLED" != 'Yes' ]; then + log_progress_msg "nmbd" + if ! start-stop-daemon --start --quiet --oknodo --exec /usr/sbin/nmbd -- -D + then + log_end_msg 1 + exit 1 + fi + fi + + if [ "$RUN_MODE" != "inetd" ]; then + log_progress_msg "smbd" + if ! start-stop-daemon --start --quiet --oknodo --exec /usr/sbin/smbd -- -D; then + log_end_msg 1 + exit 1 + fi + fi + + log_end_msg 0 + ;; + stop) + log_daemon_msg "Stopping Samba daemons" + log_progress_msg "nmbd" + + start-stop-daemon --stop --quiet --pidfile $NMBDPID + # Wait a little and remove stale PID file + sleep 1 + if [ -f $NMBDPID ] && ! ps h `cat $NMBDPID` > /dev/null + then + # Stale PID file (nmbd was succesfully stopped), + # remove it (should be removed by nmbd itself IMHO.) + rm -f $NMBDPID + fi + + if [ "$RUN_MODE" != "inetd" ]; then + log_progress_msg "smbd" + start-stop-daemon --stop --quiet --pidfile $SMBDPID + # Wait a little and remove stale PID file + sleep 1 + if [ -f $SMBDPID ] && ! ps h `cat $SMBDPID` > /dev/null + then + # Stale PID file (nmbd was succesfully stopped), + # remove it (should be removed by smbd itself IMHO.) + rm -f $SMBDPID + fi + fi + + log_end_msg 0 + + ;; + reload) + log_daemon_msg "Reloading /etc/samba/smb.conf" "smbd only" + + start-stop-daemon --stop --signal HUP --pidfile $SMBDPID + + log_end_msg 0 + ;; + restart|force-reload) + $0 stop + sleep 1 + $0 start + ;; + status) + status="0" + NMBD_DISABLED=`testparm -s --parameter-name='disable netbios' 2>/dev/null` + if [ "$NMBD_DISABLED" != "Yes" ]; then + status_of_proc -p $NMBDPID /usr/sbin/nmbd nmbd || status=$? + fi + if [ "$RUN_MODE" != "inetd" ]; then + status_of_proc -p $SMBDPID /usr/sbin/smbd smbd || status=$? + fi + if [ "$NMBD_DISABLED" = "Yes" -a "$RUN_MODE" = "inetd" ]; then + status="4" + fi + exit $status + ;; + *) + echo "Usage: /etc/init.d/samba {start|stop|reload|restart|force-reload|status}" + exit 1 + ;; +esac + +exit 0 --- samba-3.3.0.orig/debian/winbind.default +++ samba-3.3.0/debian/winbind.default @@ -0,0 +1,11 @@ +# Defaults for winbind initscript +# sourced by /etc/init.d/winbind +# + +# +# This is a POSIX shell fragment +# + + +# Winbind configuration +#WINBINDD_OPTS="-n" --- samba-3.3.0.orig/debian/rules +++ samba-3.3.0/debian/rules @@ -0,0 +1,279 @@ +#!/usr/bin/make -f + +# This has to be exported to make some magic below work. +export DH_OPTIONS + +# Set the host and build architectures for use with config.cache loading, +# cross-building, etc. +DEB_HOST_GNU_TYPE := $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE := $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_HOST_ARCH_OS := $(shell dpkg-architecture -qDEB_HOST_ARCH_OS) + +export DEB_HOST_GNU_TYPE +export DEB_BUILD_GNU_TYPE +export DEB_HOST_ARCH_OS + +pyversion := $(shell pyversions -vd) + +CFLAGS = -g -Wall + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +include /usr/share/quilt/quilt.make + +DESTDIR=`pwd`/debian/tmp + +conf_args = \ + --cache-file=./config.cache \ + --with-fhs \ + --enable-shared \ + --enable-static \ + --prefix=/usr \ + --sysconfdir=/etc \ + --libdir=/usr/lib/samba \ + --with-privatedir=/etc/samba \ + --with-piddir=/var/run/samba \ + --localstatedir=/var \ + --with-rootsbindir=/sbin \ + --with-pammodulesdir=/lib/security \ + --with-pam \ + --with-syslog \ + --with-utmp \ + --with-readline \ + --with-pam_smbpass \ + --with-libsmbclient \ + --with-winbind \ + --with-shared-modules=idmap_rid,idmap_ad,idmap_adex,idmap_hash \ + --with-automount \ + --with-ldap \ + --with-ads \ + --without-smbmount \ + --with-dnsupdate \ + --without-libtdb \ + --without-libnetapi \ + --with-modulesdir=/usr/lib/samba \ + --datarootdir=/usr/share \ + --with-swatdir=/usr/share/samba/swat \ + --with-lockdir=/var/run/samba \ + +ifeq ($(DEB_HOST_ARCH_OS),linux) + conf_args += \ + --with-cifsmount \ + --with-cifsupcall \ + --with-acl-support \ + --with-quotas + mount_cifs = yes + smbfs = yes +else + conf_args += --without-quotas --without-cifsmount + mount_cifs = no + smbfs = no +endif + +ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) + conf_args += --build $(DEB_BUILD_GNU_TYPE) +else + conf_args += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) +endif + +configure: patch configure-stamp +configure-stamp: + dh_testdir + + if [ -f debian/config.cache ]; then \ + cp -f debian/config.cache source/config.cache; \ + fi + + [ -f source/Makefile ] || (cd source && CFLAGS="$(CFLAGS)" ./configure $(conf_args)) + + touch configure-stamp + +build: configure build-stamp +build-stamp: + dh_testdir + + $(MAKE) -C source # headers + $(MAKE) -C source everything nsswitch/libnss_wins.so + + touch build-stamp + +clean: clean-patched unpatch + +clean-patched: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + [ ! -f source/Makefile ] || $(MAKE) -C source distclean + + # Delete stuff left after a build that is not deleted by 'make clean' + rm -f source/bin/wbinfo source/bin/winbindd source/bin/debug2html \ + source/bin/libsmbclient.a \ + source/client/mount.cifs source/client/umount.cifs \ + source/include/stamp-h + + debconf-updatepo + + dh_clean + +ifeq ($(smbfs),no) + DH_EXTRAS=-Nsmbfs +endif + +install: DH_OPTIONS=$(DH_EXTRAS) +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + mkdir -p $(DESTDIR)/usr/lib/cups/backend $(DESTDIR)/usr/share/samba \ + $(DESTDIR)/etc/pam.d $(DESTDIR)/etc/dhcp3/dhclient-enter-hooks.d \ + $(DESTDIR)/etc/ufw/applications.d + + $(MAKE) -C source install DESTDIR=$(DESTDIR) + + # Rename to *.samba3 for alternatives + mv $(DESTDIR)/usr/bin/smbstatus $(DESTDIR)/usr/bin/smbstatus.samba3 + mv $(DESTDIR)/usr/bin/nmblookup $(DESTDIR)/usr/bin/nmblookup.samba3 + mv $(DESTDIR)/usr/share/man/man1/nmblookup.1 $(DESTDIR)/usr/share/man/man1/nmblookup.samba3.1 + mv $(DESTDIR)/usr/bin/net $(DESTDIR)/usr/bin/net.samba3 + mv $(DESTDIR)/usr/share/man/man8/net.8 $(DESTDIR)/usr/share/man/man8/net.samba3.8 + mv $(DESTDIR)/usr/bin/testparm $(DESTDIR)/usr/bin/testparm.samba3 + mv $(DESTDIR)/usr/share/man/man1/testparm.1 $(DESTDIR)/usr/share/man/man1/testparm.samba3.1 + + mv $(DESTDIR)/usr/share/samba/lowcase.dat $(DESTDIR)/usr/share/samba/lowcase.dat.samba3 + mv $(DESTDIR)/usr/share/samba/upcase.dat $(DESTDIR)/usr/share/samba/upcase.dat.samba3 + mv $(DESTDIR)/usr/share/samba/valid.dat $(DESTDIR)/usr/share/samba/valid.dat.samba3 + + # Starting with Samba 3.0.6 libsmbclient.so is installed in + # /usr/lib/samba. We don't want it there since it is not in the + # default library path. Here we move it to /usr/lib/. + mv $(DESTDIR)/usr/lib/samba/libsmbclient* $(DESTDIR)/usr/lib/ + + # same problem with libwbclient. + mv $(DESTDIR)/usr/lib/samba/libwbclient* $(DESTDIR)/usr/lib/ + + # Install other stuff not installed by "make install" + install -m 0755 debian/mksmbpasswd.awk $(DESTDIR)/usr/sbin/mksmbpasswd + install -m 0644 debian/mksmbpasswd.8 $(DESTDIR)/usr/share/man/man8/mksmbpasswd.8 + install -m 0644 source/nsswitch/libnss_winbind.so $(DESTDIR)/lib/libnss_winbind.so.2 + install -m 0644 source/nsswitch/libnss_wins.so $(DESTDIR)/lib/libnss_wins.so.2 + # Install torture stuff + install -m 0755 source/bin/smbtorture $(DESTDIR)/usr/bin/smbtorture + install -m 0755 source/bin/msgtest $(DESTDIR)/usr/bin/msgtest + install -m 0755 source/bin/masktest $(DESTDIR)/usr/bin/masktest + install -m 0755 source/bin/locktest $(DESTDIR)/usr/bin/locktest + install -m 0755 source/bin/locktest2 $(DESTDIR)/usr/bin/locktest2 + install -m 0755 source/bin/nsstest $(DESTDIR)/usr/bin/nsstest + install -m 0755 source/bin/vfstest $(DESTDIR)/usr/bin/vfstest + install -m 0755 source/bin/pdbtest $(DESTDIR)/usr/bin/pdbtest + install -m 0755 source/bin/talloctort $(DESTDIR)/usr/bin/talloctort + install -m 0755 source/bin/replacetort $(DESTDIR)/usr/bin/replacetort + install -m 0755 source/bin/tdbtorture $(DESTDIR)/usr/bin/tdbtorture + install -m 0755 source/bin/smbconftort $(DESTDIR)/usr/bin/smbconftort + mkdir -p $(DESTDIR)/usr/share/pam-configs + install -m 0644 debian/libpam-smbpass.pam-config $(DESTDIR)/usr/share/pam-configs/smbpasswd-migrate + +ifeq ($(mount_cifs),yes) + install -m 0755 debian/mount.smbfs $(DESTDIR)/sbin/mount.smbfs +endif + + # For CUPS to support printing to samba printers, it's necessary + # to make the following symlink (according to + # Erich Schubert in #109509): + ln -s ../../../bin/smbspool $(DESTDIR)/usr/lib/cups/backend/smb + + # ufw integration + install -m644 debian/samba.ufw.profile $(DESTDIR)/etc/ufw/applications.d/samba + + cp debian/smb.conf* $(DESTDIR)/usr/share/samba/ + install -m755 debian/panic-action $(DESTDIR)/usr/share/samba/panic-action.samba3 + # Install samba-common's conffiles - they'll get moved later to their + # correct place by dh_movefiles. + cp debian/gdbcommands $(DESTDIR)/etc/samba/ + cp debian/samba.pamd $(DESTDIR)/etc/pam.d/samba + install -m755 debian/samba-common.dhcp $(DESTDIR)/etc/dhcp3/dhclient-enter-hooks.d/samba + + dh_movefiles + +# Build architecture-independent files here. +# Pass -i to all debhelper commands in this target to reduce clutter. +binary-indep: DH_OPTIONS=-i +binary-indep: build install + dh_testdir + dh_testroot + dh_installdebconf + dh_installdocs -A debian/README.build + # Ignore COPYING. Otherwise, an extra copy of the GPL licence + # in smbldap-tools example is included in samba-doc + dh_installexamples -Xsmbldap-tools-* -XCOPYING + dh_installchangelogs + dh_link + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +# Pass -a to all debhelper commands in this target to reduce clutter. + +binary-arch: DH_OPTIONS=-a $(DH_EXTRAS) +binary-arch: build install + dh_testdir + dh_testroot + dh_installdebconf + dh_installdocs -A debian/README.build + dh_installexamples + dh_installlogrotate + dh_installlogcheck + DH_OPTIONS= dh_installinit -psamba -- "defaults 20 19" + DH_OPTIONS= dh_installinit -pwinbind + dh_installcron + for pkg in samba samba-common smbfs winbind; do \ + install -m 0644 -D debian/$$pkg.lintian debian/$$pkg/usr/share/lintian/overrides/$$pkg || exit; \ + done + dh_installchangelogs -Nlibpam-smbpass + DH_OPTIONS= dh_installchangelogs -plibpam-smbpass source/pam_smbpass/CHANGELOG + DH_OPTIONS= dh_strip -psamba -psmbclient -pwinbind -psamba-common --dbg-package=samba-dbg + DH_OPTIONS= dh_strip -Nsamba -Nsmbclient -Nwinbind -Nsamba-common + dh_link + dh_compress + dh_fixperms + + # Upstream makefile installs this using "install" without -m, so + # it becomes executable + chmod a-x debian/libsmbclient-dev/usr/include/libsmbclient.h + +ifeq ($(mount_cifs),yes) + chmod u+s debian/smbfs/sbin/mount.cifs + chmod u+s debian/smbfs/sbin/umount.cifs +endif + + # Set some reasonable default perms for the samba logdir. + chmod 0750 debian/samba-common/var/log/samba/ + chown root:adm debian/samba-common/var/log/samba/ + chmod 1777 debian/samba/var/spool/samba/ + + DH_OPTIONS= dh_makeshlibs -plibsmbclient -V'libsmbclient (>= 2:3.2.0)' + DH_OPTIONS= dh_makeshlibs -plibwbclient0 + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch + +update-archs: + sed -i -e "s/libacl1-dev \(([^)]\+)\) \[[^]]\+\]/libacl1-dev \1 [`type-handling any linux-gnu`]/g" \ + -e "s/libkeyutils-dev \(([^)]\+)\) \[[^]]\+\]/libkeyutils-dev \1 [`type-handling any linux-gnu`]/g" \ + debian/control + +.PHONY: build clean binary-indep binary-arch binary install configure patch unpatch update-archs --- samba-3.3.0.orig/debian/winbind.postrm +++ samba-3.3.0/debian/winbind.postrm @@ -0,0 +1,9 @@ +#!/bin/sh -e + +if [ "$1" = purge ]; then + rm -rf /var/cache/samba/netsamlogon_cache.tdb /var/cache/samba/winbindd_cache.tdb + rm -rf /var/log/samba/log.winbind* /var/log/samba/log.wb* + rm -rf /var/run/samba/winbindd.pid /var/run/samba/winbindd_privileged/ +fi + +#DEBHELPER# --- samba-3.3.0.orig/debian/samba-common.dirs +++ samba-3.3.0/debian/samba-common.dirs @@ -0,0 +1,6 @@ +etc/samba +etc/dhcp3/dhclient-enter-hooks.d +var/cache/samba +var/lib/samba +var/log/samba +var/run/samba --- samba-3.3.0.orig/debian/changelog +++ samba-3.3.0/debian/changelog @@ -0,0 +1,5780 @@ +samba (2:3.3.0-3ubuntu1) jaunty; urgency=low + + * Merge from debian unstable, remaining changes: + + debian/patches/VERSION.patch: + - setup SAMBA_VERSION_SUFFIX to Ubuntu. + + debian/smb.conf: + - add "(Samba, Ubuntu)" to server string. + - comment out the default [homes] share, and add a comment about + "valid users = %S" to show users how to restrict access to + \\server\username to only username. + - Set 'usershare allow guests', so that usershare admins are + allowed to create public shares in addition to authenticated + ones. + - add map to guest = Bad user, maps bad username to guest access. + + debian/samba.postinst: + - When populating the new samabshare group, it is not an error + if the user simply does not exist; test for this case and let + the install continue instead of aborting. + + debian/samba-common.config: + - Do not change priority to high if dhclient3 is installed. + - Use priority medium instead of high for the workgroup question. + + debian/mksambapasswd.awk: + - Do not add user with UID less than 1000 to smbpasswd. + + debian/control: + - Make libpam-smbpasswd depend on libpam-runtime to allow + libpam-smbpasswd for auto-configuration. + - Make libwbclient0 replace/conflict with hardy's likewise-open. + + debian/libpam-smbpass.pam-config, debian/libpam-smbpass.postinst, + debian/libpam-smbpass.prerm, debian/libpam-smbpass.files, + debian/rules: + - Provide a config block for the new PAM framework to auto-configure + itself + + debian/rules: + - enable "native" PIE hardening. + + Add ufw integration: + - Created debian/samba.ufw.profile + - debian/rules, debian/samba.dirs, debian/samba.files: install + profile + - debian/control: have samba suggest ufw + + debian/patches/last-char-truncation.patch: + - Fix compatibility issue with NAS boxes still using Samba 2.2 and + earlier. + + debian/winbind.files: + - include additional files + * Merged changes: + + debian/control: + - Depend on lsb-base >= 3.2-14, which has the status_of_proc() + function. + + debian/samba.init: + - Add a 'status' action. + + debian/winbind.init: + - Add a PID variable and a 'status' action. + * Fixes LP: #328874. + + -- Steve Langasek Tue, 17 Feb 2009 07:00:42 +0000 + +samba (2:3.3.0-3) unstable; urgency=low + + [ Steve Langasek ] + * Re-add smb.conf fixes that were dropped in the 3.3.0 merge to unstable. + * Make samba conflict with samba4, not with itself. + + [ Debconf translations ] + * Vietnamese updated. Closes: #515235. + * Slovak updated. Closes: #515240. + + -- Steve Langasek Mon, 16 Feb 2009 07:15:47 -0800 + +samba (2:3.3.0-2) unstable; urgency=low + + * Upload to unstable + + -- Christian Perrier Sat, 14 Feb 2009 13:38:14 +0100 + +samba (2:3.2.5-4ubuntu1) jaunty; urgency=low + + * Merge from Debian unstable, remaining changes: + + debian/patches/VERSION.patch: + - setup SAMBA_VERSION_SUFFIX to Ubuntu. + + debian/smb.conf: + - add "(Samba, Ubuntu)" to server string. + - comment out the default [homes] share, and add a comment about + "valid users = %S" to show users how to restrict access to + \\server\username to only username. + - Set 'usershare allow guests', so that usershare admins are + allowed to create public shares in addition to authenticated + ones. + - add map to guest = Bad user, maps bad username to guest access. + + debian/samba.postinst: + - When populating the new samabshare group, it is not an error + if the user simply does not exist; test for this case and let + the install continue instead of aborting. + + debian/samba-common.config: + - Do not change priority to high if dhclient3 is installed. + - Use priority medium instead of high for the workgroup question. + + debian/mksambapasswd.awk: + - Do not add user with UID less than 1000 to smbpasswd. + + debian/control: + - Depend on lsb-base >= 3.2-14, which has the status_of_proc() + function. + - Make libpam-smbpasswd depend on libpam-runtime to allow + libpam-smbpasswd for auto-configuration. + - Make libwbclient0 replace/conflict with hardy's likewise-open. + + debian/samba.init: + - Add a 'status' action. + + debian/libpam-smbpass.pam-config, debian/libpam-smbpass.postinst, + debian/libpam-smbpass.prerm, debian/libpam-smbpass.files, + debian/rules: + - Provide a config block for the new PAM framework to auto-configure + itself + + debian/rules: + - enable "native" PIE hardening. + + Add ufw integration: + - Created debian/samba.uwf.profile + - debian/rules, debian/samba.dirs, debian/samba.files: install + profile + - debian/control: have samba suggest ufw + + debian/patches/last-char-truncation.patch: + - Fix compatibility issue with NAS boxes still using Samba 2.2 and + earlier. + + debian/winbind.files: + - include additional files + + debian/winbind.init: + - Add a PID variable and a 'status' action. + * Dropped changes: + - don't worry about handling upgrades from feisty or edgy, since + users should have upgraded to the hardy version first so this + transition is now finished. + * Fixes LP: #264943 and LP: #286119. + + -- Steve Langasek Wed, 28 Jan 2009 02:35:42 +0000 + +samba (2:3.2.5-4) unstable; urgency=low + + * Fix segfault whan accessign some NAS devices running old versions of Samba + Closes: #500129 + * Fix process crush when using gethostbyname_r in several threads + Closes: #509101, #510450 + + -- Christian Perrier Thu, 08 Jan 2009 05:59:17 +0100 + +samba (2:3.2.5-3ubuntu1) jaunty; urgency=low + + * Merge from debian unstable, remaining changes: + + debian/patches/VERSION.patch: + - setup SAMBA_VERSION_SUFFIX to Ubuntu. + + debian/smb.conf: + - add "(Samba, Ubuntu)" to server string. + - add comment on the default [homes] share, and add a comment about + "valid user = %s" to show users how to restrict access to + \\share\username to only username. + - add map to guest = Bad user, maps bad username to guest access. + (LP:#32067) + + debian/samba-common.postinst: + - Fix upgrade from a first installation done with fiesty, edgy, or + dapper. (LP: #201059) + - When populating the new samabshare group, it is not an error + if the user simply does not exist; test for this case and let + the isntall continue instead of aborting. (LP: #206036) + + debian/samba-common.conf: + - Do not change priority to HIH if dhclient3 is installed. + - Use priority medium instead of HIGH for the workgroun question. + + debian/mksambapasswd.awk: + - Do not add user with UID less than 1000 to smbpasswd. + + debian/control: + - Depend on lsb-base >= 3.2-14, which has the status_of_proc() + function. + - Make libpam-smbpasswd depend on libpam-runtime to allow + libpam-smbpasswd for auto-configuration. + + debian/samba.init: + - Add a pid variable and a 'status' action. + + debian/libpam-smbpass.pam-config, debian/libpam-smbpass.postinst, + debian/libpam-smbpass.files, debian/rules: + - Provide a config block for the new PAM framework to auto-configure + itself + + debian/rules: + - enable "native" PIE hardening. + + Add ufw integration (thanks Nicolas Valcárcel) (LP: #261544): + - Created debian/samba.uwf.profile + - debian/rules: install profile + - debian/control: have samaba suggest ufw + + debian/patches/last-char-truncation.patch: + - Fix compatibility issue with NAS boxes still using Samba 2.2 and + before. (fixes LP: #282298) + + -- Chuck Short Mon, 05 Jan 2009 23:56:54 +0000 + +samba (2:3.2.5-3) unstable; urgency=high + + * Security update + * Fix Potential access to "/" in setups with registry shares enabled + This fixes CVE-2009-0022, backported from 3.2.7 + * Fix links in HTML documentation index file. + Closes: #508388 + * Drop spurious docs-xml/smbdotconf/parameters.global.xml.new + file in the diff. Thanks to the release managers for spotting it + + -- Christian Perrier Sun, 21 Dec 2008 08:09:31 +0100 + +samba (2:3.2.5-2ubuntu1) jaunty; urgency=low + + * Merge from debian unstable, remaining changes: + + debian/patches/VERSION.patch: + - set SAMBA_VERSION_SUFFIX to Ubuntu. + + debian/smb.conf + - add "(Samba, Ubuntu)" to server string. + - add comment on the default [homes] share, and add a comment about + "valid user = %s" to show users how to restrict access to \\share\username + to only username. + - add map to guest = Bad user, maps bad username to guest access. (LP: #32067) + + debian/samba-common.postinst: + - Fix upgrade from a first installation done with fiesty, edgy, or dapper. + (LP: #201059) + - When populating the new samabshare group, it is not an error if the user + simply does not exist; test for this case and let the install continue + instead of aborting. (LP: #206036) + + debian/samba-common.config: + - Do not change priority to HIGH if dhclient3 is installed. + - Use priority medium instad of HIGH for the workgroup question. + + debian/mksambapasswd.awk: + - Do not add user with UID less than 1000 to smbpasswd. + + debian/control: + - Depend on lsb-base >= 3.2-14, which has the status_of_proc() function. + - Make libpam-smbpasswd depend on libpam-runtime to allow libpam-smbpasswd + for auto-configuration. + + debian/samba.init: + - Add a pid variable and a 'status' action. + + debian/libpam-smbpass.pam-config, debian/libpam-smbpass.postinst, + debian/libpam-smbpass.files, debian/rules: + - Provide a config block for the new PAM framework to auto-configure itself. + + debian/rules: + - enable "native" PIE hardening. + + Add ufw integration (thanks Nicolas Valcárcel) (LP: #261544): + - Created debian/samba.ufw.profile. + - debian/rules: install profile + - debian/control: have samba suggest ufw + + debian/patches/last-char-truncation.patch: + - Fix compatibility issue with NAS boxes still using Samba 2.2 or before (fixes LP: #282298) + + -- Chuck Short Sat, 13 Dec 2008 23:03:22 +0000 + +samba (2:3.2.5-2) unstable; urgency=low + + * Fix typo in bug number in a comment for the default smb.conf file + Closes: #507620 + * Document the need to set appropriate permissions on the printer + drivers directory, in the default smb.conf file. Also change + the example group from ntadmin to lpadmin + Closes: #459243 + * Add missing rfc2307.so and sfu*.so links that prevent using the + 'winbind nss info' feature properly + Thans to Martin Dag Nilsson for reporting and Jelmer Jaarsma for + the patch. Closes: #506109 + + -- Christian Perrier Sat, 13 Dec 2008 13:56:07 +0100 + +samba (2:3.2.5-1ubuntu1) jaunty; urgency=low + + * Merge from debian unstable, remaining changes: + + debian/patches/VERSION.patch: + - set SAMBA_VERSION_SUFFIX to Ubuntu. + + debian/smb.conf: + - add "(Samba, Ubuntu)" to server string. + - add comment on the default [homes] shares, and add a comment about + "valid user = %s" to show users how to restrict access to \\share\username + to only username. + - add map to guest = Bad user, maps bad username to guess access. (LP: #32067) + + debian/samba-common.postinst: + - Fix upgrade from a first installation done with feisty, edgy, or dapper. + (LP: #201059) + + debian/samba-common.config: + - Do not change priority to HIGH if dhclient3 is installed. + - Use priority medium insteam of HIGH for the worgroup question. + + debian/mksambapasswd.awk: + - Do not add user with UID less than 1000 to smbpasswd. + + debian/control: + - Depen on lsb-base >= 3.2-14, which has the status_of_proc() function. + - Make libpam-smbpasswd depend on libpam-runtime to allow libpam-smbpasswd for + auto-configuration. + + debian/samba.postinst: + - When populating the new sambashare group, it is not an error if the + user simply does not exist; test for this case and let the install continue + instead of aborting. (LP: #206036) + + debian/samba.init: + - Replace previous 'status' gathering mechanism with the common one now + provided by status_of_proc(). (LP: #247087) + + debian/winbind.init: + - Add a pid variable and a 'status' action. + + debian/libpam-smbpass.pam-config, debian/libpam-smbpassw.postinst, + debian/libpam-smbpass.files, debian/rules: + - Provide a config block for the new PAM framework, allowing this PAM module + to auto-configure itself. + + debian/rules: + - enable "native" PIE hardening. + + Add ufw integration (thanks Nicolas Valcárcel) (LP: #261544): + - Created debian/samba.ufw.profile. + - debian/rules: install profile + - debian/control: have samba suggest ufw + + debian/patches/last-char-truncation.patch: + - Fix compatibility issue with NAS boxes still using Samba 2.2 or before (fixes LP: #282298) + + Dropped bian/patches/security-CVE-2008-4314.patch + - Due to new upstream version. + + -- Chuck Short Thu, 27 Nov 2008 22:56:41 +0000 + +samba (2:3.2.5-1) unstable; urgency=high + + * New upstream version. Security-only release. + This addresses CVE-2008-4314: potentially leaking + arbitrary memory contents to malicious clients. + * Better document cases where using a "master" file for smb.conf + is a bad idea. Closes: #483187 + * Insert example "add machine script" and "add group script" scripts + in the default smb.conf. Closes: #349049 + * Move homepage URL to Homepage filed in debian/control + + -- Christian Perrier Thu, 27 Nov 2008 11:36:35 +0100 + +samba (2:3.3.0-1) experimental; urgency=low + + * New upstream release. Fixes the following bugs: + - smb file deletion gvfs. Closes: #510564 + - smbclient du command does not recuse properly. Closes: #509258 + - mention possible workgroup field in credential files in mount.cifs(8) + Closes: #400734 + - bashism in /usr/share/doc/samba-doc/examples/perfcounter/perfcountd.init + Closes: #489656 + - describe '-g' option in smbclient man page. Closes: #510812 + - fix swat status table layout. Closes: #511275 + + [ Jelmer Vernooij ] + * Use alternatives for the smbstatus, nmblookup, net and + testparm binaries and various data files in samba-common + to allow installation of Samba 3 together with Samba 4. + * Add myself to uploaders. + + [ Christian Perrier ] + * Add mbc_getOptionCaseSensitive@Base, smbc_setOptionCaseSensitive@Base, + smbc_set_credentials@Base, smbc_urldecode@Base and smbc_urlencode@Base to + libsmbclient's symbols file with 3.3.0 as version number + * Also add 18 symbols to libwbclient0's symbols file with 3.3.0 as + version number + + -- Christian Perrier Fri, 30 Jan 2009 21:41:49 +0100 + +samba (2:3.3.0~rc2-4) experimental; urgency=low + + [ Steve Langasek ] + * Revert one of the template depersonalization changes from the -2 upload, + because it loses important context + + [ Christian Perrier ] + * Use double quotation marks in debconf templates + * Add 'status" option to init scripts. Thansk to Dustin Kirkland for + providing the patch. Closes: #488275 + * Move WHATSNEW.txt, README, Roadmap to samba-common. Closes: #491997 + * [Lintian] Add ${misc:Depends} to dependencies of binary packages + that didn't have it already as we're using debhelper in the source + package + * [Lintian] Don't ignore errors in swat.postrm + * [Lintian] Fix "local foo=bar" bashisms in samba-common.dhcp, samba.config + and samba-common.config + * smb.conf.5-undefined-configure.patch: fix syntax error in smb.conf(5) + Closes: #512843 + + [ Debconf translations ] + * Asturian added. Closes: #511730 + + -- Christian Perrier Sat, 24 Jan 2009 16:04:57 +0100 + +samba (2:3.3.0~rc2-3) experimental; urgency=low + + * Fix around the libsmbclient/libsmbclient-dev descriptions, which got + swapped in the last upload. + * Drop a boilerplate sentence from the samba-common, smbclient, swat, + samba-doc, samba-doc-pdf, samba-dbg, and libwbclient0 descriptions + that's not relevant for these packages. + * Hyphenate "command-line" in the smbclient short description. + * Fix up the smbclient description, which got crossed with the smbfs one. + * Fix the smbfs description, which was not actually fixed in the previous + upload. Really closes: #496206. + * Further minor adjustments to the description of the swat package. + * Fix various inaccuracies in the winbind package description. + * Clarify in the description that samba-tools are extra, only useful for + testing. + + -- Steve Langasek Tue, 30 Dec 2008 18:42:05 -0800 + +samba (2:3.3.0~rc2-2) experimental; urgency=low + + [ Steve Langasek ] + * Handle clearing out netbios settings whenever the DHCP server has gone + away. Closes: #299618. + + [ Christian Perrier ] + * Point the correct document about password encryption in debconf templates + Corrected in translations as well. Closes: #502838 + * Reword debconf templates to avoid mentioning the local host as a "server". + Closes: #171177 + * Use this opportunity for other minor rewording: + - replace "SMB" by "SMB/CIFS" + - more strongly discouraging the use of plain text passwords + - unpersonnalization + * Reword the libpam-smbpass package description + Thanks to Justin B. Rye for the very useful suggestions + Closes: #496196 + * Improve the package descriptions by rewording the description overhaul + Also improve the specific information for samba and samba-dbg + Thanks again to Justin B. Rye for the invaluable help + Closes: #496200 + * Improve libsmbclient package description. Closes: #496197 + * Improve libwbclient0 package description. Closes: #496199 + * Improve samba-doc package description. Closes: #496202 + * Improve samba-tools package description. Closes: #496203 + * Improve samba-common package description. Closes: #496204 + * Improve smbclient package description. Closes: #496205 + * Improve smbfs package description. Closes: #496206 + * Improve swat package description. Closes: #496207 + * Improve winbind package description. Closes: #496208 + * Improve samba-doc-pdf package description. Closes: #496211 + * Update French debconf translation + + -- Christian Perrier Mon, 29 Dec 2008 11:50:04 +0100 + +samba (2:3.3.0~rc2-1) experimental; urgency=low + + * New upstream release + + -- Christian Perrier Wed, 17 Dec 2008 08:22:18 +0100 + +samba (2:3.3.0~rc1-2) experimental; urgency=low + + * Provide idmap_adex and idmap_hash in winbind. + Thanks to Jelmer Jaarsma for reporting and providing a patch + + -- Christian Perrier Thu, 04 Dec 2008 19:59:23 +0100 + +samba (2:3.3.0~rc1-1) experimental; urgency=low + + * New upstream release + + -- Christian Perrier Fri, 28 Nov 2008 10:51:32 +0100 + +samba (2:3.3.0~pre2-1) experimental; urgency=low + + * New upstream release. + + -- Christian Perrier Fri, 07 Nov 2008 20:52:36 +0100 + +samba (2:3.2.4-1ubuntu3) jaunty; urgency=low + + * SECURITY UPDATE: potential arbitrary memory leak and crash via secondary + trans, trans2 and nttrans requests. + - debian/patches/security-CVE-2008-4314.patch: fix the offset checks in the + trans routines in source/smbd/{ipc.c,nttrans.c,trans2.c}. + - CVE-2008-4314 + + -- Marc Deslauriers Fri, 21 Nov 2008 14:45:51 -0500 + +samba (2:3.2.4-1ubuntu2) jaunty; urgency=low + + * debian/patches/last-char-truncation.patch: Fix compatibility issue with + NAS boxes still using Samba 2.2 or before (fixes LP: #282298) + + -- Thierry Carrez Mon, 17 Nov 2008 16:17:26 +0000 + +samba (2:3.2.4-1ubuntu1) jaunty; urgency=low + + * Merge from debian unstable, remaining changes: + + debian/patches/VERSION.patch: + - set SAMBA_VERSION_SUFFIX to Ubuntu + + debian/smb.conf: + - add "(Samba, Ubuntu)" to server string. + - add comment on the default [homes] shares, and add a comment about + "valid user = %s" to show users how to restrict access to \\server\unserane + to only username. + - add map to guest = Bad user, maps bad username to guest access. (LP: #32067) + + debian/samba-common.postinst: + - Fix upgrade from a first installation done with feisty, edgy, or dapper. + (LP: #201059) + - When populating the new sambashare group, it is not an error if the + user simply does not exist; test for this case and let the install continue + instead of aborting. (LP: #206036) + + debian/samba-common.config: + - do not change priority to HIGH if dhclient3 is installed. + - use priorotiy medium instead of HIGH for the workgroup question. + + debian/mksambapasswd.awk: + - Do not add user with UID less than 1000 to smbpasswd. + + debian/control: + - Depend on lsb-base >= 3.2-14, which has the status_of_proc() function. + - Make libpam-smbpasswd depend on libpam-runtime to allow libpam-smbpasswd for + auto-configuration. + + debian/samba.init: + - Replace previous 'status' gathering mechanism with the common one now + provided by status_of_proc() (LP: #247087). + + debian/winbind.init: + - Add a pid variable and a 'status' action. + + debian/libpam-smbpass.pam-config, debian/libpam-smbpassw.postinst, + debian/libpam-smbpass.files, debian/rules: + - provide a config block for the new PAM framework, allowing this PAM module + to auto-configure itself. + + debian/libpam-smbpass.prerm: + - call pam-auth-update --remoove on removal, to clean up after ourselves. + + debian/rules: + - enable "native" PIE hardening + + Add ufw integration (thanks Nicolas Valcárcel) (LP: #261544) + - Created debian/samaba.ufw.profile. + - debian/rules: install profile + - debian/control: have samba suggest ufw + + -- Chuck Short Wed, 05 Nov 2008 03:24:52 +0000 + +samba (2:3.2.4-1) unstable; urgency=low + + [ Steve Langasek ] + * New upstream release. + - debian/rules: we don't need to move cifs.upcall around, it's now + installed to the right place upstream. + - Fixed in this release: + - typo in cifs.upcall.8. Closes: #501499 + + [ Christian Perrier ] + * Create /var/lib/samba in samba-common. Thanks to Thierry Carrez for + the patch. Closes: #499359 + + -- Christian Perrier Sat, 18 Oct 2008 08:20:31 +0200 + +samba (2:3.2.3-3) unstable; urgency=low + + [ Steve Langasek ] + * Add missing manpage for cifs.upcall; thanks to Per Olofsson for pointing + this out. Closes: #497857. + * Georgian debconf translation added. Closes: #498426 + * Polish debconf translation added. Thanks to Åukasz Paździora. + + [ Jelmer Vernooij ] + * Add ldb-tools to Suggests: of samba. Closes: #488384 + + -- Christian Perrier Fri, 03 Oct 2008 20:37:19 +0200 + +samba (2:3.2.3-2) unstable; urgency=low + + [ Christian Perrier ] + * Fix FTBFS on GNU/kFreeBSD. Closes: #496880 + + -- Steve Langasek Sat, 30 Aug 2008 00:46:07 -0700 + +samba (2:3.2.3-1ubuntu3) intrepid; urgency=low + + * Fix pam-smbpass.so crashing because it misses /var/lib/samba (LP: #260687) + - debian/samba-common.dirs: create /var/lib/samba in samba-common + - debian/samba.postrm: don't completely remove /var/lib/samba on purge + (just let samba-common postrm do it) + + -- Thierry Carrez Fri, 10 Oct 2008 11:24:48 +0200 + +samba (2:3.2.3-1ubuntu2) intrepid; urgency=low + + * Make libwbclient0 replace/conflict with hardy's likewise-open (LP: #254434) + + -- Thierry Carrez Fri, 12 Sep 2008 14:30:00 +0200 + +samba (2:3.2.3-1ubuntu1) intrepid; urgency=low + + * Merge from debian unstable, remaining changes: + - debian/patches/VERSION.patch: + + set SAMBA_VERSION_SUFFIX to Ubuntu. + - debian/smb.conf: + + add "(Samba, Ubuntu)" to server string. + + comment on the default [homes] shares, and add a comment about "valid user = %s" + to show users how to restrict access to \\server\username to only username. + + add map to guest = Bad user, maps bad username to guest access. (LP: #32067) + - debian/samba-common.postinst: + + Fix upgrade from a first installation done with feisty, edgy, or dapper. + (LP: #201059) + + When populating the new sambashare group, it's not an error if the user + simply doesn't exist; test for this case and the install continue instead + of aborting. (LP: #206036) + - debian/samba-common.config: + + do not change priority to HIGH if dhclient3 is installed. + + use priority medium instead of HIGH for the workgroup question. + - debian/winbind.files: + + include additional files + - debian/mksambapasswd.awk: + + Don't add user with UID less than 1000 to smbpasswd. + - debian/control: + + Depend on lsb-base >= 3.2-14, which has the status_of_proc() function. + + Make libpam-smbpass depend on libpam-runtime for allowing libpam-smbpasss + to auto-configure itself. + - debian/samba.init: + + Replace the previous 'status' gathering mechanism with the common one + now provided by status_of_proc() (LP: #247087). + - debian/winbind.init: + + Add a pid variable and a 'status' action. + - debian/libpam-smbpass.pam-config, debian/libpam-smbpass.postinst, + debian/libpam-smbpass.files, debian/rules: provide a config block for the + new PAM framework, allowing his PAM module to auto-configure itself. + - debian/libpam-smbpass.prerm: call pam-auth-update --remove on removal, + to clean up after ourselves. + - debian/rules: enable "native" PIE hardening. + + [Jamie Strandboge] + * Add ufw integration (thanks Nicolas Valcárcel) (LP: #261544) + - Created debian/samba.ufw.profile + - debian/rules: install profile + - debian/control: have samba Suggests ufw + + -- Chuck Short Wed, 27 Aug 2008 23:57:11 +0100 + +samba (2:3.2.3-1) unstable; urgency=high + + * High-urgency upload for security fix + * New upstream release + - Fix "/usr/lib/cups/backend/smb does not try port 139 anymore by default" + Closes: #491881 + - Fix the default permissions on ldb databases. Addresses + CVE-2008-3789; closes: #496073. + - debian/rules, debian/smbfs.files: build with cifs.upcall, + newly introduced to replace cifs.spnego + - debian/rules: no more need to rename libsmbclient.so to + libsmbclient.so.0, or libwbclient.so to libwbclient.so.0 + + [ Noèl Köthe ] + * fixing lintian warning "build-depends-on-1-revision" + + -- Steve Langasek Wed, 27 Aug 2008 10:19:59 -0700 + +samba (2:3.2.1-1ubuntu5) intrepid; urgency=low + + * debian/{control,rules}: revert sledge-hammer PIE approach. + * debian/rules: enable "native" PIE hardening. + + -- Kees Cook Tue, 26 Aug 2008 10:59:10 -0700 + +samba (2:3.2.1-1ubuntu4) intrepid; urgency=low + + * debian/{control,rules}: enable PIE hardening + + -- Kees Cook Mon, 25 Aug 2008 14:40:21 -0700 + +samba (2:3.2.1-1ubuntu3) intrepid; urgency=low + + * debian/libpam-smbpass.prerm: call pam-auth-update --remove on removal, + to clean up after ourselves. + + -- Steve Langasek Fri, 22 Aug 2008 00:07:04 +0000 + +samba (2:3.2.1-1ubuntu2) intrepid; urgency=low + + * debian/libpam-smbpass.pam-config, debian/libpam-smbpass.postinst, + debian/libpam-smbpass.files, debian/rules: provide a config block + for the new PAM framework, allowing this PAM module to + auto-configure itself + * debian/control: make libpam-smbpass depend on + libpam-runtime (>= 1.0.1-2ubuntu1) for the above + + -- Steve Langasek Thu, 21 Aug 2008 01:45:12 +0000 + +samba (2:3.2.1-1ubuntu1) intrepid; urgency=low + + * Merge from debian unstable, remaining changes: + - debian/patches/VERSION.patch: + + set SAMBA_VERSION_SUFFIX to Ubuntu. + - debian/smb.conf: + + add "(Samba, Ubuntu)" to server string. + + comment on the default [homes] shares, and add a comment about "valid user = %s" + to show users how to restrict access to \\server\username to only username. + + add map to guest = Bad user, maps bad username to guess access. + (LP: #32067) + - debian/samba-common.postinst: + + Fix upgrade from a first installation done with feisty, edgy, or dapper. + (LP: #201059) + + When populating the new sambashare group, it's not an error if the user + simply doesn't exist; test for this care and let the install continue + instead of aborting. (LP: #206036) + - debian/samba-common.config: + + do not change priority ti HIGH if dhclient3 is installed + + use priority medium instead of HIGH for the workgroup question. + - debian/winbind.files: + + include additional files + - debian/mksambapasswd.awk: + + Don't add user with UID less than 1000 to smpasswd. + - debian/control: + + Depend on lsb-base >= 3.2-14, which has the status_of_proc() function. + - debian/samba.init: + + Replace the previous 'status' gathering mechanism with the common one + now provided by status_of_proc() (LP: #247087). + - debian/winbind.init: Add a pid variable and a 'status' action. + + -- Chuck Short Fri, 15 Aug 2008 11:49:41 +0100 + +samba (2:3.2.1-1) unstable; urgency=low + + [ Steve Langasek ] + * Build-depend on keyutils only on the linux archs. Closes: #493401. + * New patch debian/patches/shrink-dead-code.patch: throw all .o files into + a .a archive as a first pass before linking the final executables, so + that the executables don't end up with quite so much unused code bloating + the system. Not applied to net or ntlm_auth, which have particularly + hairy linking needs. Partially addresses: bug #474543; no code was + harmed in the making of this patch. + * Build-depend on libcups2-dev | libcupsys2-dev, to facilitate backports. + + [ Christian Perrier ] + * New upstream release + - Fix trusted domain handling in Winbindd. Closes: #493752 + - Fix for print jobs that continued to show as active after printing + had completed. Closes: #494899. + + -- Steve Langasek Thu, 14 Aug 2008 16:13:24 -0700 + +samba (2:3.2.0-4ubuntu3) intrepid; urgency=low + + * debian/winbind.init: Fixed error in init script. (LP: #253910) + + -- Chuck Short Fri, 01 Aug 2008 14:01:09 +0000 + +samba (2:3.2.0-4ubuntu2) intrepid; urgency=low + + * debian/control: Depend on lsb-base >= 3.2-14, which has the + status_of_proc() function. + * debian/samba.init: Replace the previous 'status' gathering mechanism with + the common one now provided by status_of_proc() (LP: #247087). + * debian/winbind.init: Add a pid variable and a 'status' action. + + -- Dustin Kirkland Mon, 28 Jul 2008 15:55:45 -0500 + +samba (2:3.2.0-4ubuntu1) intrepid; urgency=low + + * Merge from debian unstable, remaining changes: + * debian/patpches/VERSION.patch: + - set SAMBA_VERSION_SUFFIX to Ubuntu. + * debian/smb.conf: + - add "(Samba, Ubuntu)" to server string. + - comment on the default [homes] shares, and add a comment about + "valid user = %s" to show users how to restrict access to + \\server\username to only username. + - add map to guest = Bad user, maps bad username to guest access. + (LP: #32067) + * debian/samba-common.postinst: + - Fix upgrad from a first installation done with feisty, edgy, or dapper. + (LP: #201059) + - When populating the new sambashare group, it's not an error if the + user simply doesn't exist; test for this case and let the install + continue instead of aborting. (LP: #206036) + * debian/samba-common.config: + - do not change priority to HIGH if dhclient3 is instaleld + - use priority medium instead of HIGH for the workgroup question + * debian/winbind.files: + - include additional files + * debian/mksambapasswd.awk: + - Don't add user with UID less than 1000 to smbpasswd. + + -- Chuck Short Tue, 22 Jul 2008 13:45:10 +0100 + +samba (2:3.2.0-4) unstable; urgency=low + + * Brown paper bag bug: add a change to debian/patches/fhs-filespaths.patch + that went missing somehow, causing samba to look for secrets.tdb in + /etc/samba instead of /var/lib/samba where it's been for years. No + migration handling added, because this was only present in unstable for + about a day. Thanks to Rick Nelson for pointing this out. + + -- Steve Langasek Mon, 21 Jul 2008 17:39:48 -0700 + +samba (2:3.2.0-3ubuntu1) intrepid; urgency=low + + * Merge from debian unstable, remaining changes: + * debian/patches/VERSION.patch: + - set SAMBA_VERSION_VENDOR_SUFFIX to Ubuntu. + * debian/smb.conf + - add "(Samba, Ubuntu)" to server string. + - comment out the default [homes] shares, and add a comment about + "valid user = %s" to show users how to restrict access to \\server\username + to only username. + - add map to guest = Bad user, maps bad username to guest access. (LP: #32067) + * debian/samba-common.postinst: + - Fix upgrade from a first installation done with feisty, edgy, or dapper. + (LP: #201059) + - When population the new sambashare group, it's not an error if the user + simply doesn't exist; test for this case and the install continue instead + of aborting. (LP: #206036) + * debian/samba-common.config: + - do not change priority to HIGH if dhclient3 is installed + - used priority medium instaed of high for the workgroup question + * debian/winbind.files: + - include additional files + * debian/mksambapasswd.awk: + - Don't add user with UID less than 1000 to smbpasswd. + * Dropped changes: + - Dropped debian/patches/upstream_bug5517.patch. Already applied upstream. + - Dropped debian/patches/disable-weak-auth.patch. Already applied upstream. + - Dropped debian/patches/fix-server-signature.patch. Already appled upstream. + - Dropped debian/patches/fix-documentation.patch. Already applied upstream. + + -- Chuck Short Mon, 21 Jul 2008 12:51:37 +0100 + +samba (2:3.2.0-3) unstable; urgency=low + + * Upload to unstable. + * debian/patches/proper-static-lib-linking.patch: fix SMB_LIBRARY macro + and Makefile.in to properly avoid linking .a libraries into other .a + libraries, since this bloats the libraries without providing any useful + functionality. + * Version the build-dependency on libtalloc-dev, to ensure we're building + against a package with the right symbols. + * Add debian/libsmbclient.symbols and debian/libwbclient0.symbols, to get + more fine-grained versioned library dependencies + * Bump the shlibs version for libsmbclient to 2:3.2.0, as new symbols + have been added. + * Re-add docs/registry to samba-doc, restored upstream + * Move schannel_store.tdb out of /etc/samba to /var/lib/samba, where it + belongs according to the FHS. Closes: #454770. + + -- Steve Langasek Sun, 20 Jul 2008 15:38:10 -0700 + +samba (2:3.2.0-2) experimental; urgency=low + + * Fix up the copyright file to correctly document that we're now under + GPLv3, not GPLv2. + + -- Steve Langasek Tue, 08 Jul 2008 12:21:47 -0700 + +samba (2:3.2.0-1) experimental; urgency=low + + [ Christian Perrier ] + * New samba-tools package to provide all "torture" tools: + smbtorture msgtest masktest locktest locktest2 nsstest vfstest + pdbtest talloctort replacetort tdbtorture smbconftort + * Upgrade Standard to 3.8.0 (checked) + * Merged from unstable: + * Drop "invalid users = root" from the default smb.conf file + as it differs from upstream's behaviour and upstream is fairly + noisy about this choice of ours. Closes: #462046 + * Drop commented "guest account = nobody". This is already upstream's + default + * Remove versioned Build-Depends when satisfied in etch (actually all + versioning in Build-Depends) + * Remove Conflicts with non-existing packages + * Drop dpkg-dev and binutils from Build-Depends, since the versioned + build-dep is no longer needed and these are both Build-Essential + * Mini-policy for settings in smb.conf: + - don't explicitly set settings to their default value + - commented settings with the default value are commented with "#" + - commented settings with a non-default value are commented with ";" + * Apply this policy to "socket options". Closes: #476104 + * No longer gratuitously use /usr/lib/libsmbclient.so.0.1 but a more logical + libsmbclient.so.0 as upstream doesn't assign versions + * Add idmap_*(8) man pages (idea taken from SerNet packages) + * Create the entire set of directories needed by clients for + Point-and-Click printing (including old clients!) in + /var/lib/samba/printers (idea taken from SerNet packages) + * Update copyright and README.debian information for current and past + maintainers. Remove redundant mention of Tridge (the copyright is enough) + * Add doc-base files for samba-doc-pdf. Closes: #451685 + * add a soft dependency on slapd in init script to allow + proper operation when dependency-based boot sequence is enabled. + Thanks to Petter Reinholdtsen for reporting and providing a patch + Closes: #478800 + * Rename libcupsys2-dev to libcups2-dev in build dependencies + * Localize SWAT in German. Closes: #487681 + + [ Debconf translations ] + * Merged from unstable: + * Kurdish. Closes: #480151 + * Romanian updated. Closes: #488709. + + [ Steve Langasek ] + * New upstream release + * Merged from unstable: + * debian/patches/no-unnecessary-cups.patch: don't try to connect to a + cups server when we know that no printers are configured. + Closes: #479512. + + [ Jelmer Vernooij ] + * Merged from unstable: + * Fix bashism in smbtar. (Closes: #486056) + + [ Peter Eisentraut ] + * Merged from unstable: + * Removed myself from Uploaders + + -- Christian Perrier Sun, 06 Jul 2008 09:59:07 +0200 + +samba (2:3.2.0~rc2-1) experimental; urgency=low + + [ Christian Perrier ] + * New upstream release + + [ Steve Langasek ] + * Enable building of cifs.spnego for the smbfs package, adding a + build-dependency on keyutils-dev, to allow kerberos-based authentication + of cifs mounts. Closes: #480663, LP: #236830. + + -- Christian Perrier Thu, 12 Jun 2008 17:17:38 +0200 + +samba (2:3.2.0~rc1-2) experimental; urgency=low + + * Reupload to experimental. Sigh. + + -- Christian Perrier Sat, 31 May 2008 11:08:14 +0200 + +samba (2:3.0.30-2ubuntu3) intrepid; urgency=low + + * debian/patches/upstream_bug5517.patch: adjust cli_negprot() to properly + calculate buffer sizes. This bug was introduced in the fix for + CVE-2008-1105 + * References + LP: #241448 + https://bugzilla.samba.org/show_bug.cgi?id=5517 + + -- Jamie Strandboge Mon, 30 Jun 2008 09:17:40 -0400 + +samba (2:3.0.30-2ubuntu2) intrepid; urgency=low + + * Fix spelling of "unsuccessful" in debian/smb.conf (LP: #225661) + + -- Nathan Handler Sun, 22 Jun 2008 12:41:05 -0500 + +samba (2:3.0.30-2ubuntu1) intrepid; urgency=low + + * Merge from debian unstable, remaining changes: + * debian/patches/VERSION.patch + - set SAMABA_VERSION_VENDOR_SUFFIX to Ubuntu + * debian/smb.conf + - add "(Samba, Ubuntu)" to server string. + - comment out the default [homes] shares, and a comment about + "valid users = %S to show users how to restrict access to + \\server\useranem to only username. + - Add map to guest = Bad user, maps bad username to guest access. + (LP: #32067) + * debian/samba-common.postinst: + - Fix upgrade from a first installation done with feisty, edgy, or dapper. + (LP: #201059) + - When populating the new sambashare group, it's not an error if the user + simply doesn't exist; test for this case and the install continue + instead of aborting. (LP: #206036) + * debian/smba-common.config: + - do not change priority to HIGH if dhclient3 is installed + - used priority medium instead of high for the workgroup question + * debian/winbind.files + - insclude additional files + * debian/patches/fix-documentation.patch: + - fix typos in net(8) and smb.conf(5) man pages + * debian/mksambapasswd.awk: + - Don't add user with UID less than 1000 to smbpasswd. + * debian/samba.init: + - add 'status' option for LSB conformance. + * Updated control version. + * Dropped Changes: + - Dropped debian/patches/fix-smbprinting-os2.patch. Accepted upstream. + - Dropped debian/patches/fix-documentation.patch. Accepted upstream. + + + -- Chuck Short Mon, 02 Jun 2008 09:01:46 -0500 + +samba (2:3.0.30-2) unstable; urgency=high + + * Brown paper bag releae with epoch increased after yet another + accidental upload of 3.2.0 to unstable. Sigh and apologies to + autobuilders. + + -- Christian Perrier Sat, 31 May 2008 12:08:50 +0200 + +samba (1:3.2.0~rc1-1) unstable; urgency=low + + * New upstream version + * debian/samba-doc.doc-base.samba-using: index file is no named toc.html + + -- Christian Perrier Fri, 30 May 2008 20:22:57 +0200 + +samba (1:3.2.0~pre3-1) experimental; urgency=low + + * New upstream version + * debian/patches/fix-manpage-htmlchars.patch: dropped as fixed upstream + * docs/registry removed from samba-doc as missing from upstream tarball + (upstream bug #5421) + * debian/samba-doc.doc-base.samba-using: The index (and only) file + is now book.html + + -- Christian Perrier Sat, 26 Apr 2008 08:20:21 +0200 + +samba (1:3.2.0~pre2-2) experimental; urgency=low + + [ Christian Perrier ] + * Upload to experimental with an epoch as the earlier version + accidentally went to unstable. + + [ Peter Eisentraut ] + * Removed myself from Uploaders + + -- Christian Perrier Sun, 06 Apr 2008 20:38:35 +0200 + +samba (1:3.0.30-1) unstable; urgency=high + + * New upstream release: fix a heap overflow when parsing SMB responses in + client code. (CVE-2008-1105). Closes: #483410 + + -- Christian Perrier Wed, 28 May 2008 22:38:44 +0200 + +samba (1:3.0.29-1) unstable; urgency=low + + * New upstream release + + -- Christian Perrier Thu, 22 May 2008 07:31:55 +0200 + +samba (1:3.0.28a-3) unstable; urgency=low + + * The "bug hunting at SambaXP" release + * Drop "invalid users = root" from the default smb.conf file + as it differs from upstream's behaviour and upstream is fairly + noisy about this choice of ours. Closes: #462046 + * Drop commented "guest account = nobody". This is already upstream's + default + * Remove versioned Build-Depends when satisfied in etch (actually all + versioning in Build-Depends) + * Remove Conflicts with non-existing packages + * Drop dpkg-dev and binutils from Build-Depends, since the versioned + build-dep is no longer needed and these are both Build-Essential + * Mini-policy for settings in smb.conf: + - don't explicitly set settings to their default value + - commented settings with the default value are commented with "#" + - commented settings with a non-default value are commented with ";" + * Apply this policy to "socket options". Closes: #476104 + * No longer gratuitously use /usr/lib/libsmbclient.so.0.1 but a more logical + libsmbclient.so.0 as upstream doesn't assign versions + * Add idmap_*(8) man pages (idea taken from SerNet packages) + * Create the entire set of directories needed by clients for + Point-and-Click printing (including old clients!) in + /var/lib/samba/printers (idea taken from SerNet packages) + * Update copyright and README.debian information for current and past + maintainers. Remove redundant mention of Tridge (the copyright is enough) + * Add doc-base files for samba-doc-pdf. Closes: #451685 + * Kurdish debconf translation. Closes: #480151 + + -- Christian Perrier Wed, 16 Apr 2008 23:14:46 +0200 + +samba (1:3.0.28a-2) unstable; urgency=low + + [ Peter Eisentraut ] + * Removed myself from Uploaders + + [ Steve Langasek ] + * debian/patches/manpage-encoding.patch: fix up the manpage synopses to + not use embedded iso8859-1 non-break spaces, there is a roff escape + sequence that we should use instead. Closes: #470844. + + [ Christian Perrier ] + * Reupload with an epoch to supersede an accidental upload of 3.2.0 + in unstable + + -- Christian Perrier Sat, 05 Apr 2008 11:59:23 +0200 + +samba (3.2.0~pre2-1) unstable; urgency=low + + * New upstream (pre-)release. It closes the following bugs: + - typos in net.8. Closes: #460487, #460491 + - mention insmb.conf(5) that logging still occurs when + "syslog only" is enabled and "syslog=0". Closes: #311300 + - bad link in HTML docs. Closes: #358479 + - enhance a useless and confusing debug message in pdb_ldap + Closes: #448546 + - mention the correct default debug level in smbclient(1) + Closes: #292371 + - no longer mention that "ip" parameter can use the host name + in mount.cifs(8). Closes: #296057 + - wrong spelling of "its own" in source comments fixed + Closes: #448686 + - fix "ldapsam_getgroup: Did not find group" debug message + Closes: #448546 + - fix smbclient(1): useless use of cat. Closes: #429349 + + [ Steve Langasek ] + * debian/patches/fix-manpage-htmlchars.patch: patch all the manpages from + 3.2.0pre2, which ended up with html entity encodings embedded in them + by mistake. This patch is expected to go away again for 3.2.0pre3. + * fix up the FHS patches for the new upstream release: + - debian/patches/fhs-newpaths.patch has been merged upstream, drop it. + - debian/patches/fhs-filespaths.patch has been mostly applied; only one + path usage remains inconsistent, and a new .tdb has been added with + the wrong path so fix this up here too. + - debian/patches/fhs-filespaths-debatable.patch: updated for some new + uses of lock_path() which we map to cache_path(). + - debian/patches/fhs-assignpaths.patch: patch source/m4/check_path.m4 + instead of source/configure.in. + * debian/patches/smbstatus-locking.patch: merged upstream + * debian/patches/smbpasswd-syslog.patch: updated to account for new + calls to logging functions + * Handle the new libraries available in samba 3.2: ship libwbclient as a + shared library, link against the system libtalloc (adding a + build-dependency on libtalloc-dev - which is actually sort of kludgy + because this only works as long as the system libtalloc has the same + soname as the one within the samba tree, this should be fixed to + properly build against the system libtalloc), and suppress generation + of the tdb and netapi libraries which aren't useful to us right now. + + -- Christian Perrier Wed, 05 Mar 2008 22:45:28 +0100 + +samba (2:3.0.31-1) unstable; urgency=medium + + * New upstream release + + -- Christian Perrier Sat, 12 Jul 2008 16:57:09 +0200 + +samba (2:3.0.30-4) unstable; urgency=low + + [ Christian Perrier ] + * Rename libcupsys2-dev to libcups2-dev in build dependencies + * Localize SWAT in German. Closes: #487681 + + [ Jelmer Vernooij ] + * Fix bashism in smbtar. (Closes: #486056) + + [ Jamie Strandboge ] + * debian/patches/upstream_bug5517.patch: adjust cli_negprot() to properly + calculate buffer sizes. This bug was introduced in the fix for + CVE-2008-1105. Closes: #488688 + + [ Debconf translations ] + * Romanian updated. Closes: #488709. + + -- Christian Perrier Sun, 06 Jul 2008 11:43:53 +0200 + +samba (2:3.0.30-3) unstable; urgency=low + + [ Christian Perrier ] + * add a soft dependency on slapd in init script to allow + proper operation when dependency-based boot sequence is enabled. + Thanks to Petter Reinholdtsen for reporting and providing a patch + Closes: #478800 + + [ Steve Langasek ] + * debian/patches/no-unnecessary-cups.patch: don't try to connect to a cups + server when we know that no printers are configured. Closes: #479512. + + -- Christian Perrier Tue, 10 Jun 2008 21:03:51 +0200 + +samba (2:3.0.30-2) unstable; urgency=high + + * Brown paper bag releae with epoch increased after yet another + accidental upload of 3.2.0 to unstable. Sigh and apologies to + autobuilders. + + -- Christian Perrier Sat, 31 May 2008 12:08:50 +0200 + +samba (1:3.0.30-1) unstable; urgency=high + + * New upstream release: fix a heap overflow when parsing SMB responses in + client code. (CVE-2008-1105). Closes: #483410 + + -- Christian Perrier Wed, 28 May 2008 22:38:44 +0200 + +samba (1:3.0.29-1) unstable; urgency=low + + * New upstream release + + -- Christian Perrier Thu, 22 May 2008 07:31:55 +0200 + +samba (1:3.0.28a-3) unstable; urgency=low + + * The "bug hunting at SambaXP" release + * Drop "invalid users = root" from the default smb.conf file + as it differs from upstream's behaviour and upstream is fairly + noisy about this choice of ours. Closes: #462046 + * Drop commented "guest account = nobody". This is already upstream's + default + * Remove versioned Build-Depends when satisfied in etch (actually all + versioning in Build-Depends) + * Remove Conflicts with non-existing packages + * Drop dpkg-dev and binutils from Build-Depends, since the versioned + build-dep is no longer needed and these are both Build-Essential + * Mini-policy for settings in smb.conf: + - don't explicitly set settings to their default value + - commented settings with the default value are commented with "#" + - commented settings with a non-default value are commented with ";" + * Apply this policy to "socket options". Closes: #476104 + * No longer gratuitously use /usr/lib/libsmbclient.so.0.1 but a more logical + libsmbclient.so.0 as upstream doesn't assign versions + * Add idmap_*(8) man pages (idea taken from SerNet packages) + * Create the entire set of directories needed by clients for + Point-and-Click printing (including old clients!) in + /var/lib/samba/printers (idea taken from SerNet packages) + * Update copyright and README.debian information for current and past + maintainers. Remove redundant mention of Tridge (the copyright is enough) + * Add doc-base files for samba-doc-pdf. Closes: #451685 + * Kurdish debconf translation. Closes: #480151 + + -- Christian Perrier Wed, 16 Apr 2008 23:14:46 +0200 + +samba (1:3.0.28a-2) unstable; urgency=low + + [ Peter Eisentraut ] + * Removed myself from Uploaders + + [ Steve Langasek ] + * debian/patches/manpage-encoding.patch: fix up the manpage synopses to + not use embedded iso8859-1 non-break spaces, there is a roff escape + sequence that we should use instead. Closes: #470844. + + [ Christian Perrier ] + * Reupload with an epoch to supersede an accidental upload of 3.2.0 + in unstable + + -- Christian Perrier Sat, 05 Apr 2008 11:59:23 +0200 + +samba (3.0.28a-1ubuntu4) hardy; urgency=low + + [ Mathias Gug ] + * debian/samba-common.postinst: + Fix upgrade from a first installation done with feisty, edgy or dapper. + (LP: #201059). + * debian/smb.conf.feisty: + Add default smb.conf shipped in feisty. + + [ Steve Langasek ] + * When populating the new sambashare group, it's not an error if the + user simply doesn't exist; test for this case and let the install + continue instead of aborting. LP: #206036. + + -- Steve Langasek Wed, 02 Apr 2008 21:07:11 +0000 + +samba (3.0.28a-1ubuntu3) hardy; urgency=low + + * debian/patches/fix-smbprinting-os2.patch + - Fixes printing large documents from OS/2. (LP: #60931) + + -- Chuck Short Fri, 28 Mar 2008 08:37:31 -0400 + +samba (3.0.28a-1ubuntu2) hardy; urgency=low + + * debian/smb.conf + - Add map to guest = Bad user, maps bad username to guest access. + (LP: #32067) + + -- Chuck Short Thu, 27 Mar 2008 14:24:13 -0400 + +samba (3.0.28a-1ubuntu1) hardy; urgency=low + + * Merge from Debian unstable, remaining changes: + * debian/patches/VERSION.patch: + - set SAMBA_VERSION_VENDOR_SUFFIX to Ubuntu + * debian/smb.conf: + - add "(Samba, Ubuntu)" to server string. + - comment out the default [homes] shares, and add a comment about + "valid users = %S" to show users how to restrict access to + \\server\username to only username. + * debian/samba-common.config: + - do not change priority to HIGH if dhclient3 is installed + - use priority medium instead of high for the workgroup question + * debian/winbind.files: + - include additional files + * debian/patches/fix-documentation.patch: + - fix typos in net(8) and smb.conf(5) man pages + * debian/mksambapasswd.awk: + - Don't add user with UID less than 1000 to smbpasswd. + * debian/samba.init: + - add 'status' option for LSB conformance. + * Updated control version. + * Set Ubuntu maintainer address. + * Dropped changes: + * debian/samba.if-up: this ifup hook isn't actually needed with + current Samba. + * Set 'usershare allow guests' by in the default smb.conf, so that + usershare admins are allowed to create public shares too, not just + authenticated ones (e.g., via nautilus-share). LP: #204703. + + -- Steve Langasek Tue, 25 Mar 2008 19:53:09 +0000 + +samba (3.0.28a-1) unstable; urgency=low + + [ Christian Perrier ] + * New upstream release. This fixes the following Debian bugs: + - Prevent nmbd from shutting down when no network + interfaces can be located. Closes: #433449 + * Debian patches dropped as applied upstream: + - make-distclean.patch + - linux-cifs-user-perms.patch + - cifs-umount-same-user.patch + - get_global_sam_sid-non-root.patch + - chgpasswd.patch + - cups.patch + * Fix doc-base section from Apps/Net to Network + * Fix copyright in debian/copyright + * Updated Standards-Version to 3.7.3 (no changes needed) + * [Lintian] No longer use -1 revision for the libacl-dev build + dependency + + [ Steve Langasek ] + * Merge smb.conf changes from Ubuntu: + - correct an inconsistency inthe winbind enum comment + - correct default and example settings to use the canonical names for all + options, rather than historical synonyms + - clarify the comment for 'max log size'. + Thanks to Chuck Short and Richard Laager. + * Add an additional sed command to samba-common.postinst to cleverly + pick up any shares that have been appended to the default smb.conf + and exclude them from the ucf diff. + + -- Christian Perrier Fri, 14 Mar 2008 21:28:16 +0100 + +samba (3.0.28a-0ubuntu3) hardy; urgency=low + + * But smbpasswd-syslog does need updated for the new upstream release, + overlooked in the previous upload. Merge the version from Debian + svn. + + -- Steve Langasek Fri, 14 Mar 2008 07:40:06 +0000 + +samba (3.0.28a-0ubuntu2) hardy; urgency=low + + * Re-enable the smbpasswd-syslog patch; this was not really merged + upstream. + + -- Steve Langasek Fri, 14 Mar 2008 05:35:20 +0000 + +samba (3.0.28a-0ubuntu1) hardy; urgency=low + + [Chuck Short] + * New upstream release. This fixes the following Ubuntu bugs. + - Prevent nmbd from shutting down when no network interfaces can be + located. (LP: #180493) + - Fixes I/O errors on access to SMB shares of OS/2. (LP: #112839) + * Dropped patches: + - make-distclean.patch + - linux-cifs-user-perms.patch + - cifs-umount-same-user.patch + - get_global_sam_sid-non-root.patch + - chgpasswd.patch + - cups.patch + - samba-syslog.patch + * debian/mksambapasswd.awk + - Don't add user with UID less than 1000 to smbpasswd. (LP: #199412) + * debian/samba.if-up + - ifup hook to reload samba once the interfaces comes up. (LP: #180493) + * Updated control version. + + [Nicolas Valcárcel] + * debian/patches/fix-documentation.patch + - Fixed some escape typos in smb.conf(5) manpage. (LP: #182571) + + [Shawn Smith] + * debian/samba.init + - Samba init script does not conform to the LSP specification; it needs a + status section (LP: #39157) + + -- Chuck Short Tue, 11 Mar 2008 14:21:29 -0400 + +samba (3.0.28-4ubuntu1) hardy; urgency=low + + * Merge from Debian unstable, remaining changes: + * debian/patches/VERSION.patch: + - set SAMBA_VERSION_VENDOR_SUFFIX to Ubuntu + * debian/smb.conf: + - add "(Samba, Ubuntu)" to server string. + - comment out the default [homes] shares and add more verbose comments to + explain what they do and how they work (LP #27608). Also, add a + comment about "valid users = %S" to show users how to restrict access + to \\server\username to only username. + - correct winbind enum comment inconsistency. + - correct configuration directive inconsistences. + - clarify comment for max log size. + * debian/samba-common.config: + - do not change priority to HIGH if dhclient3 is installed + - use priority medium instead of high for the workgroup question + * debian/winbind.files: + - include additional files + * debian/patches/fix-documentation.patch: + - fix typo in net(8) man pages + * Set Ubuntu maintainer address. + * Dropped changes: + - default passwd chat value is modified; the default password sync + chat script from Debian now works out of the box. LP: #50624. + + -- Steve Langasek Sun, 09 Mar 2008 12:44:53 +0000 + +samba (3.0.28-4) unstable; urgency=low + + [ Steve Langasek ] + * Brown paper bag: fix samba-common.files to list all of the smb.conf + templates, not just the current one. Closes: #470138. + * Drop debian/patches/gcc42-arm-workaround.patch, which should have been + dropped in the previous upload + + -- Steve Langasek Sun, 09 Mar 2008 04:09:26 -0700 + +samba (3.0.28-3) unstable; urgency=low + + * Drop the arm optimization workaround, as the compiler is now reported + to be fixed. + * Add missing eventlogadm(8) manpage. + * Refresh the list of Linux architectures from type-handling, to pick up + libacl-dev on armel. Closes: #465121. + * Convert handling of smb.conf to use ucf, so that we can sanely manage + syntax changes going forward. + * In the process, fix the dhcp handling to allow proper reconfiguration + via debconf. + + [ Debconf translations ] + * Indonesian added. Closes: #469976 + + -- Steve Langasek Sat, 08 Mar 2008 17:11:16 -0800 + +samba (3.0.28-2) unstable; urgency=low + + [ Steve Langasek ] + * Drop some further code in samba-common.postinst that's specific to + pre-3.0 upgrades. + * Make the mount.smbfs wrapper a bash script instead of a POSIX sh script, + so we can use bash array variables and cope with arguments containing + embedded spaces (such as share names). Thanks to Julian Gilbey + for the patch. Closes: #457105. + * debian/patches/gcc42-arm-workaround.patch: work around an arm compiler + problem by building rpc_parse/parse_prs.o with -O0 on this architecture. + Thanks to Martin Michlmayr for helping to pin down the problem file. + Closes: #445566. + * mount.smbfs: map the smbfs "guest" option to "guest,sec=none", which is + a closer approximation of the semantics with cifs. + + -- Christian Perrier Sat, 05 Jan 2008 09:46:06 +0100 + +samba (3.0.28-1ubuntu3) hardy; urgency=low + + * Added additional files to winbind.files. (LP: #156468) + * Deleted winbind enum comment inconsistency. Thanks to Richard Laager for + the patches. (LP: #182569) + * Deleted configuration directive inconsistences. Thanks to Richard Laager + for the patches. (LP: #182567) + * Fixed typo on net(8) man pages using fix-documentation.patch. (LP: #182570) + * Clarrified comment for max log size. Thanks to Richard Laager for the + patches. (LP: #182566) + + -- Chuck Short Tue, 22 Jan 2008 09:53:52 -0500 + +samba (3.0.28-1ubuntu2) hardy; urgency=low + + * Fixed incorrect line in debian/patches/VERSION.patch + + -- Rick Clark Sat, 15 Dec 2007 11:03:39 -0500 + +samba (3.0.28-1ubuntu1) hardy; urgency=low + + * Merge from debian unstable, remaining changes: + * debian/patches/VERSION.patch: + - set SAMBA_VERSION_VENDOR_SUFFIX to Ubuntu + * debian/smb.conf: + - Add "(Samba, Ubuntu)" to server string. + - Comment out the default [homes] shares and add more verbose comments to + explain what they do and how they work (LP #27608). Also, add a + comment about "valid users = %S" to show users how to restrict access + to \\server\username to only username. + - default passwd chat value is modified + * debian/samba-common.config: + - do not change priority to HIGH if dhclient3 is installed + - use priority medium instead of high for the workgroup question + * Set Ubuntu maintainer address. + + -- Rick Clark Thu, 13 Dec 2007 08:44:33 -0500 + +samba (3.0.28-1) unstable; urgency=high + + * New upstream release. Security fix + * Fix a remote code execution vulnerability when running as a domain + logon server (PDC or BDC). (CVE-2007-6015) + + -- Christian Perrier Tue, 11 Dec 2007 00:12:11 +0530 + +samba (3.0.27a-2ubuntu1) hardy; urgency=low + + * Merge from debian unstable (LP: #174296), remaining changes: + * debian/patches/VERSION.patch: + - set SAMBA_VERSION_VENDOR_SUFFIX to Ubuntu + * debian/smb.conf: + - Add "(Samba, Ubuntu)" to server string. + - Comment out the default [homes] shares and add more verbose comments to + explain what they do and how they work (LP #27608). Also, add a + comment about "valid users = %S" to show users how to restrict access + to \\server\username to only username. + - default passwd chat value is modified + * debian/samba-common.config: + - do not change priority to HIGH if dhclient3 is installed + - use priority medium instead of high for the workgroup question + * Set Ubuntu maintainer address. + + -- Steve Langasek Wed, 05 Dec 2007 16:14:20 -0800 + +samba (3.0.27a-2) unstable; urgency=low + + * debian/patches/disable-weak-auth.patch: disable plaintext authentication + on the client, and lanman authentication on both client and server, by + default since these are only needed for Win9x or Samba with encrypted + passwords disabled and are potential password attack vectors. This + change is backported from Samba 3.2. LP: #163194. + * Don't build the userspace tools for the deprecated smbfs kernel driver + anymore; instead, use a shell wrapper around mount.cifs that translates + option names between the smbfs and cifs drivers. + Closes: #169624, #256637, #265468, #289179, #305210, #410075; + LP: #29413 + * debian/panic-action: detect when we're on an Ubuntu system and direct bug + reporters to Launchpad instead of to the Debian BTS. Closes: #452940. + * debian/samba.init: call log_progress_msg separately for each daemon on + stop rather than passing a second arg to log_daemon_msg, for greater + compatibility with both Debian and Ubuntu LSB initscript implementations. + Closes: #453350. + * Drop smbldap-tools to Suggests:, consistent with the textbook meaning of + recommends/suggests which is now implemented correctly in apt. + Closes: #453144. + * Get rid of the build-dependency on type-handling: + - add a new target, "update-archs", to be invoked by hand to refresh + the list of known Linux architectures for the libacl1-dev + build-dep; this avoids the clean target making changes to + debian/control + - rework the sed line so that it works in-place on debian/control, + so we can get rid of debian/control.in as well and just update + debian/control directly + Closes: #340570. + + -- Steve Langasek Tue, 04 Dec 2007 18:35:29 -0800 + +samba (3.0.27a-1ubuntu1) hardy; urgency=low + + * Merge from debian unstable (LP: #165072), remaining changes: + * debian/patches/VERSION.patch: + - set SAMBA_VERSION_VENDOR_SUFFIX to Ubuntu + * debian/control: + - Remove type-handling (not used in Ubuntu) + * debian/rules: + - Remove type-handling. + * debian/samba.init: + - Ubuntu's log_progress_msg is a no-op, so to avoid confusion, don't + say specifically which daemons we're handling. (LP #25803) + * debian/smb.conf: + - Add "(Samba, Ubuntu)" to server string. + - Comment out the default [homes] shares and add more verbose comments to + explain what they do and how they work (LP #27608). Also, add a + comment about "valid users = %S" to show users how to restrict access + to \\server\username to only username. + - default passwd chat value is modified + * debian/panic-action: + - Alter the panic-action script to link to the samba bug reporting page + on Launchpad. + * debian/samba-common.config: + - do not change priority to HIGH if dhclient3 is installed + - use priority medium instead of high for the workgroup question + * Set Ubuntu maintainer address. + * Bugs fixed in Debian: + - Enable net usershare (LP: #128548) + * Ubuntu patches merged in Debian: + * debian/smb.conf: + - "printer admin" is a deprecated option, and is dropped + completely from the examples. + * debian/samba-common.templates: + - Default workgroup value is now set to WORKGROUP; this is a + change from previous Ubuntu versions which used MSHOME, but is + consistent with the Samba upstream defaults and the default + behavior for most versions of Windows. + * Ubuntu patches dropped: + * debian/rules: + - Samba should not use --error-handler=true for its init script. + * debian/samba-common.templates, debian/po/*.po: + - unnecessary divergence from Debian debconf template which + resulted in fuzzy translations; this is cleaned up now + + -- Steve Langasek Sun, 25 Nov 2007 12:56:27 -0800 + +samba (3.0.27a-1) unstable; urgency=low + + [ Steve Langasek ] + * New upstream release + - fix regression with smbfs clients, introduced by the security fix in + 3.0.27. Closes: #451839. + - debian/patches/cifs-umount-trailing-slashes.patch: merged upstream. + * Drop the deprecated "printer admin" example from the default smb.conf. + Closes: #451273. + * Add a *new* debian/patches/cups.patch to *enable* cups as the default + printing system, because since the original introduction of this patch + in Debian there was a regression upstream that caused cups to never be + selected as the default print system. + * Set the default value for the workgroup question to "WORKGROUP" in + samba-common.templates, not just in the template smb.conf, so that the + debconf question comes out right every time; and always treat this + as a high-priority debconf question instead of selecting the + priority based on whether there's an existing value, since there's + now *always* an existing value but the value doesn't tell us + anything meaningful about the user's preference. Closes: #451271. + * Drop some code from samba.postinst that only applies to upgrades from + pre-3.0 (i.e., pre-sarge) packages + + [ Christian Perrier ] + * Update the "built by" part of README.debian + * Remove the very outdated parts of README.debian + + -- Steve Langasek Fri, 23 Nov 2007 13:04:52 -0800 + +samba (3.0.27-1) unstable; urgency=low + + * New upstream version + - fixes a remote code execution vulnerability when running nmbd as a + WINS server. (CVE-2007-5398; closes: #451385) + - fixes a buffer overflow in nmbd when running as a domain controller + during processing of GETDC logon server requests. (CVE-2007-4572) + + [ Steve Langasek ] + * fhs.patch: net usershares should also be stored under /var/lib, not under + /var/run. No transition handling in maintainer scripts, since this + feature is not activated by default. + * get_global_sam_sid-non-root.patch: avoid calling get_global_sam_sid() + from smbpasswd -L or pam_smbpass when running as non-root, to avoid a + foreseeable panic. Closes: #346547, #450738. + * usershare.patch: enable "user shares" by default in the server with a + default limit of 100, to support user shares on both upgrades and new + installs with no need to munge config files. Thanks to Mathias Gug + for the patch. Closes: #443230. + * On Ubuntu, support autopopulating the sambashare group using the existing + members of the admin group; no equivalent handling is done on Debian, + because there doesn't seem to be an appropriate template group we can use + that wouldn't be considered a privilege escalation for those users. + * Update Samba to explicitly use the C locale when doing password changes, + to account for Linux-PAM's recently adopted i18n support. + Closes: #451272. + * Enforce creation of the pid directory (/var/run/samba) in the samba + init script, for compatibility with systems that use a tmpfs for + /var/run. Closes: #451270. + * debian/patches/cups.patch, debian/NEWS: drop the patch to force bsd + as the default printing system, as CUPS is now the dominant/default + printing system for Linux. + + [ Debconf translations ] + * Hebrew added. Closes: #444054 + + [ Christian Perrier ] + * Split fhs.patch into 3 separate patches to make upstream integration + easier: + - fhs-newpaths.patch: introduce new paths + - fhs-filespaths.patch: assign files to new paths + - fhs-assignpaths.patch: assign paths to FHS-compatible locations + * Compile with DNS update support. Thanks to Matthias Gug for + reporting and contributions from Launchpad's #156686 + Closes: #449422 + + -- Steve Langasek Thu, 15 Nov 2007 11:46:17 -0800 + +samba (3.2.0~pre1-1) experimental; urgency=low + + * New upstream (pre-)release + + [ Steve Langasek ] + * fhs.patch: net usershares should also be stored under /var/lib, not under + /var/run. No transition handling in maintainer scripts, since this + feature is not activated by default. + * Update smbstatus-locking.patch to use db_open() instead of + tdb_open(), per upstream recommendation. + * Use talloc_strdup() and talloc_asprintf() instead of static strings in + data_path(), state_path(), and cache_path(), as suggested by Volker + Lendecke. + + [ Debconf translations ] + * Hebrew added. Closes: #444054 + + [ Christian Perrier ] + * Split fhs.patch into 4 separate patches to make upstream integration + easier: + - fhs-newpaths.patch: introduce new paths + - fhs-filespaths.patch: assign files to new paths + - fhs-filespaths-debatable.patch: assign files to new paths (part that + seems more difficult to be integrated upstream) + - fhs-assignpaths.patch: assign paths to FHS-compatible locations + + -- Christian Perrier Sun, 21 Oct 2007 09:14:42 +0200 + +samba (3.0.26a-1ubuntu2) gutsy; urgency=low + + * debian/patches/chgpasswd.patch: + - Also set the locale to 'C' when using PAM for password changes, + since the PAM conversation is equally affected by PAM l10n support + (LP: #139265). + + -- Steve Langasek Tue, 02 Oct 2007 13:54:23 -0700 + +samba (3.0.26a-1ubuntu1) gutsy; urgency=low + + * debian/patches/chgpasswd.patch: + - Set locale to 'C' while calling the passwd change program + * Merge from debian unstable, remaining changes: + * debian/patches/VERSION.patch: + - set SAMBA_VERSION_VENDOR_SUFFIX to Ubuntu + * debian/control: + - Remove typehandling (not used in Ubuntu) + * debian/samba-common.templates: + - Set default workgroup to MSHOME + * debian/rules: + - Remove type-handling. + * debian/samba.init: + - Make sure $PIDDIR exists (/var/run is a tmpfs) + - Ubuntu's log_progress_msg is a no-op, so to avoid confusion, don't + say specifically which daemons we're handling. (LP #25803) + * debian/smb.conf: + - Add "(Samba, Ubuntu)" to server string. + - Change the (commented-out) "printer admin" example to use "@lpadmin" + instead of "@ntadmin", since the lpadmin group is used for spool admin. + - Comment out the default [homes] shares and add more verbose comments to + explain what they do and how they work (LP #27608). Also, add a + comment about "valid users = %S" to show users how to restrict access + to \\server\username to only username. + * debian/panic-action: + - Bail out if there's no "mail" command. + - Alter the panic-action script to link to the samba bug reporting page + on Launchpad. + * debian/samba-common.config: + - do not change priority to HIGH if dhclient3 is installed + + -- Andrew Mitchell Mon, 17 Sep 2007 15:58:10 +1200 + +samba (3.0.26a-1) unstable; urgency=low + + * New upstream release. + * Remove the samba-common/unsupported-passdb debconf template and + the associated code in samba-common.postinst, that deals with pre-etch + versions transition + * Remove the samba/tdbsam template and the remaining line referencing + it (for no need) in samba.postinst. That code was removed in 3.0.23c-2 + and was dealing with pre-3.0 transitions. + + -- Christian Perrier Sun, 16 Sep 2007 10:16:29 +0200 + +samba (3.0.26-1) unstable; urgency=high + + * New upstream release: security update for CVE-2007-4138: + incorrect primary group assignment for domain users using the rfc2307 or + sfu winbind nss info plugin. + + -- Christian Perrier Tue, 11 Sep 2007 19:16:32 +0200 + +samba (3.0.25c-1) unstable; urgency=low + + [ Noèl Köthe ] + * new upstream released from 2007-08-20 + - added smbfs deprecation information to help and manpage + Closes: #360384 + - fixed winbind leaking file descriptors + Closes: #410663 + - fixed smbpasswd fails with errorcode SUCCESS as normal user + Closes: #155345 + + [ Christian Perrier ] + * Drop the (upstream unmaintained) python bindings (python-samba package) + * swat: turn the dependency on samba-doc to a Recommends: + Thanks to Peter Eisentraut for dealing with that issue and bringing it + back. Closes: #391742 + + -- Christian Perrier Sun, 26 Aug 2007 14:57:16 +0200 + +samba (3.0.25b-2) unstable; urgency=low + + [ Steve Langasek ] + * Don't start nmbd if 'disable netbios' is set in the config. + Closes: #429429. + * missing_userspace_bugzilla999.patch: always use opt_gid and opt_uid, + set to those of the invoking user, when called as non-root. + Closes: #431661. + * Fix up fhs.patch for some new FHS regressions: + - make sure all references to winbindd_idmap.tdb look in /var/lib/samba + - make sure all references to winbindd_cache.tdb look in /var/cache/samba + - share_info.tdb belongs in /var/lib/samba; this is a regression + introduced in 3.0.23-1, so fix up this path on samba upgrade + - move the ADS "gpo" cache directory to /var/cache/samba + - move idmap_cache.tdb to /var/cache/samba, and fix up the path on + winbind upgrade + * linux-cifs-user-perms.patch: also support setting a default uid and gid + value when mount.cifs is called as non-root + * cifs-umount-trailing-slashes.patch: canonicalize mount point names when + umount.cifs is called, to avoid unnecessarily leaving entries behind in + /etc/mtab if invoked with a trailing slash in the mount point name + * cifs-umount-same-user.patch: the CIFS_IOC_CHECKMOUNT ioctl check + in umount.cifs assumed that errors would return a value > 0, when in fact + the return value on failure is -1. Correct this assumption, which was + allowing any user to unmount shares mounted by other users. + * smbpasswd-syslog.patch: Fix pam_smbpass to no longer call openlog() + and closelog(), since this will interfere with syslogging behavior + of the calling application. Closes: #434372. + * swat should depend only on inet-superserver, not update-inetd, per + Marco d'Itri. + + [ Christian Perrier ] + * debian/panic-action: bail out if there's no "mail" command + Patch from the Ubuntu samba packagers. + * debian/smb.conf: use the comment from Ubuntu package for the "valid users" + setting of [homes] as a basis for ours. Ubuntu's wording is better. + + [ Peter Eisentraut ] + * Don't ignore errors from make distclean, as per lintian check + + [ Debconf translations ] + * Gujarati updated. Closes: #436215 + + -- Steve Langasek Fri, 17 Aug 2007 18:38:58 -0700 + +samba (3.0.25b-1ubuntu4) gutsy; urgency=low + + * debian/rules: + - add error-handler=true to samba dh_installinit. Fixes LP: #85194. + + -- Mathias Gug Fri, 17 Aug 2007 12:11:45 -0400 + +samba (3.0.25b-1ubuntu3) gutsy; urgency=low + + * Build depend on libacl1-dev on lpia. + + -- Matthias Klose Tue, 14 Aug 2007 10:26:58 +0000 + +samba (3.0.25b-1ubuntu2) gutsy; urgency=low + + * debian/smb.conf: + - Fix 'valid users =' option in smb.conf. LP: #131419. + + -- Mathias Gug Thu, 09 Aug 2007 21:39:54 -0400 + +samba (3.0.25b-1ubuntu1) gutsy; urgency=low + + * Dropped patches: + + debian/patches/ubuntu-auxsrc.patch: + - ntlm_auth_proto.h, smbadduser, gen-8bit-gap.sh are all autogenerated at + build time. + * Merge from debian unstable, remaining changes: + * debian/patches/VERSION.patch: + - set SAMBA_VERSION_VENDOR_SUFFIX to Ubuntu + * debian/control: + - Remove typehandling (not used in Ubuntu) + - Added Conflicts/Replaces on python2.4-samba. + * debian/samba-common.templates: + - Set default workgroup to MSHOME + * debian/rules: + - Remove type-handling. + * debian/samba.init: + - Make sure $PIDDIR exists (/var/run is a tmpfs) + - Ubuntu's log_progress_msg is a no-op, so to avoid confusion, don't + say specifically which daemons we're handling. (LP #25803) + * debian/smb.conf: + - Add "(Samba, Ubuntu)" to server string. + - Change the (commented-out) "printer admin" example to use "@lpadmin" + instead of "@ntadmin", since the lpadmin group is used for spool admin. + - Comment out the default [homes] shares and add more verbose comments to + explain what they do and how they work (LP #27608). Also, add a + comment about "valid users = %S" to show users how to restrict access + to \\server\username to only username. + * debian/panic-action: + - Bail out if there's no "mail" command. + - Alter the panic-action script to link to the samba bug reporting page + on Launchpad. + * debian/samba-common.config: + - do not change priority to HIGH if dhclient3 is installed + + -- Soren Hansen Mon, 16 Jul 2007 10:58:21 +0200 + +samba (3.0.25b-1) unstable; urgency=low + + * New upstream version + * Bugs fixed upstream: + - correct default mentioned for "store dos attribute" in smb.conf(5) + Closes: #367379 + - fix typo in pdbedit.c. Closes: #421758 + - fixed crashes in idmap_rid. Closes: #428411 + - misleading documentation in smb.conf(5). Closes: #218477 + - don't crash when no eventlog names are defined in smb.conf + Closes: #424683 + - typography errors in manpages. Closes: #427865, #418811 + - fix compilation and linking of pam_smbpass.so. Closes: #430755 + * Drop patches that have been applied upstream: + - nmbd-signalling.patch + + -- Christian Perrier Wed, 27 Jun 2007 15:12:13 +0200 + +samba (3.0.25a-2) unstable; urgency=low + + [ Debconf translations ] + * Danish updated. Closes: #426773 + + [ Christian Perrier ] + * Clean out some remaining cruft that is not deleted + by "make clean". Taken from Ubuntu patches. + * Add missing userspace patches to properly pass uid and gid with 2.6 + kernels. See #408033 and upstream's #999 for rationale + * Drop smbmount-unix-caps.patch as workaraound for #310982 as the issue + is fixed in 2.4 and 2.6 kernels (2.6 kernels need + missing_userspace_bugzilla999.patch, though) + Closes: #408033 + * Add the samba-common and winbind packages to samba-dbg to get + debugging symbols for winbindd, net, etc. + * Replace all occurrences of ${Source:Version} by ${$binary:Version} in + dependencies. All these were Arch:any depending on Arch:any (the only + Arch:any depending on Arch:all already used ${source:Version} + + [ Steve Langasek ] + * Update samba.config to not override user preference on passdb.tdb + creation after initial configuration. Closes: #350926. + * Drop the last vestiges of the unified samba.patch; this reverts the + change for bug #112195 which it's been determined has no actual security + benefits, and drops the fix for bug #106976 which is superseded + upstream. + + [ Debconf translations ] + * Vietnamese updated. Closes: #426979. + + -- Christian Perrier Wed, 13 Jun 2007 15:47:06 +0200 + +samba (3.0.25a-1) unstable; urgency=low + + [ Christian Perrier ] + * New upstream version + * Bugs fixed upstream: + - password expiration loog on samba domain controllers. Closes: #425083 + - no more login on samba servers that are members of samba domains + Closes: #425680, #426002 + - users no longer have access according to their secondary groups + on shares with "force group". Closes: #424629 + * Debian packaging fixes: + - Enforce building with "--with-ads" and therefore fail + when the build can't be done with kerberos support. + Closes: #424637 + - debian/control: wrap long lines in packages' descriptions + - uncomment out use of type-handling in the clean target, because + type-handling has been fixed to support the new /usr/share/dpkg/ostable + - avoid installing extra COPYING files in /usr/share/doc/* (one was + installed along with the pcap2nbench example) + * Merge Ubuntu changes: + - use of PIDDIR instead of hardcoding it in samba.init and winbind.init + * Patches to upstream source: + - patches/fhs.patch: recreate winbindd_cache.tdb in the cache directory + instead of the lock directory. Thanks to C. K. Jester-Young for the + patch. Closes: #425640 + + [ Steve Langasek ] + * swat and samba depend on update-inetd instead of on netbase; swat also + depends on "openbsd-inetd | inet-superserver", for samba this is only a + Suggests. + + -- Christian Perrier Sun, 27 May 2007 09:30:02 +0200 + +samba (3.0.25-1ubuntu1) gutsy; urgency=low + + * Merge from debian unstable, remaining changes: + * debian/smb.conf: + - Do not show the version number by default + - Comment out the default [homes] shares and add more verbose comments to + explain what they do and how they work (closes: launchpad.net/27608) + - Add a "valid users = %S" stanza to the commented-out [homes] section, + to show users how to restrict access to \\server\username to only + username. + - Change the (commented-out) "printer admin" example to use "@lpadmin" + instead of "@ntadmin", since the lpadmin group is used for spool admin. + * debian/panic-action: + - Alter the panic-action script to encourage users to report their + bugs in Ubuntu packages to Ubuntu, rather than reporting to Debian. + Modify text to more closely match the Debian script + * debian/samba-common.templates: + - Set default workgroup to MSHOME + * debian/control: + - remove typehandling + - add update-inetd to Depends + * debian/patches/VERSION.patch: + - set SAMBA_VERSION_VENDOR_SUFFIX to Ubuntu + * debian/samba-common.config: + - do not change priority to HIGH if dhclient3 is installed + * debian/samba.init: + - use of PIDDIR instead of hardcoding it + - Munge our init script to deal with the fact that our implementation + (or lack thereof) of log_daemon_msg and log_progress_msg differs + from Debian's implementation of the same (Ubuntu #19691) + * debian/rules: + - remove type-handling + - properly clean on make clean + - do not install mount.cifs and umount.cifs as suid + * debian/patches/ubuntu-auxsrc.patch: + - some auxilliary sources (undocumented in previous changelogs) + + -- Andrew Mitchell Sun, 20 May 2007 21:43:26 +1200 + +samba (3.0.25-1) unstable; urgency=high + + * New upstream version including security fixes + * Bugs fixed upstream: + - nmbd no longer segfaults on bad interface line + Closes: #265577, #386922, #359155, #366800 + - documentation issues about displaycharset. Closes: #350790 + - documentation makes it clear that case options such as + "default case" can only be set on a per-share basis. + Closes: #231229 + - all occurrences of "encypt" fixed in smb.conf(5) + Closes: #408507 + - two typos on "account" fixed in source/passdb/pdb_ldap.c and + source/utils/pdbedit.c. Closes: #402392 + - no longer panic when using the (deprecated) "only user" option + in user level security. Closes: #388282 + - CVE-2007-2444 (User privilege elevation because of a local SID/Name + translation bug) + - CVE-2007-2446 (Multiple heap overflows allow remote code execution) + - CVE-2007-2447 (Unescaped user input parameters are passed as + arguments to /bin/sh allowing for remote command + execution) + + [ Debconf translations ] + * Marathi added. Closes: #416802 + * Esperanto added. Closes: #417795. + * Basque updated. Closes: #418196. + * Wolof updated. Closes: #421636 + + [ Christian Perrier ] + * /etc/dhcp3/dhclient-enter-hooks.d/samba tests for /etc/init.d/samba + before running invoke-rc.d. Closes: #414841 + + [ Steve Langasek ] + * Comment out use of type-handling in the clean target, because + type-handling is currently broken in unstable and clean shouldn't be + editing debian/control anyway. + + -- Christian Perrier Mon, 14 May 2007 10:30:15 +0200 + +samba (3.0.24-6ubuntu1) gutsy; urgency=low + + * Merge from debian unstable, remaining changes: + * debian/smb.conf: + - Do not show the version number by default + - Comment out the default [homes] shares and add more verbose comments to + explain what they do and how they work (closes: launchpad.net/27608) + - Add a "valid users = %S" stanza to the commented-out [homes] section, + to show users how to restrict access to \\server\username to only + username. + - Change the (commented-out) "printer admin" example to use "@lpadmin" + instead of "@ntadmin", since the lpadmin group is used for spool admin. + * debian/panic-action: + - Alter the panic-action script to encourage users to report their + bugs in Ubuntu packages to Ubuntu, rather than reporting to Debian. + Modify text to more closely match the Debian script + * debian/samba-common.templates: + - Set default workgroup to MSHOME + * debian/control: + - remove typehandling + - add update-inetd to Depends + * debian/patches/VERSION.patch: + - set SAMBA_VERSION_VENDOR_SUFFIX to Ubuntu + * debian/samba-common.config: + - do not change priority to HIGH if dhclient3 is installed + * debian/samba.init: + - use of PIDDIR instead of hardcoding it + - Munge our init script to deal with the fact that our implementation + (or lack thereof) of log_daemon_msg and log_progress_msg differs + from Debian's implementation of the same (Ubuntu #19691) + * debian/rules: + - remove type-handling + - properly clean on make clean + - do not install mount.cifs and umount.cifs as suid + * debian/patches/ubuntu-auxsrc.patch: + - some auxilliary sources (undocumented in previous changelogs) + + -- Kees Cook Tue, 08 May 2007 05:18:16 -0700 + +samba (3.0.24-6) unstable; urgency=high + + * Arrrgh, cut'n'paste error in the regexp in the last upload, so the bug + is still present :/ Fix a missing ] in the regexp for passdb backend + checking, really-closes: #415725. + + -- Steve Langasek Sat, 24 Mar 2007 03:32:46 -0700 + +samba (3.0.24-5) unstable; urgency=high + + * The "see what you get for trusting the quality of my packages, + release team? Release team, please unblock this package" release. + * High-urgency brown-paper-upload for etch-targetted fix for + regression introduced in the last version + + [ Steve Langasek ] + * Fixed the regexp used for matching broken passdb backend settings, + since we were getting false positives on *all* values. :/ The + correct match should be: one or more non-space, non-comma + characters, followed by a space or a comma, followed by zero or more + spaces, followed by one or more non-space characters. Closes: #415725. + + [ Debconf translations ] + * Nepali + * Korean; closes: #414883. + * Russian + * Arabic + * Portuguese + * Greek. Closes: #415122 + * Norwegian Nynorsk added. + * Marathi added. Closes: #416802 + + -- Steve Langasek Wed, 21 Mar 2007 13:49:46 -0700 + +samba (3.0.24-4) unstable; urgency=medium + + [ Steve Langasek ] + * Documentation fix for a problem affecting upgrades from sarge: if + passdb backend is still a comma- or space-separated list after any + attempts at automatic fix-ups, throw a debconf error notifying the + user that they'll need to fix this manually. Closes: #408981. + + [ Debconf translations ] + * French + * Spanish + * Galician; closes: #414605. + * Swedish; closes: #414610. + * Brazilian Portuguese; closes: #414603. + * German; closes: #414630. + * Norwegian BokmÃ¥l; closes: #414619. + * Bulgarian; closes: #414624. + * Romanian; closes: #414629. + * Tagalog; closes: #414637. + * Khmer; closes: #381833. + * Thai; closes: #414664. + * Slovak; closes: #414665. + * Slovenian + * Simplified Chinese; closes: #414671. + * Japanese; closes: #414673. + * Hungarian; closes: #414677. + * Dzongkha; closes: #414680. + * Estonian; closes: #414679. + * Catalan + * Malayalam; closes: #414728 + * Traditional Chinese; closes: #414730 + * Turkish + * Italian; closes: #414708 + * Finnish; closes: #414736 + * Dutch; closes: #414741 + * Albanian; closes: #414778. + * Czech; closes: #414793. + + -- Steve Langasek Tue, 13 Mar 2007 16:29:21 -0700 + +samba (3.0.24-3) unstable; urgency=low + + [ Christian Perrier ] + * Merge some Ubuntu changes: + - do not expose the Samba version anymore + - default workgroup set to WORKGROUP (default workgroup of + Windows workstations) + * Fix FTBFS on GNU/kFreeBSD. Thanks to Petr Salinger for the patch + Closes: #394830 + * Add commented "winbind enum*" settings in smb.conf + This will point users to these important settings which changed + their default behaviour between sarge and etch. Closes: #368251 + + [ Steve Langasek ] + * samba-common.dhcp: support creating /etc/samba/dhcp.conf the first + time the script is called if the dhcp client was already running at + the time of install, and manually reload samba to get the updated + config files read. Thanks to Bas Zoetekouw for the patch. + Closes: #407408. + * While we're at it, use atomic replace for /etc/samba/dhcp.conf just + in case someone else reloads samba while the script is running. Low + impact, low-risk change. + + -- Steve Langasek Sun, 11 Mar 2007 23:34:10 -0700 + +samba (3.0.24-2ubuntu1) feisty; urgency=low + + * Merge from debian unstable, remaining changes: + * debian/smb.conf: + - Do not show the version number by default + - Comment out the default [homes] shares and add more verbose comments to + explain what they do and how they work (closes: launchpad.net/27608) + - Add a "valid users = %S" stanza to the commented-out [homes] section, + to show users how to restrict access to \\server\username to only + username. + - Change the (commented-out) "printer admin" example to use "@lpadmin" + instead of "@ntadmin", since the lpadmin group is used for spool admin. + * debian/panic-action: + - Alter the panic-action script to encourage users to report their + bugs in Ubuntu packages to Ubuntu, rather than reporting to Debian. + Modify text to more closely match the Debian script + * debian/samba-common.templates: + - Set default workgroup to MSHOME + * debian/control: + - remove typehandling + - add update-inetd to Depends + * debian/patches/VERSION.patch: + - set SAMBA_VERSION_VENDOR_SUFFIX to Ubuntu + * debian/samba-common.config: + - do not change priority to HIGH if dhclient3 is installed + * debian/samba.init: + - use of PIDDIR instead of hardcoding it + - Munge our init script to deal with the fact that our implementation + (or lack thereof) of log_daemon_msg and log_progress_msg differs + from Debian's implementation of the same (Ubuntu #19691) + * debian/rules: + - remove type-handling + - properly clean on make clean + - do not install mount.cifs and umount.cifs as suid + * debian/patches/ubuntu-auxsrc.patch: + - some auxilliary sources (undocumented in previous changelogs) + * Really drop debian/patches/ubuntu-fix-ldap.patch: + - Fixed upstream, see Debian #274155 + + -- Kees Cook Tue, 6 Feb 2007 20:58:01 -0800 + +samba (3.0.24-2) unstable; urgency=low + + * Re-upload with a proper .orig.tar.gz. + + -- Steve Langasek Mon, 5 Feb 2007 19:55:34 -0800 + +samba (3.0.24-1) unstable; urgency=high + + * New upstream release, security update + * Fixes for the following security advisories: + - Directly affecting Debian: + - CVE-2007-0452 (Potential Denial of Service bug in smbd) + - Not affecting Debian: + - CVE-2007-0453 (Buffer overrun in NSS host lookup Winbind + NSS library on Solaris) + - CVE-2007-0454 (Format string bug in afsacl.so VFS plugin) + * Correct paths for the documentation pointers in the default smb.conf + file. Thanks to Ted Percival for his care reporting this. Closes: #408898 + + -- Christian Perrier Mon, 5 Feb 2007 05:27:07 +0100 + +samba (3.0.23d-4) unstable; urgency=low + + * Debconf translation updates: + - Slovenian added. + + -- Christian Perrier Wed, 3 Jan 2007 08:43:50 +0100 + +samba (3.0.23d-3) unstable; urgency=low + + * Debconf translation updates: + - Malayalam added. Closes: #403107 + - Tamil added. Closes: #403353 + + -- Christian Perrier Mon, 1 Jan 2007 10:17:18 +0100 + +samba (3.0.23d-2ubuntu2) feisty; urgency=low + + * Rebuild for python2.5 as the default python version. + + -- Matthias Klose Fri, 12 Jan 2007 13:18:25 +0000 + +samba (3.0.23d-2ubuntu1) feisty; urgency=low + + * Merge from debian unstable, remaining changes: + * debian/smb.conf: + - Do not show the version number by default + - Comment out the default [homes] shares and add more verbose comments to + explain what they do and how they work (closes: launchpad.net/27608) + - Add a "valid users = %S" stanza to the commented-out [homes] section, + to show users how to restrict access to \\server\username to only + username. + - Change the (commented-out) "printer admin" example to use "@lpadmin" + instead of "@ntadmin", since the lpadmin group is used for spool admin. + * debian/panic-action: + - Alter the panic-action script to encourage users to report their + bugs in Ubuntu packages to Ubuntu, rather than reporting to Debian. + Modify text to more closely match the Debian script + * debian/samba-common.templates: + - Set default workgroup to MSHOME + * debian/control: + - remove typehandling + - add update-inetd to Depends + * debian/patches/VERSION.patch: + - set SAMBA_VERSION_VENDOR_SUFFIX to Ubuntu + * debian/samba-common.config: + - do not change priority to HIGH if dhclient3 is installed + * debian/samba.init: + - use of PIDDIR instead of hardcoding it + - Munge our init script to deal with the fact that our implementation + (or lack thereof) of log_daemon_msg and log_progress_msg differs + from Debian's implementation of the same (Ubuntu #19691) + * debian/rules: + - remove type-handling + - properly clean on make clean + - do not install mount.cifs and umount.cifs as suid + * debian/patches/ubuntu-auxsrc.patch: + - some auxilliary sources (undocumented in previous changelogs) + * debian/patches/ubuntu-fix-ldap.patch: + - fix LDAP backend, see Ubuntu #1905, Debian #274155 + + -- Michael Vogt Mon, 18 Dec 2006 13:31:09 +0100 + +samba (3.0.23d-2) unstable; urgency=low + + * Build-Conflicts: libfam-dev to avoid problems accessing shares + when using GAMIN. Closes: #400617 + * Lintian fixes: + - Run debconf-updatepo in the clean target to ensure up-to-date PO + and POT files + - debian/patches/no_unbreakable_spaces_in_man.patch: + Replace all non-breakable spaces by regular spaces in man pages. + They are encoded in ISO-8859-1 which is not recommended in man pages. + This should be submitted upstream. + - reformat too long lines in package description + + -- Christian Perrier Sun, 3 Dec 2006 09:39:29 +0100 + +samba (3.0.23d-1ubuntu3) feisty; urgency=low + + * added depends on update-inetd + + -- Michael Vogt Thu, 14 Dec 2006 18:59:14 +0100 + +samba (3.0.23d-1ubuntu2) feisty; urgency=low + + * Remove type-handling from build-deps, it's not in Ubuntu main. (It + was already disabled in the rules file. + + -- Tollef Fog Heen Tue, 12 Dec 2006 14:42:23 +0100 + +samba (3.0.23d-1ubuntu1) feisty; urgency=low + + * Merge from debian unstable. + * Drop python2.4-samba, replace with python-samba. Added Conflicts/Replaces + on python2.4-samba + * Drop track-connection-dos.patch, ubuntu-winbind-panic.patch, + ubuntu-fix-ldap.patch, ubuntu-setlocale.patch, ubuntu-setlocale-fixes.patch + * Remaining Ubuntu changes: + - Revert Debian's installation of mount.cifs and umount.cifs as suid + - Comment out the default [homes] shares and add more verbose comments to + explain what they do and how they work (closes: launchpad.net/27608) + - Add a "valid users = %S" stanza to the commented-out [homes] section, to + show users how to restrict access to \\server\username to only username. + - Change the (commented-out) "printer admin" example to use "@lpadmin" + instead of "@ntadmin", since the lpadmin group is used for spool admin. + - Alter the panic-action script to encourage users to report their + bugs in Ubuntu packages to Ubuntu, rather than reporting to Debian. + Modify text to more closely match the Debian script + - Munge our init script to deal with the fact that our implementation + (or lack thereof) of log_daemon_msg and log_progress_msg differs + from Debian's implementation of the same (Ubuntu #19691) + - Kept ubuntu-auxsrc.patch: some auxilliary sources (undocumented in + previous changelogs) + - Set default workgroup to MSHOME + + -- Andrew Mitchell Tue, 28 Nov 2006 20:14:37 +1300 + +samba (3.0.23d-1) unstable; urgency=low + + * new upstream release (2006-11-15) + + [ Noèl Köthe ] + * updated documentation.patch for 3.0.23d + * updated non-linux-ports.patch for 3.0.23d + * updated adapt_machine_creation_script.patch for 3.0.23d + * updated autoconf.patch for 3.0.23d + + [ Debconf translations ] + * Added Bosnian. Closes: #396634 + * Added Bulgarian. Closes: #397773 + + -- Noèl Köthe Thu, 16 Nov 2006 13:55:26 +0100 + +samba (3.0.23c-4) unstable; urgency=low + + [ Debconf translations ] + * Added Greek. + * Added Gujarati. Closes: #394430 + * Added Korean. Closes: #394509 + * Added Nepali. + * Updated Czech (typo fixed). + * Added Wolof. Closes: #396079 + + -- Christian Perrier Sun, 5 Nov 2006 09:42:40 +0100 + +samba (3.0.23c-3) unstable; urgency=low + + [ Debconf translations ] + * Updated Catalan; thanks to Guillem Jover for his help + * Updated Russian. + * Updated Spanish. Add a missing word and correct the copyright header + * Updated Vietnamese. Closes: #394164 + * Added Albanian. Closes: #393777 + * Added Chinese (Traditional). + * Added Thai. + + -- Christian Perrier Sat, 21 Oct 2006 10:44:11 +0200 + +samba (3.0.23c-2) unstable; urgency=low + + [ Debconf translations ] + * Updated Swedish. Closes: #386510. + * Updated Japanese. Closes: #386534. + * Updated Italian. Closes: #386691. + * Updated Romanian. Closes: #388254. + * Updated German. Closes: #389072. + * Updated Brazilian Portuguese. Closes: #389097. + * Updated Basque. Closes: #389722. + * Updated Turkish. Closes: #390887 + * Updated Danish. Closes: #390878 + * Updated German. Closes: #390813 + * Updated Simplified Chinese. Closes: #390959 + * Updated Arabic. + * Updated Spanish. Closes: #391735 + * Updated Dutch. Closes: #392082 + * Added Slovak. Closes: #386847. + * Added Finnish. Closes: #390150. + * Added Estonian. Closes: #391102. + * Added Norwegian BokmÃ¥l. Closes: #391692 + * Added Hungarian. Closes: #391746 + + [ Steve Langasek ] + * Change the Maintainer field at last to the mailing list... gives + our spam rules some testing, in response to popular demand :) + * Check for update-inetd on purge before trying to invoke it; + closes: #388606. + + [ Peter Eisentraut ] + * Make swat binNMU-safe by using ${source:Version} for dependency on + samba-doc + * Make samba-common owner of /var/{cache,log,run}/samba, let samba and + winbind only delete files they know they're exclusive owners of. + Closes: #370718. + * Use python-central to manage installation of python-samba. + Closes: #386499. (patch by Patrick Winnertz) + * Use upstream makefile to install Python module. + * Build-Depend on python-dev instead of python-all-dev. + * Removed old upgrade support. + * Remove possibly leftover comma from "passdb backend" setting in + smb.conf on upgrade. Closes: ##383307. + * Added libpam-smbpass logcheck file by martin f krafft. + Closes: #391487, #391916. + + [ Christian Perrier ] + * Add LSB info to the init script + + -- Christian Perrier Thu, 12 Oct 2006 18:31:46 +0200 + +samba (3.0.23c-1) unstable; urgency=low + + [ Christian Perrier ] + * New upstream version + * Split out samba/run_mode with "__Choices". + + [ Noèl Köthe ] + * corrected samba override disparity: + samba-dbg_3.0.23b-2_i386.deb: package says priority is optional, override says extra. + + [ Debconf translations ] + * Updated Galician. Closes: #383001. + * Updated Danish. Closes: #383025. + * Added Tagalog. Closes: #383039, #383252. + * Updated Khmer. + * Updated Arabic. + * Updated Dzongkha. Closes: #383125. + * Updated Vietnamese. Closes: #383126. + * Updated Czech. Closes: #384760. + + [ Peter Eisentraut ] + * Preseed configure result for method to detect interfaces in + debian/config.cache; the test might otherwise fail if there are no + interfaces configured at build time. Closes: #382429. + * Refined panic-action script text. Closes: #382500. + + -- Noèl Köthe Mon, 04 Sep 2006 12:10:28 +0200 + +samba (3.0.23b-2) unstable; urgency=low + + [ Debconf translations ] + * Updated Romanian. Closes: #382358 + * Updated Dzongkha. Closes: #382448, #382948 + * Updated Basque. Closes: #382456 + * Added Simplified Chinese. Closes: #382489 + + [ Peter Eisentraut ] + * Remove no longer functioning "guest" value from "passdb backend" + setting in smb.conf on upgrade. Closes: #382296 + + [ Steve Langasek ] + * Drop code and debconf questions specific to upgrades from samba <= 2.2. + * Reword some debconf translations as discussed on the list. + * Rerun debconf-updatepo. + * Switch debian/ca.po to UTF-8. + * Restore some reverted strings for Galician, Czech, Brazilian Portuguese, + Spanish, French, Italian, Catalan, Portuguese, Russian, and Japanese. + * Update translations for Brazilian Portuguese, Spanish, French, Italian, + Catalan, and Portuguese. + + -- Peter Eisentraut Mon, 14 Aug 2006 19:04:31 +0200 + +samba (3.0.23b-1) unstable; urgency=low + + * New upstream release + + [ Debconf translations ] + * Updated Galician. Closes: #381988 + + -- Noèl Köthe Tue, 08 Aug 2006 22:28:00 +0200 + +samba (3.0.23a-1) unstable; urgency=medium + + * New upstream release + + * Fixes the following Debian bugs: + - winbind: panic()s when started outside of a domain context. + Closes: #337070 + - Make smbclient -L use RPC to list shares, fall back to RAP. + Closes: #168732 + - Potential hang in nmbd. Upstream bug #3779. Closes: #367472 + - Typos in "ldap group suffix" in smb.conf(5) (upstream #3780). + Closes: #367507 + - Erroneous permissions checks after 3.0.10 -> 3.0.14a + (upstream #2591). Closes: #307626 + - Anonymous memory exhaustion DoS (CVE-2006-3403). Closes: #378070 + - ImportError exception raised when trying to import samba.smb + (upstream #3567). Closes: #350050 + - Changed references from pam_pwdb to pam_unix (upstream #3225). + Closes: #206672 + - SWAT segfault (upstream #3702). Closes: #363523 + + [ Adam Conrad ] + * Fix typo in smb.conf that causes all samba apps to whine. + Closes: #369782 + * Add myself to Uploaders, on the off chance that I might upload. + + [ Debconf translations ] + * Add Galician translation of debconf templates. Closes: #361204, #369403 + * Add Basque translation of debconf templates. Closes: #375104 + * Add Romanian translation of debconf templates. Closes: #379246 + * Add Khmer translation of debconf templates. Closes: #381833 + * Add Dzongkha translation of debconf templates. + * Updated Russian. Closes: #369375 + * Updated Czech. Closes: #369408 + * Updated Japanese. Closes: #369457 + * Updated Italian. Closes: #369587 + * Updated Swedish. Closes: #369730 + * Updated Dutch. Closes: #376515 + * Updated Vietnamese. Closes: #381557 + * Updated French. + * Updated Brazilian. + * Updated Portuguese. Closes: #372632 + * Updated Arabic. + + [ Christian Perrier ] + * Add dependency on procps for samba, as ps is used in init scripts. + Thanks to Bastian Blank for reporting. Closes: #365618 + * Rewrite debconf templates to be compliant with 6.5.2 of the Developer's + Reference + * Add support for /etc/default/winbind. Closes: #262313, #374411 + Thanks to Guido Guenther for the old patch and to Jérôme Warnier + for reminding us about it. + * Compile with --with-cifsmount which is now needed to properly compile + mount.cifs and umount.cifs. See samba bug #3799 + + [ Peter Eisentraut ] + * Use debian/compat instead of DH_COMPAT + * Updated Standards-Version to 3.7.2 (no changes needed) + * Replaced libsmbclient shlibs file by dh_makeshlibs call, so the + required ldconfig calls appear in the maintainer scripts + * Adjusted debian/rules to get 3.0.23rc1 to build + * Updated to debhelper level 5 + * Rearranged dh_strip calls so that build succeeds with + DEB_BUILD_OPTIONS=nostrip. Closes: #288995 + * Create /var/spool/samba and use it as default printer spool. + Closes: #275241 + * Made winbind init script more careful about returning proper exit code + * Added winbindd_priv group as owner of winbindd_privileged directory. + Closes: #307257 + * Python transition preparations: renamed package to python-samba, + removed hardcoded references to Python version 2.3. Closes: #380939 + * Removed unwanted swat debconf warning + * Put localized swat messages into /usr/share/samba, where swat looks for + them. Closes: #376991 + + -- Peter Eisentraut Mon, 7 Aug 2006 23:00:49 +0200 + +samba (3.0.22-1ubuntu4) edgy; urgency=low + + * SECURITY UPDATE: Remote DoS. + * Add debian/patches/track_connection_dos.patch: + - Limit active connections to 2048 to avoid DoS due to unbound array + growing when tracking active connections. + - CVE-2006-3403 + + -- Martin Pitt Tue, 11 Jul 2006 13:14:27 +0200 + +samba (3.0.22-1ubuntu3) dapper; urgency=low + + * Config file changes only in this upload; no destabilising code changes. + * Comment out the default [homes] shares and add more verbose comments to + explain what they do and how they work (closes: launchpad.net/27608) + * Add a "valid users = %S" stanza to the commented-out [homes] section, to + show users how to restrict access to \\server\username to only username. + * Change the (commented-out) "printer admin" example to use "@lpadmin" + instead of "@ntadmin", since the lpadmin group is used for spool admin. + + -- Adam Conrad Wed, 17 May 2006 18:29:00 +1000 + +samba (3.0.22-1ubuntu2) dapper; urgency=low + + * After much faff about fixing this properly and getting fixes + submitted upstream (some of which has happened), I've concluded + that getting every case_tables usage in the code nailed down + before release just isn't going to happen, so applying a more + global bandaid (ubuntu-setlocale-fixes.patch) instead to stop + the SEGVs completely (closes: launchpad.net/{39990,39484,39956}) + * Snag a patch from upstream SVN to stop winbindd from panicking + when not joined to a domain (closes: launchpad.net/32614) + * Mangle patch fuzz for previous patch to make it apply cleanly. + + -- Adam Conrad Tue, 16 May 2006 22:36:17 +1000 + +samba (3.0.22-1ubuntu1) dapper; urgency=low + + * Sync with Debian's new upstream (UVF exception granted by mdz) to + resolve the information disclosure vuln reported in CVE-2006-1059 + * Make the panic-action script check for 'mail' before it goes about + trying to backtrace crashes and mail to root (launchpad.net/32987) + * Include patch from upstream to purge setlocale calls from the client + library, so we don't break the desktop locale (launchpad.net/28603) + * Make the samba and winbind init scripts more robust in the face of a + tmpfs /var/run, creating directories as we go (launchpad.net/33389) + * Fix up syntax error in the default config file (launchpad.net/37965) + + -- Adam Conrad Sun, 2 Apr 2006 22:09:41 +1000 + +samba (3.0.22-1) unstable; urgency=medium + + [ Steve Langasek ] + * New upstream release + - CAN-2006-1059: fixes an information leak in logfiles of systems using + winbind with log level >= 5. + * Fix a typo in the default smb.conf (closes: #354495). + + [ Noèl Köthe ] + * replacing SMB with SMB/CIFS in the descriptions like + named on the samba.org webpage. Closes: #356335 + + -- Steve Langasek Sun, 12 Mar 2006 22:40:28 +0100 + +samba (3.0.21c-1ubuntu1) dapper; urgency=low + + * Merge with Debian for new upstream bugfixes, UVF exception by mdz. + * Remove dapper->dapper upgrade hack, which should be a non-issue now. + + -- Adam Conrad Fri, 24 Mar 2006 02:59:17 +1100 + +samba (3.0.21c-1) unstable; urgency=low + + * New upstream release + * add a few logon-related parameters as good and safe + examples for *DC-type settings. Closes: #349051 + * add an example "add user script". Closes: #349050 + * drop outdated information from the smbfs package description + Closes: #352828 + + -- Christian Perrier Sat, 25 Feb 2006 11:58:45 +0100 + +samba (3.0.21b-1ubuntu2) dapper; urgency=low + + * Due to a misplaced file in older samba packages, temporarily make + python2.4-samba Replace samba for smooth dapper->dapper upgrades. + + -- Adam Conrad Thu, 23 Feb 2006 20:33:34 +1100 + +samba (3.0.21b-1ubuntu1) dapper; urgency=low + + * Sync with Debian's new upstream release (UVF exception granted by Colin), + which fixes several nasty crashes, as well as a vicious memory leak in + winbind that can OOM a machine within days (Closes: launchpad.net/32440) + * Resolve some fairly scary merge conflicts from Debian's switch to quilt. + * Revert Debian's installation of mount.cifs and umount.cifs as suid until + Martin Pitt and I have had a chance to review/discuss this for Ubuntu. + + -- Adam Conrad Thu, 23 Feb 2006 15:23:37 +1100 + +samba (3.0.21b-1) unstable; urgency=low + + * The "Tridge" release: celebrates the 2005 Free Software Award winner + + * New upstream release + + * Upstream bugs fixed by the new upstream release: + - Support changing expired passwords in + pam_winbindd. Closes: #258302 + - vfs_full_audit fixes for multiple connections. Closes: #348419 + - crashes of smbd in security=server mode + Closes: #346045, #346069, #350598, #351448 + + [ Peter Eisentraut ] + * Put correct paths for Debian installations into the man pages, and + remove outdated swat setup instructions therein. Closes: #321005 + * Fix lintian overrides and install them into the right packages. + * Remove swat inetd registration in remove, not purge. Closes: #313214 + * Add findsmb script. Closes: #231806 + * Fix sonames of libnss_win{bind,s}.so. Closes: #333290 + * Remove autoconf build dependency. + * Remove remnants of old patch system. + * Install smbumount setgid root. Closes: #253437 + * Add watch file. + * Activate kernel oplocks. Closes: #218511 + * Disable PIE compilation. Closes: #346416 + + [ Christian Perrier ] + * activate building of idmap_rid. Closes: #284681. + Thanks to Ubuntu patches + * activate building of idmap_ad. Closes: #341814 + * modify the long description of the libsmbclient-dev package to + avoid repeating the long description. Thanks, linda. + + [ Steve Langasek ] + * Also enable setresuid()/setresgid() on alpha and sparc now that support + for Linux 2.2 is dropped. + + -- Christian Perrier Mon, 6 Feb 2006 07:02:20 +0100 + +samba (3.0.21a-4) unstable; urgency=low + + [ Peter Eisentraut ] + * Add umount.cifs. Closes: #340967 + * Really make mount.cifs and umount.cifs suid root. Closes: #340966 + + [ Christian Perrier ] + * Add "bind interfaces only" and "interfaces" options (commented) + to the default smb.conf file. Closes: #349043 + + [ Steve Langasek ] + * Add missing changes to source/include/config.h.in into the + autoconf.patch, so that samba looks for files in /var/lib/samba like it's + supposed to instead of in /var/run/samba! Closes: #349372, #349464. + + -- Steve Langasek Mon, 23 Jan 2006 00:59:20 -0800 + +samba (3.0.21a-3) unstable; urgency=low + + * Add Build-Depends on quilt (>= 0.40 as we use quilt.make) + + -- Christian Perrier Sat, 21 Jan 2006 23:02:32 +0100 + +samba (3.0.21a-2) unstable; urgency=low + + [ Christian Perrier ] + * Switch to quilt for patches management. Refresh all patches so + that they apply cleanly. Closes: #345557 + * debian/patches/adapt_machine_creation_script.patch: + - adapt example machine creation script to Debian. Closes: #346234 + * winbind.dirs: + - added /var/run/samba. Closes: #347585 + + [ Peter Eisentraut ] + * swat.links: + - file added. Closes: #346001 + + [ Noèl Köthe ] + * fixed typo in panic-script. Closes: #348410 + + [ Steve Langasek ] + * debian/patches/autoconf.patch: + - move changes to autogenerated files into their own patch now that we've + lost the script that was calling autogen.sh for us; this also helps + make debian/rules clean just a little bit cleaner. + * debian/patches/fhs.patch: + - fix new references to registry.tdb (closes: #348874). + - also move account_policy.tdb, perfcount, and eventlog into /var/lib/samba + where they belong + + -- Christian Perrier Fri, 20 Jan 2006 14:20:35 +0100 + +samba (3.0.21a-1ubuntu1) dapper; urgency=low + + * Resyncronise with Debian, resolving many merge conflicts (#20710) + * Alter the panic-action script to encourage users to report their + bugs in Ubuntu packages to Ubuntu, rather than reporting to Debian. + * Munge our init script to deal with the fact that our implementation + (or lack thereof) of log_daemon_msg and log_progress_msg differs + from Debian's implementation of the same (Ubuntu #19691) + * Enable the idmap_rid.so backend plugin for winbind (Ubuntu #12797) + + -- Adam Conrad Tue, 3 Jan 2006 13:56:26 +1000 + +samba (3.0.21a-1) unstable; urgency=low + + [ Christian Perrier ] + * *Really* make samba-doc suggest samba-doc-pdf. This change finally + did not make it in the previous release. + + [ Noèl Köthe ] + * new upstream release 3.0.21a + - removed smbsh.1 from debian/rules + - added new smbclient programm smbget (with conflict/replace + to existing Debian smbget package) + - added libsmbclient.7 to libsmbclient package + - added umount.cifs.8 to smbfs package + - added pam_winbind.7 to winbind package + - added new /usr/bin/eventlogadm to samba package which is + documented here http://www.samba.org/~jerry/Samba-EventLog-HOWTO.txt + - fixed "cd command fails in smbclient". Closes: #307535 + - fixed "file descriptor leak". Closes: #339564 + - fixed "smbclient(1) doesn't list same options as + smbclient usage statement". Closes: #154184 + - fixed "typo in smbmount.8". Closes: #260673 + - fixed "smbmount manual page doesn't have a link to + smbumount". Closes: #297535 + - fixed "smb.conf man page references non-existent + BROWSING.txt file". Closes: #316458 + - fixed "smb.conf - improve topic: hosts deny (S)". Closes: #273480 + - fixed "fails to manage groups containing spaces". Closes: #299592 + - corrected nonpic-libsmbclient.patch to apply + - corrected fhs.patch to apply + * added myself to Uploaders + * Rewording of the panic action script. Closes: #335051 + * added missing swat translation to swat package + + -- Noèl Köthe Sun, 01 Jan 2006 12:45:33 +0100 + +samba (3.0.20b-4) unstable; urgency=low + + [ Christian Perrier ] + * Remove the smbldap-tools-* directory from the examples of samba-doc + as these tools exist as an independent package. Closes: #341934 + * Swedish debconf translation update. Closes: #342022 + * Preserve the local admin settings for run_mode in /etc/default/samba + when upgrading. Closes: #234038, #267988, #269735 + * Winbind also must depend on lsb-base. Closes: #343379 + * Enable swat in inetd when installing it and remove it when + uninstalling. Closes: #87905, #230936, #268429 + + [ Peter Eisentraut ] + * Added separate samba-doc-pdf package, suggested by samba-doc. + Closes: #281971 + * Removed duplicate documentation in swat package, symlinked to + samba-doc; swat now depends on samba-doc. Closes: #233447 + + -- Christian Perrier Tue, 20 Dec 2005 17:08:20 +0100 + +samba (3.0.20b-3) unstable; urgency=low + + [ Steve Langasek ] + * Drop the FHS transition code from the samba postinst, since it's + not needed for upgrades from sarge (and most of it not for upgrades + from woody). + + [ Noèl Köthe ] + * libpam-smbpass dependency on samba-common + Closes: #297923 + * Updated swedish debconf translation. Closes: #335784 + * Added Recommends: smbldap-tools. Closes: #227675 + + [ Peter Eisentraut ] + * Added doc-base support. Closes: #55580 + * Fixed dh_installexamples call so the debian/*.examples files are + actually used. + * Patched libpam-smbpass README to refer to examples directory. + Closes: #215771 + + [ Christian Perrier ] + * Add a working passwd chat line to the default smb.conf file + Closes: #269746 + * Add the profiles binary and man page to the shipped files. Closes: #225494 + * Add a dependency on samba-common for winbind and force versions to match + Closes: #273007, #264855 + * Add /var/log/samba to winbind directories. Closes: #340833 + * Lintian cleaning: + - Add a few lintian overrides to avoid lintian complaining + for things done on purpose or just because it makes wrong assumptions + - Corrected FSF address in debian/copyright + - Make swat depend on netbase as it uses update-inetd in its postinst + script + - Correct shebang lines in config scripts + - Remove an extra copy of the GPL in smbldap-tool examples in samba-doc + - Minor correction in libsmbclient-dev description to avoid strictly + repeating the short description in the long description + - Call confmodule in swat.postinst as this is the only way to guarantee + that the config script is run in all cases + + -- Christian Perrier Sat, 3 Dec 2005 07:30:40 +0100 + +samba (3.0.20b-2ubuntu1) dapper; urgency=low + + * Resynchronise with Debian. + + -- Michael Vogt Mon, 14 Nov 2005 11:11:28 +0100 + +samba (3.0.20b-2) unstable; urgency=low + + * Don't build with -gstabs any more; -g no longer gives a problematic + size hit, and -gstabs is no longer supported on ia64. + + -- Steve Langasek Wed, 19 Oct 2005 19:02:44 -0700 + +samba (3.0.20b-1) unstable; urgency=low + + * Christian Perrier: + - Debconf translations: + - Added Vietnamese. Closes: #317876 + - Updated German. Closes: #322907 + * Steve Langasek: + - Use ${misc:Depends} in debian/control instead of depending on + debconf directly, allowing use of cdebconf as an alternative. + Closes: #332088. + * Noèl Köthe + - corrected libsmbclient priority to optional. Closes: #310045 + - corrected the path of ServerType.html in smb.conf. Closes: #296500 + - updated Standards-Version to 3.6.2 (no changes needed) + - added homepage to description + - switched init scripts (samba and winbind) to lsb-functions + (took patches from ubuntu) + - added Swedish. Closes: #331437 + - removed outdated "guest" value in "passdb backend" in default smb.conf + Closes: #289519 + - moved smbpasswd(5) to samba-common where the binary and smbpasswd(8) + is; Replaces: all previous versions of samba. Closes: #253603 + - new upstream release 3.0.20b (from 2005-10-13). Closes: #324515 + - support for Windows Vista. Closes: #323489 + - Mac OS Tiger Problem fixed. Closes: #309836 + - BUG 2688: re-implement support for the -P (--port) option. + Closes: #307746 + - "man smb.conf" warnings fixed. Closes: #266320 + - testprns removed by upstream so removed in samba.files + - corrected docs/*.pdf names (samba-doc.docs) + - corrected diagnosis.html path (samba.docs) + - removing patches which are included upstream: + dos7-xcopy-always-copies-files.patch + (* BUG 2622: Remove DPTR_MASK as it makes no sense.) + hide-special-file-fix.patch + (* Hide dot files and directory logic fixes.) + rap-printing-bigendian.patch + (* BUG 1998: Correct byte ordering bug when storing + 16-bit RAP print job ids.) + smbclient-vfat-loop.patch + smbclient-vfat-loop2.patch + (* BUG 2698: Fix infinite listing loop in smbclient + caused by an invalid character set conversion.) + - fixed the following patches which didn't applied cleanly + fhs.patch + non-linux-ports.patch + + -- Steve Langasek Tue, 18 Oct 2005 19:02:21 -0700 + +samba (3.0.14a-6ubuntu1) breezy; urgency=low + + * Resynchronise with Debian, resolving merge conflicts (#12360) + + -- Adam Conrad Thu, 21 Jul 2005 17:53:23 +0000 + +samba (3.0.14a-6) unstable; urgency=low + + * Use DEB_HOST_ARCH_OS instead of DEB_HOST_GNU_SYSTEM to detect + Linux in debian/rules, for compatibility with dpkg-dev >= 1.13.9; + add a versioned build-depend accordingly. Closes: #315955 + * Switch to libreadline5. + + -- Steve Langasek Fri, 1 Jul 2005 00:13:12 -0700 + +samba (3.0.14a-5ubuntu1) breezy; urgency=low + + * Resynchronise with Debian (closes Ubuntu bugs #11662 and #3134) + * Add --oknodo to the start-stop-daemon call in our init script, so we + don't fail when trying to start an already started service (#11600) + + -- Adam Conrad Wed, 29 Jun 2005 05:58:13 +0000 + +samba (3.0.14a-5) unstable; urgency=low + + * Fix libsmbclient.a to be built as non-PIC instead of PIC. + Closes: #279243. + + -- Steve Langasek Wed, 8 Jun 2005 05:46:52 -0700 + +samba (3.0.14a-4ubuntu1) breezy; urgency=low + + * Resynchronise with Debian, resolving merge conflicts. + + -- Adam Conrad Fri, 3 Jun 2005 05:45:34 +0000 + +samba (3.0.14a-4) unstable; urgency=high + + * Last-minute upload for sarge, because I don't listen to anything + that RM guy says + * Patch smbmount to strip CAP_UNIX out of the capabilities passed to + the kernel when uid, gid, dmask, or fmask options have been + specified; this keeps the mount permissions from changing out from + under the user when upgrading to a server (or to a kernel) that + supports unix extensions. Closes: #310982. + * Second patch to smbclient search continuation logic, from upstream: + preserve the original UCS2 filename to guard against lossy + conversions, and break out if we find ourselves looping. + Closes: #311157. + * Upstream fix to make print job cancellations work on big-endian + systems when talking to RAP-style clients (i.e., smbclient). + Closes: #311213. + * Add build-dependency on libpopt-dev, so that we consistently use the + system popt lib instead of the bundled one. + + -- Steve Langasek Thu, 2 Jun 2005 07:02:46 -0700 + +samba (3.0.14a-3ubuntu3) breezy; urgency=low + + * Use -g instead of -gstabs on powerpc64-linux-gnu and ia64-linux-gnu, + which should finally fix that pesky ia64 build failure. + + -- Adam Conrad Sat, 28 May 2005 08:41:21 +0000 + +samba (3.0.14a-3ubuntu2) breezy; urgency=low + + * Reverse the sense of LaMont's dpkg-architecture patch to minimise + our diff against upstream and get us building on ia64 again. + + -- Adam Conrad Sat, 28 May 2005 07:12:39 +0000 + +samba (3.0.14a-3ubuntu1) breezy; urgency=low + + * Resynchronise with Debian (Ubuntu #10966) + * Give winbind a dependency on samba-common (Ubuntu #9156) + + -- Adam Conrad Fri, 27 May 2005 15:39:48 +0000 + +samba (3.0.14a-3) unstable; urgency=high + + * Urgency set to high for a bug that makes smbclient/libsmbclient + /almost/ mostly unusable + * Fix smbclient's search continuation logic so that it works correctly + against 2K servers offering VFAT-hosted shares; many thanks to + Jeremy Allison for the timely upstream fix. Closes: #309798. + * Update pt_BR debconf translation. Thanks to Andre Luis Lopes + . (closes: #308510) + * Add Russian debconf translation, thanks to Yuriy Talakan + . (closes: #310063) + + -- Steve Langasek Thu, 26 May 2005 23:37:57 -0700 + +samba (3.0.14a-2) unstable; urgency=low + + * Point the sense of the file_is_special() check right way around; + thanks to Matthijs Mohlmann for catching this. Closes: #305747. + * debian/patches/dos7-xcopy-always-copies-files.patch: + Fix the MS-DOS 7 XCOPY copying files over and over bug + Closes: #309003 + * Steve Langasek : + - Add Christian Perrier to Uploaders:. Thanks, Christian :) + + -- Steve Langasek Sun, 8 May 2005 04:43:21 -0700 + +samba (3.0.14a-1ubuntu2) breezy; urgency=low + + * dpkg changes cleanup. + + -- LaMont Jones Mon, 23 May 2005 21:55:07 -0600 + +samba (3.0.14a-1ubuntu1) breezy; urgency=low + + * Resynchronise with Debian; fixing merge conflicts. + * Drop patches/gcc4-fix.patch, which was fixed differently upstream. + * Remove patches/krb.patch, which was integrated upstream. + * Drop patches/samba-client-no-auto-anon.patch, included upstream. + * Disable the use of type-handling, which we don't ship in main. + + -- Adam Conrad Thu, 12 May 2005 07:01:56 +0000 + +samba (3.0.14a-1) unstable; urgency=low + + * New upstream version + - A more complete upstream fix for missing files in file listings, + should really give us working (closes: #302771); drop + xp-missing-files.patch, which has been superseded. + * Use the right path when removing mount.cifs binary in the clean + target. Closes: #303318. + + -- Steve Langasek Mon, 18 Apr 2005 03:22:29 -0700 + +samba (3.0.11-1) unstable; urgency=high + + * New upstream version + - Fixes duplicated entry in swat(8) manpage (closes: #292957). + - Fix queue handling so that processes serving print clients don't + spin off into infinity and clobber the system (closes: #274969). + - Make sure we use C-locale toupper/tolower functions for case + conversion, since Turkish pairing rules are incompatible + (closes: #286174). + * Fix logrotate script to exit true instead of false when nmbd.pid is + missing (closes: #287263). + * Added Portuguese debconf translation. Thanks to Miguel Figueiredo + . (closes: #286375) + * Added Italian debconf translation. Thanks to Luca Monducci + . (closes: #284125) + * Add support for building on the Debian BSD and Hurd ports; thanks to + Robert Millan for the patch. (closes: #266693) + * debian/patches/xp-missing-files.patch: import patch from upstream to + fix missing entries in directory listings when talking to WinXP + servers (closes: #297771). + + -- Steve Langasek Wed, 23 Mar 2005 00:13:16 -0800 + +samba (3.0.10-1ubuntu4) breezy; urgency=low + + * debian/patches/gcc4-fix.patch: Fix FTBFS with gcc 4.0. (#9047) + + -- Martin Pitt Fri, 15 Apr 2005 09:14:57 +0000 + +samba (3.0.10-1ubuntu3) hoary; urgency=low + + * debian/patches/krb.patch: + - patch to use kerberos by default if the authentication succeeds, + but fall back to the normal methods if not. + Fix the kerberos support for gnomevfs (Hoary: #7357). + + -- Sebastien Bacher Tue, 22 Mar 2005 12:43:19 +0100 + +samba (3.0.10-1ubuntu2) hoary; urgency=low + + * debian/patches/samba-client-no-auto-anon.patch: + - propogate an error back to the caller, instead of automatic Guest login + (Hoary: #5425). + + -- Sebastien Bacher Sun, 23 Jan 2005 14:06:48 +0100 + +samba (3.0.10-1ubuntu1) hoary; urgency=low + + * Merged new Debian version + * Dropped patch ubuntu-debconfpo.patch, it did not actually change anything + * Since the debian/ directory now contains Ubuntu specific changes anyway, + the following Ubuntu specific patches which only touched debian/ were + statically applied and deleted; this will make manual merges much harder, + but is apparently what my fellow developers like to have: + + ubuntu-debconf-dhcp3.patch + + ubuntu-defaultworkgroup.patch + + ubuntu-lsbinit.patch + + ubuntu-smbmount-nosuid.patch + + ubuntu-branding.patch (only the debian/ parts; dropped unnecessary + version.h patch) + + -- Martin Pitt Wed, 5 Jan 2005 14:03:21 +0100 + +samba (3.0.10-1) unstable; urgency=high + + * New upstream release. + - CAN-2004-1154: integer overflow can lead to remote code execution + by authenticated users; closes: #286023. + * High-urgency upload for sarge-targetted RC bugfix. + * Sync the fhs.patch to samba 3.0.10. + * Install mount.cifs suid root, to make user mounts possible + (closes: #283819). + * debian/patches/cups.patch: Change the default printing system, so we + can compile in CUPS support without making it the default -- CUPS is + not a reasonable default on Debian, at least for sarge. + + -- Steve Langasek Fri, 17 Dec 2004 11:56:01 -0800 + +samba (3.0.9-1ubuntu2) hoary; urgency=low + + * Build python2.4-samba package. + + -- Matthias Klose Thu, 16 Dec 2004 13:44:41 +0100 + +samba (3.0.9-1ubuntu1) hoary; urgency=low + + * Resynchronise with Debian. + + -- Scott James Remnant Sat, 04 Dec 2004 12:48:02 +0000 + +samba (3.0.9-1) unstable; urgency=low + + * New upstream release + - Fixes Win9x printing; closes: #283530, #282571, #283818. + - Fixes a problem with setting dosmodes on filesystems without ACL + support; closes: #283661. + - Drop ldapsam_compat.patch, redundant now that a fix is integrated + upstream + + -- Steve Langasek Thu, 2 Dec 2004 01:11:39 -0800 + +samba (3.0.8-2ubuntu1) hoary; urgency=low + + * Resynchronise with Debian. + + -- LaMont Jones Mon, 22 Nov 2004 20:55:18 -0700 + +samba (3.0.8-2) unstable; urgency=low + + * Fix the module paths for python2.3-samba so that "import foo from samba" + works, and include the __init__.py glue; closes: #222867). + * Enable quota support; closes: #246839. + * Fix missing symbols in libsmbclient (and libnss_wins), and add + -Wl,-z,defs to the libsmbclient link options to prevent future + instances of undefined symbols (closes: #281181). + * Fix for the legacy ldapsam_compat backend; thanks to Fabien + Chevalier for the patch (closes: #274155). + + -- Steve Langasek Mon, 15 Nov 2004 06:54:13 -0800 + +samba (3.0.8-1ubuntu1) hoary; urgency=low + + * SECURITY UPDATE: new upstream version fixes CAN-2004-0882 (QFILEPATHINFO + unicode filename buffer overflow). + * Manual merge with the Debian version. + * Reorganized the Ubuntu changes as proper patches prefixed with ubuntu- to + ease further merges: + - ubuntu-auxsrc: some auxilliary sources (undocumented in previous + changelogs) + - ubuntu-branding: put "Ubuntu" everywhere :-) + - ubuntu-debconf-dhcp3: undocumented debconf magic + - ubuntu-debconfpo: updated da, tr, pt_br debconf translations + - ubuntu-defaultworkgroup: set debconf default workgroup to "MSHOME" + - ubuntu-fix-ldap: fix LDAP backend, see Ubuntu #1905, Debian #274155 + - ubuntu-lsbinit: nice init scripts + - ubuntu-smbmount-nosuid: don't install smbmount and smbumount suid root + * All other patches have been adopted by Debian/Upstream. + + -- Martin Pitt Thu, 18 Nov 2004 12:20:48 +0100 + +samba (3.0.8-1) unstable; urgency=high + + * New upstream package. Urgency set to "high" because of a potential + Denial of Service vulnerability in previous 3.0.x releases + (CAN-2004-0930). (Eloy) + * Introduce new -dbg package, so we can make better sense out of the + cleverly-supplied backtrace emails. (Vorlon) + * Applied patch from Luke Mewburn to fix missing + lock_path() to state_path() change in the FHS patches. (Eloy) + + -- Eloy A. Paris Mon, 8 Nov 2004 13:39:34 -0500 + +samba (3.0.7-2ubuntu1) hoary; urgency=low + + * Resynchronise with Debian. + * Deleted source/autom4te.cache/ to clean up the debian diff.gz. + + -- Martin Pitt Thu, 11 Nov 2004 12:22:59 +0100 + +samba (3.0.7-2) unstable; urgency=high + + * High-urgency upload for sarge-targetted RC fixes. + * Use autogen.sh in unpatch-source as well as in patch-source, to get + rid of the autom4te.cache cruft. + * debian/patches/make-distclean.patch: add some missing files to the + distclean target in source/Makefile.in (mostly-fixes: #276203). + * Change compile-time default of 'use sendfile' to 'no', since the + current Samba implementation is broken (closes: #261917, #275741, + #270175). + * Add mount.cifs into the smbfs package; thanks to Igor Belyi for + showing us just how simple this patch should be. ;) Since cifs is + the preferred kernel driver in 2.6, bugs related to smbfs and 2.6 + are considered closed unless someone can show that they exist with + the cifs driver as well (closes: #249890, #269443, #227791, #236869, + #260707, #261808, #270175). + * Fix FHS migration code so that it only affects upgrades from old + package versions, and doesn't cause us to mess with non-standard + directories that may have been re-added by the admin + (closes: #251858). + + -- Steve Langasek Tue, 26 Oct 2004 01:35:23 -0700 + +samba (3.0.7-1ubuntu7) hoary; urgency=low + + * SECURITY UPDATE for Hoary. See previous changelog. + + -- Martin Pitt Tue, 9 Nov 2004 23:56:27 +0100 + +samba (3.0.7-1ubuntu6.1) warty-security; urgency=low + + * SECURITY UPDATE: fix potential remote Denial of Service + * Added patch CAN-2004-0930: + A remote attacker could cause and smbd process to consume abnormal amounts + of system resources due to an input validation error when matching filenames + containing wildcard characters. + * References: + CAN-2004-0930 + http://www.securityfocus.com/archive/1/380551 + + -- Martin Pitt Mon, 8 Nov 2004 19:34:54 +0100 + +samba (3.0.7-1ubuntu6) warty; urgency=low + + * Added patch prefer_device_uri: change smbspool to prefer DEVICE_URI over + argv[0] to make printing work with the CUPS changes for CAN-2004-0923 + (this removed authentication tokens from argv[0]). (Warty bug #2389) + + -- Martin Pitt Fri, 15 Oct 2004 12:31:58 +0200 + +samba (3.0.7-1ubuntu5) warty; urgency=low + + * Set server string = %h (Samba, Ubuntu). (Closes: #1761). + + -- Matthias Klose Sat, 2 Oct 2004 12:56:44 +0200 + +samba (3.0.7-1ubuntu4) warty; urgency=low + + * Apply patch from http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=274155 + to fix ldap backend. + (Closes: #1905/#274155) + + -- Fabio M. Di Nitto Thu, 30 Sep 2004 05:33:12 +0200 + +samba (3.0.7-1ubuntu3) warty; urgency=low + + * Apply patch from https://bugzilla.ubuntu.com/show_bug.cgi?id=1805 + and start shipping mount.cifs. + (Closes: #1805/#227791) + * Set sendfile default to no, reverting upstream change: + svn diff -r 1262:1312 \ + svn://svnanon.samba.org/samba/trunk/source/param/loadparm.c + (Closes: #1433/#261917) + + -- Fabio M. Di Nitto Wed, 29 Sep 2004 11:06:54 +0200 + +samba (3.0.7-1ubuntu2) warty; urgency=low + + * debian/samba-common.conf: Fix uncommented 'fi' + + -- Jeff Waugh Tue, 14 Sep 2004 09:57:03 +1000 + +samba (3.0.7-1ubuntu1) warty; urgency=low + + * Merge Ubuntu changes from 3.0.6-3ubuntu4 + * New upstream closes (Warty #1199) + CAN-2004-0807 and CAN-2004-0808 + + -- Thom May Mon, 13 Sep 2004 19:56:19 +0100 + +samba (3.0.7-1) unstable; urgency=high + + * New upstream release. This release fixes two possible denial of + service conditions; one in nmbd and one in smbd. The CVE numbers + for these vulnerabilities are: + + CAN-2004-0807 for the smbd DoS + CAN-2004-0808 for the nmbd DoS + + Urgency is set to "high" because of these vulnerabilities; so this + new release propagates to testing ASAP. + + Thanks to the Samba Team and the Debian Security Team for the + heads up. + * Remove post-3.0.6 patches that are now in 3.0.7. + + -- Eloy A. Paris Mon, 13 Sep 2004 00:53:38 -0400 + +samba (3.0.6-4) unstable; urgency=low + + * Update LDAP schema (closes: #269797). + * Applied a couple of upstream fixes that will be present in Samba 3.0.7. + + -- Eloy A. Paris Tue, 7 Sep 2004 15:28:42 -0400 + +samba (3.0.6-3ubuntu4) warty; urgency=low + + * Change 3.0.6-Debian to 3.0.6-Ubuntu. (Closes: #1185) + (debian/patches/VERSION.patch) + + -- Fabio M. Di Nitto Mon, 13 Sep 2004 10:44:28 +0200 + +samba (3.0.6-3ubuntu3) warty; urgency=low + + * debian/winbind.init,samba.init: prettified initscripts + * debian/control: versioned depend on lsb-base + + -- Nathaniel McCallum Fri, 10 Sep 2004 13:43:24 -0400 + +samba (3.0.6-3ubuntu2) warty; urgency=low + + * Fix duplicate attribute numbers in example LDAP schema (Warty #1070). + + -- Daniel Stone Wed, 8 Sep 2004 23:16:29 +1000 + +samba (3.0.6-3ubuntu1) warty; urgency=low + + * Merge Ubuntu changes from 3.0.5-1ubuntu2 + * New upstream release fixes Warty#676, fixing compatibility with WinXP SP2 + + -- Matt Zimmerman Thu, 26 Aug 2004 12:36:42 -0700 + +samba (3.0.6-3) unstable; urgency=low + + * Put libsmbclient where it belongs, in /usr/lib. (closes: #267704) + + -- Eloy A. Paris Wed, 25 Aug 2004 01:58:37 -0400 + +samba (3.0.6-2) unstable; urgency=low + + * Added Danish debconf translation. Thanks to Claus Hindsgaul + . (closes: #232884) + + -- Eloy A. Paris Mon, 23 Aug 2004 17:24:19 -0400 + +samba (3.0.6-1) unstable; urgency=low + + * New upstream version. + * Incorporate Turkish debconf translation; thanks to Recai Oktas + . (closes: #252031) + * Update pt_BR debconf translation. Thanks to Andre Luis Lopes + . (closes: #208113) + + -- Eloy A. Paris Mon, 23 Aug 2004 12:34:44 -0400 + +samba (3.0.5-2) unstable; urgency=high + + * Patches from Fabien Chevalier + to fix: + + libnss_wins crashes other programs (closes: #252591) + + Can't list share files/dirs, but can acces deeper files/dirs + (closes: #264572) + + Samba 3.0.5 Printserver doesn't work with WinXP SP2 (closes: #265871) + * Urgency "high" to make it into testing as soon as possible since + at least #265871 is pretty bad now that WinXP SP2 has been released. + Thanks for the help Fabien! Both Vorlon and I have been very busy + lately. + + -- Eloy A. Paris Wed, 18 Aug 2004 13:25:41 -0400 + +samba (3.0.5-1ubuntu2) warty; urgency=low + + * Don't install smbmnt and smbumount suid root since GNOME does not require + it (it uses libsmbclient) + + -- Martin Pitt Tue, 10 Aug 2004 17:46:25 +0200 + +samba (3.0.5-1ubuntu1) warty; urgency=low + + * Port of warty specific changes from previous version. + * Set default WORKGROUP to MSHOME. + (debian/samba-common.templates) + * Set WINS settings priority to medium. + (debian/samba-common.config) + + -- Fabio M. Di Nitto Fri, 23 Jul 2004 07:35:14 +0200 + +samba (3.0.5-1) unstable; urgency=high + + * New upstream version. Urgency "high" because of potential buffer + overflows. The security fixes are the only difference between + 3.0.4 and 3.0.5. + + -- Eloy A. Paris Thu, 22 Jul 2004 08:07:36 -0400 + +samba (3.0.4-5) unstable; urgency=low + + * Doh! Build-depends on libcupsys2-dev (>=1.1.20final+cvs20040330-4), + not an unversioned libcupsys2-dev. (closes: #250523) + + -- Eloy A. Paris Tue, 25 May 2004 07:43:54 -0400 + +samba (3.0.4-4) unstable; urgency=low + + * Rebuilt with libcupsys2-gnutls10 for unstable. + Closes: #250424, #250483, #250491, #250515, #250523, #250592, #250736 + Closes: #250742, #250733 + + -- Eloy A. Paris Mon, 24 May 2004 22:32:52 -0400 + +samba (3.0.4-3) unstable; urgency=low + + * Color me stupid; I uploaded an experimental version to unstable. + + -- Eloy A. Paris Sat, 22 May 2004 00:40:58 -0400 + +samba (3.0.4-1) unstable; urgency=low + + Eloy: + + * New upstream version. + Closes: #247640 (New upstream version available) + Closes: #238905 (Printing crash fix) + Closes: #247090 (panic in viewing printerqueue) + + Vorlon: + + * Incorporate Catalan debconf translations; thanks to + Aleix Badia i Bosch and the Debian L10n Catalan Team. + (closes: #236640) + * Incorporate Czech debconf translations; thanks to + Miroslav Kure (closes: #236274). + * Update libsmbclient shlibs, due to an incompatibility with older + versions that prevents gnome-vfs from working correctly + (closes: #245869). + + -- Eloy A. Paris Fri, 21 May 2004 11:42:19 -0400 + +samba (3.0.2a-1) unstable; urgency=low + + * New upstream version. + + -- Eloy A. Paris Tue, 24 Feb 2004 10:30:47 -0500 + +samba (3.0.2-2) unstable; urgency=high + + * Apply patch from Urban Widmark to prevent + users from mounting remote filesystems containing suid files + (closes: 232327). This represents an exploitable security hole on + systems running Linux 2.6 kernels. + + -- Steve Langasek Thu, 12 Feb 2004 21:38:40 -0600 + +samba (3.0.2-1) unstable; urgency=high + + * New upstream release. + - LaMont Jones: correct false failure LFS test that resulted + in _GNU_SOURCE not being defined (thus resulting in strndup() + not being defined) (closes: #226694) + - Segfault fixes. (closes: #230012) (maybe more, but we need bug + reporters to confirm.) + + Urgency "high" due to a password initialization bug that could grant + an attacker unauthorized access to a user account created by the + mksmbpasswd.sh shell script. See WHATSNEWS.txt for details and + workarounds for those not wishing to upgrade (which is a bad idea + anyway since this new release fixes lots of other bugs.) + + -- Eloy A. Paris Sun, 8 Feb 2004 10:06:29 -0500 + +samba (3.0.1-2) unstable; urgency=low + + * Include ntlm_auth's man page. + * Don't create directories outside of the source directory during + package build time. (closes: #227221, #227238, #225862) + * Don't include the "Using Samba" book in the swat package, just a + symlink that points to the book included in the samba-doc package. + + -- Eloy A. Paris Tue, 13 Jan 2004 13:48:13 -0500 + +samba (3.0.1-1) unstable; urgency=low + + * New upstream version (closes: #225565) + * Add support in the dhcp hook for netbios scope, and handle better + the case of multiple DHCP-using interfaces (closes: #224109). + * Use "tail -n 1 ..." instead of "tail -1 ..." so POSIX-compliant + tail works. Thanks to Paul Eggert . + * Include /usr/bin/ntlm_auth in the winbind package. + * Run configure with "--with-piddir=/var/run/samba" since the + default got changed to /var/run in this new upstream version. + + -- Eloy A. Paris Tue, 30 Dec 2003 16:21:31 -0500 + +samba (3.0.0final-1) unstable; urgency=low + + * It's here, it's here, it's here, Samba 3.0.0 is here! + * Incorporate Japanese debconf translations; thanks to Kenshi Muto + . (closes: #209291) + + -- Eloy A. Paris Thu, 25 Sep 2003 13:39:28 -0400 + +samba (3.0.0beta2+3.0.0rc4-1) unstable; urgency=low + + * New upstream version. + + -- Eloy A. Paris Sat, 13 Sep 2003 08:47:56 -0400 + +samba (3.0.0beta2+3.0.0rc3-1) unstable; urgency=low + + * New upstream release. Last Release Candidate according to the + Samba Team. Samba 3.0.0 is around the corner, in a week or so. + - Fixes use of non-PIC code in nss shared libraries (closes: #208773) + - 'unix password sync' option now runs the unix password program as + root again (closes: #209739). + * One-line patch to make packages buildable with distcc (closes: #210227) + + -- Eloy A. Paris Tue, 9 Sep 2003 07:57:16 -0400 + +samba (3.0.0beta2+3.0.0rc2-1) unstable; urgency=low + + * New upstream release. + * Link against libgnutls7 instead of libgnutls5. (closes: #208151) + + -- Eloy A. Paris Tue, 2 Sep 2003 21:37:13 -0400 + +samba (3.0.0beta2+3.0.0rc1-1) unstable; urgency=low + + * New upstream version (skipped samba 3.0.0beta3 due to time + constraints.) This ugly version number will go away when the final + Samba 3.0.0 is released. + * Drag new unpackaged tools into the packages: smbcquotas (smbclient), + vfs modules (samba), smbtree(1) manpage (smbclient), tdbbackup(8) + manpage (samba). (closes: #151158) + * Switch to DH_COMPAT level 4: + - no explicit conffile listings needed + - the postinst for libsmbclient is now completely autogenerated + - use the default init script handling (with support for + invoke-rc.d) in debhelper, instead of the currently buggy upgrade + path (closes: #185439) + - add support for ${misc:Depends} in control for those packages with + init scripts + * Add versioned dependency on libpam-runtime and change + /etc/pam.d/samba to use the new common PAM config blocks. + * New python2.3-samba package (old python2.2-samba is no more.) + (closes: #206171) + + -- Eloy A. Paris Mon, 25 Aug 2003 17:05:14 -0400 + +samba (3.0.0beta2-1) unstable; urgency=low + + * New upstream release + - The smb.conf(5) manpage documents config options again + (closes: #197963). + - Handling of winbind/idmap has been restructured; domain members + should be able to map domain accounts to local accounts again + (closes: #196815). + - Use the locale charset for 'display charset' by default + (closes: #194406). + - Fix for segfault in smbclient when using the -b option + (closes: #196833). + - Handle an empty 'passdb backend' list gracefully (closes: #193946). + * Don't set 'display charset' anymore on upgrade, since this is now + grabbed from the locale by default -- a much better option. + * Removed time.c.patch which is now in the upstream sources. + * Update FHS patch for two new tdb files (netsamlogon_cache.tdb, + privilege.tdb). + * Remove python-linker.patch, since the Kerberos package has been + fixed to no longer use rpath + * Remove configure.patch: the hppa glibc bug this was added for is + long since fixed, and upstream isn't interested in supporting this + kludge. + * Update references to missing documentation in sample smb.conf file + (closes: #187632). + * Fix handling of krb5 link line, building on a patch from Stefan + Metzmacher . + * Add patch so smbclient's tar support works with popt + (closes: #194921). + + -- Steve Langasek Wed, 2 Jul 2003 20:59:09 -0500 + +samba (3.0.0beta1-2) unstable; urgency=low + + * Update build-deps to libacl1-dev (>= 2.2.11-1), libacl1 (>= 2.2.11-1) + to make sure we get the right shlib dependencies (closes: #193149). + * Update the dhcp config hooks so they're suitable for sourcing (i.e., + don't call "exit") (closes: #196477). + * Bring package into line with current policy by adding support for + the DEB_BUILD_OPTIONS flag, and enabling debugging symbols (-gstabs) + by default + * Make sure libpam-smbpass is a self-contained DSO. + * Fix a typo in samba-common.dhcp that caused us to spuriously rewrite + the server list. + * Fix python install script to ignore -Wl linker flags, as seen in the + output from the latest krb5-config. + * Add LDAP and Unicode information about upgrading from 2.2 to + README.debian. + * Remove dangerous and confusing browse options from the default + smb.conf (closes: #198804). + * Reorder smb.conf options for clearer grouping, and clarify the + comments. + * Add a default [print$] share to the sample smb.conf, and create the + necessary tree under /var/lib/samba/printers. (closes: #168173) + * s/winbind/idmap/ in smb.conf, since the option names have changed. + * Fix the patch for postexec handling, so that we chdir("/") at the + right time. + + -- Steve Langasek Thu, 12 Jun 2003 15:02:00 -0500 + +samba (3.0.0beta1-1) unstable; urgency=low + + * New upstream version. + - fix for empty browselist bug (closes: #194553) + - fix for tab completion segfault in smbclient (closes: #194776) + - Samba now works as a domain member again without segfaulting + (closes: #194134, #194394, #194775) + - WinXP machines can join a Samba-controlled domain again + (closes: #195362) + * Build-depend on python-dev >= 2.2 instead of on just python-dev + (without version). + * Added Vorlon'n patch to source/lib/time.c to fix #194075. + (closes: #194075) + + -- Eloy A. Paris Sun, 8 Jun 2003 22:26:43 -0400 + +samba (2.999+3.0.alpha24-3) unstable; urgency=low + + * Make sure Samba DSOs are compiled with -fPIC. (closes: #194324) + * Rebuild against pristine Kerberos libs, to squelch warnings about + versioned symbols. (closes: #194431, #194396) + + -- Steve Langasek Thu, 22 May 2003 15:32:00 -0500 + +samba (2.999+3.0.alpha24-2) unstable; urgency=low + + * Fixed description of the smbfs package. (closes: #194183) + * Negate the sense of the unixsam check when upgrading. (closes: #194234) + + -- Steve Langasek Wed, 21 May 2003 12:21:53 -0400 + +samba (2.999+3.0.alpha24-1) unstable; urgency=low + + * New upstream version. (closes: #189354) + + -- Eloy A. Paris Tue, 20 May 2003 13:55:57 -0400 + +samba (2.999+3.0.alpha23-5) unstable; urgency=low + + * Move the python package from section "net" to section "python". + * Make sure we use PIC code for python on all platforms. + * French translation of an additional debconf template, courtesy of + Christian Perrier . (closes: #188832) + * Updated Brazilian Portuguese translation from André Luís Lopes + . + * s/unixsam/guest/ everywhere, since the unixsam backend is now + deprecated. (closes: #190095) + * Create our temp config file as /etc/samba/smb.conf.dpkg-tmp; not + only does using /tmp violate SELinux policies, it introduces the + possibility of data loss during the final copy if /tmp is a separate + filesystem. (closes: #189823) + * Pull in fix for SWAT, so that logins work again + (closes: #188255, #192077). + * Move passdb.tdb into /var/lib/samba, since it's not user-editable. + * Make sure with don't ship any .cvsignore files. + * Don't ship examples for python2.2-samba and samba-doc in an + "examples" directory inside another "examples" directory. + + -- Eloy A. Paris Tue, 6 May 2003 12:05:46 -0400 + +samba (2.999+3.0.alpha23-4) unstable; urgency=low + + * Instead of s/LPT1:/LPT:/, we need to do s/LPT:/LPT1:/ -- now all + non-RPC printing clients are working again. + * Change shlibs to 0 instead of 0.1. The library already in the + archive is using this soname, and there are no packages depending + on libsmbclient, so skip changing the package name for now. + (closes: #188661) + + -- Steve Langasek Fri, 11 Apr 2003 14:42:00 -0500 + +samba (2.999+3.0.alpha23-3) unstable; urgency=low + + * Put the Samba Python modules in /usr/lib/python2.2/site-packages/, + not in /usr/lib/python2.2/lib-dynload/. + + -- Eloy A. Paris Wed, 9 Apr 2003 19:49:25 -0400 + +samba (2.999+3.0.alpha23-2) unstable; urgency=low + + * New package python2.2-samba that includes the Python modules + included in the Samba sources. Feedback on these modules and the new + package is welcome, as we (Debian Samba maintainers) don't use them. + (closes: #170731, #173322) + * Move libsmbclient-dev from section "devel" to "libdevel". + * Fix panic action script to give a sensible error message instead of + an empty backtrace when we don't have permission to attach to the + process. (closes: #188164) + * Fix libpam-smbpass so that it really does something. (closes: #178245) + * Apply patch to fix printing-related segfaults. (closes: #188076) + + -- Eloy A. Paris Sun, 6 Apr 2003 21:40:33 -0400 + +samba (2.999+3.0.alpha23-1) unstable; urgency=high + + * new upstream release, includes security fix for DSA-262 + * tweak the debconf templates to avoid references to specific + front-ends (closes: #183718) + + -- Steve Langasek Sun, 9 Mar 2003 14:58:00 -0600 + +samba (2.999+3.0.alpha21-5) unstable; urgency=low + + * touch up the package descriptions a little bit (caps, punctuation) + * remove addtosmbpass, which snuck back in when we weren't looking + * reverse the position of the wins server tag, after looking more + closely at the code (closes: #183061) + * fix a glitch in the Spanish .po that rendered it invalid, plus a typo + * updated Brazilian Portuguese templates (closes: #183295) + * fix a typo in upstream manpage (s/shave/share/) (closes: #180546) + * run sed before we run sed, to deal with crazybad special chars + in the workgroup name (!) (closes: #176717) + + -- Steve Langasek Sat, 1 Mar 2003 15:14:00 -0600 + +samba (2.999+3.0.alpha21-4) unstable; urgency=low + + * add scripts to samba-common to grab the netbios-name-servers options + if we're running a DHCP client (closes: #38413) + * major rearrangement of build scripts: install target now operates on + debian/tmp, not debian/samba, so we can see when new files are + added and decide where to put them; several files that should have + been in samba-common but were in samba (for the above reason) -- + smbcacls, -- have been moved, with a replaces: added. + * Fix rc script so that whitespace is consistent between inetd and + daemon modes (closes: #174677). + * smbclient -M must always connect to port 139, because port 445 + doesn't support messaging and we can't do the port 135 stuff yet + (closes: #175292, #167859). + * Import the diff from upstream CVS, which has fixed a few bugs + (closes: #178219, #177583, #181467, #181487, #181603, #175864). + Remove a few patches of ours which are now superseded. + * Add po-debconf support to the tree, for better i18n. + * Install the libsmbclient.so symlink in the libsmbclient-dev package, + per policy (closes: #181466). + + -- Steve Langasek Fri, 27 Dec 2002 00:37:00 -0600 + +samba (2.999+3.0.alpha21-3) unstable; urgency=low + + * Drop --with-ldapsam from the configure options, since this no longer + means what we thought it did. Revert patch for changing the 'passdb + backend' defaults. + * Add patch from CVS HEAD to fix pdbedit segfault; postinst script + should work better now. (Closes: #173936) + + -- Steve Langasek Sun, 22 Dec 2002 13:29:00 -0600 + +samba (2.999+3.0.alpha21-2) unstable; urgency=low + + * add CONFIGDIR to the set of directories exported in the install + target, so we don't try to write to /etc/ on the autobuilders. + * Reset the default 'passdb backend' value to something sensible, so + that we don't unnecessarily break upgrading systems (closes: #173731). + + -- Steve Langasek Fri, 20 Dec 2002 09:13:00 -0600 + +samba (2.999+3.0.alpha21-1) unstable; urgency=low + + * new upstream release, many patches now incorporated upstream + + -- Steve Langasek Mon, 16 Dec 2002 23:39:00 -0600 + +samba (2.999+3.0.alpha20-4) unstable; urgency=low + + * Remove obsolete comments about non-existant LDAP support in the + Debian Samba packages. (Closes: #165035) + * Apply patch for segfault in pam_smbpass when using the unixsam + backend. + * Drop support for nmbd in inetd, since it's not supported by + upstream and is reported to cause problems (closes: #23243, #137726, + 165037). + * Clarify example printing configs in smb.conf (closes: #168174). + * Make sure nmbd still responds to SIGTERM if it has no interfaces to + listen on (closes: #168079). + * Fix to get samba working again on 64-bit archs, after a + pointer<->int size mismatch bug. Already fixed in upstream CVS. + * Merge fix from CVS for broken libsmbclient.h references to internal + structures (closes: #162956). + * Add a default 'panic action' for Samba that will give us genuinely + useful debugging information after a crash. + * Fixed correct patch to example configurations in the libpam-smbpass + packages (closes: #169350). + * acl-dev is not in sid anymore; Build-Depend on libacl1-dev instead + (closes: #169682). + * Only ask the user for permission to edit if there's a chance of us + damaging something. + + -- Steve Langasek Mon, 18 Nov 2002 19:53:00 -0500 + +samba (2.999+3.0.alpha20-3) unstable; urgency=low + + * Make sure smbstatus behavior is sane when Samba *has* been started, + as well as when it has not (closes: #164179). Thank to Robbert Kouprie + for this patch. + * Not using 'killall' in any of the maintainer scripts (the last one + remaining was winbind.logrotate.) We now just use 'kill' to send + a SIGHUP to a specific PID (which is stored in a file in + /var/run/samba.) + * Do not depend on procps because we're not using killall anymore. + + -- Eloy A. Paris Tue, 15 Oct 2002 22:15:57 -0400 + +samba (2.999+3.0.alpha20-2) unstable; urgency=low + + * fix an off-by-one error in smbd/lanman.c, which should shut off the + flood of log messages (closes: #157432) + * add a --config-cache option to the configure invocation, since + autoconf 2.5 doesn't load config.cache by default (closes: #163504) + + -- Steve Langasek Sat, 5 Oct 2002 01:40:00 -0500 + +samba (2.999+3.0.alpha20-1) unstable; urgency=low + + * new upstream release + - non-primary groups appear to work again (closes: #161271) + * the official beginning of the upstream 3.0 branch + * exit without error from smbstatus when no connections have + been seen yet (closes: #161489) + + -- Steve Langasek Wed, 2 Oct 2002 19:02:00 -0500 + +samba (2.999+3.0cvs20020906-1) unstable; urgency=low + + * CVS update + - domain authentication works again (closes: #158698) + * Factor out common code in samba-common.config + * Handle character set settings in smb.conf on upgrade + (closes: #153913, #158770) + * Don't use killall in logrotate script; there are better ways + (closes: #160076) + * Ignore value of 'hostname lookups' for hosts allow/hosts deny + (closes: #154376) + + -- Steve Langasek Sat, 7 Sep 2002 11:46:00 -0500 + +samba (2.999+3.0cvs20020829-1) unstable; urgency=low + + * CVS update. + * Move the smb.conf manpage to the samba-common package (closes: #159572) + + -- Steve Langasek Thu, 29 Aug 2002 17:53:25 -0500 + +samba (2.999+3.0cvs20020827-1) unstable; urgency=low + + * CVS update. (Closes: #158508) + * Part 1 of 3 of the library separation patch that Vorlon wrote has + gone upstream - removed the patch from our patches/ directory. + * Debconf note to warn users that their smb.conf will be re-written + and changed if they use Swat to maintain it. (Closes: #158479) + * Fixed typo in samba.prerm. + + -- Eloy A. Paris Tue, 27 Aug 2002 15:23:23 -0400 + +samba (2.999+3.0cvs20020825-2) unstable; urgency=low + + * scale back the tdbsam migration support, because of undesirable + side-effects; now always defaults to 'no'. + * strip out hyperactive library dependencies that are only needed by + smbd (closes: #155156). + * nuke any broken registry.tdb files left by previous CVS snapshots. + * support rolling back the smbpasswd->tdbsam conversion on downgrade, + since many people are likely to need to downgrade for a while. + * remove postrm handling of legacy directories, and add handling of + current ones. + + -- Steve Langasek Sun, 28 Jul 2002 09:44:24 -0500 + +samba (2.999+3.0cvs20020825-1) unstable; urgency=low + + * CVS update. These packages are based on Samba 3.0alpha19 + any + code commited after 3.0alpha19 was released. + + -- Eloy A. Paris Sun, 25 Aug 2002 14:56:46 -0400 + +samba (2.999+3.0cvs20020723-1) unstable; urgency=medium + + * remove spurious line from samba.config + * migrate from smbpasswd to tdbsam + * re-add the pdbedit util and manpage + * compile in ldapsam support (closes: #146935) + * add PRIVATEDIR to the list of vars we override for the install + target, so Samba doesn't try to create /etc/samba (closes: #153746). + * fix makefile handling of LOGBASEDIR, so that logs always end up in + the right place (closes: 153727). + * Fixed bug in the FHS migration path that causes nmbd to read its + state from one location, but write it out to another. (closes: #154210) + * Make sure nmbd is always looking for wins.tdb in the same place. + + -- Steve Langasek Fri, 19 Jul 2002 21:38:54 -0500 + +samba (2.99.cvs.20020713-1) unstable; urgency=low + + * first attempt for 3.0pre. + * only post a debconf note about moving logfiles if we're upgrading + from a version that had the logfiles in the old location + (closes: #152924). + + -- Steve Langasek Sat, 13 Jul 2002 12:54:25 -0500 + +samba (2.2.5-2) unstable; urgency=low + + * No longer ship make_printerdef, which is deprecated. (closes: #63059) + * Clean up some empty directories from the samba package. + * Add call to dh_installinit for winbind rc.x symlinks (closes: #151860). + * Clean up per-package documentation lists, to reduce clutter + (closes: #147638). + * Make sure we don't ship pdbedit's man page since we are still using + smbpasswd passwords. (closes: #152208) + * move libnss_wins.so to libnss_wins.so.2, where glibc expects to find + it (closes: #148586). + * reorder postinst, so that installing samba-common from scratch loads + the debconf answers properly (closes: #151985). + * add lintian overrides for winbind, to eliminate some noise. + * rename pam_smbpass changelog to comply with policy. + + -- Steve Langasek Sun, 23 Jun 2002 22:45:04 -0500 + +samba (2.2.5-1) unstable; urgency=low + + * New upstream release. + + -- Eloy A. Paris Sun, 9 Jun 2002 15:49:21 -0400 + +samba (2.2.4+2.2.5pre1-1) experimental; urgency=low + + * Getting ready for Samba 2.2.5. + * Remove patches/parse_spoolss.patch, now included upstream. + * Fixed thinko WRT POSIX ACL support, which we "half-enabled" in + 2.2.4-1. We don't use POSIX ACL support ourselves, so we'd + appreciate reports from those using this feature so we can + be sure this works. + * Fix the filename-matching algorithm used for smbtar's 'exclude' + functionality. (closes: #131571) + * Look for secrets.tdb in /var/lib/samba, and handle in the postinst. + This is not really a config file, because users don't edit it. + (closes: #147429) + * Doxygen fix for libsmbclient.h, thanks to Tommi Komulainen + for the patch. (closes: #144847) + + -- Eloy A. Paris Tue, 28 May 2002 11:33:51 -0400 + +samba (2.2.4-1) unstable; urgency=low + + * New upstream release (closes: #144713) + * Building with POSIX ACL support (closes: #137819) + * Include samples, exclude INSTALL from libpam-smbpass (closes: #145055) + * Compile with --with-automount, for NIS homedir support (closes: #123396) + * Add a proper 'flags' field to the mount entry we write to /etc/mtab; + fixes a display bug with mount (closes: #140397) + * Added logic to /etc/init.d/samba so a help message is printed out + when Samba is running from inetd _and_ we are not booting, i.e. the + user called the init script manually. Thanks to Francesco + Potorti for the suggestion on how to implement this. + (Closes: #139807, #140204) + * samba.postinst: added logic so we don't call /etc/init.d/samba if + we are running from inetd (this prevents the stupid help message + to be printed during package upgrades if we are running from inetd.) + * samba.prerm: idem. + * /etc/init.d/samba: delete stale PID files after nmbd and smbd are + stopped. This prevents start-stop-daemon from printing an ugly + error message when called from '/etc/init.d/samba stop'. I prefer + this than running start-stop-daemon with --oknodo because + start-stop-daemon might print other important error messages that with + --oknodo it would otherwise not print. (Closes: #102187, #109301) + * Patch from jerry@samba.org to fix parsing of spoolss structures. + + -- Eloy A. Paris Thu, 23 May 2002 23:16:52 -0400 + +samba (2.2.3a-7) unstable; urgency=medium + + * More README.debian updates. + * Neutralize the smb.conf 'lock dir' directive, which doesn't mean + what the FHS says it should, and causes us no end of grief. + (Closes: #122299) + * LPRng-handling patch so that jobs printed to recent versions of + LPRng show up properly as 'done' instead of 'paused' in the Windows + print queue. Thanks to Jaroslav Serdula + for this patch. (Closes: #139458) + * Applied patch from Urban Widmark + (smbfs upstream maintainer) to add a '-n' option to smbmount + that does the same as mount's '-n'. (Closes: #139590) + * Minor tweak to unpatch-source so we unpatch sources in the + reverse order we patched them. + * Don't depend on grep in samba.prerm to determine if Samba was + running before the upgrade starts. + * Tweak the wording of debconf templates. + * Incorporate debconf translations for French, Spanish and Portuguese; + thanks to Carlos Valdivia Yagüe (es), + Andre Luis Lopes (pt_BR), and Philippe + Batailler and Denis Barbier (fr). + (closes: #142657, #142659, #141551, #141699, #141682) + * Fixed symlinks in the swat package so the point to /usr/share/doc/ + instead of /usr/doc/. Added note to the description of the + swat packages that says that samba-doc must be installed for + the on-line documentation to work. Thanks to Torne Wuff + . (Closes: #95437) + * 'dh_installinit -n' gives us no initscript handling -- we need to + handle all starting and stopping of daemons ourselves, which wasn't + happening in the {pre,post}rm scripts. + * Vary the priority of the debconf question "Do you want to generate + /etc/samba/smbpassd?" depending on whether the file already exists. + File exists -> priority 'medium', file does not exist -> priority + 'low'. Changed priorities of all other questions from 'high' to 'medium'. + + -- Steve Langasek Sat, 20 Apr 2002 17:48:27 -0400 + +samba (2.2.3a-6) unstable; urgency=low + + * Call db_stop as soon as we're done with debconf in the postinst, to + avoid hanging bugs (closes: #137813) + * Ony call 'update-inetd --add' on first installation, just as we only + call 'update-inetd --remove' on package purge. + * Bring our shipped smb.conf closer in line with the upstream + defaults: don't twiddle the send/recv buffer sizes, since the Linux + kernel already provides a much better default setting + (closes: #80966, #80934, #137415, #133477) + * Added libnss_wins.so to the winbind package (closes: #137201) + * Updates to README.debian. + + -- Eloy A. Paris Tue, 12 Mar 2002 10:57:40 -0500 + +samba (2.2.3a-5) unstable; urgency=low + + * Having multiple workgroup lines in your smb.conf, though wacky, is + perfectly valid. Account for this in samba-common.config. + (closes: #137157) + + -- Steve Langasek Sun, 10 Mar 2002 21:52:51 -0600 + +samba (2.2.3a-4) unstable; urgency=low + + * Fixed typo in samba.postinst. Cosmetic fixes there as well. + * Fix to improper usage of /usr/bin/tr in samba-common config script + (closes: #137744) + + -- Steve Langasek Sat, 9 Mar 2002 14:14:02 -0500 + +samba (2.2.3a-3) unstable; urgency=medium + + * Make sure /etc/init.d/samba is executable before calling it + in the postinst. Quickly checked all other maintainer scripts + to make sure we are not calling an init script if it is not + executable. (closes: #137321) + * Fix up maintainer scripts to detect if samba was not running before + an upgrade. (closes: #33520, #130534) + * Make sure /etc/samba/ is included in the samba-common package. + Closes: #137157 + + -- Steve Langasek Fri, 8 Mar 2002 11:13:21 -0500 + +samba (2.2.3a-2) unstable; urgency=low + + * merge in debconf support: + - Moved all smb.conf-related questions to samba-common (smb.conf + is part of the samba-common package, not the samba package.) + - smb.conf is not a samba-common conffile anymore since it is + being managed by debconf. It is ABSOLUTELY necessary to make + sure /etc/samba/smb.conf _NEVER_ gets overwritten by changes + made via debconf. In other words, any changes made by the user + should be honored by the debconf interface. + - samba.postinst now moves old log files from /var/log/ to + /var/log/samba/. There's a Debconf note that informs the user + the log files are stored now in a new location. + - debian/control: + + Make samba depend on debconf. + - New file debian/samba.templates. + - New file debian/samba.config. + - Re-worked debian/samba.postinst. + + Got rid of all /etc/samba/debian_config sillyness. + - remove /usr/sbin/sambaconfig; "dpkg-reconfigure samba" replaces + it. + - Removed debian/samba.prerm. + - Cleaned up /etc/init.d/samba. + + Added infrastructure for debconf. + + Got rid of all /etc/samba/debian_config sillyness. + + Got rid of /etc/samba/smbpasswd conversion stuff for + compatibility with versions of Samba < 2.0.0final-2. + (closes: #127959, #34408, #113594) + * make samba.postinst ignore the absence of /var/log/{s,n}mb*; + makes for a clean upgrade path. + * Building with MSDFS support (closes: #116793) + + -- Steve Langasek Tue, 5 Mar 2002 14:14:33 -0600 + +samba (2.2.3a-1) unstable; urgency=low + + * New upstream version (closes: #135001) + * Potato builds were failing because debian/rules was not creating + debian/winbind/etc/logrotate.d/. A user having problems creating + Potato packages brought this to my attention. dh_installlogrotate + takes care of creating the directory for us, that's why we didn't + notice. + * Removed code that converts /etc/samba/smbpasswd from an ancient + format to the new format of Samba 2.0.0 and later. + Closes: #134375 - samba: postinst failed due to missing + /usr/bin/convert_smbpasswd. + * Re-organized FHS migration code in samba.postinst. Make sure we + don't fail when we move files that don't exist. + Closes: #133813 - samba: Install failed. + * Adding docs. to the libpam-smbpass package. + * Remove man pages for findsmb because we are not providing this + script. + Closes: #134181 - findsmb referenced, but not included. + * Removed replace.patch because it is now present upstream. + * Added patch from Jerry Carter to fix a problem when saving + document preferences for printing from NT clients. + * The real winbindd daemon is a forked process so we can't use + --make-pidfile when calling start-stop-daemon. Fixed + /etc/init.d/winbind to work around the issue. Thanks to + Lin Li for the patience and for reporting + the problems. Hopefully I got it right this time. + + -- Eloy A. Paris Wed, 20 Feb 2002 18:39:03 -0500 + +samba (2.2.3-6) unstable; urgency=low + + * Make sure there are actual files in /var/state/samba before trying + to move them (Closes: #133534, #133510). + * Fix up the 2.2.3 makefile so that pam_smbpass builds correctly + again. + + -- Steve Langasek Tue, 12 Feb 2002 09:19:29 -0600 + +samba (2.2.3-5) unstable; urgency=low + + * Whoops, missed a spot on the samba.postinst -- will fail badly if + /var/state/samba/ no longer exists. Better get this fix into the + next upload. ;) (Closes: #133088) + * Regenerate configure only if it is older than configure.in. + * Fix smbd handling of network neighborhood lists, which was missed + in the FHS conversion (Closes: #133091) + + -- Eloy A. Paris Sat, 9 Feb 2002 16:37:57 -0500 + +samba (2.2.3-4) unstable; urgency=low + + * FHS cleanup; files in /var are now properly sorted according to + their nature. (Closes: #102101) + * Remove patches to source/configure, since we now call autoconf to + regenerate this file cleanly. + * lintian fixes: + - Create winbind.conffiles and add /etc/logrotate.d/winbind and + /etc/init.d/winbind to it. + - Use a relative symlink for /usr/lib/cups/backend/smb. + - Removal of a .cvsignore file in the samba-doc package. + * winbind.init fixes: + - Corrected name of the pid file (Steve) + - Make start-stop-daemon create a pid file for winbindd since it + does not create one on his own. + * #DEBHELPER# is not needed in samba.postinst because we are adding + manually everything that debhelper adds automatically. In fact, + since we are calling update-rc.d without standard paramaters I + think we can't use #DEBHELPER#. + * Fix fatal syntax error in samba.prerm. + + -- Steve Langasek Thu, 7 Feb 2002 13:12:08 -0500 + +samba (2.2.3-3) unstable; urgency=low + + * work on lintian-cleanness in the package (wrong permissions, + maintainer scripts in need of debhelpering) + * /lib/security/pam_smbpass.so is now being included in the + libpam-smbpass package only, and not in both the libpam-smbpass and + samba packages (which was the case prior to 2.2.3-3.) + * Instead of making our patch scripts executable in the rules file + we run them through /bin/sh. + * New 'winbind' package that has all the winbind stuff that was in the + samba package in 2.2.3-2 and before. + * Added replace.patch: patch from Jeremy Allison to fix problems when + replacing or overwriting files in a Samba share. Patch was sent to + the samba mailing list. + + -- Eloy A. Paris Tue, 5 Feb 2002 21:12:48 -0500 + +samba (2.2.3-2) unstable; urgency=low + + * add support to debian/scripts/{patch-source,unpatch-source} for + automatic updating and cleaning of . This was a request + from the Samba Team: they wanted us to clearly mark our packages + so it is always known a user is running Samba with (possibly) + Debian-specific patches. + * Change init.d killscript link to K19samba, so we stop before autofs + (closes: 117327) + * Make our patch scripts executable in the rules file -- dpkg won't do + this for us (closes: #132415). + + -- Steve Langasek Mon, 4 Feb 2002 09:51:00 -0600 + +samba (2.2.3-1) unstable; urgency=low + + * New upstream release (closes: #131228). + * Restructured build system that provides DBS-like separation of + patches + * Fix typo in smbfs description (closes: #116209). + * Use killall -q in logrotate.d script, to avoid spurious cron + emails (closes: #130100). + + -- Steve Langasek Sat, 2 Feb 2002 19:56:18 -0500 + +samba (2.2.2-12) unstable; urgency=high + + * (Steve) Patch for source/client/client.c. + Closes: #86438 smbclient: Transfering several GB causes the average + speed to be messed up. + * Uploading with urgency=high to expedite the move from unstable + to testing because of the security problem fixed in -11. + + -- Eloy A. Paris Fri, 25 Jan 2002 22:31:12 -0500 + +samba (2.2.2-11) unstable; urgency=low + + * Building with --with-libsmbclient. We have created two new + packages: libsmbclient and libsmbclient-dev. Hopefully this + will help some people that want to add the capability of + speaking SMB to their applications. + Closes: #117132 - libsmbclient support library? + * (Steve) Make swat do the right thing when reading (parsing) + the saved preferences in smb.conf. + Closes: #55617 swat mutilates the linpopup message command. + * Updated README.Debian. Updated descriptions in debian/control. + * Remembered to bump up version number in source/include/version.h + (need to automate this or else I'll keep forgetting.) + * (Steve) one liner for source/web/diagnose.c. + Closes: #106976 - smbd/nmbd not running message with swat/linuxconf. + * Added '|| true' to the post-rotate script so logrotate doesn't + fail if either nmbd or smbd is not running. + Closes: #127897 - /etc/logrotate.d/samba fails if there is no smbd process. + * Fixed incorrect file locations in swat's man page and added a + Debian-specific note to /usr/share/doc/swat/README. + Closes: #71586 swat: needs documentation fixes for debian. + * smbmount in the smbfs package does not have the setuid bit set. + Apparently, smbmount uses libsmb without checking the environment. + Thanks to Christian Jaeger for + finding the local root exploit. + * Applied old patch from Jerry) Carter" to correct + the following two problems in Samba 2.2.2: + - %U and %G could not be used in services names + in smb.conf. + - %G would fail to be expanded in an "include = ..." + line. + + -- Eloy A. Paris Sat, 19 Jan 2002 21:35:26 -0500 + +samba (2.2.2-10) unstable; urgency=low + + * (Steve) Add missing manual pages. + Closes: Bug#128928: missing manpages in smbfs. + + -- Eloy A. Paris Sun, 13 Jan 2002 14:39:55 -0500 + +samba (2.2.2-9) unstable; urgency=low + + * (Steve) Fix broken URL's in HTML docs. + Closes: Bug#17741: bad links in html docs (at last!!!) + + -- Eloy A. Paris Fri, 11 Jan 2002 13:37:07 -0500 + +samba (2.2.2-8) unstable; urgency=low + + * Added "Replaces: samba (<= 2.2.2-5)" to the smbclient section in + debian/control so rpcclient.1, which was in samba-2.2.2-5, does not + cause problems now that it is part of smbclient (>= 2.2.2-6). Closes: + Closes: Bug#128684: error upgrading smbclient in sid. + + -- Eloy A. Paris Fri, 11 Jan 2002 11:42:40 -0500 + +samba (2.2.2-7) unstable; urgency=low + + * (Steve) Patch to make behavior honor what the docs. say about "hosts allow" + taking precedence over "hosts deny". + Closes: Bug#49249: swat: error with host deny ?! + + -- Eloy A. Paris Thu, 10 Jan 2002 12:36:58 -0500 + +samba (2.2.2-6) unstable; urgency=low + + * (Steve) Adds manpage for rpcclient to the proper file, + removes smbtorture from the distro because this tool isn't intended for + widespread consumption. + Closes: #63057 - no manual page for smbtorture. + * (Steve) Removed -gnu from the configure arguments (--build, --host) in + debian/rules so config.sub is able to properly create the host and target + tuples. + + -- Eloy A. Paris Wed, 9 Jan 2002 14:39:51 -0500 + +samba (2.2.2-5) unstable; urgency=low + + * Fixes from vorlon: + * Use /usr/bin/pager instead of more. + Closes: #125603: smbclient violates pager policy. + * Make /etc/logrotate.d/samba a conffile, send smbd and nmbd + a SIGHUP to have the log files reopened, fixes to + /etc/logrotate.d/samba. + Closes: #127897: log file rotation. + Closes: #118277: /etc/logrotate.d/samba not listed in conffiles. + * s/covert/convert/. + Closes: #121653 probable typo in install message. + + -- Eloy A. Paris Sun, 6 Jan 2002 03:14:58 -0500 + +samba (2.2.2-4) unstable; urgency=low + + * Applied patch from Steve to work around problem in glibc that affects the + HPPA architecure. The patch detects the error condition at configure time + and compiles without LFS support if necessary. + Closes: Bug#126763: samba completely broken on hppa. + * Including unicode_map.1251. + Closes: Bug#126719: samba-common: unicode_map.1251 missing. + * Updated smbd daemon version to match Debian package version. + Closes: Bug#127199: Package version and smbd daemon version don't match. + + -- Eloy A. Paris Mon, 31 Dec 2001 14:32:47 -0500 + +samba (2.2.2-3) unstable; urgency=low + + * Added some spaces in package description in debian/control. + Closes: #120730 - missing spaces in package description for nice + alignment. + * Spelling fixes. + Closes: #125328, #125329, #125330, #125367, #125365, #125403. + * Steve Langasek is the co-maintainer of the Debian + Samba packages!!! Added him to the uploaders field in debian/control. + + -- Eloy A. Paris Tue, 18 Dec 2001 00:54:25 -0500 + +samba (2.2.2-2) unstable; urgency=low + + * Backed out changes to source/filename.c per Andrew Tridgell's request. + This changes were introduced in 2.2.1a-7 as an attempt to fix #47493. + Tridge found out that they break smbd. + * Changed version number in source/includes/version.h so it is clear that + this is a version of Samba packaged for Debian. This is another request from + Tridge and will help the Samba Team to get bogus bug reports. + * Added Samba-HOWTO-Collection.pdf and other README files to the + /usr/share/doc// directories. + * Installing libnss_winbind.so and pam_winbind.so. + Closes: #116790: nss and pam modules for winbind missing. + * Removed user-emacs-settings from changelog. + + -- Eloy A. Paris Mon, 29 Oct 2001 19:16:26 -0500 + +samba (2.2.2-1) unstable; urgency=low + + * New upstream version. + * Temporary fix for #113763 (Steve Langasek) + * Quick hack to avoid smbmount reveal password length. Please note + that even with this hack there is a small window when password is + completely visible with 'ps aux'. There are other methods that should + be used to automate mounting of SMB shares. + Closes: #112195: smbmount-2.2.x reveals password length. + * Applied patch from Steve Langasek to prevent + forcing use of setresuid() in Sparc. + Closes: #112779: samba build forces use of setresuid, which causes + smbd to fail on Sparc. + + -- Eloy A. Paris Mon, 15 Oct 2001 10:26:10 -0400 + +samba (2.2.1a-9) unstable; urgency=low + + * Replaced $(LD) with $(CC) all the way through source/Makefile. + Closes: #111036: ld shouldn't be used to link shlibs. + * s/\/bin\/mail/\/usr\/bin\/mail/ in smb.conf's man page (HTML and + sgml as well.) + Closes: #110963: smb.conf: mail should be /usr/bin/mail. + * Documented better smbclient's -W behavior. Patch from Steve + Langasek. + Closes: #53672: smbclient: -W flag is interpreted as domain, not + workgroup. + + -- Eloy A. Paris Tue, 4 Sep 2001 23:10:41 -0400 + +samba (2.2.1a-8) unstable; urgency=low + + * Set some reasonable default perms for the samba logdir (again, + thanks to vorlon :-) + Closes: #72529: insecure permissions on log files. + + -- Eloy A. Paris Sun, 26 Aug 2001 15:40:47 -0400 + +samba (2.2.1a-7) unstable; urgency=low + + * Another attempt at fixing #47493. Patch from Steve Langasek + . Let's keep our fingers crossed Steve! + + -- Eloy A. Paris Sun, 26 Aug 2001 13:37:06 -0400 + +samba (2.2.1a-6) unstable; urgency=low + + * Backed out fix to #47493 introduced in 2.2.1a-4 as it is causing + smbd to die with signal 11 under some unidentified situations. + Closes: #109774: Latest debian version breaks printer driver download. + Closes: #109946: not all files appear in samba-exported directories. + * Another patch from Steve Langasek. This one adds quotes around + printer names for print systems it's reasonable for Debian to + support. Together with the patch in #29957 (see changelog for + 2.2.1a-4), this should take care of the problems with multi-word + printer names in Samba. + + -- Eloy A. Paris Fri, 24 Aug 2001 21:12:27 -0400 + +samba (2.2.1a-5) unstable; urgency=low + + * Important changes that affect how Samba is built on Debian + machines are implemented in this release. All of this changes + were suggested by the energetic Steve Langasek , + and his arguments were so sound and reasonable that I decided + to implement them. Here's Steve's original changelog: + + * Fix up the build system to avoid needing to run configure + as root to answer questions we already know the answers to. + * In the process, make surprising progress towards being able to + cross-compile the samba packages. + + -- Eloy A. Paris Fri, 24 Aug 2001 01:08:06 -0400 + +samba (2.2.1a-4) unstable; urgency=low + + * Fixed typo in smbmount's mount page. + Closes: #109317: smbfs: mistype in smbmount manpage. + * Included symlink to smbspool to better support CUPS printing. + Closes: #109509: include symlink for cups samba support. + * Applied patch from Steve Langasek to + fix bug #29957. + Closes: #29957: samba strips trailing " from strings in smb.conf. + * First attempt at fixing #47493. Another patch from Steve "I want + a bug-free Samba" Langasek. + Closes: #47493: Samba doesn't handle ':' in dir names right. + + -- Eloy A. Paris Tue, 21 Aug 2001 23:26:38 -0400 + +samba (2.2.1a-3) unstable; urgency=low + + * Steve Langasek has been hard at work in + the last few days looking at the long list of open bugs filed + against the Samba packages. I don't know how to thank him. It's been + a pleasure working with Steve, and all the fixes, patches, etc. in + this release come from him. The bug list is greatly reduced thanks + to Steve's efforts. + * Steve's additions/modifications/patches/etc. are: + - New package that (libpam-smbpass) provides pam_smbpass. Before, this + was provided in another package but now the sources are part of + the Samba sources so we can start providing it from here. + Closes: #107043 - pam_smbpass now present in Samba source, + should be built from there + - Patch to source/smbd/service.c that allows admins to call + /bin/umount from the root postexec of a Samba share. + Closes: #40561 - samba pre/postexec commands do not work. + - Clear TMPDIR before starting smbd in /etc/init.d/samba. + Closes: #51295 - Problems with Samba and TMPDIR. + - Correction to documentation of "guest only". + Closes #38282 - "guest only" share still requires a password. + * Applied patch from Santiago Vila to convert + /usr/sbin/mksmbpasswd from a shell script into a real awk script. + Sorry it took so long, Santiago; I hadn't realized you even + provided a patch :-) + Closes: #77891 - mksmbpasswd could be a real awk script. + * Updated description of the smbfs and smbclient packages. Also have + each package recommend the other. + Closes: #108650: Should suggest or recommend smbfs. + + -- Eloy A. Paris Mon, 13 Aug 2001 22:21:55 -0400 + +samba (2.2.1a-2) unstable; urgency=low + + * Build-depends: depend on debhelper (>=2.0.103). + Closes: #105795: Build-Depends are wrong. + * Run samba's preinst and postinst scripts without -e so failed commands + do not abort installation. + Closes: #106384: postinstall crashes abnormally. (And really closes + #104471.) + + -- Eloy A. Paris Thu, 26 Jul 2001 00:30:37 -0400 + +samba (2.2.1a-1) unstable; urgency=low + + * New upstream version. + * Make sure samba's postinst script exits with a zero status. + Closes: #104471: Samba postinst problem. + + -- Eloy A. Paris Thu, 12 Jul 2001 21:55:21 -0400 + +samba (2.2.1-1) unstable; urgency=low + + * New upstream version. + Closes: #103339: config.guess and config.sub update required. + Closes: #98518: Samba 2.2 can't act as PDC for NT4/W2K due to + incompatibility with PAM. + Closes: #97447: nmbd crashes due to bugs in DAVE 2.5.2. + Closes: #95777: Samba 2.2 is unable to join or authenticate against + Samba 2.2 PDC domain. + Closes: #68842: samba should use PAM for password changing (I + haven't personally tried this one, but it's been + advertised this works.) + Closes: #102506: PAM account checking fails. + Closes: #102518: Complains about unknown paramter "obey pam + restrictions" + Closes: #94774: Build failure on PARISC machines. + * Moved away from /etc/cron.weekly/samba for log file rotation. + Now using logrotate. + Closes: #95548: typo in /etc/cron.weekly/samba. + Closes: #74951: nmbd does not rename its log file. + * Removed Debian-specific addtosmbpass.8 man page since this script + is not longer provided upstream. Users should use the smbpasswd + program instead. + * Updated sample /etc/samba/smb.conf to reflect the recent changes + affecting handling of PAM authentication. Also updated + /etc/pam.d/samba. + + -- Eloy A. Paris Wed, 11 Jul 2001 00:44:14 -0400 + +samba (2.2.0.final.a-1) unstable; urgency=high + + * New upstream version (contains security fix from DSA-065-1.) + Closes: #97241: samba 2.2.0 fails to process hostnames in + "hosts allow" config line. + * Removed Debian-specific addtosmbpass.8 man page since this script + is not longer provided upstream. Users should use the smbpasswd + program instead. + Closes: #98365: addtosmbpass is missing from 2.2.0.final-2. + * Updated sample /etc/samba/smb.conf to reflect the recent changes + affecting handling of PAM authentication. Also updated + /etc/pam.d/samba. + + -- Eloy A. Paris Sun, 24 Jun 2001 11:11:59 -0400 + +samba (2.2.0.final-2) unstable; urgency=low + + * Added libcupsys2-dev to Build-Depends. + * Samba depends now (again) on netbase so update-inetd is always + available for the Samba maintainer scripts. + Closes: #86063: Fails to uninstall if inetd is not installed. + * Updated source/config.{sub,guess} so ARM built doesn't fail. + Closes: #94480: config.sub out of date; can't build on arm. + Closes: #85801: config.sub/guess out of date. + * Not using brace expansion, i.e. {foo,bar} in any of the maintainers + scripts nor in debian/rules. + Closes: #88007: samba postrm has is not POSIX sh compliant. + + -- Eloy A. Paris Sat, 21 Apr 2001 17:27:18 -0400 + +samba (2.2.0.final-1) unstable; urgency=low + + * New upstream release. Lots of new things. See WHATSNEW.txt. + * Goofy version number because of my stupidity when assigning version + numbers to the CVS packages I have been uploading to experimental. + Will be fixed when 2.2.1 is released. I've no doubts a 2.2.1 release + will follow soon. + + -- Eloy A. Paris Tue, 17 Apr 2001 22:58:14 -0400 + +samba (2.2.0.cvs20010416-1) experimental; urgency=low + + * CVS update. + + -- Eloy A. Paris Mon, 16 Apr 2001 21:25:15 -0400 + +samba (2.2.0.cvs20010410-1) experimental; urgency=low + + * CVS update. + * Added libreadline4-dev to Build-Depends. + + -- Eloy A. Paris Tue, 10 Apr 2001 16:53:45 -0400 + +samba (2.2.0.cvs20010407-1) experimental; urgency=low + + * CVS update. Includes what is in 2.2.0alpha3. + + -- Eloy A. Paris Sat, 7 Apr 2001 16:00:33 -0400 + +samba (2.2.0.cvs20010316-1) experimental; urgency=low + + * Started working on Samba 2.2.0. Using the SAMBA_2_2_0 branch + from Samba CVS. + * Not compiling rpctorture as it has compile errors. Change in + debian/rules. + * Removed Linux kernel 2.0.x and smbfs compatibility baggage. Now + the smbfs does not support 2.0.x kernels; a kernel > 2.2.x is + needed to use smbfs. Updated debian/control, debian/rules and + README.Debian to reflect this change. + * Added to swat a versioned dependency on samba (so a user is forced to + install a new version of swat each time a new version of samba is + installed.) + + -- Eloy A. Paris Sun, 18 Mar 2001 14:21:14 -0500 + +samba (2.0.7-5) unstable; urgency=medium + + * Transition from suidmanager to dpkg-statoverride. + + -- Eloy A. Paris Thu, 18 Jan 2001 23:51:56 -0500 + +samba (2.0.7-4) unstable; urgency=medium + + * Applied Urban Widmark fixes to smbmount. Urban + is the maintainer of the smbfs in the kernel and of the userland + utilities. + * Links to HTML documents are correct now. + Closes: #69439: swat: Broken help file symlinks + Closes: #72615: samba-doc directory changed: removed htmldocs from path + Closes: #75847: swat: Wrong symlink + Closes: #66857: Wrong links to html documents. + Closes: #77912: misplaced documentation symlinks for swat + * Building Samba with CUPS support. For this I reverted the change to + source/configure.in that I did in 2.0.7-3 and re-ran autoconf. + Closes: #59038: samba: not compiled with cups support. + * Fix against previous known/unknown user time difference patch to swat + (make username / password lookups take the same time.) Remove CGI + logging code in Swat. + Closes: #76341 - Security holes in swat + * Updated Build-depends. + * Updated debian/copyright to refer to the correct location of the GPL. + * debian/rules: changed DESTDIR to `pwd`/debian/samba (was + `pwd`/debian/tmp.) + * debian/rules: added '--sourcedir=debian/samba' to dh_movefiles (for some + strange reason dh_installdirs is not creating debian/tmp/ so I needed + to tweak everything to install stuff in debian/samba rather than in + debian/tmp.) + * debian/control: changed section of samba-docs to 'doc' (was 'docs') + * Using relative symlinks in /usr/share/samba/swat/ (changed debian/rules + and source/scripts/installswat.sh.) + * Fixed (by tweaking debian/rules) + /usr/bin/{smbmnt,smbumount-2.*,smbmount-2.*} to be suid. + * Added "Provides: samba-client" to smbclient's section in control. + Closes: #71143: smbclient: Smbclient should provide samba-client. + * Fix for desired_access being zero in map_share_mode() (patch to + source/smbd/nttrans.c.) Thanks to Gary Wilson + for bringing this patch to my + attention. + * Hacked source/lib/util_sec.c so smbd works fine in both 2.0.x and + 2.2.x kernels even when the build is done in a system running + a 2.2.x kernel. + Closes: #78858: samba-common: samba2.0.7 needs kernel 2.2.x but + doesnt depend on it. + Closes: #72758: README.Debian should comment on 2.0.x kernels. + Closes: #56935: Samba 2.0.6 and Kernel 2.0.x. + Closes: #58126: Samba 2.0.6 and Kernel 2.0.x -- more info. + Closes: #60580: samba: failed to set gid. + Closes: #64280: Samba panics, can't set gid. + Closes: #66816: Must deal with brokenness under 2.0.x. + Closes: #67682: potatoe samba 2.0.7-3 out of order, 2.0.5a-1 OK. + Closes: #69735: PANIC: failed to set gid + Closes: #66122: "smbclient -L localhost -U%" returns with "tree + connect failed: code 0". + Closes: #57637: Samba says tree connect error. + Closes: #58015: potato samba wins support is broken. + * Fixed comments in sample smb.conf to point to the correct location. + Closes: #69578: comments in smb.conf points to wrong path. + * Move codepages from /etc/samba/codepages/ to + /usr/share/samba/codepages/. + Closes: #63813: samba; codepages should go in /usr/lib. + * Moved /var/samba/ to /var/state/samba/. + Closes: #49011: samba package not FHS compliant. + * Hacked source/configure.in (and re-ran autoconf) so yp_get_default_domain() + is found. + Closes: #44558: netgroup support missing in samba 2.0.5a-1. + * /etc/init.d/samba was calling start-stop-daemon with both --pidfile and + --exec. Got rid of --exec so --pidfile works. + + -- Eloy A. Paris Thu, 11 Jan 2001 00:15:57 -0500 + +samba (2.0.7-3) frozen unstable; urgency=high + + * Release manager: this closes a RC bug. + * Commented out the section in source/configure.in that auto-detects + CUPS support and then ran autoconf to generate a new configure + script. This was done to prevent machines that have libcupsys-dev + installed from detecting CUPS support and adding an unwanted + dependency on libcupsys. This way the whole printing system + won't break on upgrades. CUPS support should be added after + Potato is released. + Closes: #65185: samba-common: Upgrading removes printing system. + Closes: #64496: smbfs: smbfs on powerpc has a dependency on cupsys. + * Updated README.debian. + Closes: #64594: Old README.Debian in /usr/share/doc/samba. + + -- Eloy A. Paris Tue, 20 Jun 2000 19:16:04 -0400 + +samba (2.0.7-2) frozen unstable; urgency=high + + * Release manager: this closes RC bug #63839 that prevents Samba + to be built from source. + * Fixed a stupid typo in debian/rules that was preventing Samba + to be built from source. + Closes: #63839: samba_2.0.7-1(frozen): build error (SAMBABOOK dir) + * I forgot to mention that O'Reilly's book "Using Samba" was donated + to the Open Source community. The book was included in Samba 2.0.7 + in HTML format and is part of the Debian Samba package since + Samba 2.0.7-1. + * In Samba 2.0.7-1, the "Using Samba" book and a number of HTML help + files were supposed to be provided in both the swat and the samba-doc + packages. This duplication was a waste of space. Starting with + Samba 2.0.7-2, swat recommends samba-doc and the book and the HTML + files are included only in samba-doc, and are accessed via symlinks + from within swat. + Closes: #58810: superfluous files in swat? + * Added a 'echo "."' to /etc/init.d/samba in the reload) section. + Closes: #63394: "echo ." missing in reload section of init.d script + * Fixed typo in docs/htmldocs/using_samba/ch06_05.html. + Closes: #64344: typo "encrypted passwords" + * Cleaned up samba's postrm script so important common files aren't + deleted when samba is purged. Created a samba-common.postrm script. + Closes: #62675: purging samba removes /etc/samba/smb.conf. + Closes: #63386: samba --purge removes /etc/samba dir even though + smbclient/smbfs/samba-common packages are still installed + + -- Eloy A. Paris Wed, 3 May 2000 02:42:07 -0400 + +samba (2.0.7-1) frozen unstable; urgency=low + + * New upstream version. Dear Release Manager: please allow this + package to go to frozen as it contains fixes to a _lot_ of problems. + You can take a look at all the problems fixed by this release in + the official upstream announcement at + http://us1.samba.org/samba/whatsnew/samba-2.0.7.html. + * Added --with-utmp to add utmp support to smbd (this is new in Samba + 2.0.7) + * Closes: #62148 - samba not rotating filled logs. + * Closes: #56711: Samba doesn't manage well long share name (please note + that it's possible to connect to shares with names longer than + 14 characters but the share will be listed with a name truncated to + 13 characters.) + * Closes: #51752 - NT DOMAIN - NET USE * /HOME not mapping (error 67). + Closes: #50907 - logon path not working. + This is not a bug, it's just Samba doing the same thing an NT server + does. See WHATSNEW.txt and smb.conf's man page for details. + * Closes: #48497 - error executing smbsh in debian-potato. (smbwrapper + is not supported anymore.) + * Closes: #58994 swat: typo in swat description. + * Closes: #45931 - Samba dies with SIGILL on startup. (Hardware + problems, person that reported the bug never came back.) + Closes: #54398 - smbadduser fails, looks for ypcat. + * Fixed swat's man page to include Debian specific installation + instructions. There's not necessary to edit /etc/services or + /etc/inetd.conf. + (Closes: #58616 - incomplete install config && incorrect installation + instructions.) + * s/SBINDIR/\"/usr/sbin\"/g in source/web/startstop.c to prevent swat + to look for smbd and nmbd in the wrong place when requested to start or + stop smbd or nmbd. + (Closes: #55028 - swat can't start samba servers.) + * Closes: #37274: smbclient does not honour pot. (Tested and seems to be + working now.) + * Not confirmed, but should fix #56699, #62185, #56247, #52218, #43492, + #50479, #39818, #54383, #59411. + (please re-open any of this if the problem still exists - I was unable + to confirm any of this because I could never reproduce them.) + Closes: #56699 - Samba's nmbd causes random kernel oops several + times in a row. + Closes: #62185 - nmbd's forking until no more file descriptors are + available. + Closes: #56247 - session setup failed: ERRSRV - ERRbadpw. + Closes: #52218 - Either wins proxy does not work, or I don't understand + it. + Closes: #43492 - intermittent problem changing password. + Closes: #50479 - Can't access windows 2000 shares with samba. + Closes: #39818 - samba-common: Upgrading Samba from the Slink version. + Closes: #54383 - samba-common: Missing /etc/smb.conf. + Closes: #59411 - smbclient: cannot browse Win2k shares. + + -- Eloy A. Paris Thu, 27 Apr 2000 16:07:45 -0400 + +samba (2.0.6-5) frozen unstable; urgency=low + + * Oppsss! samba-common doesn't depend on libcupsys1 so the binaries + in this package are broken unless libcupsys1 is installed. + samba-common has a "grave" bug because of this. Instead of adding + libcupsys1 to the Depends: list of each package in debian/control + I investigated why dh_shlibs was not picking the dependency + automatically. It turns out that it's probably a bug in libcupsys1 + because the format of its shlibs file is not correct. I fixed that + file (/var/lib/dpkg/info/libcupsys1.shlibs) and now dependencies are + picked correctly. I'll talk to the libcupsys1 maintainer. + + I think the addition of CUPS support to Samba is a big change that + should not go into Frozen. So, I decided to back up the addition + of CUPS support I did in 2.0.6-4 to minimize problems. I'll add + CUPS support again when I start working on Samba for Woody. + (Closes: #59337 - samba-common has a missing dependency) + + -- Eloy A. Paris Wed, 1 Mar 2000 08:40:02 -0500 + +samba (2.0.6-4) frozen unstable; urgency=low + + * It seems that sometimes nmbd or smbd are not killed when upgrading. + I think it is because in samba's prerm script I was calling + start-stop-daemon with the --pidfile switch and in old versions of + Samba the nmbd and smbd daemons did not store their PIDs in a file in + /var/samba/. I changed debian/samba.prerm so the existence of the + PID files is checked before calling "start-stop-daemon --pidfile ..." + If the PID files do not exist then start-stop-daemon is called + without the --pidfile parameter. + (Closes: #58058 - upgrade from slink went badly) + * Fixed typo in description of swat package in debian/control. + * Installed libcupsys1-dev so the configure script picks up CUPS + and Samba is compiled with CUPS support. Also added libcupsys1 to + the Depends: list of package samba in debian/control. + (Closes: #59038 - samba not compiled with cups support) + * Added a small paragraph to debian/README.debian warning about possible + problems with the WINS code in Samba 2.0.6. + + -- Eloy A. Paris Mon, 28 Feb 2000 14:00:42 -0500 + +samba (2.0.6-3) frozen unstable; urgency=low + + * Applied patch posted by Jeremy Allison to the samba mailing list + that should take care of the internal errors reported in bug #52698 + (release-critical). Wichert: please test as I never could reproduce + it here. + (Closes: #52698 - samba gets interbal errors) + * Moved samba-docs to the 'docs' section. + (Closes: #51077 - samba-doc: wrong section) + * Added reload capability to /etc/init.d/samba (only for smbd because + nmbd does not support reloading after receiving a signal). + (Closes: #50954 - patch to add reload support to /etc/init.d/samba) + * Corrected "passwd chat" parameter in sample /etc/samba/smb.conf so + Unix password syncronization works with the passwd program currently + in Potato. Thanks to Augustin Luton for + the correct chat script. + * Stole source/lib/util_sec.c from the CVS tree of what will become + Samba 2.0.7 or whatever so we can use the same binaries under + both 2.0.x and 2.2.x kernels. + (Closes: #51331 - PANIC: failed to set gid) + * smbadduser is now provided as an example and it's customized for Debian. + I am not providing this script in /usr/sbin/ because then I would need + a dependency on csh, something that I don't want to do. + (Closes: #51697, #54052) + * Fixed the short description of the smbfs package in debian/control. + (Closes: 53534 - one-line description out of date). + + -- Eloy A. Paris Tue, 23 Nov 1999 16:32:12 -0500 + +samba (2.0.6-2) unstable; urgency=low + + * samba-common now depends on libpam-modules (not on libpam-pwdb, which + I have been told is obsolete). I modified /etc/pam.d/samba accordingly + to reflect the change. + (Closes: Bug#50722: pam pwdb dependence?). + * The old /etc/pam.d/samba file which had references to pam_pwdb caused + smbd to die with a signal 11. The new /etc/pam.d/samba file fixes + this problem. + (Closes: #50876, #50838, #50698) + * Compiled with syslog support (use at your own risk: syslog support + is still experimental in Samba). I added the parameters "syslog = 0" + and "syslog only = no" to the sample smb.conf to avoid pestering + users that do not want Samba to log through syslog. + (Closes: Bug#50703 - syslog only option doesn't work) + * Removed the stupid code in the smbmount wrapper script that tries + to load the smbfs module if smbfs is not listed in /proc/filesystems. + (Closes: Bug#50759 - Non-root can't run smbmount if SMBFS is compiled + as a module in the kernel) + * Added /bin/mount.smb as a symlink pointing to /usr/bin/smbmount so + 'mount -t smb ...' works just as 'mount -t smbfs ...'. + (Closes: Bug#50763 - 'mount -t smb' doesn't work) + + -- Eloy A. Paris Sat, 20 Nov 1999 18:53:35 -0500 + +samba (2.0.6-1) unstable; urgency=low + + * Samba 2.0.6 has been released. This is the first try of the Debian + Samba packages. I know for sure that smbd won't work properly on + 2.0.x kernels because the patch that Wichert sent me does not apply + to the new source/lib/util_sec.c in Samba 2.0.6. That file was + completely re-written by Tridge. + * Updated README.Debian. + * A new client utility called smbspool appeared in Samba 2.0.6. I added + this utility to the smbclient package, although I haven't tried it yet. + * Added the symlink /sbin/mount.smbfs that points to /usr/bin/smbmount. + This is to be able to type "mouont -t smbfs ...". This symlink goes + in the smbfs package, of course. + * This new release should close the following bugs (some of these + are fixed for sure in this new upstream release, some others I could + not reproduce but I believe they are fixed if they were real bugs. + As always, please feel free to re-open the bugs if the problem is not + solved). + Closes: Bug#33240: icmp mask needs a bug workaround. + Closes: Bug#37692: samba: Has problems detecting interfaces. + Closes: Bug#38988: samba: Truly bizzare behavour from nmbd. + Closes: Bug#46432: samba-2.0.5a-2: nmbd does not appear to broadcast + properly. + Closes: Bug#44131: smbfs: no longer possible to set file and + directory-modes. + Closes: Bug#46992: smbmount-2.2.x manpage wrong. + Closes: Bug#42335: smbfs: missing options from the new 2.2.x commandline. + Closes: Bug#46605: smbmnt segfaults. + Closes: Bug#48186: smbmount. + Closes: Bug#38040: smbfs: Please add /sbin/mount.smb [included]. + Closes: Bug#47332: smbmount: could -f and -P be added back? + * Samba has been compiled with PAM support (closes: Bug#39512 - samba PAM + module). To succesfully add PAM support, I created /etc/pam.d/samba and + added this file as a conffile for the samba-common package. I also made + samba-common depend on libpam-pwdb. + * Added simple man pages for the wrapper scripts smbmount and smbmount. + (Closes: Bug#44705 - Missing smbmount man page) + * Installed libreadlineg2-dev in my system so smbclient now has a + "history" command and libreadline support :-) + * This time I did add a check to the smbmount wrapper script to see if + the kernel has support for smbfs, as suggested by Jeroen Schaap + . I mentioned in the changelog + for samba-2.0.5a-3 that I did this but I forgot at the end. + + -- Eloy A. Paris Thu, 11 Nov 1999 12:08:15 -0500 + +samba (2.0.5a-5) unstable; urgency=low + + * I am sorry to report that the smbwrapper package is gone for the + moment. The reason for this is twofold: first of all, smbwrapper + is completely broken in Samba-2.0.5a (it compiles but it doesn't + run) and in the upcoming Samba-2.0.6 it doesn't even compile. Second, + when I asked Andrew Tridgell (father of Samba) about the state of + smbwrapper he told me that Ulrich Drepper (head of the glibc project) + broke on purpose the glibc stuff in which smbwrapper is based. + Consequently, Tridge recommended me to compile Samba without + support for smbwrapper. When, I have no idea. Sorry folks. Here is + the original message I received from Andrew: + + > 1) 2.0.5a's smbwrapper doesn't work under glibc2.1, and pre-2.0.6's + > smbwrapper doesn't even compile under glibc2.1. + + yep, Ulrich deliberately broke it. It won't get fixed till glibc + allows the sorts of games it plays to work again. I suggest you turn + it off in your build scripts until that gets sorted out. + + * Swat's file are now in /usr/share/samba/ instead of + /usr/lib/samba/ (bug #49011). + * Man pages now in /usr/share/man/ instead of /usr/man/ (bug #49011). + + -- Eloy A. Paris Tue, 2 Nov 1999 12:59:13 -0500 + +samba (2.0.5a-4) unstable; urgency=low + + * Applied patch from our fearless leader (Wichert) to fix the darn bug + that prevents Samba to work on 2.0.x kernels if it was compiled + in a system running a 2.2.x kernel. This closes #40645 (build uses + setresuid which doesn't work under 2.0.34 (does apparently under + 2.2.x) ). + * Fixed the entry that swat's postinst script adds to /etc/inetd.conf + so it is '## swat\t\tstream\ttcp\tnowait.400 ...' instead of + '##swat\t\tstream\ttcp\tnowait.400 ...'. The old way caused + 'update-inetd --enable swat' to leave the entry for swat disabled. + Thanks to Dave Burchell for finding out + this problem. This closes #48762 (swat uses non-standard syntax to + comment out inetd.conf entry). + * /usr/sbin/swat does not think anymore that the smbd daemon lives + in /usr/local/samba/bin/. To fix this I am running now source/configure + with "--prefix=/usr --exec-prefix=/usr". This closes #47716 (samba + 'swat' fails: incorrect hardwired path in the binary). + + -- Eloy A. Paris Sun, 31 Oct 1999 03:42:38 -0500 + +samba (2.0.5a-3) unstable; urgency=low + + * I am pretty darn busy with my MBA, I apologize for the long time it's + taking to squash bugs in the Samba packages. + * Built with debhelper v2 for FHS compliancy. Changed a couple of + things in debian/rules to accomodate for the new place for the docs. + I also had to change debian/{samba.postinst,samba.prerm,swat.postinst} + to make sure that the symlink from /usr/doc/xxx exists and points to + /usr/share/doc/xxx (the reason for this is that I am not letting + debhelper to create these scripts for me automatically). + * Built with latest libc6. + * smbfs: finally, the nasty bug that causes smbmount to die after + a while is gone thanks to Ben Tilly . + The problem was just a typo in source/client/smbmount.c. + This closes grave bug #42764 (smbmount dies) and #43341 + (smbfs-2.2.x won't function after a while). + * Fixed the smbmount wrapper script to eliminate a bashism (closes + #45202 - "wrapper scripts use $* instead of "$@") and to recognize + 2.3.x and 2.4.x kernels (closes #47688 - "smbfs: does not recognize + kernel 2.3.x"). + * Added a check to the smbmount wrapper script to see if the + kernel has support for smbfs, as suggested by Jeroen Schaap + . + * swat's man page is now part of the swat package, not of the samba + package. This closes #44808 (Samba has a man page for swat, but + the binary is not included). + * The interface program smbrun is not longer needed by smbd because + of the availability of execl() under Linux. Because of this, the + smbrun is not even being compiled. Since there is no need for smbrun + now, the smbrun man page was taken out of the samba package. This + closes #45266 (/usr/bin/smbrun missing). + * smbpasswd is now part of the samba-common package, and not part of + the samba package. This is to let administrators that do not want + to install a full Samba server administer passwords in remote + machines. This closes bug #42624 (smbpasswd should be included in + smbclient). This bug report also suggests that swat becomes part of + the samba package, that smbfs becomes part of the smbclient package, + and that the binary smbpasswd becomes part of the smbclient package. + I moved smbpasswd to the samba-common package but I am reluctant to + do the other things the bug report suggests. + * In order to keep dpkg happy when moving smbpasswd from the samba + package to samba-common, I had to add a "Replaces: samba (<= 2.0.5a-2)" + in the control section of the samba-common package and a + "Replaces: samba-common (<= 2.0.5a-2)" in the control section of the + samba package (in debian.control). + * Samba is now being compiled with the "--with-netatalk" option. This + closes #47480 (Could samba be compiled with the --with-netatalk option). + * All packages that depend on samba-common have a versioned dependency + now. This was accomplished by adding "(= ${Source-Version})" to the + relevant sections of debian/control. Thanks t Antti-Juhani Kaijanaho + for the hint. This closes #42985 (samba should probably + have a versioned depends on samba-common). + * Made sure the file docs/textdocs/DIAGNOSIS.txt gets installed in all + the Samba packages. This closes bug #42049 (no DIAGNOSTICS.txt file). + * Added the smbadduser helper script to the samba package. This closes + #44480 (Samba doesn't come with the smbadduser program). + * Applied patch from szasz@triton.sch.bme.hu that prevents smbmount + to leave an entry in /etc/mtab for a share that could not be mounted + because of invalid user of password. The patch also allows smbumount + to unmount the share in the event that something goes wrong with the + smbmount process. This closes bug #48613 (Mount/umount problems + + patch) as well as #44130 (failed mount is still mounted). + * smbmount-2.2.x is now setuid root. This is needed for the patch + applied above to be effective. If smbmount-2.2.x is not setuid root + then an entry will be left in /etc/mtab even when the mount + fails. I had to add "usr/bin/smbmount-2.2.x" to debian/smbfs.suid + for this to work. + + -- Eloy A. Paris Wed, 27 Oct 1999 10:36:13 -0400 + +samba (2.0.5a-2) unstable; urgency=low + + * This version is basically the same as 2.0.5a-1 but it was compiled + on a Potato system with glibc2.1. See below the change log for 2.0.5a-1 + for more information. + + -- Eloy A. Paris Tue, 27 Jul 1999 02:25:29 -0400 + +samba (2.0.5a-1) stable; urgency=high + + * I'm back from the Honey Moon. We are pretty busy because we are moving + to Pittsburgh (from Caracas, Venezuela) in aprox. 24 hours and we still + have plenty of things to pack and to do. Samba 2.0.5 was released + while I was in the Honey Moon and it is just now (almost 3 AM) when + I have time to package it. + * Because of the security problems fixed in 2.0.5, this upload goes + to both stable and unstable (the Security Team asked for this). + * This release (2.0.5a-1) was compiled on a Slink system. 2.0.5a-2 will + be compiled on a Potato system. + * Added a "Replaces: samba (<= 1.9.18p10-7)" to the samba-common + section in debian/control (as suggested by Steve Haslam + ) to fix the problems that appear when upgrading + from the Samba package in Slink. Please test this as I am completely + unable to do so. This should fix bug #39818 (Upgrading Samba from the + Slink version). + * Removed the hacks to the autoconf stuff that I added to 2.0.4b-2 in + order to have defined several socket options when compiling with + Linux 2.2.x kernel headers - the fix is now upstream. + * Finally!!! smbmount was re-written (thanks Tridge :-) to use a command + line syntax similar to the one used by the old smbmount (for 2.0.x + kernels). This means that the wrapper script is no longer necessary + so I removed it. In its place there is a simple wrapper script that + calls smbmount-2.0.x or smbmount-2.2.x depending on the kernel that is + running. + * Because of the wedding, the Honey Moon, and our move to Pittsburgh, + I can't work on fixing other bugs in this release. + + -- Eloy A. Paris Tue, 27 Jul 1999 02:18:51 -0400 + +samba (2.0.4b-3) unstable; urgency=low + + * Stupid mistake: I forgot to add /usr/bin/smbumount to debian/smbfs.files + and because of this /usr/bin/smbumount was part of the samba package + instead of part of the smbfs package. + + -- Eloy A. Paris Thu, 1 Jul 1999 01:51:24 -0400 + +samba (2.0.4b-2) unstable; urgency=low + + * Dark (and archive maintainers): please remove from Potato the smbfsx + binary package and also the old source package for smbfs. smbfs and + smbfsx have been merged starting with this version. + * Merged the old smbfs package with Samba. Now there is only one package + for the smbfs utilities and is called "smbfs". The package smbfsx + does not exist any more and this new smbfs package must be used + for both 2.0.x and > 2.1.x kernels. + * A wrapper script was added to handle the syntax change in smbmount + in the new smbfs utilities (required for kernels > 2.1.70). The + home page for this script is http://www.wittsend.com/mhw/smbmount.html. + Please _note_ that this will change (for good) in Samba 2.0.5 :-) + * Added debian/smbumount.sh. It's another wrapper that calls smbumount-2.2.x + or smbumount-2.0.x depending on the kernel currently running. + * Not using -t for savelog in cron.weekly script. + * Recompiled without libreadlineg-dev (Samba does not seem to be using + it so unnecessary dependencies are produced). + * glibc2.1 build. + * Removed smbpasswd.8 man page from the debian/ directory because it is + now being provided upstream. + * Got rid of the ugly hack I put in source/lib/util_sock.c to have + IPTOS_LOWDELAY and IPTOS_THROUGHPUT defined. Now I patched the + autoconf stuff to #include . I've sent the patch to + Jeremy Allison so we have this upstream. + + -- Eloy A. Paris Mon, 28 Jun 1999 17:47:19 -0400 + +samba (2.0.4b-1) unstable; urgency=low + + * New upstream release. This release fixes the following Debian bugs: + #33838 (Amanda/ Samba 2.0.2 and backing up large filesystems) and + #33867 (Amanda 2.4.1 and Samba 2.0.2 and large filesystems). Jeremy + Allison released Samba 2.0.4 and found out that there were a couple + of minor bugs so he released 2.0.4a. Then he found out about more + serious bugs and released 2.0.4b. I have built this package several + times between yesterday and today because of this. Now I am releasing + the Debian packages for Samba with what I believe will be the latest + release the Samba Team will make at least in the next 4 days (Jeremy + is taking a short vacation). + * Still compiling against glibc2.0 (sorry about that :-) + * Hacked source/smbwrapper/smbsh.c to fix the problem + of smbsh not finding the shared library smbwrapper.so. It looks + now in /usr/lib/samba/ for this file. This fixes #32971, #32989, + #33278, #34911 and #36317. + * Made smbfsx depend on samba-common because smbfsx uses /etc/samba/smb.conf + and /etc/samba/codepages/. This fixes #33128 (smbmount complains about + missing /etc/smb.conf). + * Package swat does not depend on httpd anymore (there's no need to). + This fixes #35795 (swat requires httpd). + * Renamed smbmount-2.1.x and smbumount-2.1.x to smbmount-2.2.x and + smbumount-2.2.x. Same applies to the man pages. + * Changed minor type in smbmount's man page (changed "\"" by "\'"). This + fixes #34070 (wrong quotes in manpage). + * Used Fabrizio Polacco's procedure to create the + Debian package for Samba. This closes #35781 (samba has no pristine + source). + * Changes to /etc/cron.weely/samba: rotate /var/log/{nmb,smb}.old only + if the size of either is different than 0. Also, added comments at the + beginning of this script to explain how rotation of log files works in + Samba. Thanks to ujr@physik.phy.tu-dresden.de (Ulf Jaenicke-Roessler) + for the suggestions. This closes #37490 (cron.weekly script rotates not + used [sn]mb.old files). As I side effect, this should also close + #31462 (still trouble with /etc/cron.weekly/samba). + * Check for old /etc/pam.d/samba file which is not provided by this version + of the Debian Samba package but was provided in older versions. If this + file exists we delete it. We check for this in the postinst. This closes + #37356 (samba put stuff in pam.d that pam complains about) and #34312 + (libpam0g: questions during upgrade). + * Make sure the mode of /etc/samba/smbpasswd is set to 600. This is done + in the postinst script. This closes #35730 (Security problem with + /etc/samba/smbpasswd when upgrading from samba 1.9.18p8-2 to 2.0.3-1). + * I have just checked and it looks like #28748 (smbfsx doesn't "return ") + has been fixed. This might have been fixed since a long time ago. + * Long long standing bug #18488 (smbclient: internal tar is broken) is + closed in this release of Samba. The bug might have been closed for a + long long time, but I did not check for this before. + * Temporary fix to the annoying "Unknown socket option IPTOS_LOWDELAY" + message. This fixes #33698 (socket option IPTOS_LOWDELAY no longer works), + #34148 (warnings from smbd) and #35333 (samba warnings). + + -- Eloy A. Paris Thu, 20 May 1999 00:35:57 -0400 + +samba (2.0.3-1) unstable; urgency=low + + * New upstream version. + * Removed the convert_smbpasswd.pl program I created and put in + /usr/doc/samba/ because there's a convert_smbpasswd script in the + upstream sources that does the same thing. I modified the postinst + script to use this script instead of the one I created. + + -- Eloy A. Paris Sun, 28 Feb 1999 01:35:37 -0400 + +samba (2.0.2-2) unstable; urgency=low + + * Updated the README.Debian file. + * Updated the description of the samba package in the control file. + * The binaries smbmnt and smbumount-2.1.x in the smbfsx package are now + installed setuid root as they should be. This was done by doing a + a "chmod u+s" for each binary in debian/rules and by creating the + file debian/smbfsx.suid. + * Minor patch to source/client/smbumount.c to allow normal users + to umount what they have mounted (problem was a kernel vs. libc6 + size mismatch). I sent the patch upstream. + * Created debian/smbwrapper.dirs so the directory /usr/lib/samba/ is + created. + * Modified debian/rules to move smbwrapper.so from debian/tmp/usr/bin/ to + debian/smbwrapper/usr/lib/samba/. + * Hacked source/smbwrapper/smbsh.c to fix the problem + of smbsh not finding the shared library smbwrapper.so. + + -- Eloy A. Paris Thu, 11 Feb 1999 18:11:34 -0400 + +samba (2.0.2-1) unstable; urgency=low + + * New upstream version. + + -- Eloy A. Paris Thu, 11 Feb 1999 01:35:51 -0400 + +samba (2.0.1-1) unstable; urgency=low + + * New upstream version. + + -- Eloy A. Paris Sat, 6 Feb 1999 06:51:18 -0400 + +samba (2.0.0final-4) unstable; urgency=low + + * The samba postinst made an unwarranted assumption that the file + /etc/samba/smbpasswd exists. If the file did not exist (which is + perfectly valid) the postinst will fail. This fixes #32953. + + -- Eloy A. Paris Fri, 5 Feb 1999 23:32:46 -0400 + +samba (2.0.0final-3) unstable; urgency=low + + * Added to debian/control a "Depends: ${shlibs:Depends}" line for the + samba-common package so dependencies for this package are set + correctly (thanks to Dark for pointing this out). + + -- Eloy A. Paris Thu, 4 Feb 1999 09:45:21 -0400 + +samba (2.0.0final-2) unstable; urgency=low + + * Finally!!! The first upload to unstable. Sorry for the delay folks + but I have been quite busy lately :-) Another reason for the delay + is that I wanted to ease the migration from Samba 1.9.18p10 and + before to Samba 2.0.0. I changed the location of the config. files + from /etc/ to /etc/samba/ and this made things a little bit harder. + * This package needs 2.2 kernel headers to compile (well, this is + true for the smbfsx package, all others compile fine with 2.0 kernel + headers). + * Created a preinst script for the samba package to take care of the + location migration of smb.conf (from /etc/ to /etc/samba/). The + preinst script also takes care of moving /etc/smbpasswd to its new + location (/etc/samba/). + * Created postinst and postrm scripts to add/remove an entry for swat + in /etc/inetd.conf. + * I had forgotten to install the sambaconfig script so I changed + debian/rules to install this script. + * Added a postrm script for the samba package (I had forgotten to add + this script to the new Samba packages after the migration from 1.9.18 + to 2.0.0). + * Created a small Perl script that is called from the samba postinst + to convert the smbpasswd from the old format used in version prior + to 2.0.0 to the new one used in 2.0.0 and beyond. + * The upgrade process should be automatically now. Please let me know + of any problems you encounter. + + -- Eloy A. Paris Sat, 23 Jan 1999 09:34:10 -0400 + +samba (2.0.0final-1) experimental; urgency=low + + * Finally!!! Samba 2.0.0 is here! I am not uploading to unstable + because I still have to work out the migration from the old + samba packages to the new ones. I also need to work more on the + new swat package. + + -- Eloy A. Paris Thu, 14 Jan 1999 22:40:02 -0400 + +samba (2.0.0beta5-1) experimental; urgency=low + + * New upstream version. + + -- Eloy A. Paris Tue, 5 Jan 1999 00:37:57 -0400 + +samba (2.0.0beta4-1) experimental; urgency=low + + * New upstream version. + + -- Eloy A. Paris Wed, 23 Dec 1998 18:37:45 -0400 + +samba (2.0.0beta3-1) experimental; urgency=low + + * New upstream version. + * I have just realized that the documentation patches (for man pages) + that I used for the 1.9.18 release are not longer necessary because + there was a major re-write of all the Samba documentation that added + the missing bits of information. So, I have just removed these minor + patches. + + -- Eloy A. Paris Tue, 8 Dec 1998 12:00:30 -0400 + +samba (2.0.0beta2-1) experimental; urgency=low + + * New upstream version. + * This new version fixes the potential security problem that + was posted to debian-private (using the "message command" parameter + to execute arbitrary commands from messages sent from LinPopUp). + * Changed /etc/init.d/samba to use one of the variables stored in + /etc/samba/debian_config to know how Samba is being run (from inetd or + as daemons) instead of grepping /etc/inetd.conf which may not exist + if the user is running xinetd (this fixes bug #29687 - assumes using + vanilla inetd) + + -- Eloy A. Paris Mon, 23 Nov 1998 23:32:03 -0400 + +samba (2.0.0beta1-1) experimental; urgency=low + + * First beta release of the samba-2.0.0 code. Before the beta I was + working with sources downloaded directly from the CVS server. This + package goes into experimental and I plan to release the new + samba to unstable as soon as it gets out of beta. + * Created several packages out of the Samba sources. They are: + samba (nmbd and smbd daemons + related programs), smbclient (FTP + like command line utility to retrieve files from SMB servers), + swat (Samba Web Administration Tool), samba-common (common files + used by samba, smbclient and swat), smbfsx (smbfs utilities for + kernels >= 2.1.70), smbwrapper and samba-doc (Samba documentation). + * Refreshed debian/samba-doc.docs so recently added docs. are + installed in the samba-doc package. New additions include man + pages in the /usr/doc/samba-doc/htmldocs/ directory. + * Deleted Debian specific nmblookup(1) man page as it is now upstream. + * Added smbtorture to smbclient package. + * Moved rpcclient from the samba package to the smbclient package. + * The Samba daemons (nmbd and smbd) now create a PID file so I changed + all calls to start-stop-daemon to use the PID file. + * Fixed debian/rules to install mksmbpasswd (fixes #27655). + * Modified /etc/init.d/samba so nmbd is started without the -a (append + to the log file instead of overwrite) switch. The new behavior of + nmbd is to NOT overwrite log files, so the -a switch can be deleted + safely. + * Moved from debstd to debhelper. + + -- Eloy A. Paris Thu, 1 Oct 1998 08:37:41 -0400 + +samba (1.9.18p10-5) frozen unstable; urgency=high + + * Oppsss!!! While fixing bug #26884 I introduced a bug even worse than + the one I was trying to fix: in /etc/init.d/samba I got rid of the test + that tells us whether the Samba daemons are running from inetd or as + standalone daemons. I corrected the problem by editing again + /etc/init.d/samba to uncomment the test. + * Wishlist bug #28298 (typos in samba) was fixed. + * Wishlist bug #28309 (typos in smb.conf) was fixed. + + -- Eloy A. Paris Wed, 28 Oct 1998 09:11:47 -0400 + +samba (1.9.18p10-4) unstable; urgency=low + + * Minor patch to debian/rules to delete *substvars instead of only + substvars when doing a "debian/rules clean" (thanks to Daniel Jacobowitz + for this). + * Small patch to source/shmem_sysv.c that eases compilation under + glibc-2.1 (thanks to Daniel for this). + + -- Eloy A. Paris Thu, 17 Sep 1998 15:33:49 -0400 + +samba (1.9.18p10-3) unstable; urgency=low + + * Patched smbclient again to fix minor formatting problem introduced + by Magosanyi Arpad's smbclient patch. + + -- Eloy A. Paris Thu, 3 Sep 1998 11:03:23 -0400 + +samba (1.9.18p10-2) unstable; urgency=low + + * Sync'ed include files for the smbfs utilities with the ones in + kernel 2.1.119. + * Added to the /usr/doc/samba/examples/ directory a new script called + wins2dns (courtesy of Jason Gunthorpe ) that + generates BIND sonze files for hosts in the WINS database. + * Patched smbclient to include enhancements by Magosanyi Arpad + that make scripting easier. + + -- Eloy A. Paris Fri, 28 Aug 1998 13:34:54 -0400 + +samba (1.9.18p10-1) stable unstable; urgency=low + + * New upstream version (see /usr/doc/samba/WHATSNEW.txt for a + description of what has changed). I built a 1.9.18p9-1 but I + never released it because an obscure bug was found just a couple + of days before the official release, so the Samba Team stopped + the rollover of 1.9.18p9. + * Updated documentation (new files were added to the docs/ directory + that were not installed in /usr/doc/samba/). + * Fixed long standing bug #7695 (smb.conf's man page doesn't document + 'printing=lprng') - I made a couple of changes to the man page to + include references to lprng. + * Fixes bug #24930 (samba needs to suggest psmisc?). I don't think it + is necessary to make samba suggest psmisc just because the postinst + script mentions to call killall. So, I removed all references to + "killall" in the scripts. + * Fixes bug #25999 (Samba does not by default work with unix password + sync): I added the "passwd program" and "passwd chat" parameters to + the sample smb.conf to reflect the Debian environment. + + -- Eloy A. Paris Fri, 21 Aug 1998 08:59:18 -0400 + +samba (1.9.18p9-1) unstable; urgency=low + + * New upstream version (see /usr/doc/samba/WHATSNEW.txt for a + description of what has changed). + * Removed Jeremy Allison's patch applied to 1.9.18p8-2 because it is + now part of the new upstream version. + * Corrected small typo in addtosmbpass' man page (fixes #25629). + + -- Eloy A. Paris Tue, 11 Aug 1998 08:53:08 -0400 + +samba (1.9.18p8-2) frozen unstable; urgency=medium + + * Applied patch received from Jeremy Allison (Samba Team) that fixes + "grave" bug #23903 (samba maps username before authenicating with + NT password server). + * Added a "sleep 2" between "start-stop-daemon --stop" and + "start-stop-daemon --start" in /etc/init.d/samba so when this script + is called with the "restart" parameter the Samba daemons are restarted + properly. This fixes bug #24211 (init.d script doesn't restart). + * Sent start-stop-daemon output in /etc/init.d/samba to /dev/null to + avoid annoying warning messages. + * Added perfomance tune parameters to sample /etc/smb.conf (SO_SNDBUF=4096 + and SO_RCVBUF=4096 to "socket options" in /etc/smb.conf). I can't + find who sent this suggestion to me. If you are listening, drop me a + note and I'll put your name here :-) + + -- Eloy A. Paris Mon, 29 Jun 1998 08:45:01 -0400 + +samba (1.9.18p8-1) frozen unstable; urgency=low + + * New upstream release that fixes _lots_ of "ugly" bugs. The list of + fixed bugs is too long to include here (see /usr/doc/samba/WHATSNEW.txt). + * Fixed postinst to quote arguments to if [ arg .. ] constructs + (fixes #22881). + * Applied Jeremy Allison's patch (posted to the samba-ntdom mailing + list) that solves a problem with username maps (the Samba Team did + not catch this problem before final 1.9.18p8). + * Made /etc/init.d/samba to print out a warning when Samba is running + from inetd and the user runs /etc/init.d/samba to start|stop|restart + Samba (there's no point on doing this because inetd will start the + daemons again when there is traffic on UDP port 137-139). + + -- Eloy A. Paris Sat, 13 Jun 1998 00:18:25 -0400 + +samba (1.9.18p7-4) frozen unstable; urgency=medium + + * Fixes the serious problem of having the WINS name server + database getting deleted at boot time. That happened because the + WINS database was being stored under /var/lock/samba/ and all files + under /var/lock/ are deleted at boot time. The place where the WINS + database is stored was moved to /var/samba/. + + -- Eloy A. Paris Mon, 18 May 1998 20:24:29 -0400 + +samba (1.9.18p7-3) stable; urgency=high + + * Libc5 version for Bo (stable) that fixes the recently reported + security hole. + + -- Eloy A. Paris Mon, 18 May 1998 20:19:33 -0400 + +samba (1.9.18p7-2) frozen unstable; urgency=low + + * Added patches from the non-mantainer upload that make us able + to compile Samba on Alpha systems. This fixes bug #22379. + + -- Eloy A. Paris Wed, 13 May 1998 20:38:51 -0400 + +samba (1.9.18p7-1) frozen unstable; urgency=low + + * New upstream release (just bug fixes, no new functionality). + + -- Eloy A. Paris Wed, 13 May 1998 11:47:32 -0400 + +samba (1.9.18p6-2) frozen unstable; urgency=low + + * Uploaded to frozen (I forgot to upload last version to frozen + so it got installed only in unstable). + + -- Eloy A. Paris Tue, 12 May 1998 18:10:17 -0400 + +samba (1.9.18p6-1.1) unstable; urgency=low + + * non-maintainer upload for Alpha + * patch needed for source/quota.c (_syscall4() confusion) + + -- Paul Slootman Tue, 12 May 1998 20:39:13 +0200 + +samba (1.9.18p6-1) unstable; urgency=low + + * New upstream release that fixes a possible buffer overflow. + This security hole was reported on BugTraq by Drago. The + previous Debian version (1.9.18p5-1) was not released because + 1.9.18p5 and 1.9.18p6 were released very closely. + + -- Eloy A. Paris Mon, 11 May 1998 20:28:33 -0400 + +samba (1.9.18p5-1) unstable; urgency=low + + * New upstream release (no new funcionality, just bug fixes - see + /usr/doc/samba/WHATSNEW.txt.gz). + * Backed off Debian patches that were added upstream. + + -- Eloy A. Paris Mon, 11 May 1998 08:43:53 -0400 + +samba (1.9.18p4-2) frozen unstable; urgency=low + + * Patched smbclient(1) man page to not reference the unsopported + -A parameter (fixes #6863). + * Changes to start nmbd with the -a option (in /etc/init.d/samba + and in the entry added to /etc/inetd.conf). + * Fixed typo in sample smb.conf (fixes #21484). + * Fixed yet another typo in sample smb.conf (fixes #21447). + + -- Eloy A. Paris Fri, 17 Apr 1998 22:19:23 -0400 + +samba (1.9.18p4-1) frozen unstable; urgency=low + + * New upstream version that fixes several bugs. + * New scheme for keeping track of Debian specific configuration. + This new scheme fixes bug #18624 (Samba always asks the user about + configuration options). New scheme stores Debian specific + configuration information in /etc/samba/debian_config. + * Changes to /usr/sbin/sambaconfig, prerm and postinst to support the + new configuration scheme. + * Moved required kernel 2.1.x include files inside the source tree + so I don't have to do very nasty things like creating crazy + symlinks in /usr/include to make this package compile. This + allows non-root users to build the package and fixes bug + #20104. + * Fixed address of the FSF in /usr/doc/samba/copyright (problem + reported by lintian). + * The /etc/init.d/samba script now supports the force-reload + argument, as required by the policy (problem reported by lintian). + * Added a "rm /etc/cron.weekly/samba" at the end of the postinst. + * Now the samba package can be installed even if no nmbd or smbd processes + are running. This fixes the following bugs: #8917, #9334, #10268, + #10411, #11146 and #13387. + * Provides the original README in /usr/doc/samba. This fixes bug #9693. + * Added a --no-reload option to sambaconfig to not reload Samba + after configuration. + * Created man pages for sambaconfig(8), addtosmbpass(8), + mksmbpasswd(8) and nmblookup(1). + * Corrected small typo in sample /etc/smb.conf. + * Added two new parameters to /etc/smb.conf: "preserver case" and + "short preserve case". + * "rm -Rf /var/lock/samba" in postrm when package is being purged. + * Patched upstream source (nmbd.c) to not overwrite log files when + nmbd is called with the -a parameter (fixes #17704: nmbd ignores + -a option). + * /etc/init.d/samba now starts the nmbd daemon with the -a parameter + to not overwrite log files. + + -- Eloy A. Paris Mon, 23 Mar 1998 21:22:03 -0400 + +samba (1.9.18p3-1) unstable; urgency=low + + * New upstream version. + * Oppsss!!! I really screwed it up (actually, debstd did). + 1.9.18p2-2 still contained man pages (smbmount and smbumount) part + of other packages. This version does have this corrected. If not, + I no longer deserve to be a Debian developer! So, this version + fixes bug #18438 and some of the bugs I claimed to fix in + 1.9.18p2-2. Oh, by the way, I fixed the problem by running debstd + with -m in debian/rules (man pages are installed by "make install" + so it's a bad idea to re-install man pages with debstd). + + -- Eloy A. Paris Mon, 23 Feb 1998 17:32:42 -0400 + +samba (1.9.18p2-2) unstable; urgency=low + + * Fixes bugs #18017, #17999, #17961, #17932: old 1.9.18p2-1 provided + a man page for smbmount, which conflicts with package smbfs. This + was solved by creating a multi-binary package that produces + package samba and new package smbfsx. + * Fixes bug #18000 (typo in postinst). + * Fixes bug #17958 (postinst asks obsolete question). Actually, + the question is still asked, but only if Samba is run as daemons. + * Created a multi-binary package from the Samba sources: package + samba and new package smbfsx which provides SMB mount utilities + for kernels > 2.1.70. + + -- Eloy A. Paris Mon, 9 Feb 1998 19:47:05 -0400 + +samba (1.9.18p2-1) unstable; urgency=low + + * New upstream version. + * Removed /etc/cron.weekly/samba because Samba does not handle well + rotation of log files (if the log file is rotated Samba will + continue to log to the rotated file, instead of the just created + one). In any case, Samba will rotate log files after an specific + file size. + + -- Eloy A. Paris Tue, 27 Jan 1998 22:34:27 -0400 + +samba (1.9.18p1-2) unstable; urgency=low + + * Created a multi-binary package out of the Samba sources to provide + packages samba and smbfsx (userland utilities to work with + smbfs with kernels > 2.1.x. + + -- Eloy A. Paris Sat, 17 Jan 1998 09:23:48 -0400 + +samba (1.9.18p1-1) unstable; urgency=low + + * New upstream version. + * Created /etc/cron.daily/samba to save a copy of /etc/smbpasswd in + /var/backups/smbpasswd.bak. + + -- Eloy A. Paris Wed, 14 Jan 1998 13:40:56 -0400 + +samba (1.9.18alpha14-1) unstable; urgency=low + + * New upstream version. + * Added a note to the postinst script telling the user that he/she + needs to run smbpasswd manually after creating a new /etc/smbpasswd + from /etc/passwd. + + -- Eloy A. Paris Tue, 23 Dec 1997 23:44:37 -0400 + +samba (1.9.18alpha13-1) unstable; urgency=low + + * New upstream version. + + -- Eloy A. Paris Tue, 16 Dec 1997 13:02:32 -0400 + +samba (1.9.18alpha12-1) unstable; urgency=low + + * New upstream version. + * Conflicts with the sambades package because the new Samba 1.9.18 + series do not depend on the DES libraries to support encrypted + passwords. + * Added parameter "encrypt passwords = yes" to /etc/smb.conf. + * Compiled with support for quotas in disk_free(). + * Home directories are now exported read only by default. + * Re-worked debian/rules. + * Re-worked sample smb.conf. + + -- Eloy A. Paris Thu, 4 Dec 1997 22:50:34 -0400 + +samba (1.9.17p4-1) unstable; urgency=low + + * New upstream version. + * Made /etc/smb.conf readable by everybody because some Samba utilities + will fail otherwise when run by non-root users. + * Dropped PAM support while the PAM libraries are ported to libc6. + + -- Eloy A. Paris Tue, 21 Oct 1997 18:08:49 -0400 + +samba (1.9.17p3-1) unstable; urgency=low + + * New upstream version. + * Made /etc/smb.conf readable only by root as suggested by smbd's man page. + + -- Eloy A. Paris Wed, 15 Oct 1997 09:21:25 -0400 + +samba (1.9.17p2-2) unstable; urgency=low + + * Running Samba as daemons instead of from inetd. + * Removing netbios entries in /etc/inetd.conf. + + -- Eloy A. Paris Thu, 9 Oct 1997 23:37:25 -0400 + +samba (1.9.17p2-1) unstable; urgency=low + + * New upstream version that fixes a serious security hole. + * Removed Debian patches added in 1.9.17-1 and 1.9.17p1-1 because + these patches are now part of the upstream release. + + -- Eloy A. Paris Sun, 28 Sep 1997 22:54:33 -0400 + +samba (1.9.17p1-1) unstable; urgency=low + + * New upstream version. + * Defined symbol _LINUX_C_LIB_VERSION_MAJOR as 6 in includes.h to shut up + compiler warnings. + * Included rpcsvc/ypclnt.h in includes.h to shut up compiler warnings. + * Included crypt.h to have function prototype for crypt(). + * Included netinet/tcp.h to have some socket options included. + * Included netinet/ip.h to have some socket options included. + * Linking with libcrypt (LIBM='... -lcrypt'). Without including this + library smbd generates a seg. fault when authenticating users (?). + + -- Eloy A. Paris Wed, 10 Sep 1997 22:09:18 -0400 + +samba (1.9.17-1) unstable; urgency=low + + * New upstream version (called the "Browse Fix Release") + * Added the option --oknodo to the start-stop-daemon invocation in prerm + script. This was because the prerm was failing because start-stop-daemon + was returning an error code if no nmbd or smbd daemons were found + to kill. + * The function yp_get_default_domain(), referenced in three source + files was part of libc5 but with libc6 (glibc2) it has been moved + to libnss_nis. Since the linker was unable to find the function + I had to add LIBSM='-lnss_nis' to debian/rules. + * Added -DNO_ASMSIGNALH and -DGLIBC2 to FLAGSM in debian/rules + because compiling was failing because of conflicts with glibc2. + * Patched source/includes.h to include termios.h if GLIBC2 is defined. + + -- Eloy A. Paris Wed, 27 Aug 1997 08:39:32 -0400 + +samba (1.9.17alpha5-1) unstable; urgency=low + + * New upstream version. + + -- Eloy A. Paris Thu, 14 Aug 1997 18:05:02 -0400 + +samba (1.9.16p11-3) unstable; urgency=low + + * Fixed accidental omission of /etc/pam.d/samba. + + -- Klee Dienes Sat, 15 Mar 1997 22:31:26 -0500 + +samba (1.9.16p11-2) unstable; urgency=low + + * Recompiled against newer PAM libraries. + * Added /etc/pam.d/samba. + + -- Klee Dienes Sat, 8 Mar 1997 01:16:28 -0500 + +samba (1.9.16p11-1) unstable; urgency=low + + * New upstream release. + * Added PAM support. + + -- Klee Dienes Tue, 25 Feb 1997 18:00:12 -0500 + +samba (1.9.16p9-2) unstable; urgency=low + + * minor packaging changes + + -- Klee Dienes Sun, 3 Nov 1996 11:45:37 -0700 + +samba (1.9.16p9-1) unstable; urgency=low + + * upgraded to new upstream version + + -- Klee Dienes Sat, 26 Oct 1996 21:38:20 -0700 + +1.9.16alpha10-1: + 960714 + * Removed Package_Revision from control file. + * Removed -m486 compiler option. + * Added Architecture, Section and Priority fields to control file. + * Upgraded to latest upstream version. + * Uses update-inetd now. + * Added shadow passwords support. + * Fixed Bug#1946: nmbd won't browse +1.9.15p4-1: + 951128 + * Upgraded to latest upstream version. + * Fixed many bugs. + * Adds Master Browsing support. + * Converted to ELF. + * Fixed bug #1825 - nmbd is now killed when removing samba. +1.9.14-1: + 950926 Andrew Howell + * Upgraded to latest version. + * Fixed Bug #1139 - samba won't print +1.9.14alpha5-1: + * Fixes killing of inetd problem in debian.postint and debian.postrm +1.9.14alpha5-0: + 950704 Andrew Howell + * Taken over samba package from Bruce Perens. + * Upgraded to newest version of samba. +1.9.02-1: + 9-January-1994 Bruce Perens + * Added Debian GNU/Linux package maintenance system files, and + configured for Debian systems. + --- samba-3.3.0.orig/debian/copyright +++ samba-3.3.0/debian/copyright @@ -0,0 +1,30 @@ +This is the Debian Linux prepackaged version of the Samba SMB +(LAN-Manager) server. + +This package was put together by Eloy Paris , Steve +Langasek , Noèl Köthe and +Christian Perrier , based on previous work by +Peter Eisentraut , Víctor Pérez Pereira +, Klee Dienes , Andrew +Howell and Bruce Perens from +sources found at . + +Copyright © 1992-2008 Andrew Tridgell and the Samba Team + + 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 + the Free Software Foundation; version 3 dated June, 2007. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, + MA 02110-1301, USA. + + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL-3'. --- samba-3.3.0.orig/debian/smbwrapper.files +++ samba-3.3.0/debian/smbwrapper.files @@ -0,0 +1 @@ +usr/bin/smbsh --- samba-3.3.0.orig/debian/winbind.init +++ samba-3.3.0/debian/winbind.init @@ -0,0 +1,58 @@ +#!/bin/sh + +### BEGIN INIT INFO +# Provides: winbind +# Required-Start: $network $local_fs $remote_fs +# Required-Stop: $network $local_fs $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: start Winbind daemon +### END INIT INFO + + +PATH=/sbin:/bin:/usr/sbin:/usr/bin + +[ -r /etc/default/winbind ] && . /etc/default/winbind + +DAEMON=/usr/sbin/winbindd +PIDDIR=/var/run/samba +WINBINDPID=$PIDDIR/winbindd.pid + +# clear conflicting settings from the environment +unset TMPDIR + +# See if the daemon is there +test -x $DAEMON || exit 0 + +. /lib/lsb/init-functions + +case "$1" in + start) + log_daemon_msg "Starting the Winbind daemon" "winbind" + + mkdir -p /var/run/samba/winbindd_privileged || return 1 + chgrp winbindd_priv $PIDDIR/winbindd_privileged/ || return 1 + chmod 0750 $PIDDIR/winbindd_privileged/ || return 1 + start-stop-daemon --start --quiet --oknodo --exec $DAEMON -- $WINBINDD_OPTS + + log_end_msg $? + ;; + + stop) + log_daemon_msg "Stopping the Winbind daemon" "winbind" + start-stop-daemon --stop --quiet --oknodo --exec $DAEMON + log_end_msg $? + ;; + + restart|force-reload) + $0 stop && sleep 2 && $0 start + ;; + + status) + status_of_proc -p $WINBINDPID $DAEMON winbind && exit 0 || exit $? + ;; + *) + echo "Usage: /etc/init.d/winbind {start|stop|restart|force-reload|status}" + exit 1 + ;; +esac --- samba-3.3.0.orig/debian/winbind.logrotate +++ samba-3.3.0/debian/winbind.logrotate @@ -0,0 +1,10 @@ +/var/log/samba/log.winbindd { + weekly + missingok + rotate 7 + postrotate + [ -f /var/run/samba/winbindd.pid ] && kill -HUP `cat /var/run/samba/winbindd.pid` + endscript + compress + notifempty +} --- samba-3.3.0.orig/debian/patches/fix-manpages-warnings.patch +++ samba-3.3.0/debian/patches/fix-manpages-warnings.patch @@ -0,0 +1,2156 @@ +Index: samba-3.3.0/docs/manpages/cifs.upcall.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/cifs.upcall.8 ++++ samba-3.3.0/docs/manpages/cifs.upcall.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/eventlogadm.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/eventlogadm.8 ++++ samba-3.3.0/docs/manpages/eventlogadm.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/findsmb.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/findsmb.1 ++++ samba-3.3.0/docs/manpages/findsmb.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/idmap_ad.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/idmap_ad.8 ++++ samba-3.3.0/docs/manpages/idmap_ad.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/idmap_adex.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/idmap_adex.8 ++++ samba-3.3.0/docs/manpages/idmap_adex.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/idmap_hash.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/idmap_hash.8 ++++ samba-3.3.0/docs/manpages/idmap_hash.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/idmap_ldap.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/idmap_ldap.8 ++++ samba-3.3.0/docs/manpages/idmap_ldap.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/idmap_nss.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/idmap_nss.8 ++++ samba-3.3.0/docs/manpages/idmap_nss.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/idmap_rid.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/idmap_rid.8 ++++ samba-3.3.0/docs/manpages/idmap_rid.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/idmap_tdb.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/idmap_tdb.8 ++++ samba-3.3.0/docs/manpages/idmap_tdb.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/idmap_tdb2.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/idmap_tdb2.8 ++++ samba-3.3.0/docs/manpages/idmap_tdb2.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/ldb.3 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/ldb.3 ++++ samba-3.3.0/docs/manpages/ldb.3 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/ldbadd.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/ldbadd.1 ++++ samba-3.3.0/docs/manpages/ldbadd.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/ldbdel.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/ldbdel.1 ++++ samba-3.3.0/docs/manpages/ldbdel.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/ldbedit.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/ldbedit.1 ++++ samba-3.3.0/docs/manpages/ldbedit.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/ldbmodify.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/ldbmodify.1 ++++ samba-3.3.0/docs/manpages/ldbmodify.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/ldbsearch.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/ldbsearch.1 ++++ samba-3.3.0/docs/manpages/ldbsearch.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/libsmbclient.7 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/libsmbclient.7 ++++ samba-3.3.0/docs/manpages/libsmbclient.7 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/lmhosts.5 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/lmhosts.5 ++++ samba-3.3.0/docs/manpages/lmhosts.5 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/log2pcap.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/log2pcap.1 ++++ samba-3.3.0/docs/manpages/log2pcap.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/mount.cifs.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/mount.cifs.8 ++++ samba-3.3.0/docs/manpages/mount.cifs.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/net.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/net.8 ++++ samba-3.3.0/docs/manpages/net.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/nmbd.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/nmbd.8 ++++ samba-3.3.0/docs/manpages/nmbd.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/nmblookup.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/nmblookup.1 ++++ samba-3.3.0/docs/manpages/nmblookup.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/ntlm_auth.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/ntlm_auth.1 ++++ samba-3.3.0/docs/manpages/ntlm_auth.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/pam_winbind.7 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/pam_winbind.7 ++++ samba-3.3.0/docs/manpages/pam_winbind.7 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/pdbedit.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/pdbedit.8 ++++ samba-3.3.0/docs/manpages/pdbedit.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/profiles.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/profiles.1 ++++ samba-3.3.0/docs/manpages/profiles.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/rpcclient.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/rpcclient.1 ++++ samba-3.3.0/docs/manpages/rpcclient.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/samba.7 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/samba.7 ++++ samba-3.3.0/docs/manpages/samba.7 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/smb.conf.5 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/smb.conf.5 ++++ samba-3.3.0/docs/manpages/smb.conf.5 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/smbcacls.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/smbcacls.1 ++++ samba-3.3.0/docs/manpages/smbcacls.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/smbclient.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/smbclient.1 ++++ samba-3.3.0/docs/manpages/smbclient.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/smbcontrol.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/smbcontrol.1 ++++ samba-3.3.0/docs/manpages/smbcontrol.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/smbcquotas.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/smbcquotas.1 ++++ samba-3.3.0/docs/manpages/smbcquotas.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/smbd.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/smbd.8 ++++ samba-3.3.0/docs/manpages/smbd.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/smbget.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/smbget.1 ++++ samba-3.3.0/docs/manpages/smbget.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/smbgetrc.5 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/smbgetrc.5 ++++ samba-3.3.0/docs/manpages/smbgetrc.5 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/smbpasswd.5 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/smbpasswd.5 ++++ samba-3.3.0/docs/manpages/smbpasswd.5 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/smbpasswd.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/smbpasswd.8 ++++ samba-3.3.0/docs/manpages/smbpasswd.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/smbspool.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/smbspool.8 ++++ samba-3.3.0/docs/manpages/smbspool.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/smbstatus.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/smbstatus.1 ++++ samba-3.3.0/docs/manpages/smbstatus.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/smbtar.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/smbtar.1 ++++ samba-3.3.0/docs/manpages/smbtar.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/smbtree.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/smbtree.1 ++++ samba-3.3.0/docs/manpages/smbtree.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/swat.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/swat.8 ++++ samba-3.3.0/docs/manpages/swat.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/tdbbackup.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/tdbbackup.8 ++++ samba-3.3.0/docs/manpages/tdbbackup.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/tdbdump.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/tdbdump.8 ++++ samba-3.3.0/docs/manpages/tdbdump.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/tdbtool.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/tdbtool.8 ++++ samba-3.3.0/docs/manpages/tdbtool.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/testparm.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/testparm.1 ++++ samba-3.3.0/docs/manpages/testparm.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/umount.cifs.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/umount.cifs.8 ++++ samba-3.3.0/docs/manpages/umount.cifs.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_audit.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_audit.8 ++++ samba-3.3.0/docs/manpages/vfs_audit.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_cacheprime.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_cacheprime.8 ++++ samba-3.3.0/docs/manpages/vfs_cacheprime.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_cap.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_cap.8 ++++ samba-3.3.0/docs/manpages/vfs_cap.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_catia.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_catia.8 ++++ samba-3.3.0/docs/manpages/vfs_catia.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_commit.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_commit.8 ++++ samba-3.3.0/docs/manpages/vfs_commit.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_default_quota.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_default_quota.8 ++++ samba-3.3.0/docs/manpages/vfs_default_quota.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_extd_audit.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_extd_audit.8 ++++ samba-3.3.0/docs/manpages/vfs_extd_audit.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_fake_perms.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_fake_perms.8 ++++ samba-3.3.0/docs/manpages/vfs_fake_perms.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_fileid.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_fileid.8 ++++ samba-3.3.0/docs/manpages/vfs_fileid.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_full_audit.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_full_audit.8 ++++ samba-3.3.0/docs/manpages/vfs_full_audit.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_gpfs.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_gpfs.8 ++++ samba-3.3.0/docs/manpages/vfs_gpfs.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_netatalk.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_netatalk.8 ++++ samba-3.3.0/docs/manpages/vfs_netatalk.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_notify_fam.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_notify_fam.8 ++++ samba-3.3.0/docs/manpages/vfs_notify_fam.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_prealloc.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_prealloc.8 ++++ samba-3.3.0/docs/manpages/vfs_prealloc.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_readahead.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_readahead.8 ++++ samba-3.3.0/docs/manpages/vfs_readahead.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_readonly.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_readonly.8 ++++ samba-3.3.0/docs/manpages/vfs_readonly.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_recycle.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_recycle.8 ++++ samba-3.3.0/docs/manpages/vfs_recycle.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_shadow_copy.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_shadow_copy.8 ++++ samba-3.3.0/docs/manpages/vfs_shadow_copy.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_shadow_copy2.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_shadow_copy2.8 ++++ samba-3.3.0/docs/manpages/vfs_shadow_copy2.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_smb_traffic_analyzer.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_smb_traffic_analyzer.8 ++++ samba-3.3.0/docs/manpages/vfs_smb_traffic_analyzer.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_streams_depot.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_streams_depot.8 ++++ samba-3.3.0/docs/manpages/vfs_streams_depot.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_streams_xattr.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_streams_xattr.8 ++++ samba-3.3.0/docs/manpages/vfs_streams_xattr.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfs_xattr_tdb.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfs_xattr_tdb.8 ++++ samba-3.3.0/docs/manpages/vfs_xattr_tdb.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/vfstest.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/vfstest.1 ++++ samba-3.3.0/docs/manpages/vfstest.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/wbinfo.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/wbinfo.1 ++++ samba-3.3.0/docs/manpages/wbinfo.1 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/winbind_krb5_locator.7 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/winbind_krb5_locator.7 ++++ samba-3.3.0/docs/manpages/winbind_krb5_locator.7 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) +Index: samba-3.3.0/docs/manpages/winbindd.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/winbindd.8 ++++ samba-3.3.0/docs/manpages/winbindd.8 +@@ -33,7 +33,6 @@ + .\" SH - level-one heading that works better for non-TTY output + .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + .de1 SH +-.\" put an extra blank line of space above the head in non-TTY output + .if t \{\ + .sp 1 + .\} +@@ -48,7 +47,6 @@ + .it 1 an-trap + .nr an-no-space-flag 1 + .nr an-break-flag 1 +-\." make the size of the head bigger + .ps +3 + .ft B + .ne (2v + 1u) +@@ -82,7 +80,6 @@ + .nr an-no-space-flag 1 + .nr an-break-flag 1 + .ps \\n[PS-SS]u +-\." make the size of the head bigger + .ps +2 + .ft B + .ne (2v + 1u) --- samba-3.3.0.orig/debian/patches/fhs-filespaths.patch +++ samba-3.3.0/debian/patches/fhs-filespaths.patch @@ -0,0 +1,100 @@ +Goal: Prepare the sources to better respect FHS + New configurable paths are introduced in fhs-newpaths.patch + This patch associates files with the new paths + This part seems acceptable by upstream + +Fixes: #49011 + +Status wrt upstream: This is a greatly reduced patch; most of the + changes are already accepted upstream in 3.2, only + three bits remain: two need further analysis because + Debian use of lp_private_dir() differs from that on + other distros, the other is a newly-introduced tdb + that went in the wrong dir + +Note: Use dedicated directories for: + - discardable cache data (/var/cache/samba): + browse.dat, printers.tbd, .tdb + - non discardable state data: + all TDB files that may need to be backed up + - shared data (/usr/share/samba): + codepage stuff + + This patch needs work to be cleaner wrt people who want to run + multiple instances of samba + + The patch *must* be reviewed after every new upstream release. + FAILURE TO DO SO MAY RESULT IN DATA LOSS FOR OUR USERS! + + export QUILT_PATCHES=debian/patches + quilt push fhs.patch + grep -r lock_path source/ | grep -vE \ + '"((brlock|connections|gencache|locking|messages|notify|sessionid|unexpected|wins|mutex)\.tdb|namelist.debug|lang_)|char \*lock_path|WINBINDD_PRIV_SOCKET_SUBDIR' + + - This will get you the list of any new, unexpected references to + lock_path. The files mentioned above are the known good uses of + lock_path; everything else needs to be investigated. + - If the file name occurs elsewhere in the fhs.patch, update the + patch to fix these new references to the same place (either + cache_path or state_path) + - If the file is a tdb file, and the code that opens it uses + TDB_CLEAR_IF_FIRST, lock_path is correct; just update the query + above with the new filename, no other changes are needed. + - Otherwise, if this is the first use of the file, you must + determine where the file belongs -- i.e., whether it's + persistent data, a cache, or runtime-only data. Consult + upstream if necessary. + - Repeat these steps for lp_lockdir(), which is less common but + still used in the code. + + grep -r lp_lockdir source/ | grep -vE \ + '%s/smb_(tmp_)*krb5|source/(lib/util|param/loadparm|dynconfig|utils/testparm|smbd/oplock_irix)\.c|WINBINDD_PRIV_SOCKET_SUBDIR|(directory_exist|mkdir)\(lp_lockdir\(\),|koplock\.%d|%s/sync\.%d' + +Index: samba-3.3.0rc2/source/passdb/pdb_tdb.c +=================================================================== +--- samba-3.3.0rc2.orig/source/passdb/pdb_tdb.c ++++ samba-3.3.0rc2/source/passdb/pdb_tdb.c +@@ -1613,7 +1613,7 @@ + /* save the path for later */ + + if (!location) { +- if (asprintf(&tdbfile, "%s/%s", lp_private_dir(), ++ if (asprintf(&tdbfile, "%s/%s", get_dyn_STATEDIR(), + PASSDB_FILE_NAME) < 0) { + return NT_STATUS_NO_MEMORY; + } +Index: samba-3.3.0rc2/source/modules/vfs_xattr_tdb.c +=================================================================== +--- samba-3.3.0rc2.orig/source/modules/vfs_xattr_tdb.c ++++ samba-3.3.0rc2/source/modules/vfs_xattr_tdb.c +@@ -576,7 +576,7 @@ + const char *dbname; + + dbname = lp_parm_const_string(snum, "xattr_tdb", "file", +- lock_path("xattr.tdb")); ++ state_path("xattr.tdb")); + + if (dbname == NULL) { + errno = ENOSYS; +Index: samba-3.3.0rc2/source/passdb/secrets.c +=================================================================== +--- samba-3.3.0rc2.orig/source/passdb/secrets.c ++++ samba-3.3.0rc2/source/passdb/secrets.c +@@ -59,7 +59,7 @@ + return True; + + fname = talloc_asprintf(talloc_tos(), "%s/secrets.tdb", +- lp_private_dir()); ++ get_dyn_STATEDIR()); + if (fname == NULL) { + return false; + } +@@ -1113,7 +1113,7 @@ + TDB_DATA vers; + uint32 ver; + TDB_CONTEXT *tdb_sc = NULL; +- char *fname = talloc_asprintf(mem_ctx, "%s/schannel_store.tdb", lp_private_dir()); ++ char *fname = talloc_asprintf(mem_ctx, "%s/schannel_store.tdb", get_dyn_STATEDIR()); + + if (!fname) { + return NULL; --- samba-3.3.0.orig/debian/patches/smbtar-bashism.patch +++ samba-3.3.0/debian/patches/smbtar-bashism.patch @@ -0,0 +1,23 @@ +Goal: Avoid using bashism in smbtar + +Status wrt upstream: Debian-specific. + +Fixes: #486056 + +Author: Jelmer Vernooij + +Note: + +Index: samba-3.3.0rc2/source/script/smbtar +=================================================================== +--- samba-3.3.0rc2.orig/source/script/smbtar ++++ samba-3.3.0rc2/source/script/smbtar +@@ -151,7 +151,7 @@ + if [ -z "$verbose" ]; then + echo "server is $server" + # echo "share is $service" +- echo "share is $service\\$cdcmd" ++ printf "share is %s\\%s\n" "$service" "$cdcmd" + echo "tar args is $tarargs" + # echo "password is $password" # passwords should never be sent to screen + echo "tape is $tapefile" --- samba-3.3.0.orig/debian/patches/series +++ samba-3.3.0/debian/patches/series @@ -0,0 +1,22 @@ +documentation.patch +fhs-filespaths.patch +fhs-filespaths-debatable.patch +fhs-assignpaths.patch +installswat.sh.patch +non-linux-ports.patch +pam-examples.patch +README_nosmbldap-tools.patch +smbclient-pager.patch +undefined-symbols.patch +VERSION.patch +adapt_machine_creation_script.patch +proper-static-lib-linking.patch +autoconf.patch +smbpasswd-syslog.patch +usershare.patch +swat-de.patch +smbtar-bashism.patch +no-unnecessary-cups.patch +shrink-dead-code.patch +fix-manpages-warnings.patch +last-char-truncation.patch --- samba-3.3.0.orig/debian/patches/non-linux-ports.patch +++ samba-3.3.0/debian/patches/non-linux-ports.patch @@ -0,0 +1,73 @@ +Goal: Support non Linux ports + +Fixes: 266693 + +Status wrt upstream: Forwarded, will be in 3.0.26 + +Note: Upstream would probably welcome patches allowing to build on new architectures. + As this patch is the most often broken by new upstream releases, everybody would benefit from it. + +Index: samba-3.3.0rc2/source/configure.in +=================================================================== +--- samba-3.3.0rc2.orig/source/configure.in ++++ samba-3.3.0rc2/source/configure.in +@@ -553,6 +553,15 @@ + fi + ;; + ++# Systems with LFS support. ++# ++ gnu* | k*bsd*-gnu) ++ CPPFLAGS="-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE $CPPFLAGS" ++ AC_DEFINE(_LARGEFILE64_SOURCE, 1, [Whether to enable large file support]) ++ AC_DEFINE(_FILE_OFFSET_BITS, 64, [File offset bits]) ++ AC_DEFINE(_GNU_SOURCE, 1, [Whether to use GNU libc extensions]) ++ ;; ++ + # Tests for linux LFS support. Need kernel 2.4 and glibc2.2 or greater support. + # + *linux*) +@@ -1222,7 +1231,7 @@ + # + # + case "$host_os" in +- *linux*) ++ linux*-gnu* | gnu* | k*bsd*-gnu) + # glibc <= 2.3.2 has a broken getgrouplist + AC_TRY_RUN([ + #include +@@ -1656,7 +1665,10 @@ + + # and these are for particular systems + case "$host_os" in +- *linux*) AC_DEFINE(LINUX,1,[Whether the host os is linux]) ++ linux*-gnu* | gnu* | k*bsd*-gnu) ++ case "$host_os" in linux*) ++ AC_DEFINE(LINUX,1,[Whether the host os is linux]) ;; ++ esac + BLDSHARED="true" + if test "${ac_cv_gnu_ld_no_default_allow_shlib_undefined}" = "yes"; then + LDSHFLAGS="-shared -Wl,-Bsymbolic -Wl,--allow-shlib-undefined" +@@ -5375,7 +5387,7 @@ + AC_MSG_RESULT(yes); + + case "$host_os" in +- *linux*) ++ linux*-gnu* | gnu* | k*bsd*-gnu) + AC_CACHE_CHECK([for linux sendfile64 support],samba_cv_HAVE_SENDFILE64,[ + AC_TRY_LINK([#include ], + [\ +@@ -5701,11 +5713,11 @@ + WINBIND_NSS_PTHREAD="" + + case "$host_os" in +- *linux*) ++ linux*-gnu* | gnu* | k*bsd*-gnu) + NSSSONAMEVERSIONSUFFIX=".2" + WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_linux.o" + ;; +- *freebsd[[5-9]]*) ++ freebsd5*|*freebsd[[6-9]]*) + # FreeBSD winbind client is implemented as a wrapper around + # the Linux version. + NSSSONAMEVERSIONSUFFIX=".1" --- samba-3.3.0.orig/debian/patches/smbpasswd-syslog.patch +++ samba-3.3.0/debian/patches/smbpasswd-syslog.patch @@ -0,0 +1,589 @@ +Goal: Don't call openlog() or closelog() from pam_smbpass + +Fixes: bug #434372 + +Upstream status: submitted as bugzilla bug #4831 + +Index: samba-3.3.0rc2/source/pam_smbpass/support.c +=================================================================== +--- samba-3.3.0rc2.orig/source/pam_smbpass/support.c ++++ samba-3.3.0rc2/source/pam_smbpass/support.c +@@ -14,6 +14,7 @@ + * this program; if not, see . + */ + ++#include "config.h" + #include "includes.h" + #include "general.h" + +@@ -62,17 +63,42 @@ + char *_pam_delete(register char *); + + /* syslogging function for errors and other information */ +- +-void _log_err( int err, const char *format, ... ) ++#ifdef HAVE_PAM_VSYSLOG ++void _log_err( pam_handle_t *pamh, int err, const char *format, ... ) + { +- va_list args; ++ va_list args; ++ ++ va_start(args, format); ++ pam_vsyslog(pamh, err, format, args); ++ va_end(args); ++} ++#else ++void _log_err( pam_handle_t *pamh, int err, const char *format, ... ) ++{ ++ va_list args; ++ const char tag[] = "(pam_smbpass) "; ++ char *mod_format; ++ ++ mod_format = SMB_MALLOC_ARRAY(char, sizeof(tag) + strlen(format)); ++ /* try really, really hard to log something, since this may have ++ been a message about a malloc() failure... */ ++ if (mod_format == NULL) { ++ va_start(args, format); ++ vsyslog(err | LOG_AUTH, format, args); ++ va_end(args); ++ return; ++ } ++ ++ strncpy(mod_format, tag, strlen(tag)+1); ++ strncat(mod_format, format, strlen(format)); ++ ++ va_start(args, format); ++ vsyslog(err | LOG_AUTH, mod_format, args); ++ va_end(args); + +- va_start( args, format ); +- openlog( "PAM_smbpass", LOG_CONS | LOG_PID, LOG_AUTH ); +- vsyslog( err, format, args ); +- va_end( args ); +- closelog(); ++ free(mod_format); + } ++#endif + + /* this is a front-end for module-application conversations */ + +@@ -90,11 +116,11 @@ + ,response, conv->appdata_ptr); + + if (retval != PAM_SUCCESS && on(SMB_DEBUG, ctrl)) { +- _log_err(LOG_DEBUG, "conversation failure [%s]" ++ _log_err(pamh, LOG_DEBUG, "conversation failure [%s]" + ,pam_strerror(pamh, retval)); + } + } else { +- _log_err(LOG_ERR, "couldn't obtain coversation function [%s]" ++ _log_err(pamh, LOG_ERR, "couldn't obtain coversation function [%s]" + ,pam_strerror(pamh, retval)); + } + +@@ -121,7 +147,7 @@ + + /* set the control flags for the SMB module. */ + +-int set_ctrl( int flags, int argc, const char **argv ) ++int set_ctrl( pam_handle_t *pamh, int flags, int argc, const char **argv ) + { + int i = 0; + const char *service_file = NULL; +@@ -163,7 +189,7 @@ + /* Read some options from the Samba config. Can be overridden by + the PAM config. */ + if(lp_load(service_file,True,False,False,True) == False) { +- _log_err( LOG_ERR, "Error loading service file %s", service_file ); ++ _log_err(pamh, LOG_ERR, "Error loading service file %s", service_file); + } + + secrets_init(); +@@ -186,7 +212,7 @@ + } + + if (j >= SMB_CTRLS_) { +- _log_err( LOG_ERR, "unrecognized option [%s]", *argv ); ++ _log_err(pamh, LOG_ERR, "unrecognized option [%s]", *argv); + } else { + ctrl &= smb_args[j].mask; /* for turning things off */ + ctrl |= smb_args[j].flag; /* for turning things on */ +@@ -225,7 +251,7 @@ + * evidence of old token around for later stack analysis. + * + */ +-char * smbpXstrDup( const char *x ) ++char * smbpXstrDup( pam_handle_t *pamh, const char *x ) + { + register char *newstr = NULL; + +@@ -235,7 +261,7 @@ + for (i = 0; x[i]; ++i); /* length of string */ + if ((newstr = SMB_MALLOC_ARRAY(char, ++i)) == NULL) { + i = 0; +- _log_err( LOG_CRIT, "out of memory in smbpXstrDup" ); ++ _log_err(pamh, LOG_CRIT, "out of memory in smbpXstrDup"); + } else { + while (i-- > 0) { + newstr[i] = x[i]; +@@ -277,7 +303,7 @@ + /* log the number of authentication failures */ + if (failure->count != 0) { + pam_get_item( pamh, PAM_SERVICE, (const void **) &service ); +- _log_err( LOG_NOTICE ++ _log_err(pamh, LOG_NOTICE + , "%d authentication %s " + "from %s for service %s as %s(%d)" + , failure->count +@@ -286,7 +312,7 @@ + , service == NULL ? "**unknown**" : service + , failure->user, failure->id ); + if (failure->count > SMB_MAX_RETRIES) { +- _log_err( LOG_ALERT ++ _log_err(pamh, LOG_ALERT + , "service(%s) ignoring max retries; %d > %d" + , service == NULL ? "**unknown**" : service + , failure->count +@@ -322,8 +348,7 @@ + + if (!pdb_get_nt_passwd(sampass)) + { +- _log_err( LOG_DEBUG, "user %s has null SMB password" +- , name ); ++ _log_err(pamh, LOG_DEBUG, "user %s has null SMB password", name); + + if (off( SMB__NONULL, ctrl ) + && (pdb_get_acct_ctrl(sampass) & ACB_PWNOTREQ)) +@@ -333,7 +358,7 @@ + const char *service; + + pam_get_item( pamh, PAM_SERVICE, (const void **)&service ); +- _log_err( LOG_NOTICE, "failed auth request by %s for service %s as %s", ++ _log_err(pamh, LOG_NOTICE, "failed auth request by %s for service %s as %s", + uidtoname(getuid()), service ? service : "**unknown**", name); + return PAM_AUTH_ERR; + } +@@ -341,7 +366,7 @@ + + data_name = SMB_MALLOC_ARRAY(char, sizeof(FAIL_PREFIX) + strlen( name )); + if (data_name == NULL) { +- _log_err( LOG_CRIT, "no memory for data-name" ); ++ _log_err(pamh, LOG_CRIT, "no memory for data-name" ); + return PAM_AUTH_ERR; + } + strncpy( data_name, FAIL_PREFIX, sizeof(FAIL_PREFIX) ); +@@ -388,31 +413,31 @@ + retval = PAM_MAXTRIES; + } + } else { +- _log_err(LOG_NOTICE, ++ _log_err(pamh, LOG_NOTICE, + "failed auth request by %s for service %s as %s", + uidtoname(getuid()), + service ? service : "**unknown**", name); + newauth->count = 1; + } + if (!sid_to_uid(pdb_get_user_sid(sampass), &(newauth->id))) { +- _log_err(LOG_NOTICE, ++ _log_err(pamh, LOG_NOTICE, + "failed auth request by %s for service %s as %s", + uidtoname(getuid()), + service ? service : "**unknown**", name); + } +- newauth->user = smbpXstrDup( name ); +- newauth->agent = smbpXstrDup( uidtoname( getuid() ) ); ++ newauth->user = smbpXstrDup( pamh, name ); ++ newauth->agent = smbpXstrDup( pamh, uidtoname( getuid() ) ); + pam_set_data( pamh, data_name, newauth, _cleanup_failures ); + + } else { +- _log_err( LOG_CRIT, "no memory for failure recorder" ); +- _log_err(LOG_NOTICE, ++ _log_err(pamh, LOG_CRIT, "no memory for failure recorder" ); ++ _log_err(pamh, LOG_NOTICE, + "failed auth request by %s for service %s as %s(%d)", + uidtoname(getuid()), + service ? service : "**unknown**", name); + } + } +- _log_err(LOG_NOTICE, ++ _log_err(pamh, LOG_NOTICE, + "failed auth request by %s for service %s as %s(%d)", + uidtoname(getuid()), + service ? service : "**unknown**", name); +@@ -488,8 +513,8 @@ + retval = pam_get_item( pamh, authtok_flag, (const void **) &item ); + if (retval != PAM_SUCCESS) { + /* very strange. */ +- _log_err( LOG_ALERT +- , "pam_get_item returned error to smb_read_password" ); ++ _log_err(pamh, LOG_ALERT, ++ "pam_get_item returned error to smb_read_password"); + return retval; + } else if (item != NULL) { /* we have a password! */ + *pass = item; +@@ -541,7 +566,7 @@ + + if (retval == PAM_SUCCESS) { /* a good conversation */ + +- token = smbpXstrDup(resp[j++].resp); ++ token = smbpXstrDup(pamh, resp[j++].resp); + if (token != NULL) { + if (expect == 2) { + /* verify that password entered correctly */ +@@ -553,7 +578,8 @@ + } + } + } else { +- _log_err(LOG_NOTICE, "could not recover authentication token"); ++ _log_err(pamh, LOG_NOTICE, ++ "could not recover authentication token"); + } + } + +@@ -566,7 +592,7 @@ + + if (retval != PAM_SUCCESS) { + if (on( SMB_DEBUG, ctrl )) +- _log_err( LOG_DEBUG, "unable to obtain a password" ); ++ _log_err(pamh, LOG_DEBUG, "unable to obtain a password"); + return retval; + } + /* 'token' is the entered password */ +@@ -581,7 +607,7 @@ + || (retval = pam_get_item( pamh, authtok_flag + ,(const void **)&item )) != PAM_SUCCESS) + { +- _log_err( LOG_CRIT, "error manipulating password" ); ++ _log_err(pamh, LOG_CRIT, "error manipulating password"); + return retval; + } + } else { +@@ -595,8 +621,8 @@ + || (retval = pam_get_data( pamh, data_name, (const void **)&item )) + != PAM_SUCCESS) + { +- _log_err( LOG_CRIT, "error manipulating password data [%s]" +- , pam_strerror( pamh, retval )); ++ _log_err(pamh, LOG_CRIT, "error manipulating password data [%s]", ++ pam_strerror( pamh, retval )); + _pam_delete( token ); + item = NULL; + return retval; +@@ -620,8 +646,8 @@ + if (pass_new == NULL || (pass_old && !strcmp( pass_old, pass_new ))) + { + if (on(SMB_DEBUG, ctrl)) { +- _log_err( LOG_DEBUG, +- "passwd: bad authentication token (null or unchanged)" ); ++ _log_err(pamh, LOG_DEBUG, ++ "passwd: bad authentication token (null or unchanged)"); + } + make_remark( pamh, ctrl, PAM_ERROR_MSG, pass_new == NULL ? + "No password supplied" : "Password unchanged" ); +Index: samba-3.3.0rc2/source/pam_smbpass/pam_smb_auth.c +=================================================================== +--- samba-3.3.0rc2.orig/source/pam_smbpass/pam_smb_auth.c ++++ samba-3.3.0rc2/source/pam_smbpass/pam_smb_auth.c +@@ -81,10 +81,9 @@ + + /* Samba initialization. */ + load_case_tables(); +- setup_logging("pam_smbpass",False); + lp_set_in_client(True); + +- ctrl = set_ctrl(flags, argc, argv); ++ ctrl = set_ctrl(pamh, flags, argc, argv); + + /* Get a few bytes so we can pass our return value to + pam_sm_setcred(). */ +@@ -99,29 +98,29 @@ + retval = pam_get_user( pamh, &name, "Username: " ); + if ( retval != PAM_SUCCESS ) { + if (on( SMB_DEBUG, ctrl )) { +- _log_err(LOG_DEBUG, "auth: could not identify user"); ++ _log_err(pamh, LOG_DEBUG, "auth: could not identify user"); + } + AUTH_RETURN; + } + if (on( SMB_DEBUG, ctrl )) { +- _log_err( LOG_DEBUG, "username [%s] obtained", name ); ++ _log_err(pamh, LOG_DEBUG, "username [%s] obtained", name ); + } + + if (geteuid() != 0) { +- _log_err( LOG_DEBUG, "Cannot access samba password database, not running as root."); ++ _log_err(pamh, LOG_DEBUG, "Cannot access samba password database, not running as root."); + retval = PAM_AUTHINFO_UNAVAIL; + AUTH_RETURN; + } + + if (!initialize_password_db(True, NULL)) { +- _log_err( LOG_ALERT, "Cannot access samba password database" ); ++ _log_err(pamh, LOG_ALERT, "Cannot access samba password database" ); + retval = PAM_AUTHINFO_UNAVAIL; + AUTH_RETURN; + } + + sampass = samu_new( NULL ); + if (!sampass) { +- _log_err( LOG_ALERT, "Cannot talloc a samu struct" ); ++ _log_err(pamh, LOG_ALERT, "Cannot talloc a samu struct" ); + retval = nt_status_to_pam(NT_STATUS_NO_MEMORY); + AUTH_RETURN; + } +@@ -135,7 +134,7 @@ + } + + if (!found) { +- _log_err(LOG_ALERT, "Failed to find entry for user %s.", name); ++ _log_err(pamh, LOG_ALERT, "Failed to find entry for user %s.", name); + retval = PAM_USER_UNKNOWN; + TALLOC_FREE(sampass); + sampass = NULL; +@@ -154,7 +153,7 @@ + + retval = _smb_read_password(pamh, ctrl, NULL, "Password: ", NULL, _SMB_AUTHTOK, &p); + if (retval != PAM_SUCCESS ) { +- _log_err(LOG_CRIT, "auth: no password provided for [%s]", name); ++ _log_err(pamh,LOG_CRIT, "auth: no password provided for [%s]", name); + TALLOC_FREE(sampass); + AUTH_RETURN; + } +@@ -202,7 +201,7 @@ + retval = pam_get_item( pamh, PAM_AUTHTOK, (const void **) &pass ); + + if (retval != PAM_SUCCESS) { +- _log_err( LOG_ALERT ++ _log_err(pamh, LOG_ALERT + , "pam_get_item returned error to pam_sm_authenticate" ); + return PAM_AUTHTOK_RECOVER_ERR; + } else if (pass == NULL) { +Index: samba-3.3.0rc2/source/pam_smbpass/pam_smb_acct.c +=================================================================== +--- samba-3.3.0rc2.orig/source/pam_smbpass/pam_smb_acct.c ++++ samba-3.3.0rc2/source/pam_smbpass/pam_smb_acct.c +@@ -58,26 +58,25 @@ + + /* Samba initialization. */ + load_case_tables(); +- setup_logging( "pam_smbpass", False ); + lp_set_in_client(True); + +- ctrl = set_ctrl( flags, argc, argv ); ++ ctrl = set_ctrl(pamh, flags, argc, argv ); + + /* get the username */ + + retval = pam_get_user( pamh, &name, "Username: " ); + if (retval != PAM_SUCCESS) { + if (on( SMB_DEBUG, ctrl )) { +- _log_err( LOG_DEBUG, "acct: could not identify user" ); ++ _log_err(pamh, LOG_DEBUG, "acct: could not identify user" ); + } + return retval; + } + if (on( SMB_DEBUG, ctrl )) { +- _log_err( LOG_DEBUG, "acct: username [%s] obtained", name ); ++ _log_err(pamh, LOG_DEBUG, "acct: username [%s] obtained", name ); + } + + if (geteuid() != 0) { +- _log_err( LOG_DEBUG, "Cannot access samba password database, not running as root."); ++ _log_err(pamh, LOG_DEBUG, "Cannot access samba password database, not running as root."); + return PAM_AUTHINFO_UNAVAIL; + } + +@@ -85,7 +84,7 @@ + from a SIGPIPE it's not expecting */ + oldsig_handler = CatchSignal(SIGPIPE, SIGNAL_CAST SIG_IGN); + if (!initialize_password_db(True, NULL)) { +- _log_err( LOG_ALERT, "Cannot access samba password database" ); ++ _log_err(pamh, LOG_ALERT, "Cannot access samba password database" ); + CatchSignal(SIGPIPE, SIGNAL_CAST oldsig_handler); + return PAM_AUTHINFO_UNAVAIL; + } +@@ -99,7 +98,7 @@ + } + + if (!pdb_getsampwnam(sampass, name )) { +- _log_err( LOG_DEBUG, "acct: could not identify user" ); ++ _log_err(pamh, LOG_DEBUG, "acct: could not identify user"); + CatchSignal(SIGPIPE, SIGNAL_CAST oldsig_handler); + return PAM_USER_UNKNOWN; + } +@@ -112,8 +111,8 @@ + + if (pdb_get_acct_ctrl(sampass) & ACB_DISABLED) { + if (on( SMB_DEBUG, ctrl )) { +- _log_err( LOG_DEBUG +- , "acct: account %s is administratively disabled", name ); ++ _log_err(pamh, LOG_DEBUG, ++ "acct: account %s is administratively disabled", name); + } + make_remark( pamh, ctrl, PAM_ERROR_MSG + , "Your account has been disabled; " +Index: samba-3.3.0rc2/source/pam_smbpass/pam_smb_passwd.c +=================================================================== +--- samba-3.3.0rc2.orig/source/pam_smbpass/pam_smb_passwd.c ++++ samba-3.3.0rc2/source/pam_smbpass/pam_smb_passwd.c +@@ -106,10 +106,9 @@ + + /* Samba initialization. */ + load_case_tables(); +- setup_logging( "pam_smbpass", False ); + lp_set_in_client(True); + +- ctrl = set_ctrl(flags, argc, argv); ++ ctrl = set_ctrl(pamh, flags, argc, argv); + + /* + * First get the name of a user. No need to do anything if we can't +@@ -119,16 +118,16 @@ + retval = pam_get_user( pamh, &user, "Username: " ); + if (retval != PAM_SUCCESS) { + if (on( SMB_DEBUG, ctrl )) { +- _log_err( LOG_DEBUG, "password: could not identify user" ); ++ _log_err(pamh, LOG_DEBUG, "password: could not identify user"); + } + return retval; + } + if (on( SMB_DEBUG, ctrl )) { +- _log_err( LOG_DEBUG, "username [%s] obtained", user ); ++ _log_err(pamh, LOG_DEBUG, "username [%s] obtained", user); + } + + if (geteuid() != 0) { +- _log_err( LOG_DEBUG, "Cannot access samba password database, not running as root."); ++ _log_err(pamh, LOG_DEBUG, "Cannot access samba password database, not running as root."); + return PAM_AUTHINFO_UNAVAIL; + } + +@@ -137,7 +136,7 @@ + oldsig_handler = CatchSignal(SIGPIPE, SIGNAL_CAST SIG_IGN); + + if (!initialize_password_db(False, NULL)) { +- _log_err( LOG_ALERT, "Cannot access samba password database" ); ++ _log_err(pamh, LOG_ALERT, "Cannot access samba password database" ); + CatchSignal(SIGPIPE, SIGNAL_CAST oldsig_handler); + return PAM_AUTHINFO_UNAVAIL; + } +@@ -149,12 +148,12 @@ + } + + if (!pdb_getsampwnam(sampass,user)) { +- _log_err( LOG_ALERT, "Failed to find entry for user %s.", user ); ++ _log_err(pamh, LOG_ALERT, "Failed to find entry for user %s.", user); + CatchSignal(SIGPIPE, SIGNAL_CAST oldsig_handler); + return PAM_USER_UNKNOWN; + } + if (on( SMB_DEBUG, ctrl )) { +- _log_err( LOG_DEBUG, "Located account for %s", user ); ++ _log_err(pamh, LOG_DEBUG, "Located account for %s", user); + } + + if (flags & PAM_PRELIM_CHECK) { +@@ -180,7 +179,7 @@ + #define greeting "Changing password for " + Announce = SMB_MALLOC_ARRAY(char, sizeof(greeting)+strlen(user)); + if (Announce == NULL) { +- _log_err(LOG_CRIT, "password: out of memory"); ++ _log_err(pamh, LOG_CRIT, "password: out of memory"); + TALLOC_FREE(sampass); + CatchSignal(SIGPIPE, SIGNAL_CAST oldsig_handler); + return PAM_BUF_ERR; +@@ -195,8 +194,8 @@ + SAFE_FREE( Announce ); + + if (retval != PAM_SUCCESS) { +- _log_err( LOG_NOTICE +- , "password - (old) token not obtained" ); ++ _log_err(pamh, LOG_NOTICE, ++ "password - (old) token not obtained"); + TALLOC_FREE(sampass); + CatchSignal(SIGPIPE, SIGNAL_CAST oldsig_handler); + return retval; +@@ -241,7 +240,7 @@ + } + + if (retval != PAM_SUCCESS) { +- _log_err( LOG_NOTICE, "password: user not authenticated" ); ++ _log_err(pamh, LOG_NOTICE, "password: user not authenticated"); + TALLOC_FREE(sampass); + CatchSignal(SIGPIPE, SIGNAL_CAST oldsig_handler); + return retval; +@@ -266,8 +265,8 @@ + + if (retval != PAM_SUCCESS) { + if (on( SMB_DEBUG, ctrl )) { +- _log_err( LOG_ALERT +- , "password: new password not obtained" ); ++ _log_err(pamh, LOG_ALERT, ++ "password: new password not obtained"); + } + pass_old = NULL; /* tidy up */ + TALLOC_FREE(sampass); +@@ -288,7 +287,7 @@ + retval = _pam_smb_approve_pass(pamh, ctrl, pass_old, pass_new); + + if (retval != PAM_SUCCESS) { +- _log_err(LOG_NOTICE, "new password not acceptable"); ++ _log_err(pamh, LOG_NOTICE, "new password not acceptable"); + pass_new = pass_old = NULL; /* tidy up */ + TALLOC_FREE(sampass); + CatchSignal(SIGPIPE, SIGNAL_CAST oldsig_handler); +@@ -308,16 +307,17 @@ + + /* password updated */ + if (!sid_to_uid(pdb_get_user_sid(sampass), &uid)) { +- _log_err( LOG_NOTICE, "Unable to get uid for user %s", ++ _log_err(pamh, LOG_NOTICE, ++ "Unable to get uid for user %s", + pdb_get_username(sampass)); +- _log_err( LOG_NOTICE, "password for (%s) changed by (%s/%d)", ++ _log_err(pamh, LOG_NOTICE, "password for (%s) changed by (%s/%d)", + user, uidtoname(getuid()), getuid()); + } else { +- _log_err( LOG_NOTICE, "password for (%s/%d) changed by (%s/%d)", ++ _log_err(pamh, LOG_NOTICE, "password for (%s/%d) changed by (%s/%d)", + user, uid, uidtoname(getuid()), getuid()); + } + } else { +- _log_err( LOG_ERR, "password change failed for user %s", user); ++ _log_err(pamh, LOG_ERR, "password change failed for user %s", user); + } + + pass_old = pass_new = NULL; +@@ -328,7 +328,7 @@ + + } else { /* something has broken with the library */ + +- _log_err( LOG_ALERT, "password received unknown request" ); ++ _log_err(pamh, LOG_ALERT, "password received unknown request"); + retval = PAM_ABORT; + + } +Index: samba-3.3.0rc2/source/pam_smbpass/support.h +=================================================================== +--- samba-3.3.0rc2.orig/source/pam_smbpass/support.h ++++ samba-3.3.0rc2/source/pam_smbpass/support.h +@@ -1,8 +1,8 @@ + /* syslogging function for errors and other information */ +-extern void _log_err(int, const char *, ...); ++extern void _log_err(pam_handle_t *, int, const char *, ...); + + /* set the control flags for the UNIX module. */ +-extern int set_ctrl(int, int, const char **); ++extern int set_ctrl(pam_handle_t *, int, int, const char **); + + /* generic function for freeing pam data segments */ + extern void _cleanup(pam_handle_t *, void *, int); +@@ -12,7 +12,7 @@ + * evidence of old token around for later stack analysis. + */ + +-extern char *smbpXstrDup(const char *); ++extern char *smbpXstrDup(pam_handle_t *,const char *); + + /* ************************************************************** * + * Useful non-trivial functions * --- samba-3.3.0.orig/debian/patches/pam-examples.patch +++ samba-3.3.0/debian/patches/pam-examples.patch @@ -0,0 +1,21 @@ +Goal: The pam_smbpass examples are not in samples/ but examples/ + +Fixes: ? + +Status wrt upstream: Debian specific + +Note: + +Index: samba-3.3.0rc2/source/pam_smbpass/README +=================================================================== +--- samba-3.3.0rc2.orig/source/pam_smbpass/README ++++ samba-3.3.0rc2/source/pam_smbpass/README +@@ -37,7 +37,7 @@ + smbconf= - specify an alternate path to the smb.conf + file. + +-See the samples/ directory for example PAM configurations using this ++See the examples/ directory for example PAM configurations using this + module. + + Thanks go to the following people: --- samba-3.3.0.orig/debian/patches/VERSION.patch +++ samba-3.3.0/debian/patches/VERSION.patch @@ -0,0 +1,21 @@ +Goal: Add "Debian" as vendor suffix + +Fixes: nothing + +Status wrt upstream: Debian specific + +Note: Should be kept + +Index: samba-3.3.0rc2/source/VERSION +=================================================================== +--- samba-3.3.0rc2.orig/source/VERSION ++++ samba-3.3.0rc2/source/VERSION +@@ -84,7 +84,7 @@ + # SAMBA_VERSION_VENDOR_FUNCTION # + # # + ######################################################## +-SAMBA_VERSION_VENDOR_SUFFIX= ++SAMBA_VERSION_VENDOR_SUFFIX="Ubuntu" + SAMBA_VERSION_VENDOR_PATCH= + + ######################################################## --- samba-3.3.0.orig/debian/patches/installswat.sh.patch +++ samba-3.3.0/debian/patches/installswat.sh.patch @@ -0,0 +1,25 @@ +Goal: Do not install the Using Samba book when installing SWAT + +Fixes: + +Status wrt upstream: Debian specific + +Note: + +Index: samba-3.3.0rc2/source/script/installswat.sh +=================================================================== +--- samba-3.3.0rc2.orig/source/script/installswat.sh ++++ samba-3.3.0rc2/source/script/installswat.sh +@@ -198,7 +198,11 @@ + + # Install/ remove Using Samba book (but only if it is there) + +-if [ "x$BOOKDIR" != "x" -a -f $SRCDIR../docs/htmldocs/using_samba/toc.html ]; then ++# Under Debian we don't actually install the book. The book is part of ++# the samba-doc package, so we just provide a symlink that points to ++# where the book is actually installed. The symlink is created in ++# debian/rules. ++if /bin/false; then + + # Create directories + --- samba-3.3.0.orig/debian/patches/swat-de.patch +++ samba-3.3.0/debian/patches/swat-de.patch @@ -0,0 +1,834 @@ +Goal: Localize SWAT in German entirely + +Fixes: bug #487681 + +Upstream status: should be forwarded (however, a translation round + was made a while ago, which is rotting in upstream's BTS) + +Index: samba-3.3.0rc2/source/po/de.msg +=================================================================== +--- samba-3.3.0rc2.orig/source/po/de.msg ++++ samba-3.3.0rc2/source/po/de.msg +@@ -1,5 +1,6 @@ + # German messages for international release of SWAT. + # Copyright (C) 2001 Andreas Moroder ++# Copyright (C) 2007 Helge Kreutzmann, + # + # 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,577 +17,600 @@ + # + msgid "" + msgstr "" +-"Project-Id-Version: i18n_swat\n" +-"POT-Creation-Date: 2003-10-06 05:30+0900\n" +-"PO-Revision-Date: 2000-02-08 14:45+0100\n" +-"Last-Translator: Andreas Moroder\n" +-"Language-Team: (Samba Team) \n" ++"Project-Id-Version: swat\n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2007-06-04 18:15+0200\n" ++"PO-Revision-Date: 2007-06-10 11:52+0200\n" ++"Last-Translator: Helge Kreutzmann \n" ++"Language-Team: German \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=utf-8\n" + "Content-Transfer-Encoding: 8bit\n" + +-#: ../web/swat.c:117 ++#: ../web/swat.c:139 + #, c-format + msgid "ERROR: Can't open %s" +-msgstr "ERROR: Kann %s nicht öffnen" ++msgstr "FEHLER: Kann %s nicht öffnen" + +-#: ../web/swat.c:200 ++#: ../web/swat.c:223 + msgid "Help" + msgstr "Hilfe" + +-#: ../web/swat.c:206 ../web/swat.c:220 ../web/swat.c:235 ../web/swat.c:243 ../web/swat.c:252 ../web/swat.c:261 ../web/swat.c:267 ../web/swat.c:273 ../web/swat.c:286 ++#: ../web/swat.c:229 ../web/swat.c:254 ../web/swat.c:275 ../web/swat.c:285 ++#: ../web/swat.c:294 ../web/swat.c:303 ../web/swat.c:309 ../web/swat.c:315 ++#: ../web/swat.c:328 + msgid "Set Default" +-msgstr "Standardwert" ++msgstr "Standardwert setzen" + +-#: ../web/swat.c:408 ++#: ../web/swat.c:450 + #, c-format + msgid "failed to open %s for writing" +-msgstr "konnte %s nicht schreiben" ++msgstr "konnte %s nicht zum Schreiben öffnen" + +-#: ../web/swat.c:431 ++#: ../web/swat.c:473 + #, c-format + msgid "Can't reload %s" +-msgstr "" ++msgstr "Kann %s nicht erneut laden" + +-#: ../web/swat.c:501 ++#: ../web/swat.c:543 + #, c-format + msgid "Logged in as %s" + msgstr "Verbunden als %s" + +-#: ../web/swat.c:505 ++#: ../web/swat.c:547 + msgid "Home" + msgstr "Home" + +-#: ../web/swat.c:507 ++#: ../web/swat.c:549 + msgid "Globals" + msgstr "Globals" + +-#: ../web/swat.c:508 ++#: ../web/swat.c:550 + msgid "Shares" + msgstr "Freigaben" + +-#: ../web/swat.c:509 ++#: ../web/swat.c:551 + msgid "Printers" + msgstr "Drucker" + +-#: ../web/swat.c:510 ++#: ../web/swat.c:552 + msgid "Wizard" + msgstr "Assistent" + +-#: ../web/swat.c:513 ++#: ../web/swat.c:556 + msgid "Status" + msgstr "Status" + +-#: ../web/swat.c:514 ++#: ../web/swat.c:557 + msgid "View Config" + msgstr "Zeige Konfiguration" + +-#: ../web/swat.c:516 ++#: ../web/swat.c:559 + msgid "Password Management" + msgstr "Passwortverwaltung" + +-#: ../web/swat.c:526 ++#: ../web/swat.c:569 + msgid "Current View Is" +-msgstr "Aktuelle Konfiguration" ++msgstr "Aktuelle Ansicht lautet" + +-#: ../web/swat.c:527 ../web/swat.c:530 ++#: ../web/swat.c:570 ../web/swat.c:573 + msgid "Basic" + msgstr "Einfache Ansicht" + +-#: ../web/swat.c:528 ../web/swat.c:531 ++#: ../web/swat.c:571 ../web/swat.c:574 + msgid "Advanced" + msgstr "Erweiterte Ansicht" + +-#: ../web/swat.c:529 ++#: ../web/swat.c:572 + msgid "Change View To" +-msgstr "Ansicht anpassen" ++msgstr "Ansicht ändern in" + +-#: ../web/swat.c:554 ++#: ../web/swat.c:601 + msgid "Current Config" + msgstr "Aktuelle Konfiguration" + +-#: ../web/swat.c:558 ++#: ../web/swat.c:605 + msgid "Normal View" + msgstr "Normale Ansicht" + +-#: ../web/swat.c:560 ++#: ../web/swat.c:607 + msgid "Full View" + msgstr "Komplette Ansicht" + + #. Here we first set and commit all the parameters that were selected + #. in the previous screen. +-#: ../web/swat.c:579 ++#: ../web/swat.c:626 + msgid "Wizard Parameter Edit Page" +-msgstr "" ++msgstr "Bearbeitungsseite der Assistenten-Parameter" + +-#: ../web/swat.c:608 ++#: ../web/swat.c:655 + msgid "Note: smb.conf file has been read and rewritten" + msgstr "Hinweis: smb.conf wurde gelesen und überschrieben" + + #. Here we go ... +-#: ../web/swat.c:716 ++#: ../web/swat.c:763 + msgid "Samba Configuration Wizard" +-msgstr "Samba Konfigurations-Assistent" ++msgstr "Samba-Konfigurationsassistent" + +-#: ../web/swat.c:720 +-msgid "The \"Rewrite smb.conf file\" button will clear the smb.conf file of all default values and of comments." +-msgstr "Der Button \"Passe smb.conf an\" wird alle Kommentare und Standardwerte aus der smb.conf löschen." ++#: ../web/swat.c:767 ++msgid "" ++"The \"Rewrite smb.conf file\" button will clear the smb.conf file of all " ++"default values and of comments." ++msgstr "" ++"Der Knopf »Schreibe smb.conf neu« wird alle Kommentare und Standardwerte " ++"aus der smb.conf löschen." + +-#: ../web/swat.c:721 ++#: ../web/swat.c:768 + msgid "The same will happen if you press the commit button." +-msgstr "Das gleiche passiert bei \"übernehmen\"." ++msgstr "Das gleiche passiert beim Knopf ȟbernehmen«." + +-#: ../web/swat.c:724 ++#: ../web/swat.c:771 + msgid "Rewrite smb.conf file" + msgstr "Schreibe smb.conf neu" + +-#: ../web/swat.c:725 ++#: ../web/swat.c:772 + msgid "Commit" +-msgstr "übernehmen" ++msgstr "Ãœbernehmen" + +-#: ../web/swat.c:726 ++#: ../web/swat.c:773 + msgid "Edit Parameter Values" +-msgstr "Bearbeite Parameter" ++msgstr "Bearbeite Parameterwerte" + +-#: ../web/swat.c:732 ++#: ../web/swat.c:779 + msgid "Server Type" + msgstr "Server-Typ" + +-#: ../web/swat.c:733 ++#: ../web/swat.c:780 + msgid "Stand Alone" + msgstr "Einzelserver" + +-#: ../web/swat.c:734 ++#: ../web/swat.c:781 + msgid "Domain Member" +-msgstr "Domänen-Mitglied" ++msgstr "Domänenmitglied" + +-#: ../web/swat.c:735 ++#: ../web/swat.c:782 + msgid "Domain Controller" +-msgstr "Domänen-Controller" ++msgstr "Domänencontroller" + +-#: ../web/swat.c:738 ++#: ../web/swat.c:785 + msgid "Unusual Type in smb.conf - Please Select New Mode" + msgstr "" ++"Ungewöhnlicher Typ in der smb.conf - Bitte wählen Sie einen neuen Modus" + +-#: ../web/swat.c:740 ++#: ../web/swat.c:787 + msgid "Configure WINS As" +-msgstr "Konfiguriere WINS" ++msgstr "Konfiguriere WINS als" + +-#: ../web/swat.c:741 ++#: ../web/swat.c:788 + msgid "Not Used" +-msgstr "nicht benutzt" ++msgstr "Nicht benutzt" + +-#: ../web/swat.c:742 ++#: ../web/swat.c:789 + msgid "Server for client use" +-msgstr "WINS-Server" ++msgstr "Server für Client-Verwendung" + +-#: ../web/swat.c:743 ++#: ../web/swat.c:790 + msgid "Client of another WINS server" +-msgstr "WINS-Client an anderem Server" ++msgstr "Client eines anderen WINS-Servers" + +-#: ../web/swat.c:745 ++#: ../web/swat.c:792 + msgid "Remote WINS Server" +-msgstr "Zuständiger WINS-Server:" ++msgstr "Entfernter WINS-Server:" + +-#: ../web/swat.c:756 ++#: ../web/swat.c:803 + msgid "Error: WINS Server Mode and WINS Support both set in smb.conf" +-msgstr "Fehler: WINS-Server und WINS-Client zugleich in smb.conf gesetzt" ++msgstr "" ++"Fehler: Sowohl WINS-Server-Modus als auch WINS-Unterstützung in smb.conf " ++"aktiviert" + +-#: ../web/swat.c:757 ++#: ../web/swat.c:804 + msgid "Please Select desired WINS mode above." +-msgstr "Bitte wählen Sie den WINS-Modus." ++msgstr "Bitte wählen Sie den gewünschten WINS-Modus oben aus." + +-#: ../web/swat.c:759 ++#: ../web/swat.c:806 + msgid "Expose Home Directories" + msgstr "Home-Verzeichnisse freigeben" + +-#: ../web/swat.c:774 +-msgid "The above configuration options will set multiple parameters and will generally assist with rapid Samba deployment." +-msgstr "Diese Konfigurationsoptionen bearbeiten mehrere Parameter und dienen als Hilfe zur schnellen Samba-Einrichtung." ++#: ../web/swat.c:821 ++msgid "" ++"The above configuration options will set multiple parameters and will " ++"generally assist with rapid Samba deployment." ++msgstr "" ++"Die obigen Konfigurationsoptionen bearbeiten mehrere Parameter und dienen als " ++"Hilfe zur schnellen Samba-Einrichtung." + +-#: ../web/swat.c:787 ++#: ../web/swat.c:834 + msgid "Global Parameters" + msgstr "Globale Parameter" + +-#: ../web/swat.c:815 ../web/swat.c:916 ../web/swat.c:1265 ++#: ../web/swat.c:862 ../web/swat.c:966 ../web/swat.c:1318 + msgid "Commit Changes" + msgstr "Änderungen speichern" + +-#: ../web/swat.c:819 ../web/swat.c:919 ../web/swat.c:1267 ++#: ../web/swat.c:866 ../web/swat.c:969 ../web/swat.c:1320 + msgid "Reset Values" + msgstr "Werte zurücksetzen" + +-#: ../web/swat.c:844 ++#: ../web/swat.c:891 + msgid "Share Parameters" + msgstr "Parameter der Freigabe" + +-#: ../web/swat.c:887 ++#: ../web/swat.c:934 + msgid "Choose Share" + msgstr "Wähle Freigabe" + +-#: ../web/swat.c:901 ++#: ../web/swat.c:951 + msgid "Delete Share" + msgstr "Lösche Freigabe" + +-#: ../web/swat.c:908 ++#: ../web/swat.c:958 + msgid "Create Share" + msgstr "Erstelle Freigabe" + +-#: ../web/swat.c:944 ++#: ../web/swat.c:994 + msgid "password change in demo mode rejected" +-msgstr "Änderung des Passworts im Demo modus nicht aktiv" ++msgstr "Änderung des Passworts im Demo-Modus nicht möglich" + +-#: ../web/swat.c:957 ++#: ../web/swat.c:1007 + msgid "Can't setup password database vectors." +-msgstr "" ++msgstr "Kann Passwort-Datenbankvektoren nicht einrichten" + +-#: ../web/swat.c:983 ++#: ../web/swat.c:1033 + msgid " Must specify \"User Name\" " +-msgstr " \"Benutzername\" muss angegeben werden " ++msgstr " »Benutzername« muss angegeben werden " + +-#: ../web/swat.c:999 ++#: ../web/swat.c:1049 + msgid " Must specify \"Old Password\" " +-msgstr " \"Altes Passwort\" muss angegeben werden " ++msgstr " »Altes Passwort« muss angegeben werden " + +-#: ../web/swat.c:1005 ++#: ../web/swat.c:1055 + msgid " Must specify \"Remote Machine\" " +-msgstr " \"Remote-Server\" muss angegeben werden " ++msgstr " »Entfernter Server« muss angegeben werden " + +-#: ../web/swat.c:1012 ++#: ../web/swat.c:1062 + msgid " Must specify \"New, and Re-typed Passwords\" " +-msgstr " \"Neues/wiederholtes Passwort\" müssen angegeben werden " ++msgstr " »Neues/wiederholtes Passwort« muss angegeben werden " + +-#: ../web/swat.c:1018 ++#: ../web/swat.c:1068 + msgid " Re-typed password didn't match new password " + msgstr " Das wiederholte Passwort stimmt nicht mit dem neuen Passwort überein" + +-#: ../web/swat.c:1048 ++#: ../web/swat.c:1101 + #, c-format + msgid " The passwd for '%s' has been changed." + msgstr " Das Passwort für '%s' wurde geändert." + +-#: ../web/swat.c:1051 ++#: ../web/swat.c:1104 + #, c-format + msgid " The passwd for '%s' has NOT been changed." + msgstr " Das Passwort für '%s' wurde NICHT geändert." + +-#: ../web/swat.c:1076 ++#: ../web/swat.c:1129 + msgid "Server Password Management" +-msgstr "Verwaltung des Server Passwortes" ++msgstr "Verwaltung des Server-Passwortes" + + #. + #. * Create all the dialog boxes for data collection + #. +-#: ../web/swat.c:1085 ../web/swat.c:1132 ++#: ../web/swat.c:1138 ../web/swat.c:1185 + msgid "User Name" + msgstr "Benutzername" + +-#: ../web/swat.c:1088 ../web/swat.c:1134 ++#: ../web/swat.c:1141 ../web/swat.c:1187 + msgid "Old Password" + msgstr "Altes Passwort" + +-#: ../web/swat.c:1091 ../web/swat.c:1136 ++#: ../web/swat.c:1144 ../web/swat.c:1189 + msgid "New Password" + msgstr "Neues Passwort" + +-#: ../web/swat.c:1093 ../web/swat.c:1138 ++#: ../web/swat.c:1146 ../web/swat.c:1191 + msgid "Re-type New Password" + msgstr "Wiederhole neues Passwort" + +-#: ../web/swat.c:1101 ../web/swat.c:1149 ++#: ../web/swat.c:1154 ../web/swat.c:1202 + msgid "Change Password" + msgstr "Ändere Passwort" + +-#: ../web/swat.c:1104 ++#: ../web/swat.c:1157 + msgid "Add New User" +-msgstr "Füge Benutzer hinzu" ++msgstr "Füge neuen Benutzer hinzu" + +-#: ../web/swat.c:1106 ++#: ../web/swat.c:1159 + msgid "Delete User" + msgstr "Lösche Benutzer" + +-#: ../web/swat.c:1108 ++#: ../web/swat.c:1161 + msgid "Disable User" + msgstr "Deaktiviere Benutzer" + +-#: ../web/swat.c:1110 ++#: ../web/swat.c:1163 + msgid "Enable User" + msgstr "Aktiviere Benutzer" + +-#: ../web/swat.c:1123 ++#: ../web/swat.c:1176 + msgid "Client/Server Password Management" +-msgstr "Client/Server Passwort Verwaltung" ++msgstr "Client/Server Passwort-Verwaltung" + +-#: ../web/swat.c:1140 ++#: ../web/swat.c:1193 + msgid "Remote Machine" +-msgstr "Remote-Server" ++msgstr "Entfernte Maschine" + +-#: ../web/swat.c:1179 ++#: ../web/swat.c:1232 + msgid "Printer Parameters" +-msgstr "Drucker Parameter" ++msgstr "Drucker-Parameter" + +-#: ../web/swat.c:1181 ++#: ../web/swat.c:1234 + msgid "Important Note:" + msgstr "Wichtiger Hinweis:" + +-#: ../web/swat.c:1182 ++#: ../web/swat.c:1235 ++#, c-format + msgid "Printer names marked with [*] in the Choose Printer drop-down box " +-msgstr "Mit [*] gekennzeichnete Drucker in der Druckerauswahlliste" ++msgstr "Mit [*] gekennzeichnete Drucker in der »Wähle Drucker«-Auswahlliste " + +-#: ../web/swat.c:1183 ++#: ../web/swat.c:1236 ++#, c-format + msgid "are autoloaded printers from " +-msgstr "wurden automatisch geladen von :" ++msgstr "sind automatisch geladene Drucker aus " + +-#: ../web/swat.c:1184 ++#: ../web/swat.c:1237 + msgid "Printcap Name" +-msgstr "Printcap Name" ++msgstr "Printcap-Name" + +-#: ../web/swat.c:1185 ++#: ../web/swat.c:1238 + msgid "Attempting to delete these printers from SWAT will have no effect." +-msgstr "Der Versuch diese Drucker von SWAT aus zu löschen wird keine Auswirkung haben." ++msgstr "" ++"Der Versuch, diese Drucker von SWAT aus zu löschen, wird keine Auswirkung " ++"haben." + +-#: ../web/swat.c:1231 ++#: ../web/swat.c:1284 + msgid "Choose Printer" + msgstr "Wähle Drucker" + +-#: ../web/swat.c:1250 ++#: ../web/swat.c:1303 + msgid "Delete Printer" + msgstr "Lösche Drucker" + +-#: ../web/swat.c:1257 ++#: ../web/swat.c:1310 + msgid "Create Printer" +-msgstr "Ersteller Drucker" ++msgstr "Erstelle Drucker" + +-#: ../web/statuspage.c:123 +-msgid "RDONLY " +-msgstr "" ++#: ../web/statuspage.c:139 ++msgid "RDWR " ++msgstr "LESE/SCHREIBE " + +-#: ../web/statuspage.c:124 ++#: ../web/statuspage.c:141 + msgid "WRONLY " +-msgstr "" ++msgstr "NUR SCHREIBE " + +-#: ../web/statuspage.c:125 +-msgid "RDWR " +-msgstr "" ++#: ../web/statuspage.c:143 ++msgid "RDONLY " ++msgstr "NUR LESE " + +-#: ../web/statuspage.c:309 ++#: ../web/statuspage.c:330 + msgid "Server Status" + msgstr "Server-Status" + +-#: ../web/statuspage.c:314 ++#: ../web/statuspage.c:335 + msgid "Auto Refresh" + msgstr "Automatische Aktualisierung" + +-#: ../web/statuspage.c:315 ../web/statuspage.c:320 ++#: ../web/statuspage.c:336 ../web/statuspage.c:341 + msgid "Refresh Interval: " + msgstr "Aktualisierungsintervall: " + +-#: ../web/statuspage.c:319 ++#: ../web/statuspage.c:340 + msgid "Stop Refreshing" + msgstr "Stoppe Aktualisierung" + +-#: ../web/statuspage.c:334 ++#: ../web/statuspage.c:355 + msgid "version:" + msgstr "Version:" + +-#: ../web/statuspage.c:337 ++#: ../web/statuspage.c:358 + msgid "smbd:" +-msgstr "" ++msgstr "smbd:" + +-#: ../web/statuspage.c:337 ../web/statuspage.c:350 ../web/statuspage.c:364 ++#: ../web/statuspage.c:358 ../web/statuspage.c:371 ../web/statuspage.c:385 + msgid "running" + msgstr "aktiv" + +-#: ../web/statuspage.c:337 ../web/statuspage.c:350 ../web/statuspage.c:364 ++#: ../web/statuspage.c:358 ../web/statuspage.c:371 ../web/statuspage.c:385 + msgid "not running" + msgstr "inaktiv" + +-#: ../web/statuspage.c:341 ++#: ../web/statuspage.c:362 + msgid "Stop smbd" + msgstr "Stoppe smbd" + +-#: ../web/statuspage.c:343 ++#: ../web/statuspage.c:364 + msgid "Start smbd" + msgstr "Starte smbd" + +-#: ../web/statuspage.c:345 ++#: ../web/statuspage.c:366 + msgid "Restart smbd" +-msgstr "Neustart smbd" ++msgstr "Starte smbd neu" + +-#: ../web/statuspage.c:350 ++#: ../web/statuspage.c:371 + msgid "nmbd:" +-msgstr "" ++msgstr "nmbd:" + +-#: ../web/statuspage.c:354 ++#: ../web/statuspage.c:375 + msgid "Stop nmbd" + msgstr "Stoppe nmbd" + +-#: ../web/statuspage.c:356 ++#: ../web/statuspage.c:377 + msgid "Start nmbd" + msgstr "Starte nmbd" + +-#: ../web/statuspage.c:358 ++#: ../web/statuspage.c:379 + msgid "Restart nmbd" +-msgstr "Neustart nmbd" ++msgstr "Starte nmbd neu" + +-#: ../web/statuspage.c:364 ++#: ../web/statuspage.c:385 + msgid "winbindd:" +-msgstr "" ++msgstr "winbindd:" + +-#: ../web/statuspage.c:368 ++#: ../web/statuspage.c:389 + msgid "Stop winbindd" + msgstr "Stoppe winbindd" + +-#: ../web/statuspage.c:370 ++#: ../web/statuspage.c:391 + msgid "Start winbindd" + msgstr "Starte winbindd" + +-#: ../web/statuspage.c:372 ++#: ../web/statuspage.c:393 + msgid "Restart winbindd" +-msgstr "Neustart winbindd" ++msgstr "Starte winbindd neu" + + #. stop, restart all +-#: ../web/statuspage.c:381 ++#: ../web/statuspage.c:402 + msgid "Stop All" + msgstr "Alle Stoppen" + +-#: ../web/statuspage.c:382 ++#: ../web/statuspage.c:403 + msgid "Restart All" + msgstr "Alle neu starten" + + #. start all +-#: ../web/statuspage.c:386 ++#: ../web/statuspage.c:407 + msgid "Start All" +-msgstr "Alle Starten" ++msgstr "Alle starten" + +-#: ../web/statuspage.c:393 ++#: ../web/statuspage.c:414 + msgid "Active Connections" + msgstr "Aktive Verbindungen" + +-#: ../web/statuspage.c:395 ../web/statuspage.c:408 ../web/statuspage.c:416 ++#: ../web/statuspage.c:416 ../web/statuspage.c:429 ../web/statuspage.c:437 + msgid "PID" +-msgstr "" ++msgstr "PID" + +-#: ../web/statuspage.c:395 ../web/statuspage.c:408 ++#: ../web/statuspage.c:416 ../web/statuspage.c:429 + msgid "Client" +-msgstr "" ++msgstr "Client" + +-#: ../web/statuspage.c:395 ++#: ../web/statuspage.c:416 + msgid "IP address" + msgstr "IP-Adresse" + +-#: ../web/statuspage.c:395 ../web/statuspage.c:408 ../web/statuspage.c:416 ++#: ../web/statuspage.c:416 ../web/statuspage.c:429 ../web/statuspage.c:437 + msgid "Date" + msgstr "Datum" + +-#: ../web/statuspage.c:397 ++#: ../web/statuspage.c:418 + msgid "Kill" +-msgstr "Killen" ++msgstr "Töten" + +-#: ../web/statuspage.c:405 ++#: ../web/statuspage.c:426 + msgid "Active Shares" + msgstr "Aktive Freigaben" + +-#: ../web/statuspage.c:408 ++#: ../web/statuspage.c:429 + msgid "Share" + msgstr "Freigabe" + +-#: ../web/statuspage.c:408 ++#: ../web/statuspage.c:429 + msgid "User" + msgstr "Benutzer" + +-#: ../web/statuspage.c:408 ++#: ../web/statuspage.c:429 + msgid "Group" + msgstr "Gruppe" + +-#: ../web/statuspage.c:414 ++#: ../web/statuspage.c:435 + msgid "Open Files" + msgstr "Offene Dateien" + +-#: ../web/statuspage.c:416 ++#: ../web/statuspage.c:437 + msgid "Sharing" +-msgstr "" ++msgstr "Freigeben" + +-#: ../web/statuspage.c:416 ++#: ../web/statuspage.c:437 + msgid "R/W" +-msgstr "" ++msgstr "Lese/Schreibe" + +-#: ../web/statuspage.c:416 ++#: ../web/statuspage.c:437 + msgid "Oplock" +-msgstr "" ++msgstr "Opportunistische Sperre (Lock)" + +-#: ../web/statuspage.c:416 ++#: ../web/statuspage.c:437 + msgid "File" + msgstr "Datei" + +-#: ../web/statuspage.c:425 ++#: ../web/statuspage.c:446 + msgid "Show Client in col 1" +-msgstr "" ++msgstr "Zeige Client in Spalte 1" + +-#: ../web/statuspage.c:426 ++#: ../web/statuspage.c:447 + msgid "Show PID in col 1" +-msgstr "" ++msgstr "Zeige PID in Spalte 1" + +-#: ../param/loadparm.c:755 ++#: ../param/loadparm.c:836 + msgid "Base Options" + msgstr "Basisoptionen" + +-#: ../param/loadparm.c:775 ++#: ../param/loadparm.c:855 + msgid "Security Options" + msgstr "Sicherheitsoptionen" + +-#: ../param/loadparm.c:859 ++#: ../param/loadparm.c:945 + msgid "Logging Options" +-msgstr "Log Optionen" ++msgstr "Protokollier-Optionen" + +-#: ../param/loadparm.c:874 ++#: ../param/loadparm.c:962 + msgid "Protocol Options" +-msgstr "Protokoll Optionen" ++msgstr "Protokoll-Optionen" + +-#: ../param/loadparm.c:911 ++#: ../param/loadparm.c:1008 + msgid "Tuning Options" + msgstr "Optimierungsoptionen" + +-#: ../param/loadparm.c:940 ++#: ../param/loadparm.c:1037 + msgid "Printing Options" + msgstr "Druckoptionen" + +-#: ../param/loadparm.c:970 ++#: ../param/loadparm.c:1075 + msgid "Filename Handling" +-msgstr "Verwaltung Dateinamen" ++msgstr "Dateinamen-Verwaltung" + +-#: ../param/loadparm.c:996 ++#: ../param/loadparm.c:1105 + msgid "Domain Options" +-msgstr "Domänen Optionen" ++msgstr "Domänen-Optionen" + +-#: ../param/loadparm.c:1000 ++#: ../param/loadparm.c:1109 + msgid "Logon Options" +-msgstr "Login optionen" ++msgstr "Anmelde-Optionen" + +-#: ../param/loadparm.c:1019 ++#: ../param/loadparm.c:1130 + msgid "Browse Options" +-msgstr "Browsing Optionen" ++msgstr "Browsing-Optionen" + +-#: ../param/loadparm.c:1033 ++#: ../param/loadparm.c:1144 + msgid "WINS Options" +-msgstr "WINS Optionen" ++msgstr "WINS-Optionen" + +-#: ../param/loadparm.c:1043 ++#: ../param/loadparm.c:1153 + msgid "Locking Options" +-msgstr "Locking Optionen" ++msgstr "Locking-(Sperr-)Optionen" + +-#: ../param/loadparm.c:1061 ++#: ../param/loadparm.c:1170 + msgid "Ldap Options" +-msgstr "LDAP Optionen" ++msgstr "LDAP-Optionen" + +-#: ../param/loadparm.c:1078 ++#: ../param/loadparm.c:1186 + msgid "Miscellaneous Options" +-msgstr "Verschiedene Optionen" ++msgstr "Sonstige Optionen" ++ ++#: ../param/loadparm.c:1191 ++#| msgid "Logon Options" ++msgid "EventLog Options" ++msgstr "EventLog-Optionen" + +-#: ../param/loadparm.c:1138 ++#: ../param/loadparm.c:1258 + msgid "VFS module options" +-msgstr "VFS Optionen" ++msgstr "VFS-Modul-Optionen" + +-#: ../param/loadparm.c:1148 ++#: ../param/loadparm.c:1268 + msgid "Winbind options" +-msgstr "Winbind Optionen" ++msgstr "Winbind-Optionen" --- samba-3.3.0.orig/debian/patches/fhs-filespaths-debatable.patch +++ samba-3.3.0/debian/patches/fhs-filespaths-debatable.patch @@ -0,0 +1,271 @@ +Goal: Prepare the sources to better respect FHS + New configurable paths are introduced in fhs-newpaths.patch + This patch associates files with the new paths + This part is debated with upstream + +Fixes: #49011 + +Status wrt upstream: Mean to be forwarded upstream (a good rationale + about FHS is probably recommended) + +Note: Use dedicated directories for: + - discardable cache data (/var/cache/samba): + browse.dat, printers.tbd, .tdb + - non discardable state data: + all TDB files that may need to be backed up + - shared data (/usr/share/samba): + codepage stuff + + This patch needs work to be cleaner wrt people who want to run + multiple instances of samba + + The patch *must* be reviewed after every new upstream release. + FAILURE TO DO SO MAY RESULT IN DATA LOSS FOR OUR USERS! + + export QUILT_PATCHES=debian/patches + quilt push fhs.patch + grep -r lock_path source/ | grep -vE \ + '"((brlock|connections|gencache|locking|messages|notify|sessionid|unexpected|wins)\.tdb|namelist.debug|lang_)|char \*lock_path|WINBINDD_PRIV_SOCKET_SUBDIR' + + - This will get you the list of any new, unexpected references to + lock_path. The files mentioned above are the known good uses of + lock_path; everything else needs to be investigated. + - If the file name occurs elsewhere in the fhs.patch, update the + patch to fix these new references to the same place (either + cache_path or state_path) + - If the file is a tdb file, and the code that opens it uses + TDB_CLEAR_IF_FIRST, lock_path is correct; just update the query + above with the new filename, no other changes are needed. + - Otherwise, if this is the first use of the file, you must + determine where the file belongs -- i.e., whether it's + persistent data, a cache, or runtime-only data. Consult + upstream if necessary. + - Repeat these steps for lp_lockdir(), which is less common but + still used in the code. + + grep -r lp_lockdir source/ | grep -vE \ + '%s/smb_(tmp_)*krb5|source/(lib/util|param/loadparm|dynconfig|utils/testparm)\.c|WINBINDD_PRIV_SOCKET_SUBDIR|(directory_exist|mkdir)\(lp_lockdir\(\),|koplock\.%d|%s/sync\.%d' + +Index: samba-3.3.0/source/lib/util.c +=================================================================== +--- samba-3.3.0.orig/source/lib/util.c ++++ samba-3.3.0/source/lib/util.c +@@ -2644,6 +2644,15 @@ + return xx_path(name, get_dyn_STATEDIR()); + } + ++ ++/***************************************************************** ++a useful function for returning a path in the Samba cache directory ++ *****************************************************************/ ++char *cache_path(char *name) ++{ ++ return xx_path(name, get_dyn_CACHEDIR()); ++} ++ + /** + * @brief Returns the platform specific shared library extension. + * +Index: samba-3.3.0/source/libsmb/samlogon_cache.c +=================================================================== +--- samba-3.3.0.orig/source/libsmb/samlogon_cache.c ++++ samba-3.3.0/source/libsmb/samlogon_cache.c +@@ -34,7 +34,7 @@ + bool netsamlogon_cache_init(void) + { + if (!netsamlogon_tdb) { +- netsamlogon_tdb = tdb_open_log(lock_path(NETSAMLOGON_TDB), 0, ++ netsamlogon_tdb = tdb_open_log(cache_path(NETSAMLOGON_TDB), 0, + TDB_DEFAULT, O_RDWR | O_CREAT, 0600); + } + +Index: samba-3.3.0/source/nmbd/nmbd_serverlistdb.c +=================================================================== +--- samba-3.3.0.orig/source/nmbd/nmbd_serverlistdb.c ++++ samba-3.3.0/source/nmbd/nmbd_serverlistdb.c +@@ -326,7 +326,7 @@ + + updatecount++; + +- fname = talloc_strdup(ctx, lp_lockdir()); ++ fname = talloc_strdup(ctx, get_dyn_CACHEDIR()); + if (!fname) { + return; + } +Index: samba-3.3.0/source/passdb/login_cache.c +=================================================================== +--- samba-3.3.0.orig/source/passdb/login_cache.c ++++ samba-3.3.0/source/passdb/login_cache.c +@@ -35,7 +35,7 @@ + /* skip file open if it's already opened */ + if (cache) return True; + +- if (asprintf(&cache_fname, "%s/%s", lp_lockdir(), LOGIN_CACHE_FILE) == -1) { ++ if (asprintf(&cache_fname, "%s/%s", get_dyn_CACHEDIR(), LOGIN_CACHE_FILE) == -1) { + DEBUG(0, ("Filename allocation failed.\n")); + return False; + } +Index: samba-3.3.0/source/printing/printing.c +=================================================================== +--- samba-3.3.0.orig/source/printing/printing.c ++++ samba-3.3.0/source/printing/printing.c +@@ -183,8 +183,8 @@ + int services = lp_numservices(); + int snum; + +- unlink(lock_path("printing.tdb")); +- mkdir(lock_path("printing"),0755); ++ unlink(cache_path("printing.tdb")); ++ mkdir(cache_path("printing"),0755); + + /* handle a Samba upgrade */ + +Index: samba-3.3.0/source/printing/printing_db.c +=================================================================== +--- samba-3.3.0.orig/source/printing/printing_db.c ++++ samba-3.3.0/source/printing/printing_db.c +@@ -91,7 +91,7 @@ + } + + if (asprintf(&printdb_path, "%s%s.tdb", +- lock_path("printing/"), ++ cache_path("printing/"), + printername) < 0) { + DLIST_REMOVE(print_db_head, p); + SAFE_FREE(p); +Index: samba-3.3.0/source/smbd/lanman.c +=================================================================== +--- samba-3.3.0.orig/source/smbd/lanman.c ++++ samba-3.3.0/source/smbd/lanman.c +@@ -1154,9 +1154,9 @@ + bool local_list_only; + int i; + +- lines = file_lines_load(lock_path(SERVER_LIST), NULL, 0); ++ lines = file_lines_load(cache_path(SERVER_LIST), NULL, 0); + if (!lines) { +- DEBUG(4,("Can't open %s - %s\n",lock_path(SERVER_LIST),strerror(errno))); ++ DEBUG(4,("Can't open %s - %s\n",cache_path(SERVER_LIST),strerror(errno))); + return 0; + } + +Index: samba-3.3.0/source/utils/smbcontrol.c +=================================================================== +--- samba-3.3.0.orig/source/utils/smbcontrol.c ++++ samba-3.3.0/source/utils/smbcontrol.c +@@ -867,10 +867,10 @@ + /* Remove the entry in the winbindd_cache tdb to tell a later + starting winbindd that we're online. */ + +- tdb = tdb_open_log(lock_path("winbindd_cache.tdb"), 0, TDB_DEFAULT, O_RDWR, 0600); ++ tdb = tdb_open_log(cache_path("winbindd_cache.tdb"), 0, TDB_DEFAULT, O_RDWR, 0600); + if (!tdb) { + fprintf(stderr, "Cannot open the tdb %s for writing.\n", +- lock_path("winbindd_cache.tdb")); ++ cache_path("winbindd_cache.tdb")); + return False; + } + +@@ -897,13 +897,13 @@ + starting winbindd that we're offline. We may actually create + it here... */ + +- tdb = tdb_open_log(lock_path("winbindd_cache.tdb"), ++ tdb = tdb_open_log(cache_path("winbindd_cache.tdb"), + WINBINDD_CACHE_TDB_DEFAULT_HASH_SIZE, + TDB_DEFAULT /* TDB_CLEAR_IF_FIRST */, O_RDWR|O_CREAT, 0600); + + if (!tdb) { + fprintf(stderr, "Cannot open the tdb %s for writing.\n", +- lock_path("winbindd_cache.tdb")); ++ cache_path("winbindd_cache.tdb")); + return False; + } + +Index: samba-3.3.0/source/libgpo/gpo_fetch.c +=================================================================== +--- samba-3.3.0.orig/source/libgpo/gpo_fetch.c ++++ samba-3.3.0/source/libgpo/gpo_fetch.c +@@ -59,7 +59,7 @@ + + if ((path = talloc_asprintf(mem_ctx, + "%s/%s", +- lock_path(GPO_CACHE_DIR), ++ cache_path(GPO_CACHE_DIR), + file_sys_path)) == NULL) { + return NT_STATUS_NO_MEMORY; + } +@@ -82,7 +82,7 @@ + static NTSTATUS gpo_prepare_local_store(TALLOC_CTX *mem_ctx, + const char *unix_path) + { +- const char *top_dir = lock_path(GPO_CACHE_DIR); ++ const char *top_dir = cache_path(GPO_CACHE_DIR); + char *current_dir; + char *tok; + +Index: samba-3.3.0/source/winbindd/winbindd_cache.c +=================================================================== +--- samba-3.3.0.orig/source/winbindd/winbindd_cache.c ++++ samba-3.3.0/source/winbindd/winbindd_cache.c +@@ -2537,7 +2537,7 @@ + return true; + + /* when working offline we must not clear the cache on restart */ +- wcache->tdb = tdb_open_log(lock_path("winbindd_cache.tdb"), ++ wcache->tdb = tdb_open_log(cache_path("winbindd_cache.tdb"), + WINBINDD_CACHE_TDB_DEFAULT_HASH_SIZE, + lp_winbind_offline_logon() ? TDB_DEFAULT : (TDB_DEFAULT | TDB_CLEAR_IF_FIRST), + O_RDWR|O_CREAT, 0600); +@@ -2580,9 +2580,9 @@ + tdb_close(wcache->tdb); + wcache->tdb = NULL; + +- if (unlink(lock_path("winbindd_cache.tdb")) == -1) { ++ if (unlink(cache_path("winbindd_cache.tdb")) == -1) { + DEBUG(0,("initialize_winbindd_cache: unlink %s failed %s ", +- lock_path("winbindd_cache.tdb"), ++ cache_path("winbindd_cache.tdb"), + strerror(errno) )); + return false; + } +@@ -2864,7 +2864,7 @@ + return; + + /* when working offline we must not clear the cache on restart */ +- wcache->tdb = tdb_open_log(lock_path("winbindd_cache.tdb"), ++ wcache->tdb = tdb_open_log(cache_path("winbindd_cache.tdb"), + WINBINDD_CACHE_TDB_DEFAULT_HASH_SIZE, + lp_winbind_offline_logon() ? TDB_DEFAULT : (TDB_DEFAULT | TDB_CLEAR_IF_FIRST), + O_RDWR|O_CREAT, 0600); +@@ -3693,7 +3693,7 @@ + int winbindd_validate_cache(void) + { + int ret = -1; +- const char *tdb_path = lock_path("winbindd_cache.tdb"); ++ const char *tdb_path = cache_path("winbindd_cache.tdb"); + TDB_CONTEXT *tdb = NULL; + + DEBUG(10, ("winbindd_validate_cache: replacing panic function\n")); +@@ -3735,7 +3735,7 @@ + int winbindd_validate_cache_nobackup(void) + { + int ret = -1; +- const char *tdb_path = lock_path("winbindd_cache.tdb"); ++ const char *tdb_path = cache_path("winbindd_cache.tdb"); + + DEBUG(10, ("winbindd_validate_cache: replacing panic function\n")); + smb_panic_fn = validate_panic; +Index: samba-3.3.0/source/printing/nt_printing.c +=================================================================== +--- samba-3.3.0.orig/source/printing/nt_printing.c ++++ samba-3.3.0/source/printing/nt_printing.c +@@ -2552,7 +2552,7 @@ + + if (geteuid() == 0) { + if (asprintf(&printdb_path, "%s%s.tdb", +- lock_path("printing/"), ++ cache_path("printing/"), + sharename) < 0) { + return (uint32)-1; + } --- samba-3.3.0.orig/debian/patches/documentation.patch +++ samba-3.3.0/debian/patches/documentation.patch @@ -0,0 +1,305 @@ +Goal: Remove documentation parts that do not apply to Debian + +Fixes: ? + +Status wrt upstream: Debian specific + +Note: Some part should maybe go in the FHS patch + +Index: samba-3.3.0/docs/manpages/swat.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/swat.8 ++++ samba-3.3.0/docs/manpages/swat.8 +@@ -261,85 +261,6 @@ + .RS 4 + Print a summary of command line options\&. + .RE +-.SH "INSTALLATION" +-.PP +-Swat is included as binary package with most distributions\&. The package manager in this case takes care of the installation and configuration\&. This section is only for those who have compiled swat from scratch\&. +-.PP +-After you compile SWAT you need to run +-\FCmake install \F[] +-to install the +-\FCswat\F[] +-binary and the various help files and images\&. A default install would put these in: +-.sp +-.RS 4 +-.ie n \{\ +-\h'-04'\(bu\h'+03'\c +-.\} +-.el \{\ +-.sp -1 +-.IP \(bu 2.3 +-.\} +-/usr/local/samba/sbin/swat +-.RE +-.sp +-.RS 4 +-.ie n \{\ +-\h'-04'\(bu\h'+03'\c +-.\} +-.el \{\ +-.sp -1 +-.IP \(bu 2.3 +-.\} +-/usr/local/samba/swat/images/* +-.RE +-.sp +-.RS 4 +-.ie n \{\ +-\h'-04'\(bu\h'+03'\c +-.\} +-.el \{\ +-.sp -1 +-.IP \(bu 2.3 +-.\} +-/usr/local/samba/swat/help/* +-.sp +-.RE +-.SS "Inetd Installation" +-.PP +-You need to edit your +-\FC/etc/inetd\&.conf \F[] +-and +-\FC/etc/services\F[] +-to enable SWAT to be launched via +-\FCinetd\F[]\&. +-.PP +-In +-\FC/etc/services\F[] +-you need to add a line like this: +-.PP +-\FCswat 901/tcp\F[] +-.PP +-Note for NIS/YP and LDAP users \- you may need to rebuild the NIS service maps rather than alter your local +-\FC /etc/services\F[] +-file\&. +-.PP +-the choice of port number isn\'t really important except that it should be less than 1024 and not currently used (using a number above 1024 presents an obscure security hole depending on the implementation details of your +-\FCinetd\F[] +-daemon)\&. +-.PP +-In +-\FC/etc/inetd\&.conf\F[] +-you should add a line like this: +-.PP +-\FCswat stream tcp nowait\&.400 root /usr/local/samba/sbin/swat swat\F[] +-.PP +-Once you have edited +-\FC/etc/services\F[] +-and +-\FC/etc/inetd\&.conf\F[] +-you need to send a HUP signal to inetd\&. To do this use +-\FCkill \-1 PID \F[] +-where PID is the process ID of the inetd daemon\&. + .SH "LAUNCHING" + .PP + To launch SWAT just run your favorite web browser and point it at "http://localhost:901/"\&. +@@ -357,14 +278,11 @@ + This file must contain a mapping of service name (e\&.g\&., swat) to service port (e\&.g\&., 901) and protocol type (e\&.g\&., tcp)\&. + .RE + .PP +-\FC/usr/local/samba/lib/smb\&.conf\F[] ++\FC/etc/samba/smb\&.conf\F[] + .RS 4 + This is the default location of the + \fBsmb.conf\fR(5) +-server configuration file that swat edits\&. Other common places that systems install this file are +-\FC /usr/samba/lib/smb\&.conf\F[] +-and +-\FC/etc/smb\&.conf \F[]\&. This file describes all the services the server is to make available to clients\&. ++server configuration file that swat edits\&. This file describes all the services the server is to make available to clients\&. + .RE + .SH "WARNINGS" + .PP +Index: samba-3.3.0/docs/manpages/nmbd.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/nmbd.8 ++++ samba-3.3.0/docs/manpages/nmbd.8 +@@ -265,10 +265,7 @@ + to answer any name queries\&. Adding a line to this file affects name NetBIOS resolution from this host + \fIONLY\fR\&. + .sp +-The default path to this file is compiled into Samba as part of the build process\&. Common defaults are +-\FC/usr/local/samba/lib/lmhosts\F[], +-\FC/usr/samba/lib/lmhosts\F[] +-or ++The default path to this file is + \FC/etc/samba/lmhosts\F[]\&. See the + \fBlmhosts\fR(5) + man page for details on the contents of this file\&. +@@ -337,14 +334,11 @@ + \FCinetd\F[], this file must contain a mapping of service name (e\&.g\&., netbios\-ssn) to service port (e\&.g\&., 139) and protocol type (e\&.g\&., tcp)\&. + .RE + .PP +-\FC/usr/local/samba/lib/smb\&.conf\F[] ++\FC/etc/samba/smb\&.conf\F[] + .RS 4 + This is the default location of the + \fBsmb.conf\fR(5) +-server configuration file\&. Other common places that systems install this file are +-\FC/usr/samba/lib/smb\&.conf\F[] +-and +-\FC/etc/samba/smb\&.conf\F[]\&. ++server configuration file\&. + .sp + When run as a WINS server (see the + \m[blue]\fBwins support\fR\m[] +@@ -388,10 +382,8 @@ + will accept SIGHUP, which will cause it to dump out its namelists into the file + \FCnamelist\&.debug \F[] + in the +-\FC/usr/local/samba/var/locks\F[] +-directory (or the +-\FCvar/locks\F[] +-directory configured under wherever Samba was configured to install itself)\&. This will also cause ++\FC/var/run/samba\F[] ++directory\&. This will also cause + \FCnmbd\F[] + to dump out its server database in the + \FClog\&.nmb\F[] +Index: samba-3.3.0/docs/manpages/smbd.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/smbd.8 ++++ samba-3.3.0/docs/manpages/smbd.8 +@@ -319,14 +319,11 @@ + \FCinetd\F[], this file must contain a mapping of service name (e\&.g\&., netbios\-ssn) to service port (e\&.g\&., 139) and protocol type (e\&.g\&., tcp)\&. + .RE + .PP +-\FC/usr/local/samba/lib/smb\&.conf\F[] ++\FC/etc/samba/smb\&.conf\F[] + .RS 4 + This is the default location of the + \fBsmb.conf\fR(5) +-server configuration file\&. Other common places that systems install this file are +-\FC/usr/samba/lib/smb\&.conf\F[] +-and +-\FC/etc/samba/smb\&.conf\F[]\&. ++server configuration file\&. + .sp + This file describes all the services the server is to make available to clients\&. See + \fBsmb.conf\fR(5) +Index: samba-3.3.0/docs/manpages/lmhosts.5 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/lmhosts.5 ++++ samba-3.3.0/docs/manpages/lmhosts.5 +@@ -257,10 +257,8 @@ + file\&. + .SH "FILES" + .PP +-lmhosts is loaded from the configuration directory\&. This is usually +-\FC/etc/samba\F[] +-or +-\FC/usr/local/samba/lib\F[]\&. ++lmhosts is loaded from the configuration directory\&. This is ++\FC/etc/samba\F[]\&. + .SH "VERSION" + .PP + This man page is correct for version 3 of the Samba suite\&. +Index: samba-3.3.0/docs/manpages/ntlm_auth.1 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/ntlm_auth.1 ++++ samba-3.3.0/docs/manpages/ntlm_auth.1 +@@ -193,7 +193,7 @@ + Some of these commands also require access to the directory + \FCwinbindd_privileged\F[] + in +-\FC$LOCKDIR\F[]\&. This should be done either by running this command as root or providing group access to the ++\FC/var/run/samba\F[]\&. This should be done either by running this command as root or providing group access to the + \FCwinbindd_privileged\F[] + directory\&. For security reasons, this directory should not be world\-accessable\&. + .SH "OPTIONS" +@@ -219,7 +219,7 @@ + Requires access to the directory + \FCwinbindd_privileged\F[] + in +-\FC$LOCKDIR\F[]\&. The protocol used is described here: ++\FC/var/run/samba\F[]\&. The protocol used is described here: + http://devel\&.squid\-cache\&.org/ntlm/squid_helper_protocol\&.html\&. This protocol has been extended to allow the NTLMSSP Negotiate packet to be included as an argument to the + \FCYR\F[] + command\&. (Thus avoiding loss of information in the protocol exchange)\&. +@@ -242,7 +242,7 @@ + Requires access to the directory + \FCwinbindd_privileged\F[] + in +-\FC$LOCKDIR\F[]\&. ++\FC/var/run/samba\F[]\&. + .RE + .PP + gss\-spnego\-client +Index: samba-3.3.0/docs/manpages/tdbbackup.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/tdbbackup.8 ++++ samba-3.3.0/docs/manpages/tdbbackup.8 +@@ -227,7 +227,7 @@ + .\} + + \FCsecrets\&.tdb\F[] +-\- usual location is in the /usr/local/samba/private directory, or on some systems in /etc/samba\&. ++\- usual location is in the /var/lib/samba directory\&. + .RE + .sp + .RS 4 +@@ -240,7 +240,7 @@ + .\} + + \FCpassdb\&.tdb\F[] +-\- usual location is in the /usr/local/samba/private directory, or on some systems in /etc/samba\&. ++\- usual location is in the /var/lib/samba directory\&. + .RE + .sp + .RS 4 +@@ -253,7 +253,7 @@ + .\} + + \FC*\&.tdb\F[] +-located in the /usr/local/samba/var directory or on some systems in the /var/cache or /var/lib/samba directories\&. ++located in the /var/lib/samba and /var/run/samba directories\&. + .SH "VERSION" + .PP + This man page is correct for version 3 of the Samba suite\&. +Index: samba-3.3.0/docs/manpages/winbindd.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/winbindd.8 ++++ samba-3.3.0/docs/manpages/winbindd.8 +@@ -771,16 +771,16 @@ + file are owned by root\&. + .RE + .PP +-$LOCKDIR/winbindd_privileged/pipe ++/var/run/samba/winbindd_privileged/pipe + .RS 4 + The UNIX pipe over which \'privileged\' clients communicate with the + \FCwinbindd\F[] + program\&. For security reasons, access to some winbindd functions \- like those needed by the + \FCntlm_auth\F[] +-utility \- is restricted\&. By default, only users in the \'root\' group will get this access, however the administrator may change the group permissions on $LOCKDIR/winbindd_privileged to allow programs like \'squid\' to use ntlm_auth\&. Note that the winbind client will only attempt to connect to the winbindd daemon if both the +-\FC$LOCKDIR/winbindd_privileged\F[] ++utility \- is restricted\&. By default, only users in the \'root\' group will get this access, however the administrator may change the group permissions on /var/run/samba/winbindd_privileged to allow programs like \'squid\' to use ntlm_auth\&. Note that the winbind client will only attempt to connect to the winbindd daemon if both the ++\FC/var/run/samba/winbindd_privileged\F[] + directory and +-\FC$LOCKDIR/winbindd_privileged/pipe\F[] ++\FC/var/run/samba/winbindd_privileged/pipe\F[] + file are owned by root\&. + .RE + .PP +@@ -789,15 +789,12 @@ + Implementation of name service switch library\&. + .RE + .PP +-$LOCKDIR/winbindd_idmap\&.tdb ++/var/run/samba/winbindd_idmap\&.tdb + .RS 4 +-Storage for the Windows NT rid to UNIX user/group id mapping\&. The lock directory is specified when Samba is initially compiled using the +-\fI\-\-with\-lockdir\fR +-option\&. This directory is by default +-\FC/usr/local/samba/var/locks \F[]\&. ++Storage for the Windows NT rid to UNIX user/group id mapping\&. + .RE + .PP +-$LOCKDIR/winbindd_cache\&.tdb ++/var/run/samba/winbindd_cache\&.tdb + .RS 4 + Storage for cached user and group information\&. + .RE --- samba-3.3.0.orig/debian/patches/fhs-assignpaths.patch +++ samba-3.3.0/debian/patches/fhs-assignpaths.patch @@ -0,0 +1,111 @@ +Goal: Change install paths to better respect FHS. This needs fhs-newpaths.patch + to introduce new path variables and fhs-filespaths.patch to + associate files with these + +Fixes: #49011 + +Status wrt upstream: Can remain Debian-specific if upstream doesn't want to + change their default behaviour + +Index: samba-3.3.0rc2/source/param/loadparm.c +=================================================================== +--- samba-3.3.0rc2.orig/source/param/loadparm.c ++++ samba-3.3.0rc2/source/param/loadparm.c +@@ -120,6 +120,9 @@ + char *szAddPrinterCommand; + char *szDeletePrinterCommand; + char *szOs2DriverMap; ++#ifdef FHS_COMPATIBLE ++ char *szLockDirStub; ++#endif + char *szLockDir; + char *szPidDir; + char *szRootdir; +@@ -3705,6 +3708,26 @@ + .enum_list = NULL, + .flags = FLAG_ADVANCED, + }, ++#ifdef FHS_COMPATIBLE ++ { ++ .label = "lock directory", ++ .type = P_STRING, ++ .p_class = P_GLOBAL, ++ .ptr = &Globals.szLockDirStub, ++ .special = NULL, ++ .enum_list = NULL, ++ .flags = 0, ++ }, ++ { ++ .label = "lock dir", ++ .type = P_STRING, ++ .p_class = P_GLOBAL, ++ .ptr = &Globals.szLockDirStub, ++ .special = NULL, ++ .enum_list = NULL, ++ .flags = 0, ++ }, ++#else + { + .label = "lock directory", + .type = P_STRING, +@@ -3723,6 +3746,7 @@ + .enum_list = NULL, + .flags = FLAG_HIDE, + }, ++#endif + { + .label = "pid directory", + .type = P_STRING, +Index: samba-3.3.0rc2/source/m4/check_path.m4 +=================================================================== +--- samba-3.3.0rc2.orig/source/m4/check_path.m4 ++++ samba-3.3.0rc2/source/m4/check_path.m4 +@@ -26,9 +26,9 @@ + pammodulesdir="${libdir}/security" + configdir="${libdir}" + swatdir="\${prefix}/swat" +-codepagedir="\${MODULESDIR}" +-statedir="\${LOCKDIR}" +-cachedir="\${LOCKDIR}" ++codepagedir="\${prefix}/share/samba" ++statedir="\${VARDIR}/lib/samba" ++cachedir="\${VARDIR}/cache/samba" + localedir="\${prefix}/share/locale" + + AC_ARG_WITH(fhs, +@@ -43,10 +43,10 @@ + test "${libdir}" || libdir="\${prefix}/lib" + modulesdir="${libdir}/samba" + configdir="\${sysconfdir}/samba" +- swatdir="\${DATADIR}/samba/swat" +- codepagedir="\${MODULESDIR}" ++ swatdir="\${prefix}/swat" ++ codepagedir="\${prefix}/share/samba" + statedir="\${VARDIR}/lib/samba" +- cachedir="\${VARDIR}/lib/samba" ++ cachedir="\${VARDIR}/cache/samba" + AC_DEFINE(FHS_COMPATIBLE, 1, [Whether to use fully FHS-compatible paths]) + ;; + esac]) +Index: samba-3.3.0rc2/source/configure +=================================================================== +--- samba-3.3.0rc2.orig/source/configure ++++ samba-3.3.0rc2/source/configure +@@ -2245,7 +2245,7 @@ + swatdir="\${prefix}/swat" + codepagedir="\${MODULESDIR}" + statedir="\${LOCKDIR}" +-cachedir="\${LOCKDIR}" ++cachedir="\${prefix}/cache/samba" + localedir="\${prefix}/share/locale" + + +@@ -2262,7 +2262,7 @@ + modulesdir="${libdir}/samba" + configdir="\${sysconfdir}/samba" + swatdir="\${DATADIR}/samba/swat" +- codepagedir="\${MODULESDIR}" ++ codepagedir="\${prefix}/share/samba" + statedir="\${VARDIR}/lib/samba" + cachedir="\${VARDIR}/lib/samba" + --- samba-3.3.0.orig/debian/patches/shrink-dead-code.patch +++ samba-3.3.0/debian/patches/shrink-dead-code.patch @@ -0,0 +1,464 @@ +Index: samba-3.3.0rc2/source/Makefile.in +=================================================================== +--- samba-3.3.0rc2.orig/source/Makefile.in ++++ samba-3.3.0rc2/source/Makefile.in +@@ -1321,37 +1321,47 @@ + + bin/smbd@EXEEXT@: $(BINARY_PREREQS) $(SMBD_OBJ) @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ @BUILD_POPT@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(SMBD_OBJ) $(LDFLAGS) $(LDAP_LIBS) \ ++ @$(AR) -rc $@.a $(SMBD_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(LDAP_LIBS) \ + $(KRB5LIBS) $(DYNEXP) $(PRINT_LIBS) $(AUTH_LIBS) \ + $(ACL_LIBS) $(PASSDB_LIBS) $(LIBS) $(DNSSD_LIBS) \ + $(POPT_LIBS) @SMBD_LIBS@ $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) \ + $(WINBIND_LIBS) ++ @rm -f $@.a + + bin/nmbd@EXEEXT@: $(BINARY_PREREQS) $(NMBD_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(NMBD_OBJ) $(LDFLAGS) $(DYNEXP) $(LIBS) \ ++ @$(AR) -rc $@.a $(NMBD_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(DYNEXP) $(LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(POPT_LIBS) \ + $(KRB5LIBS) $(LDAP_LIBS) ++ @rm -f $@.a + + bin/swat@EXEEXT@: $(BINARY_PREREQS) $(SWAT_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(SWAT_OBJ) $(LDFLAGS) $(DYNEXP) $(PRINT_LIBS) \ ++ @$(AR) -rc $@.a $(SWAT_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(DYNEXP) $(PRINT_LIBS) \ + $(AUTH_LIBS) $(LIBS) $(PASSDB_LIBS) $(POPT_LIBS) $(KRB5LIBS) \ + $(LDAP_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) ++ @rm -f $@.a + + bin/rpcclient@EXEEXT@: $(BINARY_PREREQS) $(RPCCLIENT_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(LDFLAGS) $(PASSDB_LIBS) $(RPCCLIENT_OBJ) \ ++ @$(AR) -rc $@.a $(RPCCLIENT_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(PASSDB_LIBS) \ + $(DYNEXP) $(TERMLDFLAGS) $(TERMLIBS) $(LIBS) $(POPT_LIBS) \ + $(KRB5LIBS) $(LDAP_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) \ + $(WINBIND_LIBS) ++ @rm -f $@.a + + bin/smbclient@EXEEXT@: $(BINARY_PREREQS) $(CLIENT_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(CLIENT_OBJ) $(LDFLAGS) $(DYNEXP) \ ++ @$(AR) -rc $@.a $(CLIENT_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(DYNEXP) \ + $(TERMLDFLAGS) $(TERMLIBS) $(LIBS) $(POPT_LIBS) \ + $(KRB5LIBS) $(LDAP_LIBS) $(NSCD_LIBS) $(DNSSD_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) ++ @rm -f $@.a + + bin/net@EXEEXT@: $(BINARY_PREREQS) $(NET_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ @LIBNETAPI_SHARED@ + @echo Linking $@ +@@ -1362,220 +1372,295 @@ + + bin/profiles@EXEEXT@: $(BINARY_PREREQS) $(PROFILES_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(PROFILES_OBJ) $(DYNEXP) $(LDFLAGS) $(LIBS) \ ++ @$(AR) -rc $@.a $(PROFILES_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(DYNEXP) $(LDFLAGS) $(LIBS) \ + $(LDAP_LIBS) $(POPT_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/smbspool@EXEEXT@: $(BINARY_PREREQS) $(CUPS_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(CUPS_OBJ) $(DYNEXP) $(LDFLAGS) $(LIBS) \ ++ @$(AR) -rc $@.a $(CUPS_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(DYNEXP) $(LDFLAGS) $(LIBS) \ + $(KRB5LIBS) $(LDAP_LIBS) $(POPT_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/mount.cifs@EXEEXT@: $(BINARY_PREREQS) $(CIFS_MOUNT_OBJ) @BUILD_POPT@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(CIFS_MOUNT_OBJ) $(DYNEXP) $(LDFLAGS) $(POPT_LIBS) ++ @$(AR) -rc $@.a $(CIFS_MOUNT_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(DYNEXP) $(LDFLAGS) $(POPT_LIBS) ++ @rm -f $@.a + + bin/umount.cifs@EXEEXT@: $(BINARY_PREREQS) $(CIFS_UMOUNT_OBJ) @BUILD_POPT@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(CIFS_UMOUNT_OBJ) $(DYNEXP) $(LDFLAGS) $(POPT_LIBS) ++ @$(AR) -rc $@.a $(CIFS_UMOUNT_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(DYNEXP) $(LDFLAGS) $(POPT_LIBS) ++ @rm -f $@.a + + bin/cifs.upcall@EXEEXT@: $(BINARY_PREREQS) $(CIFS_UPCALL_OBJ) $(LIBSMBCLIENT_OBJ1) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(CIFS_UPCALL_OBJ) $(DYNEXP) $(LDFLAGS) \ ++ @$(AR) -rc $@.a $(CIFS_UPCALL_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(DYNEXP) $(LDFLAGS) \ + -lkeyutils $(LIBS) $(LIBSMBCLIENT_OBJ1) $(KRB5LIBS) \ + $(LDAP_LIBS) $(POPT_LIBS) $(LIBTALLOC_LIBS) $(WINBIND_LIBS) \ + $(LIBTDB_LIBS) $(NSCD_LIBS) ++ @rm -f $@.a + + bin/testparm@EXEEXT@: $(BINARY_PREREQS) $(TESTPARM_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(TESTPARM_OBJ) $(LDFLAGS) $(DYNEXP) $(LIBS) \ ++ @$(AR) -rc $@.a $(TESTPARM_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(DYNEXP) $(LIBS) \ + $(LDAP_LIBS) $(POPT_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/smbstatus@EXEEXT@: $(BINARY_PREREQS) $(STATUS_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(STATUS_OBJ) $(LDFLAGS) $(DYNEXP) $(LIBS) \ ++ @$(AR) -rc $@.a $(STATUS_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(DYNEXP) $(LIBS) \ + $(LDAP_LIBS) $(POPT_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/smbcontrol@EXEEXT@: $(BINARY_PREREQS) $(SMBCONTROL_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) -DUSING_SMBCONTROL $(FLAGS) -o $@ \ +- $(SMBCONTROL_OBJ) $(DYNEXP) $(LDFLAGS) \ ++ @$(AR) -rc $@.a $(SMBCONTROL_OBJ) ++ @$(CC) -DUSING_SMBCONTROL $(FLAGS) -o $@ $@.a $(DYNEXP) $(LDFLAGS) \ + $(LIBS) $(LDAP_LIBS) @LIBUNWIND_PTRACE@ $(POPT_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/smbtree@EXEEXT@: $(BINARY_PREREQS) $(SMBTREE_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(SMBTREE_OBJ) $(LDFLAGS) $(DYNEXP) \ ++ @$(AR) -rc $@.a $(SMBTREE_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(DYNEXP) \ + $(LIBS) $(POPT_LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(NSCD_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) ++ @rm -f $@.a + + bin/smbpasswd@EXEEXT@: $(BINARY_PREREQS) $(SMBPASSWD_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(SMBPASSWD_OBJ) $(LDFLAGS) $(PASSDB_LIBS) \ ++ @$(AR) -rc $@.a $(SMBPASSWD_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(PASSDB_LIBS) \ + $(DYNEXP) $(LIBS) $(POPT_LIBS) $(KRB5LIBS) $(LDAP_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) ++ @rm -f $@.a + + bin/pdbedit@EXEEXT@: $(BINARY_PREREQS) $(PDBEDIT_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(PDBEDIT_OBJ) $(LDFLAGS) $(DYNEXP) $(LIBS) \ ++ @$(AR) -rc $@.a $(PDBEDIT_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(DYNEXP) $(LIBS) \ + $(POPT_LIBS) $(PASSDB_LIBS) $(LDAP_LIBS) $(LIBTALLOC_LIBS) \ + $(LIBTDB_LIBS) $(WINBIND_LIBS) ++ @rm -f $@.a + + bin/smbget@EXEEXT@: $(BINARY_PREREQS) $(SMBGET_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(SMBGET_OBJ) $(LDFLAGS) $(DYNEXP) $(LIBS) \ ++ @$(AR) -rc $@.a $(SMBGET_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(DYNEXP) $(LIBS) \ + $(POPT_LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(NSCD_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) ++ @rm -f $@.a + + bin/nmblookup@EXEEXT@: $(BINARY_PREREQS) $(NMBLOOKUP_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(NMBLOOKUP_OBJ) $(LDFLAGS) $(DYNEXP) $(LIBS) \ ++ @$(AR) -rc $@.a $(NMBLOOKUP_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(DYNEXP) $(LIBS) \ + $(POPT_LIBS) $(LDAP_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/smbtorture@EXEEXT@: $(BINARY_PREREQS) $(SMBTORTURE_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(SMBTORTURE_OBJ) $(LDFLAGS) $(DYNEXP) \ ++ @$(AR) -rc $@.a $(SMBTORTURE_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(DYNEXP) \ + $(LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(POPT_LIBS) $(LIBTALLOC_LIBS) \ + $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/talloctort@EXEEXT@: $(BINARY_PREREQS) $(TALLOCTORT_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(TALLOCTORT_OBJ) $(LDFLAGS) \ ++ @$(AR) -rc $@.a $(TALLOCTORT_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) \ + $(DYNEXP) $(LIBS) $(LDAP_LIBS) $(POPT_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/replacetort@EXEEXT@: $(REPLACETORT_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) @PIE_LDFLAGS@ -o $@ $(REPLACETORT_OBJ) $(LDFLAGS) \ ++ @$(AR) -rc $@.a $(REPLACETORT_OBJ) ++ @$(CC) $(FLAGS) @PIE_LDFLAGS@ -o $@ $@.a $(LDFLAGS) \ + $(DYNEXP) $(LIBS) $(POPT_LIBS) $(LIBTALLOC_LIBS) ++ @rm -f $@.a + + bin/smbconftort@EXEEXT@: $(SMBCONFTORT_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) @PIE_LDFLAGS@ -o $@ $(SMBCONFTORT_OBJ) $(LDFLAGS) \ ++ @$(AR) -rc $@.a $(SMBCONFTORT_OBJ) ++ @$(CC) $(FLAGS) @PIE_LDFLAGS@ -o $@ $@.a $(LDFLAGS) \ + $(DYNEXP) $(LIBS) $(LDAP_LIBS) $(POPT_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/masktest@EXEEXT@: $(BINARY_PREREQS) $(MASKTEST_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(MASKTEST_OBJ) $(LDFLAGS) $(DYNEXP) \ ++ @$(AR) -rc $@.a $(MASKTEST_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(DYNEXP) \ + $(LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(POPT_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/msgtest@EXEEXT@: $(BINARY_PREREQS) $(MSGTEST_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(MSGTEST_OBJ) $(LDFLAGS) $(DYNEXP) \ ++ @$(AR) -rc $@.a $(MSGTEST_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(DYNEXP) \ + $(LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(POPT_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/smbcacls@EXEEXT@: $(BINARY_PREREQS) $(SMBCACLS_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(SMBCACLS_OBJ) $(DYNEXP) $(LDFLAGS) \ ++ @$(AR) -rc $@.a $(SMBCACLS_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(DYNEXP) $(LDFLAGS) \ + $(LIBS) $(POPT_LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(NSCD_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) ++ @rm -f $@.a + + bin/smbcquotas@EXEEXT@: $(BINARY_PREREQS) $(SMBCQUOTAS_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(SMBCQUOTAS_OBJ) $(DYNEXP) $(LDFLAGS) \ ++ @$(AR) -rc $@.a $(SMBCQUOTAS_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(DYNEXP) $(LDFLAGS) \ + $(LIBS) $(POPT_LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(NSCD_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) ++ @rm -f $@.a + + bin/eventlogadm@EXEEXT@: $(BINARY_PREREQS) $(EVTLOGADM_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(EVTLOGADM_OBJ) $(DYNEXP) $(LDFLAGS) \ ++ @$(AR) -rc $@.a $(EVTLOGADM_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(DYNEXP) $(LDFLAGS) \ + $(LIBS) $(LDAP_LIBS) $(POPT_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/sharesec@EXEEXT@: $(BINARY_PREREQS) $(SHARESEC_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(SHARESEC_OBJ) $(DYNEXP) $(LDFLAGS) \ ++ @$(AR) -rc $@.a $(SHARESEC_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(DYNEXP) $(LDFLAGS) \ + $(LIBS) $(LDAP_LIBS) $(POPT_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/locktest@EXEEXT@: $(BINARY_PREREQS) $(LOCKTEST_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(LOCKTEST_OBJ) $(LDFLAGS) $(DYNEXP) \ ++ @$(AR) -rc $@.a $(LOCKTEST_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(DYNEXP) \ + $(LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(POPT_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/nsstest@EXEEXT@: $(BINARY_PREREQS) $(NSSTEST_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(NSSTEST_OBJ) $(LDFLAGS) $(DYNEXP) \ ++ @$(AR) -rc $@.a $(NSSTEST_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(DYNEXP) \ + $(LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(POPT_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/pdbtest@EXEEXT@: $(BINARY_PREREQS) $(PDBTEST_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(PDBTEST_OBJ) $(LDFLAGS) $(DYNEXP) \ ++ @$(AR) -rc $@.a $(PDBTEST_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(DYNEXP) \ + $(LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(PASSDB_LIBS) \ + $(POPT_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) ++ @rm -f $@.a + + bin/vfstest@EXEEXT@: $(BINARY_PREREQS) $(VFSTEST_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(VFSTEST_OBJ) $(LDFLAGS) $(TERMLDFLAGS) \ ++ @$(AR) -rc $@.a $(VFSTEST_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(TERMLDFLAGS) \ + $(TERMLIBS) $(DYNEXP) $(PRINT_LIBS) $(AUTH_LIBS) \ + $(ACL_LIBS) $(LIBS) $(POPT_LIBS) $(KRB5LIBS) $(LDAP_LIBS) \ + @SMBD_LIBS@ $(NSCD_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) \ + $(WINBIND_LIBS) ++ @rm -f $@.a + + bin/smbiconv@EXEEXT@: $(BINARY_PREREQS) $(SMBICONV_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(SMBICONV_OBJ) $(LDFLAGS) $(TERMLDFLAGS) \ ++ @$(AR) -rc $@.a $(SMBICONV_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(TERMLDFLAGS) \ + $(TERMLIBS) $(DYNEXP) $(LIBS) $(LDAP_LIBS) $(POPT_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/log2pcap@EXEEXT@: $(BINARY_PREREQS) $(LOG2PCAP_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(LOG2PCAP_OBJ) $(LDFLAGS) $(DYNEXP) \ ++ @$(AR) -rc $@.a $(LOG2PCAP_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(DYNEXP) \ + $(POPT_LIBS) $(LIBS) $(LIBTALLOC_LIBS) ++ @rm -f $@.a + + bin/locktest2@EXEEXT@: $(BINARY_PREREQS) $(LOCKTEST2_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(LOCKTEST2_OBJ) $(LDFLAGS) $(DYNEXP) \ ++ @$(AR) -rc $@.a $(LOCKTEST2_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(DYNEXP) \ + $(LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(POPT_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/ndrdump@EXEEXT@: $(BINARY_PREREQS) $(NDRDUMP_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(NDRDUMP_OBJ) $(DYNEXP) $(LDFLAGS) $(LIBS) \ ++ @$(AR) -rc $@.a $(NDRDUMP_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(DYNEXP) $(LDFLAGS) $(LIBS) \ + $(POPT_LIBS) $(LDAP_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/debug2html@EXEEXT@: $(BINARY_PREREQS) $(DEBUG2HTML_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(DEBUG2HTML_OBJ) $(LDFLAGS) $(DYNEXP) \ ++ @$(AR) -rc $@.a $(DEBUG2HTML_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(DYNEXP) \ + $(LIBS) $(LIBTALLOC_LIBS) ++ @rm -f $@.a + + bin/smbfilter@EXEEXT@: $(BINARY_PREREQS) $(SMBFILTER_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(SMBFILTER_OBJ) $(LDFLAGS) $(LIBS) \ ++ @$(AR) -rc $@.a $(SMBFILTER_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(LIBS) \ + $(KRB5LIBS) $(LDAP_LIBS) $(POPT_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/ldbedit: $(BINARY_PREREQS) $(LDBEDIT_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(LDBEDIT_OBJ) $(DYNEXP) $(LDFLAGS) \ ++ @$(AR) -rc $@.a $(LDBEDIT_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(DYNEXP) $(LDFLAGS) \ + $(LIBS) $(POPT_LIBS) $(LDAP_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) ++ @rm -f $@.a + + bin/ldbsearch: $(BINARY_PREREQS) $(LDBSEARCH_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(LDBSEARCH_OBJ) $(DYNEXP) $(LDFLAGS) \ ++ @$(AR) -rc $@.a $(LDBSEARCH_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(DYNEXP) $(LDFLAGS) \ + $(LIBS) $(POPT_LIBS) $(LDAP_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) ++ @rm -f $@.a + + bin/ldbadd: $(BINARY_PREREQS) $(LDBADD_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(LDBADD_OBJ) $(DYNEXP) $(LDFLAGS) \ ++ @$(AR) -rc $@.a $(LDBADD_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(DYNEXP) $(LDFLAGS) \ + $(LIBS) $(POPT_LIBS) $(LDAP_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) ++ @rm -f $@.a + + bin/ldbmodify: $(BINARY_PREREQS) $(LDBMODIFY_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(LDBMODIFY_OBJ) $(DYNEXP) $(LDFLAGS) \ ++ @$(AR) -rc $@.a $(LDBMODIFY_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(DYNEXP) $(LDFLAGS) \ + $(LIBS) $(POPT_LIBS) $(LDAP_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) ++ @rm -f $@.a + + bin/ldbdel: $(BINARY_PREREQS) $(LDBDEL_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(LDBDEL_OBJ) $(DYNEXP) $(LDFLAGS) \ ++ @$(AR) -rc $@.a $(LDBDEL_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(DYNEXP) $(LDFLAGS) \ + $(LIBS) $(POPT_LIBS) $(LDAP_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) ++ @rm -f $@.a + + + ##################################################################### +@@ -2168,16 +2253,20 @@ + + bin/winbindd@EXEEXT@: $(BINARY_PREREQS) $(WINBINDD_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo "Linking $@" +- @$(CC) $(FLAGS) -o $@ $(WINBINDD_OBJ) $(LDFLAGS) $(DYNEXP) $(LIBS) \ ++ @$(AR) -rc $@.a $(WINBINDD_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(DYNEXP) $(LIBS) \ + $(POPT_LIBS) $(KRB5LIBS) $(LDAP_LIBS) \ + $(PASSDB_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) ++ @rm -f $@.a + + bin/vlp@EXEEXT@: $(BINARY_PREREQS) $(VLP_OBJ) @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo "Linking $@" +- @$(CC) $(FLAGS) -o $@ $(VLP_OBJ) $(LDFLAGS) $(DYNEXP) \ ++ @$(AR) -rc $@.a $(VLP_OBJ) ++ @$(CC) $(FLAGS) -o $@ $@.a $(LDFLAGS) $(DYNEXP) \ + $(TERMLDFLAGS) $(TERMLIBS) $(LIBS) $(POPT_LIBS) \ + $(KRB5LIBS) $(LDAP_LIBS) $(NSCD_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) ++ @rm -f $@.a + + @WINBIND_NSS@: $(BINARY_PREREQS) $(WINBIND_NSS_OBJ) + @echo "Linking $@" +@@ -2456,9 +2545,11 @@ + + bin/wbinfo@EXEEXT@: $(BINARY_PREREQS) $(WBINFO_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(LDFLAGS) $(WBINFO_OBJ) $(DYNEXP) $(LIBS) \ ++ @$(AR) -rc $@.a $(WBINFO_OBJ) ++ @$(CC) $(FLAGS) -o $@ $(LDFLAGS) $@.a $(DYNEXP) $(LIBS) \ + $(LDAP_LIBS) $(POPT_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) \ + $(WINBIND_LIBS) ++ @rm -f $@.a + + bin/ntlm_auth@EXEEXT@: $(BINARY_PREREQS) $(NTLM_AUTH_OBJ) $(PARAM_OBJ) \ + $(LIB_NONSMBD_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ +@@ -2476,23 +2567,31 @@ + + bin/tdbbackup@EXEEXT@: $(BINARY_PREREQS) $(TDBBACKUP_OBJ) @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(LDFLAGS) $(TDBBACKUP_OBJ) $(DYNEXP) \ ++ @$(AR) -rc $@.a $(TDBBACKUP_OBJ) ++ @$(CC) $(FLAGS) -o $@ $(LDFLAGS) $@.a $(DYNEXP) \ + $(LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/tdbtool@EXEEXT@: $(BINARY_PREREQS) $(TDBTOOL_OBJ) @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(LDFLAGS) $(TDBTOOL_OBJ) $(DYNEXP) \ ++ @$(AR) -rc $@.a $(TDBTOOL_OBJ) ++ @$(CC) $(FLAGS) -o $@ $(LDFLAGS) $@.a $(DYNEXP) \ + $(LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/tdbdump@EXEEXT@: $(BINARY_PREREQS) $(TDBDUMP_OBJ) @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(LDFLAGS) $(TDBDUMP_OBJ) $(DYNEXP) \ ++ @$(AR) -rc $@.a $(TDBDUMP_OBJ) ++ @$(CC) $(FLAGS) -o $@ $(LDFLAGS) $@.a $(DYNEXP) \ + $(LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/tdbtorture@EXEEXT@: $(BINARY_PREREQS) $(TDBTORTURE_OBJ) @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ +- @$(CC) $(FLAGS) -o $@ $(LDFLAGS) $(TDBTORTURE_OBJ) $(DYNEXP) \ ++ @$(AR) -rc $@.a $(TDBTORTURE_OBJ) ++ @$(CC) $(FLAGS) -o $@ $(LDFLAGS) $@.a $(DYNEXP) \ + $(LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) ++ @rm -f $@.a + + bin/t_strcmp@EXEEXT@: $(BINARY_PREREQS) @LIBTALLOC_TARGET@ bin/libbigballofmud.@SHLIBEXT@ torture/t_strcmp.o + $(CC) $(FLAGS) -o $@ $(DYNEXP) $(LIBS) $(LIBTALLOC_LIBS) \ --- samba-3.3.0.orig/debian/patches/last-char-truncation.patch +++ samba-3.3.0/debian/patches/last-char-truncation.patch @@ -0,0 +1,40 @@ +Goal: Fix compatibility with old Samba servers, experiencing issues like last +character being truncated from file names. + +Fixes: LP: #282298 + +Status wrt upstream: Patch from Jeremy Allison, extracted from Samba bugzilla +bug #5826. + +Author comment: There was some code in pull_ucs2_base_talloc() to cope with +this case which hadn't been added to pull_ascii_base_talloc(). The older Samba +returns non unicode names which is why you are seeing this codepath being +executed. + +Index: samba-3.2.3/source/lib/charcnv.c +=================================================================== +--- samba-3.2.3.orig/source/lib/charcnv.c 2008-11-17 16:55:35.000000000 +0100 ++++ samba-3.2.3/source/lib/charcnv.c 2008-11-17 16:55:47.000000000 +0100 +@@ -1209,7 +1209,21 @@ + if (dest_len && dest) { + /* Did we already process the terminating zero ? */ + if (dest[dest_len-1] != 0) { +- dest[dest_len-1] = 0; ++ size_t size = talloc_get_size(dest); ++ /* Have we got space to append the '\0' ? */ ++ if (size <= dest_len) { ++ /* No, realloc. */ ++ dest = TALLOC_REALLOC_ARRAY(ctx, dest, char, ++ dest_len+1); ++ if (!dest) { ++ /* talloc fail. */ ++ dest_len = (size_t)-1; ++ return 0; ++ } ++ } ++ /* Yay - space ! */ ++ dest[dest_len] = '\0'; ++ dest_len++; + } + } else if (dest) { + dest[0] = 0; --- samba-3.3.0.orig/debian/patches/proper-static-lib-linking.patch +++ samba-3.3.0/debian/patches/proper-static-lib-linking.patch @@ -0,0 +1,517 @@ +Goal: Sane library interdependencies with static and dynamic linking + +Fixes: + +Status wrt upstream: not yet forwarded + +Note: + +=== modified file 'source/Makefile.in' +Index: samba-3.3.0rc2/source/Makefile.in +=================================================================== +--- samba-3.3.0rc2.orig/source/Makefile.in ++++ samba-3.3.0rc2/source/Makefile.in +@@ -239,7 +239,7 @@ + TDB_OBJ = lib/util_tdb.o \ + lib/dbwrap.o lib/dbwrap_tdb.o \ + lib/dbwrap_ctdb.o \ +- lib/dbwrap_rbt.o @LIBTDB_STATIC@ ++ lib/dbwrap_rbt.o + + SMBLDAP_OBJ = @SMBLDAP@ @SMBLDAPUTIL@ + +@@ -314,8 +314,7 @@ + SOCKET_WRAPPER_OBJ = @SOCKET_WRAPPER_OBJS@ + NSS_WRAPPER_OBJ = @NSS_WRAPPER_OBJS@ + +-LIBSAMBAUTIL_OBJ = @LIBTALLOC_STATIC@ \ +- $(LIBREPLACE_OBJ) \ ++LIBSAMBAUTIL_OBJ = $(LIBREPLACE_OBJ) \ + $(SOCKET_WRAPPER_OBJ) \ + $(NSS_WRAPPER_OBJ) + +@@ -365,7 +364,7 @@ + + LIBADDNS_OBJ0 = libaddns/dnsrecord.o libaddns/dnsutils.o libaddns/dnssock.o \ + libaddns/dnsgss.o libaddns/dnsmarshall.o +-LIBADDNS_OBJ = $(LIBADDNS_OBJ0) $(SOCKET_WRAPPER_OBJ) @LIBTALLOC_STATIC@ ++LIBADDNS_OBJ = $(LIBADDNS_OBJ0) $(SOCKET_WRAPPER_OBJ) + + GPEXT_OBJ = libgpo/gpext/gpext.o @GPEXT_STATIC@ + +@@ -1092,15 +1091,15 @@ + iniparser_build/strlib.o + + TDBBACKUP_OBJ = @tdbdir@/tools/tdbbackup.o $(LIBREPLACE_OBJ) \ +- @LIBTDB_STATIC@ $(SOCKET_WRAPPER_OBJ) ++ $(SOCKET_WRAPPER_OBJ) + +-TDBTOOL_OBJ = @tdbdir@/tools/tdbtool.o @LIBTDB_STATIC@ $(LIBREPLACE_OBJ) \ ++TDBTOOL_OBJ = @tdbdir@/tools/tdbtool.o $(LIBREPLACE_OBJ) \ + $(SOCKET_WRAPPER_OBJ) + +-TDBDUMP_OBJ = @tdbdir@/tools/tdbdump.o @LIBTDB_STATIC@ $(LIBREPLACE_OBJ) \ ++TDBDUMP_OBJ = @tdbdir@/tools/tdbdump.o $(LIBREPLACE_OBJ) \ + $(SOCKET_WRAPPER_OBJ) + +-TDBTORTURE_OBJ = @tdbdir@/tools/tdbtorture.o @LIBTDB_STATIC@ $(LIBREPLACE_OBJ) \ ++TDBTORTURE_OBJ = @tdbdir@/tools/tdbtorture.o $(LIBREPLACE_OBJ) \ + $(SOCKET_WRAPPER_OBJ) + + +@@ -1320,7 +1319,7 @@ + dir=bin $(MAKEDIR); fi + @: >> $@ || : > $@ # what a fancy emoticon! + +-bin/smbd@EXEEXT@: $(BINARY_PREREQS) $(SMBD_OBJ) @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ @BUILD_POPT@ ++bin/smbd@EXEEXT@: $(BINARY_PREREQS) $(SMBD_OBJ) @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ @BUILD_POPT@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(SMBD_OBJ) $(LDFLAGS) $(LDAP_LIBS) \ + $(KRB5LIBS) $(DYNEXP) $(PRINT_LIBS) $(AUTH_LIBS) \ +@@ -1328,45 +1327,45 @@ + $(POPT_LIBS) @SMBD_LIBS@ $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) \ + $(WINBIND_LIBS) + +-bin/nmbd@EXEEXT@: $(BINARY_PREREQS) $(NMBD_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/nmbd@EXEEXT@: $(BINARY_PREREQS) $(NMBD_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(NMBD_OBJ) $(LDFLAGS) $(DYNEXP) $(LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(POPT_LIBS) \ + $(KRB5LIBS) $(LDAP_LIBS) + +-bin/swat@EXEEXT@: $(BINARY_PREREQS) $(SWAT_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++bin/swat@EXEEXT@: $(BINARY_PREREQS) $(SWAT_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(SWAT_OBJ) $(LDFLAGS) $(DYNEXP) $(PRINT_LIBS) \ + $(AUTH_LIBS) $(LIBS) $(PASSDB_LIBS) $(POPT_LIBS) $(KRB5LIBS) \ + $(LDAP_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) + +-bin/rpcclient@EXEEXT@: $(BINARY_PREREQS) $(RPCCLIENT_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++bin/rpcclient@EXEEXT@: $(BINARY_PREREQS) $(RPCCLIENT_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(LDFLAGS) $(PASSDB_LIBS) $(RPCCLIENT_OBJ) \ + $(DYNEXP) $(TERMLDFLAGS) $(TERMLIBS) $(LIBS) $(POPT_LIBS) \ + $(KRB5LIBS) $(LDAP_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) \ + $(WINBIND_LIBS) + +-bin/smbclient@EXEEXT@: $(BINARY_PREREQS) $(CLIENT_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++bin/smbclient@EXEEXT@: $(BINARY_PREREQS) $(CLIENT_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(CLIENT_OBJ) $(LDFLAGS) $(DYNEXP) \ + $(TERMLDFLAGS) $(TERMLIBS) $(LIBS) $(POPT_LIBS) \ + $(KRB5LIBS) $(LDAP_LIBS) $(NSCD_LIBS) $(DNSSD_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) + +-bin/net@EXEEXT@: $(BINARY_PREREQS) $(NET_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ @LIBNETAPI_SHARED@ ++bin/net@EXEEXT@: $(BINARY_PREREQS) $(NET_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ @LIBNETAPI_SHARED@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(NET_OBJ) $(DYNEXP) $(LDFLAGS) $(LIBS) \ + $(POPT_LIBS) $(KRB5LIBS) $(UUID_LIBS) $(LDAP_LIBS) \ + $(PASSDB_LIBS) $(TERMLDFLAGS) $(TERMLIBS) $(NSCD_LIBS) \ + @INIPARSERLIBS@ $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) $(LIBNETAPI_LIBS) + +-bin/profiles@EXEEXT@: $(BINARY_PREREQS) $(PROFILES_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/profiles@EXEEXT@: $(BINARY_PREREQS) $(PROFILES_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(PROFILES_OBJ) $(DYNEXP) $(LDFLAGS) $(LIBS) \ + $(LDAP_LIBS) $(POPT_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/smbspool@EXEEXT@: $(BINARY_PREREQS) $(CUPS_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/smbspool@EXEEXT@: $(BINARY_PREREQS) $(CUPS_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(CUPS_OBJ) $(DYNEXP) $(LDFLAGS) $(LIBS) \ + $(KRB5LIBS) $(LDAP_LIBS) $(POPT_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) +@@ -1379,135 +1378,135 @@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(CIFS_UMOUNT_OBJ) $(DYNEXP) $(LDFLAGS) $(POPT_LIBS) + +-bin/cifs.upcall@EXEEXT@: $(BINARY_PREREQS) $(CIFS_UPCALL_OBJ) $(LIBSMBCLIENT_OBJ1) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++bin/cifs.upcall@EXEEXT@: $(BINARY_PREREQS) $(CIFS_UPCALL_OBJ) $(LIBSMBCLIENT_OBJ1) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(CIFS_UPCALL_OBJ) $(DYNEXP) $(LDFLAGS) \ + -lkeyutils $(LIBS) $(LIBSMBCLIENT_OBJ1) $(KRB5LIBS) \ + $(LDAP_LIBS) $(POPT_LIBS) $(LIBTALLOC_LIBS) $(WINBIND_LIBS) \ + $(LIBTDB_LIBS) $(NSCD_LIBS) + +-bin/testparm@EXEEXT@: $(BINARY_PREREQS) $(TESTPARM_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/testparm@EXEEXT@: $(BINARY_PREREQS) $(TESTPARM_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(TESTPARM_OBJ) $(LDFLAGS) $(DYNEXP) $(LIBS) \ + $(LDAP_LIBS) $(POPT_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/smbstatus@EXEEXT@: $(BINARY_PREREQS) $(STATUS_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/smbstatus@EXEEXT@: $(BINARY_PREREQS) $(STATUS_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(STATUS_OBJ) $(LDFLAGS) $(DYNEXP) $(LIBS) \ + $(LDAP_LIBS) $(POPT_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/smbcontrol@EXEEXT@: $(BINARY_PREREQS) $(SMBCONTROL_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/smbcontrol@EXEEXT@: $(BINARY_PREREQS) $(SMBCONTROL_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) -DUSING_SMBCONTROL $(FLAGS) -o $@ \ + $(SMBCONTROL_OBJ) $(DYNEXP) $(LDFLAGS) \ + $(LIBS) $(LDAP_LIBS) @LIBUNWIND_PTRACE@ $(POPT_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/smbtree@EXEEXT@: $(BINARY_PREREQS) $(SMBTREE_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++bin/smbtree@EXEEXT@: $(BINARY_PREREQS) $(SMBTREE_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(SMBTREE_OBJ) $(LDFLAGS) $(DYNEXP) \ + $(LIBS) $(POPT_LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(NSCD_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) + +-bin/smbpasswd@EXEEXT@: $(BINARY_PREREQS) $(SMBPASSWD_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++bin/smbpasswd@EXEEXT@: $(BINARY_PREREQS) $(SMBPASSWD_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(SMBPASSWD_OBJ) $(LDFLAGS) $(PASSDB_LIBS) \ + $(DYNEXP) $(LIBS) $(POPT_LIBS) $(KRB5LIBS) $(LDAP_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) + +-bin/pdbedit@EXEEXT@: $(BINARY_PREREQS) $(PDBEDIT_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++bin/pdbedit@EXEEXT@: $(BINARY_PREREQS) $(PDBEDIT_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(PDBEDIT_OBJ) $(LDFLAGS) $(DYNEXP) $(LIBS) \ + $(POPT_LIBS) $(PASSDB_LIBS) $(LDAP_LIBS) $(LIBTALLOC_LIBS) \ + $(LIBTDB_LIBS) $(WINBIND_LIBS) + +-bin/smbget@EXEEXT@: $(BINARY_PREREQS) $(SMBGET_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++bin/smbget@EXEEXT@: $(BINARY_PREREQS) $(SMBGET_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(SMBGET_OBJ) $(LDFLAGS) $(DYNEXP) $(LIBS) \ + $(POPT_LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(NSCD_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) + +-bin/nmblookup@EXEEXT@: $(BINARY_PREREQS) $(NMBLOOKUP_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/nmblookup@EXEEXT@: $(BINARY_PREREQS) $(NMBLOOKUP_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(NMBLOOKUP_OBJ) $(LDFLAGS) $(DYNEXP) $(LIBS) \ + $(POPT_LIBS) $(LDAP_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/smbtorture@EXEEXT@: $(BINARY_PREREQS) $(SMBTORTURE_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/smbtorture@EXEEXT@: $(BINARY_PREREQS) $(SMBTORTURE_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(SMBTORTURE_OBJ) $(LDFLAGS) $(DYNEXP) \ + $(LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(POPT_LIBS) $(LIBTALLOC_LIBS) \ + $(LIBTDB_LIBS) + +-bin/talloctort@EXEEXT@: $(BINARY_PREREQS) $(TALLOCTORT_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/talloctort@EXEEXT@: $(BINARY_PREREQS) $(TALLOCTORT_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(TALLOCTORT_OBJ) $(LDFLAGS) \ + $(DYNEXP) $(LIBS) $(LDAP_LIBS) $(POPT_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/replacetort@EXEEXT@: $(REPLACETORT_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ ++bin/replacetort@EXEEXT@: $(REPLACETORT_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) @PIE_LDFLAGS@ -o $@ $(REPLACETORT_OBJ) $(LDFLAGS) \ + $(DYNEXP) $(LIBS) $(POPT_LIBS) $(LIBTALLOC_LIBS) + +-bin/smbconftort@EXEEXT@: $(SMBCONFTORT_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/smbconftort@EXEEXT@: $(SMBCONFTORT_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) @PIE_LDFLAGS@ -o $@ $(SMBCONFTORT_OBJ) $(LDFLAGS) \ + $(DYNEXP) $(LIBS) $(LDAP_LIBS) $(POPT_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/masktest@EXEEXT@: $(BINARY_PREREQS) $(MASKTEST_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/masktest@EXEEXT@: $(BINARY_PREREQS) $(MASKTEST_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(MASKTEST_OBJ) $(LDFLAGS) $(DYNEXP) \ + $(LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(POPT_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/msgtest@EXEEXT@: $(BINARY_PREREQS) $(MSGTEST_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/msgtest@EXEEXT@: $(BINARY_PREREQS) $(MSGTEST_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(MSGTEST_OBJ) $(LDFLAGS) $(DYNEXP) \ + $(LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(POPT_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/smbcacls@EXEEXT@: $(BINARY_PREREQS) $(SMBCACLS_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++bin/smbcacls@EXEEXT@: $(BINARY_PREREQS) $(SMBCACLS_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(SMBCACLS_OBJ) $(DYNEXP) $(LDFLAGS) \ + $(LIBS) $(POPT_LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(NSCD_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) + +-bin/smbcquotas@EXEEXT@: $(BINARY_PREREQS) $(SMBCQUOTAS_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++bin/smbcquotas@EXEEXT@: $(BINARY_PREREQS) $(SMBCQUOTAS_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(SMBCQUOTAS_OBJ) $(DYNEXP) $(LDFLAGS) \ + $(LIBS) $(POPT_LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(NSCD_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) + +-bin/eventlogadm@EXEEXT@: $(BINARY_PREREQS) $(EVTLOGADM_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/eventlogadm@EXEEXT@: $(BINARY_PREREQS) $(EVTLOGADM_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(EVTLOGADM_OBJ) $(DYNEXP) $(LDFLAGS) \ + $(LIBS) $(LDAP_LIBS) $(POPT_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/sharesec@EXEEXT@: $(BINARY_PREREQS) $(SHARESEC_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/sharesec@EXEEXT@: $(BINARY_PREREQS) $(SHARESEC_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(SHARESEC_OBJ) $(DYNEXP) $(LDFLAGS) \ + $(LIBS) $(LDAP_LIBS) $(POPT_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/locktest@EXEEXT@: $(BINARY_PREREQS) $(LOCKTEST_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/locktest@EXEEXT@: $(BINARY_PREREQS) $(LOCKTEST_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(LOCKTEST_OBJ) $(LDFLAGS) $(DYNEXP) \ + $(LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(POPT_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/nsstest@EXEEXT@: $(BINARY_PREREQS) $(NSSTEST_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/nsstest@EXEEXT@: $(BINARY_PREREQS) $(NSSTEST_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(NSSTEST_OBJ) $(LDFLAGS) $(DYNEXP) \ + $(LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(POPT_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/pdbtest@EXEEXT@: $(BINARY_PREREQS) $(PDBTEST_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++bin/pdbtest@EXEEXT@: $(BINARY_PREREQS) $(PDBTEST_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(PDBTEST_OBJ) $(LDFLAGS) $(DYNEXP) \ + $(LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(PASSDB_LIBS) \ + $(POPT_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) + +-bin/vfstest@EXEEXT@: $(BINARY_PREREQS) $(VFSTEST_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++bin/vfstest@EXEEXT@: $(BINARY_PREREQS) $(VFSTEST_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(VFSTEST_OBJ) $(LDFLAGS) $(TERMLDFLAGS) \ + $(TERMLIBS) $(DYNEXP) $(PRINT_LIBS) $(AUTH_LIBS) \ +@@ -1515,64 +1514,64 @@ + @SMBD_LIBS@ $(NSCD_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) \ + $(WINBIND_LIBS) + +-bin/smbiconv@EXEEXT@: $(BINARY_PREREQS) $(SMBICONV_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/smbiconv@EXEEXT@: $(BINARY_PREREQS) $(SMBICONV_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(SMBICONV_OBJ) $(LDFLAGS) $(TERMLDFLAGS) \ + $(TERMLIBS) $(DYNEXP) $(LIBS) $(LDAP_LIBS) $(POPT_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/log2pcap@EXEEXT@: $(BINARY_PREREQS) $(LOG2PCAP_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ ++bin/log2pcap@EXEEXT@: $(BINARY_PREREQS) $(LOG2PCAP_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(LOG2PCAP_OBJ) $(LDFLAGS) $(DYNEXP) \ + $(POPT_LIBS) $(LIBS) $(LIBTALLOC_LIBS) + +-bin/locktest2@EXEEXT@: $(BINARY_PREREQS) $(LOCKTEST2_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/locktest2@EXEEXT@: $(BINARY_PREREQS) $(LOCKTEST2_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(LOCKTEST2_OBJ) $(LDFLAGS) $(DYNEXP) \ + $(LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(POPT_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/ndrdump@EXEEXT@: $(BINARY_PREREQS) $(NDRDUMP_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/ndrdump@EXEEXT@: $(BINARY_PREREQS) $(NDRDUMP_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(NDRDUMP_OBJ) $(DYNEXP) $(LDFLAGS) $(LIBS) \ + $(POPT_LIBS) $(LDAP_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/debug2html@EXEEXT@: $(BINARY_PREREQS) $(DEBUG2HTML_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ ++bin/debug2html@EXEEXT@: $(BINARY_PREREQS) $(DEBUG2HTML_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(DEBUG2HTML_OBJ) $(LDFLAGS) $(DYNEXP) \ + $(LIBS) $(LIBTALLOC_LIBS) + +-bin/smbfilter@EXEEXT@: $(BINARY_PREREQS) $(SMBFILTER_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/smbfilter@EXEEXT@: $(BINARY_PREREQS) $(SMBFILTER_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(SMBFILTER_OBJ) $(LDFLAGS) $(LIBS) \ + $(KRB5LIBS) $(LDAP_LIBS) $(POPT_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/ldbedit: $(BINARY_PREREQS) $(LDBEDIT_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++bin/ldbedit: $(BINARY_PREREQS) $(LDBEDIT_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(LDBEDIT_OBJ) $(DYNEXP) $(LDFLAGS) \ + $(LIBS) $(POPT_LIBS) $(LDAP_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) + +-bin/ldbsearch: $(BINARY_PREREQS) $(LDBSEARCH_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++bin/ldbsearch: $(BINARY_PREREQS) $(LDBSEARCH_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(LDBSEARCH_OBJ) $(DYNEXP) $(LDFLAGS) \ + $(LIBS) $(POPT_LIBS) $(LDAP_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) + +-bin/ldbadd: $(BINARY_PREREQS) $(LDBADD_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++bin/ldbadd: $(BINARY_PREREQS) $(LDBADD_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(LDBADD_OBJ) $(DYNEXP) $(LDFLAGS) \ + $(LIBS) $(POPT_LIBS) $(LDAP_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) + +-bin/ldbmodify: $(BINARY_PREREQS) $(LDBMODIFY_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++bin/ldbmodify: $(BINARY_PREREQS) $(LDBMODIFY_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(LDBMODIFY_OBJ) $(DYNEXP) $(LDFLAGS) \ + $(LIBS) $(POPT_LIBS) $(LDAP_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) + +-bin/ldbdel: $(BINARY_PREREQS) $(LDBDEL_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++bin/ldbdel: $(BINARY_PREREQS) $(LDBDEL_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(LDBDEL_OBJ) $(DYNEXP) $(LDFLAGS) \ + $(LIBS) $(POPT_LIBS) $(LDAP_LIBS) \ +@@ -1737,7 +1736,7 @@ + nsswitch/libwbclient/wbc_pam.o + LIBWBCLIENT_OBJ = $(LIBWBCLIENT_OBJ0) \ + $(WBCOMMON_OBJ) \ +- @LIBTALLOC_STATIC@ $(LIBREPLACE_OBJ) ++ $(LIBREPLACE_OBJ) + + LIBWBCLIENT_SHARED_TARGET=@LIBWBCLIENT_SHARED_TARGET@ + LIBWBCLIENT_SOVER=@LIBWBCLIENT_SOVER@ +@@ -2019,7 +2018,7 @@ + + LIBSMBSHAREMODES_OBJ0 = libsmb/smb_share_modes.o + +-LIBSMBSHAREMODES_OBJ = $(LIBSMBSHAREMODES_OBJ0) @LIBTDB_STATIC@ ++LIBSMBSHAREMODES_OBJ = $(LIBSMBSHAREMODES_OBJ0) + + LIBSMBSHAREMODES_SHARED_TARGET=@LIBSMBSHAREMODES_SHARED_TARGET@ + LIBSMBSHAREMODES_SOVER=@LIBSMBSHAREMODES_SOVER@ +@@ -2086,7 +2085,7 @@ + #------------------------------------------------------------------- + + # This is probably wrong for anything other than the GNU linker. +-bin/libbigballofmud.@SHLIBEXT@: $(BINARY_PREREQS) $(LIBBIGBALLOFMUD_OBJ) @LIBTALLOC_SHARED@ ++bin/libbigballofmud.@SHLIBEXT@: $(BINARY_PREREQS) $(LIBBIGBALLOFMUD_OBJ) @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking shared library $@ + @$(SHLD) $(LDSHFLAGS) -o $@ $(LIBBIGBALLOFMUD_OBJ) \ + $(LIBS) $(LIBTALLOC_LIBS) \ +@@ -2167,13 +2166,13 @@ + @echo "Linking $@" + @$(SHLD_MODULE) $(RPC_ECHO_OBJ) + +-bin/winbindd@EXEEXT@: $(BINARY_PREREQS) $(WINBINDD_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++bin/winbindd@EXEEXT@: $(BINARY_PREREQS) $(WINBINDD_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo "Linking $@" + @$(CC) $(FLAGS) -o $@ $(WINBINDD_OBJ) $(LDFLAGS) $(DYNEXP) $(LIBS) \ + $(POPT_LIBS) $(KRB5LIBS) $(LDAP_LIBS) \ + $(PASSDB_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) + +-bin/vlp@EXEEXT@: $(BINARY_PREREQS) $(VLP_OBJ) @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++bin/vlp@EXEEXT@: $(BINARY_PREREQS) $(VLP_OBJ) @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo "Linking $@" + @$(CC) $(FLAGS) -o $@ $(VLP_OBJ) $(LDFLAGS) $(DYNEXP) \ + $(TERMLDFLAGS) $(TERMLIBS) $(LIBS) $(POPT_LIBS) \ +@@ -2186,7 +2185,7 @@ + $(WINBIND_NSS_EXTRA_LIBS) $(WINBIND_NSS_PTHREAD) \ + @SONAMEFLAG@`basename $@`@NSSSONAMEVERSIONSUFFIX@ + +-@WINBIND_WINS_NSS@: $(BINARY_PREREQS) $(WINBIND_WINS_NSS_OBJ) @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++@WINBIND_WINS_NSS@: $(BINARY_PREREQS) $(WINBIND_WINS_NSS_OBJ) @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo "Linking $@" + @$(SHLD) $(LDSHFLAGS) -o $@ $(WINBIND_WINS_NSS_OBJ) \ + $(LDAP_LIBS) $(KRB5LIBS) $(LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) \ +@@ -2455,55 +2454,55 @@ + ## None here right now + ######################################################### + +-bin/wbinfo@EXEEXT@: $(BINARY_PREREQS) $(WBINFO_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++bin/wbinfo@EXEEXT@: $(BINARY_PREREQS) $(WBINFO_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(LDFLAGS) $(WBINFO_OBJ) $(DYNEXP) $(LIBS) \ + $(LDAP_LIBS) $(POPT_LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) \ + $(WINBIND_LIBS) + + bin/ntlm_auth@EXEEXT@: $(BINARY_PREREQS) $(NTLM_AUTH_OBJ) $(PARAM_OBJ) \ +- $(LIB_NONSMBD_OBJ) @BUILD_POPT@ @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ ++ $(LIB_NONSMBD_OBJ) @BUILD_POPT@ @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ @LIBWBCLIENT_SHARED@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(LDFLAGS) $(DYNEXP) $(NTLM_AUTH_OBJ) \ + $(PARAM_OBJ) $(LIB_NONSMBD_OBJ) $(LIBS) \ + $(POPT_LIBS) $(KRB5LIBS) $(LDAP_LIBS) $(NSCD_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) + +-bin/pam_smbpass.@SHLIBEXT@: $(BINARY_PREREQS) $(PAM_SMBPASS_OBJ) @LIBTALLOC_SHARED@ @LIBWBCLIENT_SHARED@ @LIBTDB_SHARED@ ++bin/pam_smbpass.@SHLIBEXT@: $(BINARY_PREREQS) $(PAM_SMBPASS_OBJ) @LIBTALLOC_TARGET@ @LIBWBCLIENT_SHARED@ @LIBTDB_TARGET@ + @echo "Linking shared library $@" + @$(SHLD) $(LDSHFLAGS) -o $@ $(PAM_SMBPASS_OBJ) -lpam $(DYNEXP) \ + $(LIBS) $(LDAP_LIBS) $(KRB5LIBS) $(NSCD_LIBS) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) + +-bin/tdbbackup@EXEEXT@: $(BINARY_PREREQS) $(TDBBACKUP_OBJ) @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/tdbbackup@EXEEXT@: $(BINARY_PREREQS) $(TDBBACKUP_OBJ) @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(LDFLAGS) $(TDBBACKUP_OBJ) $(DYNEXP) \ + $(LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/tdbtool@EXEEXT@: $(BINARY_PREREQS) $(TDBTOOL_OBJ) @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/tdbtool@EXEEXT@: $(BINARY_PREREQS) $(TDBTOOL_OBJ) @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(LDFLAGS) $(TDBTOOL_OBJ) $(DYNEXP) \ + $(LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/tdbdump@EXEEXT@: $(BINARY_PREREQS) $(TDBDUMP_OBJ) @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/tdbdump@EXEEXT@: $(BINARY_PREREQS) $(TDBDUMP_OBJ) @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(LDFLAGS) $(TDBDUMP_OBJ) $(DYNEXP) \ + $(LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/tdbtorture@EXEEXT@: $(BINARY_PREREQS) $(TDBTORTURE_OBJ) @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ ++bin/tdbtorture@EXEEXT@: $(BINARY_PREREQS) $(TDBTORTURE_OBJ) @LIBTALLOC_TARGET@ @LIBTDB_TARGET@ + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(LDFLAGS) $(TDBTORTURE_OBJ) $(DYNEXP) \ + $(LIBS) $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + +-bin/t_strcmp@EXEEXT@: $(BINARY_PREREQS) @LIBTALLOC_SHARED@ bin/libbigballofmud.@SHLIBEXT@ torture/t_strcmp.o ++bin/t_strcmp@EXEEXT@: $(BINARY_PREREQS) @LIBTALLOC_TARGET@ bin/libbigballofmud.@SHLIBEXT@ torture/t_strcmp.o + $(CC) $(FLAGS) -o $@ $(DYNEXP) $(LIBS) $(LIBTALLOC_LIBS) \ + torture/t_strcmp.o -L ./bin -lbigballofmud + +-bin/t_strstr@EXEEXT@: $(BINARY_PREREQS) @LIBTALLOC_SHARED@ bin/libbigballofmud.@SHLIBEXT@ torture/t_strstr.o ++bin/t_strstr@EXEEXT@: $(BINARY_PREREQS) @LIBTALLOC_TARGET@ bin/libbigballofmud.@SHLIBEXT@ torture/t_strstr.o + $(CC) $(FLAGS) -o $@ $(DYNEXP) $(LIBS) $(LIBTALLOC_LIBS) \ + torture/t_strstr.o -L ./bin -lbigballofmud + +-bin/t_strappend@EXEEXT@: $(BINARY_PREREQS) @LIBTALLOC_SHARED@ bin/libbigballofmud.@SHLIBEXT@ torture/t_strappend.o ++bin/t_strappend@EXEEXT@: $(BINARY_PREREQS) @LIBTALLOC_TARGET@ bin/libbigballofmud.@SHLIBEXT@ torture/t_strappend.o + $(CC) $(FLAGS) -o $@ $(DYNEXP) $(LIBS) $(LIBTALLOC_LIBS) \ + torture/t_strappend.o -L ./bin -lbigballofmud + +Index: samba-3.3.0rc2/source/m4/aclocal.m4 +=================================================================== +--- samba-3.3.0rc2.orig/source/m4/aclocal.m4 ++++ samba-3.3.0rc2/source/m4/aclocal.m4 +@@ -68,7 +68,8 @@ + LIBUC[_STATIC_TARGET]=bin/LIBNAME.a + LIBUC[_SHARED]= + LIBUC[_STATIC]= +-LIBUC[_LIBS]= ++LIBUC[_LIBS]=LIBLIBS ++LIBUC[_TARGET]= + [INSTALL_]LIBUC= + [UNINSTALL_]LIBUC= + +@@ -79,6 +80,7 @@ + AC_SUBST(LIBUC[_SHARED]) + AC_SUBST(LIBUC[_STATIC]) + AC_SUBST(LIBUC[_LIBS]) ++AC_SUBST(LIBUC[_TARGET]) + AC_SUBST([INSTALL_]LIBUC) + AC_SUBST([UNINSTALL_]LIBUC) + AC_SUBST(LIBUC[_SOVER]) +@@ -137,14 +139,16 @@ + [UNINSTALL_]LIBUC=[uninstall]LIBNAME + if eval $BLDSHARED = true; then + LIBUC[_SHARED]=$LIBUC[_SHARED_TARGET] ++ LIBUC[_TARGET]=$LIBUC[_SHARED_TARGET] + AC_MSG_RESULT(yes) + if test x"$USESHARED" != x"true" -o x"$[LINK_]LIBUC" = "xSTATIC" ; then + enable_static=yes +- else +- LIBUC[_LIBS]=LIBLIBS ++ LIBUC[_TARGET]=$LIBUC[_STATIC_TARGET] ++ LIBUC[_LIBS]=$LIBUC[_STATIC_TARGET] + fi + else + enable_static=yes ++ LIBUC[_TARGET]=$LIBUC[_STATIC_TARGET] + AC_MSG_RESULT(no shared library support -- will supply static library) + fi + else --- samba-3.3.0.orig/debian/patches/undefined-symbols.patch +++ samba-3.3.0/debian/patches/undefined-symbols.patch @@ -0,0 +1,24 @@ +Goal: Fix missing symbols in libsmbclient (and libnss_wins), and add + -Wl,-z,defs to the libsmbclient link options to prevent future + instances of undefined symbols + +Fixes: #281181 + +Status wrt upstream: Not forwarded. Should be once there is a configure test +for it. + +Note: + +Index: samba-3.3.0rc2/source/Makefile.in +=================================================================== +--- samba-3.3.0rc2.orig/source/Makefile.in ++++ samba-3.3.0rc2/source/Makefile.in +@@ -1962,7 +1962,7 @@ + + $(LIBSMBCLIENT_SHARED_TARGET_SONAME): $(BINARY_PREREQS) $(LIBSMBCLIENT_OBJ) $(LIBSMBCLIENT_SYMS) @LIBTALLOC_SHARED@ @LIBTDB_SHARED@ @LIBWBCLIENT_SHARED@ + @echo Linking shared library $@ +- @$(SHLD_DSO) $(LIBSMBCLIENT_OBJ) \ ++ @$(SHLD_DSO) -Wl,-z,defs $(LIBSMBCLIENT_OBJ) \ + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(WINBIND_LIBS) $(LIBS) \ + $(KRB5LIBS) $(LDAP_LIBS) $(NSCD_LIBS) \ + @SONAMEFLAG@`basename $@` --- samba-3.3.0.orig/debian/patches/usershare.patch +++ samba-3.3.0/debian/patches/usershare.patch @@ -0,0 +1,39 @@ +Goal: enable net usershares by default at build time, with a limit of +100, and update the corresponding documentation + +Fixes: Debian bug #443230 + +Authors: Mathias Gug , + Steve Langasek + +Status wrt upstream: Debian-specific + +Index: samba-3.3.0/docs/manpages/net.8 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/net.8 ++++ samba-3.3.0/docs/manpages/net.8 +@@ -903,9 +903,9 @@ + Store a secret for the specified domain, used primarily for domains that use idmap_ldap as a backend\&. In this case the secret is used as the password for the user DN used to bind to the ldap server\&. + .SS "USERSHARE" + .PP +-Starting with version 3\&.0\&.23, a Samba server now supports the ability for non\-root users to add user defined shares to be exported using the "net usershare" commands\&. ++Starting with version 3\&.0\&.23, a Samba server now supports the ability for non\-root users to add user-defined shares to be exported using the "net usershare" commands\&. + .PP +-To set this up, first set up your smb\&.conf by adding to the [global] section: usershare path = /usr/local/samba/lib/usershares Next create the directory /usr/local/samba/lib/usershares, change the owner to root and set the group owner to the UNIX group who should have the ability to create usershares, for example a group called "serverops"\&. Set the permissions on /usr/local/samba/lib/usershares to 01770\&. (Owner and group all access, no access for others, plus the sticky bit, which means that a file in that directory can be renamed or deleted only by the owner of the file)\&. Finally, tell smbd how many usershares you will allow by adding to the [global] section of smb\&.conf a line such as : usershare max shares = 100\&. To allow 100 usershare definitions\&. Now, members of the UNIX group "serverops" can create user defined shares on demand using the commands below\&. ++Members of the UNIX group "sambashare" can create user-defined shares on demand using the commands below\&. + .PP + The usershare commands are: + .RS 4 +Index: samba-3.3.0/source/param/loadparm.c +=================================================================== +--- samba-3.3.0.orig/source/param/loadparm.c ++++ samba-3.3.0/source/param/loadparm.c +@@ -4906,7 +4906,7 @@ + string_set(&Globals.szUsersharePath, s); + SAFE_FREE(s); + string_set(&Globals.szUsershareTemplateShare, ""); +- Globals.iUsershareMaxShares = 0; ++ Globals.iUsershareMaxShares = 100; + /* By default disallow sharing of directories not owned by the sharer. */ + Globals.bUsershareOwnerOnly = True; + /* By default disallow guest access to usershares. */ --- samba-3.3.0.orig/debian/patches/autoconf.patch +++ samba-3.3.0/debian/patches/autoconf.patch @@ -0,0 +1,69261 @@ +Goal: move changes to autogenerated files into their own patch now that we've + lost the script that was calling autogen.sh for us; this also helps + make debian/rules clean just a little bit cleaner. + +Fixes: no specific bug + +Status wrt upstream: Debian specific + +Note: This patch will normally have to be updated by hand after every + new upstream release and after updates of any other patches that + touch configure.in -- the first because configure scripts don't + hold patches well between updates, the second so that our changes + are recognized in the version of the script actually used in the + build process. + + The process for refreshing this patch is: + + export QUILT_PATCHES=debian/patches + quilt push autoconf.patch # to get everything applied up to this point + quilt push -f autoconf.patch # to override the errors when applying + (cd source && autoconf -I m4 -I lib/replace) + # the -I lib/replace is needed because upstream seems to have done + # something screwy with where their m4 include files are distributed in the + # source tree; so this option may not be necessary in the future + quilt refresh + find . -name '*.rej' | xargs rm + +Index: samba-3.3.0/source/configure +=================================================================== +--- samba-3.3.0.orig/source/configure ++++ samba-3.3.0/source/configure +@@ -1,11 +1,11 @@ + #! /bin/sh + # Guess values for system-dependent variables and create Makefiles. +-# Generated by GNU Autoconf 2.63 for Samba 3. ++# Generated by GNU Autoconf 2.61 for Samba 3. + # + # Report bugs to . + # + # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +-# 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. ++# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. + # This configure script is free software; the Free Software Foundation + # gives unlimited permission to copy, distribute and modify it. + ## --------------------- ## +@@ -17,7 +17,7 @@ + if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: +- # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which ++ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +@@ -39,45 +39,17 @@ + as_cr_digits='0123456789' + as_cr_alnum=$as_cr_Letters$as_cr_digits + +-as_nl=' +-' +-export as_nl +-# Printing a long string crashes Solaris 7 /usr/bin/printf. +-as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +-if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then +- as_echo='printf %s\n' +- as_echo_n='printf %s' +-else +- if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then +- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' +- as_echo_n='/usr/ucb/echo -n' +- else +- as_echo_body='eval expr "X$1" : "X\\(.*\\)"' +- as_echo_n_body='eval +- arg=$1; +- case $arg in +- *"$as_nl"*) +- expr "X$arg" : "X\\(.*\\)$as_nl"; +- arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; +- esac; +- expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" +- ' +- export as_echo_n_body +- as_echo_n='sh -c $as_echo_n_body as_echo' +- fi +- export as_echo_body +- as_echo='sh -c $as_echo_body as_echo' +-fi +- + # The user is always right. + if test "${PATH_SEPARATOR+set}" != set; then +- PATH_SEPARATOR=: +- (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { +- (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || +- PATH_SEPARATOR=';' +- } ++ echo "#! /bin/sh" >conf$$.sh ++ echo "exit 0" >>conf$$.sh ++ chmod +x conf$$.sh ++ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then ++ PATH_SEPARATOR=';' ++ else ++ PATH_SEPARATOR=: ++ fi ++ rm -f conf$$.sh + fi + + # Support unset when possible. +@@ -93,6 +65,8 @@ + # there to prevent editors from complaining about space-tab. + # (If _AS_PATH_WALK were called with IFS unset, it would disable word + # splitting by setting IFS to empty value.) ++as_nl=' ++' + IFS=" "" $as_nl" + + # Find who we are. Look in the path if we contain no directory separator. +@@ -115,7 +89,7 @@ + as_myself=$0 + fi + if test ! -f "$as_myself"; then +- $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 ++ echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + { (exit 1); exit 1; } + fi + +@@ -128,10 +102,17 @@ + PS4='+ ' + + # NLS nuisances. +-LC_ALL=C +-export LC_ALL +-LANGUAGE=C +-export LANGUAGE ++for as_var in \ ++ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ ++ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ ++ LC_TELEPHONE LC_TIME ++do ++ if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then ++ eval $as_var=C; export $as_var ++ else ++ ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++ fi ++done + + # Required to use basename. + if expr a : '\(a\)' >/dev/null 2>&1 && +@@ -153,7 +134,7 @@ + $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +-$as_echo X/"$0" | ++echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q +@@ -179,7 +160,7 @@ + as_have_required=no + fi + +- if test $as_have_required = yes && (eval ": ++ if test $as_have_required = yes && (eval ": + (as_func_return () { + (exit \$1) + } +@@ -261,7 +242,7 @@ + if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: +- # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which ++ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +@@ -282,7 +263,7 @@ + if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: +- # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which ++ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +@@ -362,10 +343,10 @@ + + if test "x$CONFIG_SHELL" != x; then + for as_var in BASH_ENV ENV +- do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var +- done +- export CONFIG_SHELL +- exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} ++ do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++ done ++ export CONFIG_SHELL ++ exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} + fi + + +@@ -434,10 +415,9 @@ + + test \$exitcode = 0") || { + echo No shell found that supports shell functions. +- echo Please tell bug-autoconf@gnu.org about your system, +- echo including any error possibly output before this message. +- echo This can help us improve future autoconf versions. +- echo Configuration will now proceed without shell functions. ++ echo Please tell autoconf@gnu.org about your system, ++ echo including any error possibly output before this ++ echo message + } + + +@@ -473,7 +453,7 @@ + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || +- { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 ++ { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 + { (exit 1); exit 1; }; } + + # Don't try to exec as it changes $[0], causing all sort of problems +@@ -501,6 +481,7 @@ + *) + ECHO_N='-n';; + esac ++ + if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +@@ -513,22 +494,19 @@ + rm -f conf$$.dir/conf$$.file + else + rm -f conf$$.dir +- mkdir conf$$.dir 2>/dev/null ++ mkdir conf$$.dir + fi +-if (echo >conf$$.file) 2>/dev/null; then +- if ln -s conf$$.file conf$$ 2>/dev/null; then +- as_ln_s='ln -s' +- # ... but there are two gotchas: +- # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. +- # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. +- # In both cases, we have to default to `cp -p'. +- ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || +- as_ln_s='cp -p' +- elif ln conf$$.file conf$$ 2>/dev/null; then +- as_ln_s=ln +- else ++echo >conf$$.file ++if ln -s conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s='ln -s' ++ # ... but there are two gotchas: ++ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. ++ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. ++ # In both cases, we have to default to `cp -p'. ++ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' +- fi ++elif ln conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s=ln + else + as_ln_s='cp -p' + fi +@@ -553,10 +531,10 @@ + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then +- test -d "$1/."; ++ test -d "$1/."; + else + case $1 in +- -*)set "./$1";; ++ -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in + ???[sx]*):;;*)false;;esac;fi +@@ -638,334 +616,265 @@ + # include + #endif" + +-ac_subst_vars='LTLIBOBJS +-SMBD_LIBS +-DEVELOPER_CFLAGS +-GPEXT_MODULES +-GPEXT_STATIC +-VFS_MODULES +-VFS_STATIC +-AUTH_MODULES +-AUTH_STATIC +-CHARSET_MODULES +-CHARSET_STATIC +-NSS_INFO_MODULES +-NSS_INFO_STATIC +-IDMAP_MODULES +-IDMAP_STATIC +-RPC_MODULES +-RPC_STATIC +-PDB_MODULES +-PDB_STATIC +-INIPARSERLIBS +-BUILD_INIPARSER +-DNSSD_LIBS +-FLAGS1 +-POPTLIBS +-BUILD_POPT +-WINBIND_KRB5_LOCATOR +-PAM_WINBIND_EXTRA_LIBS +-NSSSONAMEVERSIONSUFFIX +-WINBIND_NSS_EXTRA_LIBS +-WINBIND_NSS_EXTRA_OBJS +-WINBIND_NSS_LDSHFLAGS +-WINBIND_WINS_NSS +-WINBIND_NSS +-WINBIND_NSS_PTHREAD +-LIBADDNS_SOVER +-UNINSTALL_LIBADDNS +-INSTALL_LIBADDNS +-LIBADDNS_LIBS +-LIBADDNS_STATIC +-LIBADDNS_SHARED +-LIBADDNS_STATIC_TARGET +-LIBADDNS_SHARED_TARGET +-LIBSMBSHAREMODES_SOVER +-UNINSTALL_LIBSMBSHAREMODES +-INSTALL_LIBSMBSHAREMODES +-LIBSMBSHAREMODES_LIBS +-LIBSMBSHAREMODES_STATIC +-LIBSMBSHAREMODES_SHARED +-LIBSMBSHAREMODES_STATIC_TARGET +-LIBSMBSHAREMODES_SHARED_TARGET +-LIBSMBCLIENT_SOVER +-UNINSTALL_LIBSMBCLIENT +-INSTALL_LIBSMBCLIENT +-LIBSMBCLIENT_LIBS +-LIBSMBCLIENT_STATIC +-LIBSMBCLIENT_SHARED +-LIBSMBCLIENT_STATIC_TARGET +-LIBSMBCLIENT_SHARED_TARGET +-LIBNETAPI_SOVER +-UNINSTALL_LIBNETAPI +-INSTALL_LIBNETAPI +-LIBNETAPI_LIBS +-LIBNETAPI_STATIC +-LIBNETAPI_SHARED +-LIBNETAPI_STATIC_TARGET +-LIBNETAPI_SHARED_TARGET +-LIBTDB_SOVER +-UNINSTALL_LIBTDB +-INSTALL_LIBTDB +-LIBTDB_LIBS +-LIBTDB_STATIC +-LIBTDB_SHARED +-LIBTDB_STATIC_TARGET +-LIBTDB_SHARED_TARGET +-LIBTALLOC_SOVER +-UNINSTALL_LIBTALLOC +-INSTALL_LIBTALLOC +-LIBTALLOC_LIBS +-LIBTALLOC_STATIC +-LIBTALLOC_SHARED +-LIBTALLOC_STATIC_TARGET +-LIBTALLOC_SHARED_TARGET +-USESHARED +-KRB5CONFIG +-LDBLDAP +-SMBLDAPUTIL +-SMBLDAP +-FAKE_KASERVER_OBJ +-SMB_FAM_LIBS +-LIB_PATH_VAR +-ROFF +-SYMSEXT +-LIBUNWIND_PTRACE +-TERMLDFLAGS +-TERMLIBS +-CUPS_CONFIG +-LIBREPLACE_OBJS +-LIBDL +-LIBOBJS +-DYNEXP +-PIDL_ARGS +-BROKEN_CC +-AR +-PERL +-AWK +-SWAT_INSTALL_TARGETS +-SWAT_SBIN_TARGETS +-NSS_WRAPPER_OBJS +-HAVE_NSS_WRAPPER +-SOCKET_WRAPPER_OBJS +-HAVE_SOCKET_WRAPPER +-DEFAULT_TEST_OPTIONS +-NSCD_LIBS +-CONFIG_LIBS +-EXTRA_ALL_TARGETS +-EXTRA_SBIN_PROGS +-UNINSTALL_CIFSUPCALL +-INSTALL_CIFSUPCALL +-CIFSUPCALL_PROGS +-UNINSTALL_CIFSMOUNT +-INSTALL_CIFSMOUNT +-CIFSMOUNT_PROGS +-EXTRA_BIN_PROGS +-NSS_MODULES +-UNINSTALL_PAM_MODULES +-INSTALL_PAM_MODULES +-PAM_MODULES +-GPEXT_LIBS +-LDAP_LIBS +-UUID_LIBS +-KRB5_LIBS +-IDMAP_LIBS +-PASSDB_LIBS +-ACL_LIBS +-AUTH_LIBS +-PRINT_LIBS +-LIBSAMBAUTIL_SHARED +-WINBIND_LIBS +-LIBWBCLIENT +-LIBWBCLIENT_SOVER +-LIBWBCLIENT_STATIC +-LIBWBCLIENT_STATIC_TARGET +-LIBWBCLIENT_SHARED +-LIBWBCLIENT_SHARED_TARGET +-UNINSTALL_LIBWBCLIENT +-INSTALL_LIBWBCLIENT +-UNINSTALLLIBCMD_A +-UNINSTALLLIBCMD_SH +-INSTALLLIBCMD_A +-INSTALLLIBCMD_SH +-SHLIBEXT +-RELRO_LDFLAGS +-PIE_LDFLAGS +-PIE_CFLAGS +-PICFLAG +-HOST_OS +-DSO_EXPORTS +-MODULE_EXPORTS +-SHLD +-SONAMEFLAG +-LDSHFLAGS +-SAMBA_CPPFLAGS +-TDB_OBJS +-TDB_OBJ +-TDB_CFLAGS +-tdbdir +-TALLOC_OBJS +-TALLOC_LIBS +-TALLOC_CFLAGS +-TALLOC_OBJ +-tallocdir +-libreplace_cv_immediate_structures +-INSTALL_DATA +-INSTALL_SCRIPT +-INSTALL_PROGRAM +-EGREP +-GREP +-CPP +-OBJEXT +-EXEEXT +-ac_ct_CC +-CPPFLAGS +-LDFLAGS +-CFLAGS +-CC +-smbtorture4_path +-selftest_prefix +-modulesdir +-pammodulesdir +-rootsbindir +-cachedir +-statedir +-codepagedir +-swatdir +-privatedir +-ctdbdir +-logfilebase +-piddir +-lockdir +-configdir +-target_os +-target_vendor +-target_cpu +-target +-host_os +-host_vendor +-host_cpu +-host +-build_os +-build_vendor +-build_cpu +-build +-LIBREPLACEOBJ +-libreplacedir +-builddir +-target_alias +-host_alias +-build_alias +-LIBS +-ECHO_T +-ECHO_N +-ECHO_C +-DEFS +-mandir +-localedir +-libdir +-psdir +-pdfdir +-dvidir +-htmldir +-infodir +-docdir +-oldincludedir +-includedir +-localstatedir +-sharedstatedir +-sysconfdir +-datadir +-datarootdir +-libexecdir +-sbindir +-bindir +-program_transform_name +-prefix +-exec_prefix +-PACKAGE_BUGREPORT +-PACKAGE_STRING +-PACKAGE_VERSION +-PACKAGE_TARNAME +-PACKAGE_NAME ++ac_subst_vars='SHELL + PATH_SEPARATOR +-SHELL' ++PACKAGE_NAME ++PACKAGE_TARNAME ++PACKAGE_VERSION ++PACKAGE_STRING ++PACKAGE_BUGREPORT ++exec_prefix ++prefix ++program_transform_name ++bindir ++sbindir ++libexecdir ++datarootdir ++datadir ++sysconfdir ++sharedstatedir ++localstatedir ++includedir ++oldincludedir ++docdir ++infodir ++htmldir ++dvidir ++pdfdir ++psdir ++libdir ++localedir ++mandir ++DEFS ++ECHO_C ++ECHO_N ++ECHO_T ++LIBS ++build_alias ++host_alias ++target_alias ++builddir ++libreplacedir ++LIBREPLACEOBJ ++build ++build_cpu ++build_vendor ++build_os ++host ++host_cpu ++host_vendor ++host_os ++target ++target_cpu ++target_vendor ++target_os ++configdir ++lockdir ++piddir ++logfilebase ++ctdbdir ++privatedir ++swatdir ++codepagedir ++statedir ++cachedir ++rootsbindir ++pammodulesdir ++modulesdir ++selftest_prefix ++smbtorture4_path ++CC ++CFLAGS ++LDFLAGS ++CPPFLAGS ++ac_ct_CC ++EXEEXT ++OBJEXT ++CPP ++GREP ++EGREP ++INSTALL_PROGRAM ++INSTALL_SCRIPT ++INSTALL_DATA ++libreplace_cv_immediate_structures ++tallocdir ++TALLOC_OBJ ++TALLOC_CFLAGS ++TALLOC_LIBS ++TALLOC_OBJS ++tdbdir ++TDB_CFLAGS ++TDB_OBJ ++TDB_OBJS ++SAMBA_CPPFLAGS ++LDSHFLAGS ++SONAMEFLAG ++SHLD ++MODULE_EXPORTS ++DSO_EXPORTS ++HOST_OS ++PICFLAG ++PIE_CFLAGS ++PIE_LDFLAGS ++RELRO_LDFLAGS ++SHLIBEXT ++INSTALLLIBCMD_SH ++INSTALLLIBCMD_A ++UNINSTALLLIBCMD_SH ++UNINSTALLLIBCMD_A ++INSTALL_LIBWBCLIENT ++UNINSTALL_LIBWBCLIENT ++LIBWBCLIENT_SHARED_TARGET ++LIBWBCLIENT_SHARED ++LIBWBCLIENT_STATIC_TARGET ++LIBWBCLIENT_STATIC ++LIBWBCLIENT_SOVER ++LIBWBCLIENT ++WINBIND_LIBS ++LIBSAMBAUTIL_SHARED ++PRINT_LIBS ++AUTH_LIBS ++ACL_LIBS ++PASSDB_LIBS ++IDMAP_LIBS ++KRB5_LIBS ++UUID_LIBS ++LDAP_LIBS ++GPEXT_LIBS ++PAM_MODULES ++INSTALL_PAM_MODULES ++UNINSTALL_PAM_MODULES ++NSS_MODULES ++EXTRA_BIN_PROGS ++CIFSMOUNT_PROGS ++INSTALL_CIFSMOUNT ++UNINSTALL_CIFSMOUNT ++CIFSUPCALL_PROGS ++INSTALL_CIFSUPCALL ++UNINSTALL_CIFSUPCALL ++EXTRA_SBIN_PROGS ++EXTRA_ALL_TARGETS ++CONFIG_LIBS ++NSCD_LIBS ++DEFAULT_TEST_OPTIONS ++HAVE_SOCKET_WRAPPER ++SOCKET_WRAPPER_OBJS ++HAVE_NSS_WRAPPER ++NSS_WRAPPER_OBJS ++SWAT_SBIN_TARGETS ++SWAT_INSTALL_TARGETS ++AWK ++PERL ++AR ++BROKEN_CC ++PIDL_ARGS ++DYNEXP ++LIBOBJS ++LIBDL ++LIBREPLACE_OBJS ++CUPS_CONFIG ++TERMLIBS ++TERMLDFLAGS ++LIBUNWIND_PTRACE ++SYMSEXT ++ROFF ++LIB_PATH_VAR ++SMB_FAM_LIBS ++FAKE_KASERVER_OBJ ++SMBLDAP ++SMBLDAPUTIL ++LDBLDAP ++KRB5CONFIG ++USESHARED ++LIBTALLOC_SHARED_TARGET ++LIBTALLOC_STATIC_TARGET ++LIBTALLOC_SHARED ++LIBTALLOC_STATIC ++LIBTALLOC_LIBS ++LIBTALLOC_TARGET ++INSTALL_LIBTALLOC ++UNINSTALL_LIBTALLOC ++LIBTALLOC_SOVER ++LIBTDB_SHARED_TARGET ++LIBTDB_STATIC_TARGET ++LIBTDB_SHARED ++LIBTDB_STATIC ++LIBTDB_LIBS ++LIBTDB_TARGET ++INSTALL_LIBTDB ++UNINSTALL_LIBTDB ++LIBTDB_SOVER ++LIBNETAPI_SHARED_TARGET ++LIBNETAPI_STATIC_TARGET ++LIBNETAPI_SHARED ++LIBNETAPI_STATIC ++LIBNETAPI_LIBS ++LIBNETAPI_TARGET ++INSTALL_LIBNETAPI ++UNINSTALL_LIBNETAPI ++LIBNETAPI_SOVER ++LIBSMBCLIENT_SHARED_TARGET ++LIBSMBCLIENT_STATIC_TARGET ++LIBSMBCLIENT_SHARED ++LIBSMBCLIENT_STATIC ++LIBSMBCLIENT_LIBS ++LIBSMBCLIENT_TARGET ++INSTALL_LIBSMBCLIENT ++UNINSTALL_LIBSMBCLIENT ++LIBSMBCLIENT_SOVER ++LIBSMBSHAREMODES_SHARED_TARGET ++LIBSMBSHAREMODES_STATIC_TARGET ++LIBSMBSHAREMODES_SHARED ++LIBSMBSHAREMODES_STATIC ++LIBSMBSHAREMODES_LIBS ++LIBSMBSHAREMODES_TARGET ++INSTALL_LIBSMBSHAREMODES ++UNINSTALL_LIBSMBSHAREMODES ++LIBSMBSHAREMODES_SOVER ++LIBADDNS_SHARED_TARGET ++LIBADDNS_STATIC_TARGET ++LIBADDNS_SHARED ++LIBADDNS_STATIC ++LIBADDNS_LIBS ++LIBADDNS_TARGET ++INSTALL_LIBADDNS ++UNINSTALL_LIBADDNS ++LIBADDNS_SOVER ++WINBIND_NSS_PTHREAD ++WINBIND_NSS ++WINBIND_WINS_NSS ++WINBIND_NSS_LDSHFLAGS ++WINBIND_NSS_EXTRA_OBJS ++WINBIND_NSS_EXTRA_LIBS ++NSSSONAMEVERSIONSUFFIX ++PAM_WINBIND_EXTRA_LIBS ++WINBIND_KRB5_LOCATOR ++BUILD_POPT ++POPTLIBS ++FLAGS1 ++DNSSD_LIBS ++BUILD_INIPARSER ++INIPARSERLIBS ++PDB_STATIC ++PDB_MODULES ++RPC_STATIC ++RPC_MODULES ++IDMAP_STATIC ++IDMAP_MODULES ++NSS_INFO_STATIC ++NSS_INFO_MODULES ++CHARSET_STATIC ++CHARSET_MODULES ++AUTH_STATIC ++AUTH_MODULES ++VFS_STATIC ++VFS_MODULES ++GPEXT_STATIC ++GPEXT_MODULES ++DEVELOPER_CFLAGS ++SMBD_LIBS ++LTLIBOBJS' + ac_subst_files='' +-ac_user_opts=' +-enable_option_checking +-with_fhs +-with_privatedir +-with_rootsbindir +-with_lockdir +-with_piddir +-with_swatdir +-with_configdir +-with_logfilebase +-with_ctdb +-with_modulesdir +-with_pammodulesdir +-with_mandir +-with_localedir +-with_selftest_prefix +-with_smbtorture4_path +-enable_debug +-enable_developer +-enable_krb5developer +-enable_picky_developer +-with_cfenc +-enable_largefile +-enable_socket_wrapper +-enable_nss_wrapper +-enable_swat +-enable_dmalloc +-with_profiling_data +-enable_cups +-enable_iprint +-with_readline +-enable_static +-enable_shared +-enable_pie +-enable_relro +-with_libiconv +-enable_fam +-with_afs +-with_fake_kaserver +-with_vfs_afsacl +-with_dfs +-with_ldap +-with_ads +-with_krb5 +-with_dnsupdate +-with_automount +-with_cifsmount +-with_cifsupcall +-with_pam +-with_pam_smbpass +-with_nisplus_home +-with_syslog +-with_syslog_facility +-with_quotas +-with_sys_quotas +-with_utmp +-enable_shared_libs +-with_static_libs +-with_libtalloc +-with_libtdb +-with_libnetapi +-with_libsmbclient +-with_libsmbsharemodes +-with_libaddns +-with_cluster_support +-with_acl_support +-with_aio_support +-with_sendfile_support +-with_winbind +-with_included_popt +-enable_dnssd +-with_included_iniparser +-with_static_modules +-with_shared_modules +-' + ac_precious_vars='build_alias + host_alias + target_alias +@@ -980,8 +889,6 @@ + # Initialize some variables set by options. + ac_init_help= + ac_init_version=false +-ac_unrecognized_opts= +-ac_unrecognized_sep= + # The variables have the same names as the options, with + # dashes changed to underlines. + cache_file=/dev/null +@@ -1080,21 +987,13 @@ + datarootdir=$ac_optarg ;; + + -disable-* | --disable-*) +- ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` ++ ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && +- { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2 ++ expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && ++ { echo "$as_me: error: invalid feature name: $ac_feature" >&2 + { (exit 1); exit 1; }; } +- ac_useropt_orig=$ac_useropt +- ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` +- case $ac_user_opts in +- *" +-"enable_$ac_useropt" +-"*) ;; +- *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" +- ac_unrecognized_sep=', ';; +- esac +- eval enable_$ac_useropt=no ;; ++ ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` ++ eval enable_$ac_feature=no ;; + + -docdir | --docdir | --docdi | --doc | --do) + ac_prev=docdir ;; +@@ -1107,21 +1006,13 @@ + dvidir=$ac_optarg ;; + + -enable-* | --enable-*) +- ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` ++ ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && +- { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2 ++ expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && ++ { echo "$as_me: error: invalid feature name: $ac_feature" >&2 + { (exit 1); exit 1; }; } +- ac_useropt_orig=$ac_useropt +- ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` +- case $ac_user_opts in +- *" +-"enable_$ac_useropt" +-"*) ;; +- *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" +- ac_unrecognized_sep=', ';; +- esac +- eval enable_$ac_useropt=\$ac_optarg ;; ++ ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` ++ eval enable_$ac_feature=\$ac_optarg ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ +@@ -1312,38 +1203,22 @@ + ac_init_version=: ;; + + -with-* | --with-*) +- ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` ++ ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && +- { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2 ++ expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && ++ { echo "$as_me: error: invalid package name: $ac_package" >&2 + { (exit 1); exit 1; }; } +- ac_useropt_orig=$ac_useropt +- ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` +- case $ac_user_opts in +- *" +-"with_$ac_useropt" +-"*) ;; +- *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" +- ac_unrecognized_sep=', ';; +- esac +- eval with_$ac_useropt=\$ac_optarg ;; ++ ac_package=`echo $ac_package | sed 's/[-.]/_/g'` ++ eval with_$ac_package=\$ac_optarg ;; + + -without-* | --without-*) +- ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` ++ ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && +- { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2 ++ expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && ++ { echo "$as_me: error: invalid package name: $ac_package" >&2 + { (exit 1); exit 1; }; } +- ac_useropt_orig=$ac_useropt +- ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` +- case $ac_user_opts in +- *" +-"with_$ac_useropt" +-"*) ;; +- *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" +- ac_unrecognized_sep=', ';; +- esac +- eval with_$ac_useropt=no ;; ++ ac_package=`echo $ac_package | sed 's/[-.]/_/g'` ++ eval with_$ac_package=no ;; + + --x) + # Obsolete; use --with-x. +@@ -1363,7 +1238,7 @@ + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries=$ac_optarg ;; + +- -*) { $as_echo "$as_me: error: unrecognized option: $ac_option ++ -*) { echo "$as_me: error: unrecognized option: $ac_option + Try \`$0 --help' for more information." >&2 + { (exit 1); exit 1; }; } + ;; +@@ -1372,16 +1247,16 @@ + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` + # Reject names that are not valid shell variable names. + expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && +- { $as_echo "$as_me: error: invalid variable name: $ac_envvar" >&2 ++ { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 + { (exit 1); exit 1; }; } + eval $ac_envvar=\$ac_optarg + export $ac_envvar ;; + + *) + # FIXME: should be removed in autoconf 3.0. +- $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 ++ echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && +- $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 ++ echo "$as_me: WARNING: invalid host type: $ac_option" >&2 + : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} + ;; + +@@ -1390,38 +1265,22 @@ + + if test -n "$ac_prev"; then + ac_option=--`echo $ac_prev | sed 's/_/-/g'` +- { $as_echo "$as_me: error: missing argument to $ac_option" >&2 ++ { echo "$as_me: error: missing argument to $ac_option" >&2 + { (exit 1); exit 1; }; } + fi + +-if test -n "$ac_unrecognized_opts"; then +- case $enable_option_checking in +- no) ;; +- fatal) { $as_echo "$as_me: error: unrecognized options: $ac_unrecognized_opts" >&2 +- { (exit 1); exit 1; }; } ;; +- *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; +- esac +-fi +- +-# Check all directory arguments for consistency. ++# Be sure to have absolute directory names. + for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ + datadir sysconfdir sharedstatedir localstatedir includedir \ + oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ + libdir localedir mandir + do + eval ac_val=\$$ac_var +- # Remove trailing slashes. +- case $ac_val in +- */ ) +- ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` +- eval $ac_var=\$ac_val;; +- esac +- # Be sure to have absolute directory names. + case $ac_val in + [\\/$]* | ?:[\\/]* ) continue;; + NONE | '' ) case $ac_var in *prefix ) continue;; esac;; + esac +- { $as_echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 ++ { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 + { (exit 1); exit 1; }; } + done + +@@ -1436,7 +1295,7 @@ + if test "x$host_alias" != x; then + if test "x$build_alias" = x; then + cross_compiling=maybe +- $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. ++ echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. + If a cross compiler is detected then cross compile mode will be used." >&2 + elif test "x$build_alias" != "x$host_alias"; then + cross_compiling=yes +@@ -1452,10 +1311,10 @@ + ac_pwd=`pwd` && test -n "$ac_pwd" && + ac_ls_di=`ls -di .` && + ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || +- { $as_echo "$as_me: error: working directory cannot be determined" >&2 ++ { echo "$as_me: error: Working directory cannot be determined" >&2 + { (exit 1); exit 1; }; } + test "X$ac_ls_di" = "X$ac_pwd_ls_di" || +- { $as_echo "$as_me: error: pwd does not report name of working directory" >&2 ++ { echo "$as_me: error: pwd does not report name of working directory" >&2 + { (exit 1); exit 1; }; } + + +@@ -1463,12 +1322,12 @@ + if test -z "$srcdir"; then + ac_srcdir_defaulted=yes + # Try the directory containing this script, then the parent directory. +- ac_confdir=`$as_dirname -- "$as_myself" || +-$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ +- X"$as_myself" : 'X\(//\)[^/]' \| \ +- X"$as_myself" : 'X\(//\)$' \| \ +- X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || +-$as_echo X"$as_myself" | ++ ac_confdir=`$as_dirname -- "$0" || ++$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$0" : 'X\(//\)[^/]' \| \ ++ X"$0" : 'X\(//\)$' \| \ ++ X"$0" : 'X\(/\)' \| . 2>/dev/null || ++echo X"$0" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q +@@ -1495,12 +1354,12 @@ + fi + if test ! -r "$srcdir/$ac_unique_file"; then + test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." +- { $as_echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 ++ { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 + { (exit 1); exit 1; }; } + fi + ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" + ac_abs_confdir=`( +- cd "$srcdir" && test -r "./$ac_unique_file" || { $as_echo "$as_me: error: $ac_msg" >&2 ++ cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 + { (exit 1); exit 1; }; } + pwd)` + # When building in place, set srcdir=. +@@ -1549,9 +1408,9 @@ + + Installation directories: + --prefix=PREFIX install architecture-independent files in PREFIX +- [$ac_default_prefix] ++ [$ac_default_prefix] + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX +- [PREFIX] ++ [PREFIX] + + By default, \`make install' will install all the files in + \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify +@@ -1561,25 +1420,25 @@ + For better control, use the options below. + + Fine tuning of the installation directories: +- --bindir=DIR user executables [EPREFIX/bin] +- --sbindir=DIR system admin executables [EPREFIX/sbin] +- --libexecdir=DIR program executables [EPREFIX/libexec] +- --sysconfdir=DIR read-only single-machine data [PREFIX/etc] +- --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] +- --localstatedir=DIR modifiable single-machine data [PREFIX/var] +- --libdir=DIR object code libraries [EPREFIX/lib] +- --includedir=DIR C header files [PREFIX/include] +- --oldincludedir=DIR C header files for non-gcc [/usr/include] +- --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] +- --datadir=DIR read-only architecture-independent data [DATAROOTDIR] +- --infodir=DIR info documentation [DATAROOTDIR/info] +- --localedir=DIR locale-dependent data [DATAROOTDIR/locale] +- --mandir=DIR man documentation [DATAROOTDIR/man] +- --docdir=DIR documentation root [DATAROOTDIR/doc/samba] +- --htmldir=DIR html documentation [DOCDIR] +- --dvidir=DIR dvi documentation [DOCDIR] +- --pdfdir=DIR pdf documentation [DOCDIR] +- --psdir=DIR ps documentation [DOCDIR] ++ --bindir=DIR user executables [EPREFIX/bin] ++ --sbindir=DIR system admin executables [EPREFIX/sbin] ++ --libexecdir=DIR program executables [EPREFIX/libexec] ++ --sysconfdir=DIR read-only single-machine data [PREFIX/etc] ++ --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] ++ --localstatedir=DIR modifiable single-machine data [PREFIX/var] ++ --libdir=DIR object code libraries [EPREFIX/lib] ++ --includedir=DIR C header files [PREFIX/include] ++ --oldincludedir=DIR C header files for non-gcc [/usr/include] ++ --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] ++ --datadir=DIR read-only architecture-independent data [DATAROOTDIR] ++ --infodir=DIR info documentation [DATAROOTDIR/info] ++ --localedir=DIR locale-dependent data [DATAROOTDIR/locale] ++ --mandir=DIR man documentation [DATAROOTDIR/man] ++ --docdir=DIR documentation root [DATAROOTDIR/doc/samba] ++ --htmldir=DIR html documentation [DOCDIR] ++ --dvidir=DIR dvi documentation [DOCDIR] ++ --pdfdir=DIR pdf documentation [DOCDIR] ++ --psdir=DIR ps documentation [DOCDIR] + _ACEOF + + cat <<\_ACEOF +@@ -1598,7 +1457,6 @@ + cat <<\_ACEOF + + Optional Features: +- --disable-option-checking ignore unrecognized --enable/--with options + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) + --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --enable-debug Turn on compiler debugging information (default=no) +@@ -1731,17 +1589,15 @@ + if test "$ac_init_help" = "recursive"; then + # If there are subdirs, report their specific --help. + for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue +- test -d "$ac_dir" || +- { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || +- continue ++ test -d "$ac_dir" || continue + ac_builddir=. + + case "$ac_dir" in + .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) +- ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` ++ ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` + # A ".." for each directory in $ac_dir_suffix. +- ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` ++ ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; +@@ -1777,7 +1633,7 @@ + echo && + $SHELL "$ac_srcdir/configure" --help=recursive + else +- $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 ++ echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + fi || ac_status=$? + cd "$ac_pwd" || { ac_status=$?; break; } + done +@@ -1787,10 +1643,10 @@ + if $ac_init_version; then + cat <<\_ACEOF + Samba configure 3 +-generated by GNU Autoconf 2.63 ++generated by GNU Autoconf 2.61 + + Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +-2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. ++2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. + This configure script is free software; the Free Software Foundation + gives unlimited permission to copy, distribute and modify it. + _ACEOF +@@ -1801,7 +1657,7 @@ + running configure, to aid debugging if configure makes a mistake. + + It was created by Samba $as_me 3, which was +-generated by GNU Autoconf 2.63. Invocation command line was ++generated by GNU Autoconf 2.61. Invocation command line was + + $ $0 $@ + +@@ -1837,7 +1693,7 @@ + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- $as_echo "PATH: $as_dir" ++ echo "PATH: $as_dir" + done + IFS=$as_save_IFS + +@@ -1872,7 +1728,7 @@ + | -silent | --silent | --silen | --sile | --sil) + continue ;; + *\'*) +- ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; ++ ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + case $ac_pass in + 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; +@@ -1924,12 +1780,11 @@ + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( +- *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5 +-$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; ++ *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 ++echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( +- BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) $as_unset $ac_var ;; + esac ;; + esac +@@ -1959,9 +1814,9 @@ + do + eval ac_val=\$$ac_var + case $ac_val in +- *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; ++ *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac +- $as_echo "$ac_var='\''$ac_val'\''" ++ echo "$ac_var='\''$ac_val'\''" + done | sort + echo + +@@ -1976,9 +1831,9 @@ + do + eval ac_val=\$$ac_var + case $ac_val in +- *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; ++ *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac +- $as_echo "$ac_var='\''$ac_val'\''" ++ echo "$ac_var='\''$ac_val'\''" + done | sort + echo + fi +@@ -1994,8 +1849,8 @@ + echo + fi + test "$ac_signal" != 0 && +- $as_echo "$as_me: caught signal $ac_signal" +- $as_echo "$as_me: exit $exit_status" ++ echo "$as_me: caught signal $ac_signal" ++ echo "$as_me: exit $exit_status" + } >&5 + rm -f core *.core core.conftest.* && + rm -f -r conftest* confdefs* conf$$* $ac_clean_files && +@@ -2037,24 +1892,21 @@ + + + # Let the site file select an alternate cache file if it wants to. +-# Prefer an explicitly selected file to automatically selected ones. +-ac_site_file1=NONE +-ac_site_file2=NONE ++# Prefer explicitly selected file to automatically selected ones. + if test -n "$CONFIG_SITE"; then +- ac_site_file1=$CONFIG_SITE ++ set x "$CONFIG_SITE" + elif test "x$prefix" != xNONE; then +- ac_site_file1=$prefix/share/config.site +- ac_site_file2=$prefix/etc/config.site ++ set x "$prefix/share/config.site" "$prefix/etc/config.site" + else +- ac_site_file1=$ac_default_prefix/share/config.site +- ac_site_file2=$ac_default_prefix/etc/config.site ++ set x "$ac_default_prefix/share/config.site" \ ++ "$ac_default_prefix/etc/config.site" + fi +-for ac_site_file in "$ac_site_file1" "$ac_site_file2" ++shift ++for ac_site_file + do +- test "x$ac_site_file" = xNONE && continue + if test -r "$ac_site_file"; then +- { $as_echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 +-$as_echo "$as_me: loading site script $ac_site_file" >&6;} ++ { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 ++echo "$as_me: loading site script $ac_site_file" >&6;} + sed 's/^/| /' "$ac_site_file" >&5 + . "$ac_site_file" + fi +@@ -2064,16 +1916,16 @@ + # Some versions of bash will fail to source /dev/null (special + # files actually), so we avoid doing that. + if test -f "$cache_file"; then +- { $as_echo "$as_me:$LINENO: loading cache $cache_file" >&5 +-$as_echo "$as_me: loading cache $cache_file" >&6;} ++ { echo "$as_me:$LINENO: loading cache $cache_file" >&5 ++echo "$as_me: loading cache $cache_file" >&6;} + case $cache_file in + [\\/]* | ?:[\\/]* ) . "$cache_file";; + *) . "./$cache_file";; + esac + fi + else +- { $as_echo "$as_me:$LINENO: creating cache $cache_file" >&5 +-$as_echo "$as_me: creating cache $cache_file" >&6;} ++ { echo "$as_me:$LINENO: creating cache $cache_file" >&5 ++echo "$as_me: creating cache $cache_file" >&6;} + >$cache_file + fi + +@@ -2087,38 +1939,29 @@ + eval ac_new_val=\$ac_env_${ac_var}_value + case $ac_old_set,$ac_new_set in + set,) +- { $as_echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +-$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ++ { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 ++echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,set) +- { $as_echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 +-$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ++ { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 ++echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,);; + *) + if test "x$ac_old_val" != "x$ac_new_val"; then +- # differences in whitespace do not lead to failure. +- ac_old_val_w=`echo x $ac_old_val` +- ac_new_val_w=`echo x $ac_new_val` +- if test "$ac_old_val_w" != "$ac_new_val_w"; then +- { $as_echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 +-$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} +- ac_cache_corrupted=: +- else +- { $as_echo "$as_me:$LINENO: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 +-$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} +- eval $ac_var=\$ac_old_val +- fi +- { $as_echo "$as_me:$LINENO: former value: \`$ac_old_val'" >&5 +-$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} +- { $as_echo "$as_me:$LINENO: current value: \`$ac_new_val'" >&5 +-$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} ++ { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 ++echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ++ { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 ++echo "$as_me: former value: $ac_old_val" >&2;} ++ { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 ++echo "$as_me: current value: $ac_new_val" >&2;} ++ ac_cache_corrupted=: + fi;; + esac + # Pass precious variables to config.status. + if test "$ac_new_set" = set; then + case $ac_new_val in +- *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; ++ *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *) ac_arg=$ac_var=$ac_new_val ;; + esac + case " $ac_configure_args " in +@@ -2128,12 +1971,10 @@ + fi + done + if $ac_cache_corrupted; then +- { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +- { $as_echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 +-$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} +- { { $as_echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 +-$as_echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} ++ { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 ++echo "$as_me: error: changes in the environment can compromise the build" >&2;} ++ { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 ++echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} + { (exit 1); exit 1; }; } + fi + +@@ -2180,8 +2021,8 @@ + + case "$PATH" in + */usr/ucb*) +- { $as_echo "$as_me:$LINENO: WARNING: \$PATH contains /usr/ucb - build errors may follow" >&5 +-$as_echo "$as_me: WARNING: \$PATH contains /usr/ucb - build errors may follow" >&2;} ++ { echo "$as_me:$LINENO: WARNING: \$PATH contains /usr/ucb - build errors may follow" >&5 ++echo "$as_me: WARNING: \$PATH contains /usr/ucb - build errors may follow" >&2;} + ;; + esac + +@@ -2227,8 +2068,8 @@ + fi + done + if test -z "$ac_aux_dir"; then +- { { $as_echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5 +-$as_echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;} ++ { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5 ++echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;} + { (exit 1); exit 1; }; } + fi + +@@ -2254,8 +2095,8 @@ + fi + done + if test x"$libreplacedir" = "x"; then +- { { $as_echo "$as_me:$LINENO: error: cannot find libreplace in $libreplacepaths" >&5 +-$as_echo "$as_me: error: cannot find libreplace in $libreplacepaths" >&2;} ++ { { echo "$as_me:$LINENO: error: cannot find libreplace in $libreplacepaths" >&5 ++echo "$as_me: error: cannot find libreplace in $libreplacepaths" >&2;} + { (exit 1); exit 1; }; } + fi + LIBREPLACEOBJ="replace.o" +@@ -2263,34 +2104,34 @@ + + # Make sure we can run config.sub. + $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || +- { { $as_echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5 +-$as_echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;} ++ { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5 ++echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;} + { (exit 1); exit 1; }; } + +-{ $as_echo "$as_me:$LINENO: checking build system type" >&5 +-$as_echo_n "checking build system type... " >&6; } ++{ echo "$as_me:$LINENO: checking build system type" >&5 ++echo $ECHO_N "checking build system type... $ECHO_C" >&6; } + if test "${ac_cv_build+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_build_alias=$build_alias + test "x$ac_build_alias" = x && + ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` + test "x$ac_build_alias" = x && +- { { $as_echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 +-$as_echo "$as_me: error: cannot guess build type; you must specify one" >&2;} ++ { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 ++echo "$as_me: error: cannot guess build type; you must specify one" >&2;} + { (exit 1); exit 1; }; } + ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || +- { { $as_echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5 +-$as_echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;} ++ { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5 ++echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;} + { (exit 1); exit 1; }; } + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_build" >&5 +-$as_echo "$ac_cv_build" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_build" >&5 ++echo "${ECHO_T}$ac_cv_build" >&6; } + case $ac_cv_build in + *-*-*) ;; +-*) { { $as_echo "$as_me:$LINENO: error: invalid value of canonical build" >&5 +-$as_echo "$as_me: error: invalid value of canonical build" >&2;} ++*) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5 ++echo "$as_me: error: invalid value of canonical build" >&2;} + { (exit 1); exit 1; }; };; + esac + build=$ac_cv_build +@@ -2307,27 +2148,27 @@ + case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac + + +-{ $as_echo "$as_me:$LINENO: checking host system type" >&5 +-$as_echo_n "checking host system type... " >&6; } ++{ echo "$as_me:$LINENO: checking host system type" >&5 ++echo $ECHO_N "checking host system type... $ECHO_C" >&6; } + if test "${ac_cv_host+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "x$host_alias" = x; then + ac_cv_host=$ac_cv_build + else + ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || +- { { $as_echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5 +-$as_echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;} ++ { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5 ++echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;} + { (exit 1); exit 1; }; } + fi + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_host" >&5 +-$as_echo "$ac_cv_host" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_host" >&5 ++echo "${ECHO_T}$ac_cv_host" >&6; } + case $ac_cv_host in + *-*-*) ;; +-*) { { $as_echo "$as_me:$LINENO: error: invalid value of canonical host" >&5 +-$as_echo "$as_me: error: invalid value of canonical host" >&2;} ++*) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5 ++echo "$as_me: error: invalid value of canonical host" >&2;} + { (exit 1); exit 1; }; };; + esac + host=$ac_cv_host +@@ -2344,27 +2185,27 @@ + case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac + + +-{ $as_echo "$as_me:$LINENO: checking target system type" >&5 +-$as_echo_n "checking target system type... " >&6; } ++{ echo "$as_me:$LINENO: checking target system type" >&5 ++echo $ECHO_N "checking target system type... $ECHO_C" >&6; } + if test "${ac_cv_target+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "x$target_alias" = x; then + ac_cv_target=$ac_cv_host + else + ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` || +- { { $as_echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&5 +-$as_echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&2;} ++ { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&5 ++echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&2;} + { (exit 1); exit 1; }; } + fi + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_target" >&5 +-$as_echo "$ac_cv_target" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_target" >&5 ++echo "${ECHO_T}$ac_cv_target" >&6; } + case $ac_cv_target in + *-*-*) ;; +-*) { { $as_echo "$as_me:$LINENO: error: invalid value of canonical target" >&5 +-$as_echo "$as_me: error: invalid value of canonical target" >&2;} ++*) { { echo "$as_me:$LINENO: error: invalid value of canonical target" >&5 ++echo "$as_me: error: invalid value of canonical target" >&2;} + { (exit 1); exit 1; }; };; + esac + target=$ac_cv_target +@@ -2408,9 +2249,9 @@ + pammodulesdir="${libdir}/security" + configdir="${libdir}" + swatdir="\${prefix}/swat" +-codepagedir="\${MODULESDIR}" +-statedir="\${LOCKDIR}" +-cachedir="\${prefix}/cache/samba" ++codepagedir="\${prefix}/share/samba" ++statedir="\${VARDIR}/lib/samba" ++cachedir="\${VARDIR}/cache/samba" + localedir="\${prefix}/share/locale" + + +@@ -2426,10 +2267,10 @@ + test "${libdir}" || libdir="\${prefix}/lib" + modulesdir="${libdir}/samba" + configdir="\${sysconfdir}/samba" +- swatdir="\${DATADIR}/samba/swat" ++ swatdir="\${prefix}/swat" + codepagedir="\${prefix}/share/samba" + statedir="\${VARDIR}/lib/samba" +- cachedir="\${VARDIR}/lib/samba" ++ cachedir="\${VARDIR}/cache/samba" + + cat >>confdefs.h <<\_ACEOF + #define FHS_COMPATIBLE 1 +@@ -2450,8 +2291,8 @@ + # + # Just in case anybody calls it without argument + # +- { $as_echo "$as_me:$LINENO: WARNING: --with-privatedir called without argument - will use default" >&5 +-$as_echo "$as_me: WARNING: --with-privatedir called without argument - will use default" >&2;} ++ { echo "$as_me:$LINENO: WARNING: --with-privatedir called without argument - will use default" >&5 ++echo "$as_me: WARNING: --with-privatedir called without argument - will use default" >&2;} + ;; + * ) + privatedir="$withval" +@@ -2470,8 +2311,8 @@ + # + # Just in case anybody calls it without argument + # +- { $as_echo "$as_me:$LINENO: WARNING: --with-rootsbindir called without argument - will use default" >&5 +-$as_echo "$as_me: WARNING: --with-rootsbindir called without argument - will use default" >&2;} ++ { echo "$as_me:$LINENO: WARNING: --with-rootsbindir called without argument - will use default" >&5 ++echo "$as_me: WARNING: --with-rootsbindir called without argument - will use default" >&2;} + ;; + * ) + rootsbindir="$withval" +@@ -2490,8 +2331,8 @@ + # + # Just in case anybody calls it without argument + # +- { $as_echo "$as_me:$LINENO: WARNING: --with-lockdir called without argument - will use default" >&5 +-$as_echo "$as_me: WARNING: --with-lockdir called without argument - will use default" >&2;} ++ { echo "$as_me:$LINENO: WARNING: --with-lockdir called without argument - will use default" >&5 ++echo "$as_me: WARNING: --with-lockdir called without argument - will use default" >&2;} + ;; + * ) + lockdir="$withval" +@@ -2510,8 +2351,8 @@ + # + # Just in case anybody calls it without argument + # +- { $as_echo "$as_me:$LINENO: WARNING: --with-piddir called without argument - will use default" >&5 +-$as_echo "$as_me: WARNING: --with-piddir called without argument - will use default" >&2;} ++ { echo "$as_me:$LINENO: WARNING: --with-piddir called without argument - will use default" >&5 ++echo "$as_me: WARNING: --with-piddir called without argument - will use default" >&2;} + ;; + * ) + piddir="$withval" +@@ -2530,8 +2371,8 @@ + # + # Just in case anybody does it + # +- { $as_echo "$as_me:$LINENO: WARNING: --with-swatdir called without argument - will use default" >&5 +-$as_echo "$as_me: WARNING: --with-swatdir called without argument - will use default" >&2;} ++ { echo "$as_me:$LINENO: WARNING: --with-swatdir called without argument - will use default" >&5 ++echo "$as_me: WARNING: --with-swatdir called without argument - will use default" >&2;} + ;; + * ) + swatdir="$withval" +@@ -2550,8 +2391,8 @@ + # + # Just in case anybody does it + # +- { $as_echo "$as_me:$LINENO: WARNING: --with-configdir called without argument - will use default" >&5 +-$as_echo "$as_me: WARNING: --with-configdir called without argument - will use default" >&2;} ++ { echo "$as_me:$LINENO: WARNING: --with-configdir called without argument - will use default" >&5 ++echo "$as_me: WARNING: --with-configdir called without argument - will use default" >&2;} + ;; + * ) + configdir="$withval" +@@ -2570,8 +2411,8 @@ + # + # Just in case anybody does it + # +- { $as_echo "$as_me:$LINENO: WARNING: --with-logfilebase called without argument - will use default" >&5 +-$as_echo "$as_me: WARNING: --with-logfilebase called without argument - will use default" >&2;} ++ { echo "$as_me:$LINENO: WARNING: --with-logfilebase called without argument - will use default" >&5 ++echo "$as_me: WARNING: --with-logfilebase called without argument - will use default" >&2;} + ;; + * ) + logfilebase="$withval" +@@ -2588,8 +2429,8 @@ + if test "${with_ctdb+set}" = set; then + withval=$with_ctdb; case "$withval" in + yes|no) +- { $as_echo "$as_me:$LINENO: WARNING: --with-ctdb called without argument" >&5 +-$as_echo "$as_me: WARNING: --with-ctdb called without argument" >&2;} ++ { echo "$as_me:$LINENO: WARNING: --with-ctdb called without argument" >&5 ++echo "$as_me: WARNING: --with-ctdb called without argument" >&2;} + ;; + * ) + ctdbdir="$withval" +@@ -2608,8 +2449,8 @@ + # + # Just in case anybody does it + # +- { $as_echo "$as_me:$LINENO: WARNING: --with-modulesdir without argument - will use default" >&5 +-$as_echo "$as_me: WARNING: --with-modulesdir without argument - will use default" >&2;} ++ { echo "$as_me:$LINENO: WARNING: --with-modulesdir without argument - will use default" >&5 ++echo "$as_me: WARNING: --with-modulesdir without argument - will use default" >&2;} + ;; + * ) + modulesdir="$withval" +@@ -2628,8 +2469,8 @@ + # + # Just in case anybody calls it without argument + # +- { $as_echo "$as_me:$LINENO: WARNING: --with-pammodulesdir called without argument - will use default" >&5 +-$as_echo "$as_me: WARNING: --with-pammodulesdir called without argument - will use default" >&2;} ++ { echo "$as_me:$LINENO: WARNING: --with-pammodulesdir called without argument - will use default" >&5 ++echo "$as_me: WARNING: --with-pammodulesdir called without argument - will use default" >&2;} + ;; + * ) + pammodulesdir="$withval" +@@ -2648,8 +2489,8 @@ + # + # Just in case anybody does it + # +- { $as_echo "$as_me:$LINENO: WARNING: --with-mandir without argument - will use default" >&5 +-$as_echo "$as_me: WARNING: --with-mandir without argument - will use default" >&2;} ++ { echo "$as_me:$LINENO: WARNING: --with-mandir without argument - will use default" >&5 ++echo "$as_me: WARNING: --with-mandir without argument - will use default" >&2;} + ;; + * ) + mandir="$withval" +@@ -2668,8 +2509,8 @@ + # + # Just in case anybody does it + # +- { $as_echo "$as_me:$LINENO: WARNING: --with-localedir called without argument - will use default" >&5 +-$as_echo "$as_me: WARNING: --with-localedir called without argument - will use default" >&2;} ++ { echo "$as_me:$LINENO: WARNING: --with-localedir called without argument - will use default" >&5 ++echo "$as_me: WARNING: --with-localedir called without argument - will use default" >&2;} + ;; + *) + localedir="$withval" +@@ -2705,8 +2546,8 @@ + if test "${with_selftest_prefix+set}" = set; then + withval=$with_selftest_prefix; case "$withval" in + yes|no) +- { $as_echo "$as_me:$LINENO: WARNING: --with-selftest-prefix called without argument - will use default" >&5 +-$as_echo "$as_me: WARNING: --with-selftest-prefix called without argument - will use default" >&2;} ++ { echo "$as_me:$LINENO: WARNING: --with-selftest-prefix called without argument - will use default" >&5 ++echo "$as_me: WARNING: --with-selftest-prefix called without argument - will use default" >&2;} + ;; + * ) + selftest_prefix="$withval" +@@ -2725,15 +2566,15 @@ + if test "${with_smbtorture4_path+set}" = set; then + withval=$with_smbtorture4_path; case "$withval" in + yes|no) +- { { $as_echo "$as_me:$LINENO: error: --with-smbtorture4-path should take a path" >&5 +-$as_echo "$as_me: error: --with-smbtorture4-path should take a path" >&2;} ++ { { echo "$as_me:$LINENO: error: --with-smbtorture4-path should take a path" >&5 ++echo "$as_me: error: --with-smbtorture4-path should take a path" >&2;} + { (exit 1); exit 1; }; } + ;; + * ) + smbtorture4_path="$withval" + if test -z "$smbtorture4_path" -a ! -f $smbtorture4_path; then +- { { $as_echo "$as_me:$LINENO: error: '$smbtorture_path' does not exist!" >&5 +-$as_echo "$as_me: error: '$smbtorture_path' does not exist!" >&2;} ++ { { echo "$as_me:$LINENO: error: '$smbtorture_path' does not exist!" >&5 ++echo "$as_me: error: '$smbtorture_path' does not exist!" >&2;} + { (exit 1); exit 1; }; } + fi + ;; +@@ -2824,10 +2665,10 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. + set dummy ${ac_tool_prefix}gcc; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } + if test "${ac_cv_prog_CC+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +@@ -2840,7 +2681,7 @@ + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -2851,11 +2692,11 @@ + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { $as_echo "$as_me:$LINENO: result: $CC" >&5 +-$as_echo "$CC" >&6; } ++ { echo "$as_me:$LINENO: result: $CC" >&5 ++echo "${ECHO_T}$CC" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + +@@ -2864,10 +2705,10 @@ + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. + set dummy gcc; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } + if test "${ac_cv_prog_ac_ct_CC+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +@@ -2880,7 +2721,7 @@ + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="gcc" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -2891,11 +2732,11 @@ + fi + ac_ct_CC=$ac_cv_prog_ac_ct_CC + if test -n "$ac_ct_CC"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +-$as_echo "$ac_ct_CC" >&6; } ++ { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 ++echo "${ECHO_T}$ac_ct_CC" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + if test "x$ac_ct_CC" = x; then +@@ -2903,8 +2744,12 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 +-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ++{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&5 ++echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&2;} + ac_tool_warned=yes ;; + esac + CC=$ac_ct_CC +@@ -2917,10 +2762,10 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. + set dummy ${ac_tool_prefix}cc; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } + if test "${ac_cv_prog_CC+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +@@ -2933,7 +2778,7 @@ + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}cc" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -2944,11 +2789,11 @@ + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { $as_echo "$as_me:$LINENO: result: $CC" >&5 +-$as_echo "$CC" >&6; } ++ { echo "$as_me:$LINENO: result: $CC" >&5 ++echo "${ECHO_T}$CC" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + +@@ -2957,10 +2802,10 @@ + if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. + set dummy cc; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } + if test "${ac_cv_prog_CC+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +@@ -2978,7 +2823,7 @@ + continue + fi + ac_cv_prog_CC="cc" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -3001,11 +2846,11 @@ + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { $as_echo "$as_me:$LINENO: result: $CC" >&5 +-$as_echo "$CC" >&6; } ++ { echo "$as_me:$LINENO: result: $CC" >&5 ++echo "${ECHO_T}$CC" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + +@@ -3016,10 +2861,10 @@ + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. + set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } + if test "${ac_cv_prog_CC+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +@@ -3032,7 +2877,7 @@ + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -3043,11 +2888,11 @@ + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { $as_echo "$as_me:$LINENO: result: $CC" >&5 +-$as_echo "$CC" >&6; } ++ { echo "$as_me:$LINENO: result: $CC" >&5 ++echo "${ECHO_T}$CC" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + +@@ -3060,10 +2905,10 @@ + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } + if test "${ac_cv_prog_ac_ct_CC+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +@@ -3076,7 +2921,7 @@ + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="$ac_prog" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -3087,11 +2932,11 @@ + fi + ac_ct_CC=$ac_cv_prog_ac_ct_CC + if test -n "$ac_ct_CC"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +-$as_echo "$ac_ct_CC" >&6; } ++ { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 ++echo "${ECHO_T}$ac_ct_CC" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + +@@ -3103,8 +2948,12 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 +-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ++{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&5 ++echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&2;} + ac_tool_warned=yes ;; + esac + CC=$ac_ct_CC +@@ -3114,50 +2963,44 @@ + fi + + +-test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH ++test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: no acceptable C compiler found in \$PATH ++echo "$as_me: error: no acceptable C compiler found in \$PATH + See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++ { (exit 1); exit 1; }; } + + # Provide some information about the compiler. +-$as_echo "$as_me:$LINENO: checking for C compiler version" >&5 +-set X $ac_compile +-ac_compiler=$2 ++echo "$as_me:$LINENO: checking for C compiler version" >&5 ++ac_compiler=`set X $ac_compile; echo $2` + { (ac_try="$ac_compiler --version >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compiler --version >&5") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + { (ac_try="$ac_compiler -v >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compiler -v >&5") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + { (ac_try="$ac_compiler -V >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compiler -V >&5") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + + cat >conftest.$ac_ext <<_ACEOF +@@ -3176,22 +3019,27 @@ + } + _ACEOF + ac_clean_files_save=$ac_clean_files +-ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" ++ac_clean_files="$ac_clean_files a.out a.exe b.out" + # Try to create an executable without -o first, disregard a.out. + # It will help us diagnose broken compilers, and finding out an intuition + # of exeext. +-{ $as_echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 +-$as_echo_n "checking for C compiler default output file name... " >&6; } +-ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` +- +-# The possible output files: +-ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" +- ++{ echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 ++echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; } ++ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` ++# ++# List of possible output files, starting from the most likely. ++# The algorithm is not robust to junk in `.', hence go to wildcards (a.*) ++# only as a last resort. b.out is created by i960 compilers. ++ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' ++# ++# The IRIX 6 linker writes into existing files which may not be ++# executable, retaining their permissions. Remove them first so a ++# subsequent execution test works. + ac_rmfiles= + for ac_file in $ac_files + do + case $ac_file in +- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; + * ) ac_rmfiles="$ac_rmfiles $ac_file";; + esac + done +@@ -3202,11 +3050,10 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link_default") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. + # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' +@@ -3217,7 +3064,7 @@ + do + test -f "$ac_file" || continue + case $ac_file in +- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) + ;; + [ab].out ) + # We found the default executable, but exeext='' is most +@@ -3244,27 +3091,25 @@ + ac_file='' + fi + +-{ $as_echo "$as_me:$LINENO: result: $ac_file" >&5 +-$as_echo "$ac_file" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_file" >&5 ++echo "${ECHO_T}$ac_file" >&6; } + if test -z "$ac_file"; then +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +-{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: C compiler cannot create executables ++{ { echo "$as_me:$LINENO: error: C compiler cannot create executables + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: C compiler cannot create executables ++echo "$as_me: error: C compiler cannot create executables + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + fi + + ac_exeext=$ac_cv_exeext + + # Check that the compiler produces executables we can run. If not, either + # the compiler is broken, or we cross compile. +-{ $as_echo "$as_me:$LINENO: checking whether the C compiler works" >&5 +-$as_echo_n "checking whether the C compiler works... " >&6; } ++{ echo "$as_me:$LINENO: checking whether the C compiler works" >&5 ++echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; } + # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 + # If not cross compiling, check that we can run a simple program. + if test "$cross_compiling" != yes; then +@@ -3273,53 +3118,49 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + cross_compiling=no + else + if test "$cross_compiling" = maybe; then + cross_compiling=yes + else +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot run C compiled programs. ++ { { echo "$as_me:$LINENO: error: cannot run C compiled programs. + If you meant to cross compile, use \`--host'. + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot run C compiled programs. ++echo "$as_me: error: cannot run C compiled programs. + If you meant to cross compile, use \`--host'. + See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++ { (exit 1); exit 1; }; } + fi + fi + fi +-{ $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++{ echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + +-rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ++rm -f a.out a.exe conftest$ac_cv_exeext b.out + ac_clean_files=$ac_clean_files_save + # Check that the compiler produces executables we can run. If not, either + # the compiler is broken, or we cross compile. +-{ $as_echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 +-$as_echo_n "checking whether we are cross compiling... " >&6; } +-{ $as_echo "$as_me:$LINENO: result: $cross_compiling" >&5 +-$as_echo "$cross_compiling" >&6; } ++{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 ++echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; } ++{ echo "$as_me:$LINENO: result: $cross_compiling" >&5 ++echo "${ECHO_T}$cross_compiling" >&6; } + +-{ $as_echo "$as_me:$LINENO: checking for suffix of executables" >&5 +-$as_echo_n "checking for suffix of executables... " >&6; } ++{ echo "$as_me:$LINENO: checking for suffix of executables" >&5 ++echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; } + if { (ac_try="$ac_link" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + # If both `conftest.exe' and `conftest' are `present' (well, observable) + # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will +@@ -3328,33 +3169,31 @@ + for ac_file in conftest.exe conftest conftest.*; do + test -f "$ac_file" || continue + case $ac_file in +- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; + *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + break;; + * ) break;; + esac + done + else +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link ++ { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute suffix of executables: cannot compile and link ++echo "$as_me: error: cannot compute suffix of executables: cannot compile and link + See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++ { (exit 1); exit 1; }; } + fi + + rm -f conftest$ac_cv_exeext +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 +-$as_echo "$ac_cv_exeext" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 ++echo "${ECHO_T}$ac_cv_exeext" >&6; } + + rm -f conftest.$ac_ext + EXEEXT=$ac_cv_exeext + ac_exeext=$EXEEXT +-{ $as_echo "$as_me:$LINENO: checking for suffix of object files" >&5 +-$as_echo_n "checking for suffix of object files... " >&6; } ++{ echo "$as_me:$LINENO: checking for suffix of object files" >&5 ++echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; } + if test "${ac_cv_objext+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -3377,43 +3216,40 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + for ac_file in conftest.o conftest.obj conftest.*; do + test -f "$ac_file" || continue; + case $ac_file in +- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;; + *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` + break;; + esac + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +-{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile ++{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute suffix of object files: cannot compile ++echo "$as_me: error: cannot compute suffix of object files: cannot compile + See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++ { (exit 1); exit 1; }; } + fi + + rm -f conftest.$ac_cv_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 +-$as_echo "$ac_cv_objext" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 ++echo "${ECHO_T}$ac_cv_objext" >&6; } + OBJEXT=$ac_cv_objext + ac_objext=$OBJEXT +-{ $as_echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 +-$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } ++{ echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 ++echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } + if test "${ac_cv_c_compiler_gnu+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -3439,21 +3275,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_compiler_gnu=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_compiler_gnu=no +@@ -3461,21 +3296,17 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cv_c_compiler_gnu=$ac_compiler_gnu +- +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 +-$as_echo "$ac_cv_c_compiler_gnu" >&6; } +-if test $ac_compiler_gnu = yes; then +- GCC=yes +-else +- GCC= ++ + fi ++{ echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 ++echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } ++GCC=`test $ac_compiler_gnu = yes && echo yes` + ac_test_CFLAGS=${CFLAGS+set} + ac_save_CFLAGS=$CFLAGS +-{ $as_echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 +-$as_echo_n "checking whether $CC accepts -g... " >&6; } ++{ echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 ++echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } + if test "${ac_cv_prog_cc_g+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes +@@ -3502,21 +3333,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_g=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + CFLAGS="" +@@ -3541,21 +3371,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + : + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_c_werror_flag=$ac_save_c_werror_flag +@@ -3581,21 +3410,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_g=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -3610,8 +3438,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 +-$as_echo "$ac_cv_prog_cc_g" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 ++echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; } + if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS + elif test $ac_cv_prog_cc_g = yes; then +@@ -3627,10 +3455,10 @@ + CFLAGS= + fi + fi +-{ $as_echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 +-$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } ++{ echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 ++echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } + if test "${ac_cv_prog_cc_c89+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_cv_prog_cc_c89=no + ac_save_CC=$CC +@@ -3701,21 +3529,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_c89=$ac_arg + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -3731,15 +3558,15 @@ + # AC_CACHE_VAL + case "x$ac_cv_prog_cc_c89" in + x) +- { $as_echo "$as_me:$LINENO: result: none needed" >&5 +-$as_echo "none needed" >&6; } ;; ++ { echo "$as_me:$LINENO: result: none needed" >&5 ++echo "${ECHO_T}none needed" >&6; } ;; + xno) +- { $as_echo "$as_me:$LINENO: result: unsupported" >&5 +-$as_echo "unsupported" >&6; } ;; ++ { echo "$as_me:$LINENO: result: unsupported" >&5 ++echo "${ECHO_T}unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" +- { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 +-$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; ++ { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 ++echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; + esac + + +@@ -3752,10 +3579,10 @@ + CFLAGS=$savedCFLAGS + + if test x"$GCC" != x"yes" ; then +- { $as_echo "$as_me:$LINENO: checking for $CC option to accept ISO C99" >&5 +-$as_echo_n "checking for $CC option to accept ISO C99... " >&6; } ++ { echo "$as_me:$LINENO: checking for $CC option to accept ISO C99" >&5 ++echo $ECHO_N "checking for $CC option to accept ISO C99... $ECHO_C" >&6; } + if test "${ac_cv_prog_cc_c99+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_cv_prog_cc_c99=no + ac_save_CC=$CC +@@ -3902,7 +3729,7 @@ + return 0; + } + _ACEOF +-for ac_arg in '' -std=gnu99 -std=c99 -c99 -AC99 -xc99=all -qlanglvl=extc99 ++for ac_arg in '' -std=gnu99 -c99 -qlanglvl=extc99 + do + CC="$ac_save_CC $ac_arg" + rm -f conftest.$ac_objext +@@ -3911,21 +3738,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_c99=$ac_arg + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -3941,15 +3767,15 @@ + # AC_CACHE_VAL + case "x$ac_cv_prog_cc_c99" in + x) +- { $as_echo "$as_me:$LINENO: result: none needed" >&5 +-$as_echo "none needed" >&6; } ;; ++ { echo "$as_me:$LINENO: result: none needed" >&5 ++echo "${ECHO_T}none needed" >&6; } ;; + xno) +- { $as_echo "$as_me:$LINENO: result: unsupported" >&5 +-$as_echo "unsupported" >&6; } ;; ++ { echo "$as_me:$LINENO: result: unsupported" >&5 ++echo "${ECHO_T}unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c99" +- { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c99" >&5 +-$as_echo "$ac_cv_prog_cc_c99" >&6; } ;; ++ { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c99" >&5 ++echo "${ECHO_T}$ac_cv_prog_cc_c99" >&6; } ;; + esac + + +@@ -3957,27 +3783,33 @@ + fi + + if test x"$GCC" = x"yes" ; then +- { $as_echo "$as_me:$LINENO: checking for version of gcc" >&5 +-$as_echo_n "checking for version of gcc... " >&6; } ++ { echo "$as_me:$LINENO: checking for version of gcc" >&5 ++echo $ECHO_N "checking for version of gcc... $ECHO_C" >&6; } + GCC_VERSION=`$CC -dumpversion` +- { $as_echo "$as_me:$LINENO: result: ${GCC_VERSION}" >&5 +-$as_echo "${GCC_VERSION}" >&6; } ++ { echo "$as_me:$LINENO: result: ${GCC_VERSION}" >&5 ++echo "${ECHO_T}${GCC_VERSION}" >&6; } + fi + ++cat >>confdefs.h <<\_ACEOF ++#define _GNU_SOURCE 1 ++_ACEOF ++ ++ ++ + ac_ext=c + ac_cpp='$CPP $CPPFLAGS' + ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' + ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_c_compiler_gnu +-{ $as_echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 +-$as_echo_n "checking how to run the C preprocessor... " >&6; } ++{ echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 ++echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; } + # On Suns, sometimes $CPP names a directory. + if test -n "$CPP" && test -d "$CPP"; then + CPP= + fi + if test -z "$CPP"; then + if test "${ac_cv_prog_CPP+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + # Double quotes because CPP needs to be expanded + for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" +@@ -4009,21 +3841,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + : + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + # Broken: fails on valid input. +@@ -4047,14 +3878,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err +@@ -4062,7 +3892,7 @@ + # Broken: success on invalid input. + continue + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + # Passes both tests. +@@ -4087,8 +3917,8 @@ + else + ac_cv_prog_CPP=$CPP + fi +-{ $as_echo "$as_me:$LINENO: result: $CPP" >&5 +-$as_echo "$CPP" >&6; } ++{ echo "$as_me:$LINENO: result: $CPP" >&5 ++echo "${ECHO_T}$CPP" >&6; } + ac_preproc_ok=false + for ac_c_preproc_warn_flag in '' yes + do +@@ -4116,21 +3946,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + : + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + # Broken: fails on valid input. +@@ -4154,14 +3983,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err +@@ -4169,7 +3997,7 @@ + # Broken: success on invalid input. + continue + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + # Passes both tests. +@@ -4185,13 +4013,11 @@ + if $ac_preproc_ok; then + : + else +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check ++ { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check ++echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check + See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++ { (exit 1); exit 1; }; } + fi + + ac_ext=c +@@ -4201,37 +4027,42 @@ + ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +-{ $as_echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 +-$as_echo_n "checking for grep that handles long lines and -e... " >&6; } ++{ echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 ++echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; } ++if test "${ac_cv_path_GREP+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ # Extract the first word of "grep ggrep" to use in msg output ++if test -z "$GREP"; then ++set dummy grep ggrep; ac_prog_name=$2 + if test "${ac_cv_path_GREP+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- if test -z "$GREP"; then + ac_path_GREP_found=false +- # Loop through the user's path and test for each of PROGNAME-LIST +- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++# Loop through the user's path and test for each of PROGNAME-LIST ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in grep ggrep; do +- for ac_exec_ext in '' $ac_executable_extensions; do +- ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" +- { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue +-# Check for GNU ac_path_GREP and select it if it is found. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" ++ { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue ++ # Check for GNU ac_path_GREP and select it if it is found. + # Check for GNU $ac_path_GREP + case `"$ac_path_GREP" --version 2>&1` in + *GNU*) + ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; + *) + ac_count=0 +- $as_echo_n 0123456789 >"conftest.in" ++ echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" +- $as_echo 'GREP' >> "conftest.nl" ++ echo 'GREP' >> "conftest.nl" + "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + ac_count=`expr $ac_count + 1` +@@ -4246,60 +4077,74 @@ + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; + esac + +- $ac_path_GREP_found && break 3 +- done ++ ++ $ac_path_GREP_found && break 3 + done + done ++ ++done + IFS=$as_save_IFS +- if test -z "$ac_cv_path_GREP"; then +- { { $as_echo "$as_me:$LINENO: error: no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 +-$as_echo "$as_me: error: no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} ++ ++ ++fi ++ ++GREP="$ac_cv_path_GREP" ++if test -z "$GREP"; then ++ { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 ++echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} + { (exit 1); exit 1; }; } +- fi ++fi ++ + else + ac_cv_path_GREP=$GREP + fi + ++ + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 +-$as_echo "$ac_cv_path_GREP" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 ++echo "${ECHO_T}$ac_cv_path_GREP" >&6; } + GREP="$ac_cv_path_GREP" + + +-{ $as_echo "$as_me:$LINENO: checking for egrep" >&5 +-$as_echo_n "checking for egrep... " >&6; } ++{ echo "$as_me:$LINENO: checking for egrep" >&5 ++echo $ECHO_N "checking for egrep... $ECHO_C" >&6; } + if test "${ac_cv_path_EGREP+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 + then ac_cv_path_EGREP="$GREP -E" + else +- if test -z "$EGREP"; then ++ # Extract the first word of "egrep" to use in msg output ++if test -z "$EGREP"; then ++set dummy egrep; ac_prog_name=$2 ++if test "${ac_cv_path_EGREP+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else + ac_path_EGREP_found=false +- # Loop through the user's path and test for each of PROGNAME-LIST +- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++# Loop through the user's path and test for each of PROGNAME-LIST ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in egrep; do +- for ac_exec_ext in '' $ac_executable_extensions; do +- ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" +- { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue +-# Check for GNU ac_path_EGREP and select it if it is found. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" ++ { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue ++ # Check for GNU ac_path_EGREP and select it if it is found. + # Check for GNU $ac_path_EGREP + case `"$ac_path_EGREP" --version 2>&1` in + *GNU*) + ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; + *) + ac_count=0 +- $as_echo_n 0123456789 >"conftest.in" ++ echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" +- $as_echo 'EGREP' >> "conftest.nl" ++ echo 'EGREP' >> "conftest.nl" + "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + ac_count=`expr $ac_count + 1` +@@ -4314,31 +4159,69 @@ + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; + esac + +- $ac_path_EGREP_found && break 3 +- done ++ ++ $ac_path_EGREP_found && break 3 + done + done ++ ++done + IFS=$as_save_IFS +- if test -z "$ac_cv_path_EGREP"; then +- { { $as_echo "$as_me:$LINENO: error: no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 +-$as_echo "$as_me: error: no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} ++ ++ ++fi ++ ++EGREP="$ac_cv_path_EGREP" ++if test -z "$EGREP"; then ++ { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 ++echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} + { (exit 1); exit 1; }; } +- fi ++fi ++ + else + ac_cv_path_EGREP=$EGREP + fi + ++ + fi + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 +-$as_echo "$ac_cv_path_EGREP" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 ++echo "${ECHO_T}$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" + + +-{ $as_echo "$as_me:$LINENO: checking for ANSI C header files" >&5 +-$as_echo_n "checking for ANSI C header files... " >&6; } ++ ++{ echo "$as_me:$LINENO: checking for AIX" >&5 ++echo $ECHO_N "checking for AIX... $ECHO_C" >&6; } ++cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++#ifdef _AIX ++ yes ++#endif ++ ++_ACEOF ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "yes" >/dev/null 2>&1; then ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } ++cat >>confdefs.h <<\_ACEOF ++#define _ALL_SOURCE 1 ++_ACEOF ++ ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++rm -f conftest* ++ ++ ++{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5 ++echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; } + if test "${ac_cv_header_stdc+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -4365,21 +4248,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_header_stdc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_header_stdc=no +@@ -4471,40 +4353,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + : + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + ac_cv_header_stdc=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 +-$as_echo "$ac_cv_header_stdc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 ++echo "${ECHO_T}$ac_cv_header_stdc" >&6; } + if test $ac_cv_header_stdc = yes; then + + cat >>confdefs.h <<\_ACEOF +@@ -4526,11 +4405,11 @@ + for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ + inttypes.h stdint.h unistd.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -4548,21 +4427,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + eval "$as_ac_Header=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_Header=no" +@@ -4570,15 +4448,12 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -4586,19 +4461,18 @@ + done + + +- +- if test "${ac_cv_header_minix_config_h+set}" = set; then +- { $as_echo "$as_me:$LINENO: checking for minix/config.h" >&5 +-$as_echo_n "checking for minix/config.h... " >&6; } + if test "${ac_cv_header_minix_config_h+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ { echo "$as_me:$LINENO: checking for minix/config.h" >&5 ++echo $ECHO_N "checking for minix/config.h... $ECHO_C" >&6; } ++if test "${ac_cv_header_minix_config_h+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_minix_config_h" >&5 +-$as_echo "$ac_cv_header_minix_config_h" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_header_minix_config_h" >&5 ++echo "${ECHO_T}$ac_cv_header_minix_config_h" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking minix/config.h usability" >&5 +-$as_echo_n "checking minix/config.h usability... " >&6; } ++{ echo "$as_me:$LINENO: checking minix/config.h usability" >&5 ++echo $ECHO_N "checking minix/config.h usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -4614,33 +4488,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking minix/config.h presence" >&5 +-$as_echo_n "checking minix/config.h presence... " >&6; } ++{ echo "$as_me:$LINENO: checking minix/config.h presence" >&5 ++echo $ECHO_N "checking minix/config.h presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -4654,52 +4527,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: minix/config.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: minix/config.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: minix/config.h: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: minix/config.h: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: minix/config.h: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: minix/config.h: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: minix/config.h: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: minix/config.h: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: minix/config.h: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: minix/config.h: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: minix/config.h: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: minix/config.h: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: minix/config.h: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: minix/config.h: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: minix/config.h: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: minix/config.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: minix/config.h: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: minix/config.h: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: minix/config.h: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: minix/config.h: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: minix/config.h: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: minix/config.h: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: minix/config.h: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: minix/config.h: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: minix/config.h: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: minix/config.h: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: minix/config.h: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: minix/config.h: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: minix/config.h: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: minix/config.h: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: minix/config.h: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: minix/config.h: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -4708,25 +4580,25 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for minix/config.h" >&5 +-$as_echo_n "checking for minix/config.h... " >&6; } ++{ echo "$as_me:$LINENO: checking for minix/config.h" >&5 ++echo $ECHO_N "checking for minix/config.h... $ECHO_C" >&6; } + if test "${ac_cv_header_minix_config_h+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_cv_header_minix_config_h=$ac_header_preproc + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_minix_config_h" >&5 +-$as_echo "$ac_cv_header_minix_config_h" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_header_minix_config_h" >&5 ++echo "${ECHO_T}$ac_cv_header_minix_config_h" >&6; } + + fi +-if test "x$ac_cv_header_minix_config_h" = x""yes; then ++if test $ac_cv_header_minix_config_h = yes; then + MINIX=yes + else + MINIX= + fi + + +- if test "$MINIX" = yes; then ++if test "$MINIX" = yes; then + + cat >>confdefs.h <<\_ACEOF + #define _POSIX_SOURCE 1 +@@ -4742,14 +4614,22 @@ + #define _MINIX 1 + _ACEOF + +- fi ++fi ++ ++ ++ ++ ++ + + + +- { $as_echo "$as_me:$LINENO: checking whether it is safe to define __EXTENSIONS__" >&5 +-$as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; } ++ ++ ++ ++ { echo "$as_me:$LINENO: checking whether it is safe to define __EXTENSIONS__" >&5 ++echo $ECHO_N "checking whether it is safe to define __EXTENSIONS__... $ECHO_C" >&6; } + if test "${ac_cv_safe_to_define___extensions__+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -4774,21 +4654,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_safe_to_define___extensions__=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_safe_to_define___extensions__=no +@@ -4796,22 +4675,14 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_safe_to_define___extensions__" >&5 +-$as_echo "$ac_cv_safe_to_define___extensions__" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_safe_to_define___extensions__" >&5 ++echo "${ECHO_T}$ac_cv_safe_to_define___extensions__" >&6; } + test $ac_cv_safe_to_define___extensions__ = yes && + cat >>confdefs.h <<\_ACEOF + #define __EXTENSIONS__ 1 + _ACEOF + + cat >>confdefs.h <<\_ACEOF +-#define _ALL_SOURCE 1 +-_ACEOF +- +- cat >>confdefs.h <<\_ACEOF +-#define _GNU_SOURCE 1 +-_ACEOF +- +- cat >>confdefs.h <<\_ACEOF + #define _POSIX_PTHREAD_SEMANTICS 1 + _ACEOF + +@@ -4820,78 +4691,28 @@ + _ACEOF + + +- +- { $as_echo "$as_me:$LINENO: checking whether byte ordering is bigendian" >&5 +-$as_echo_n "checking whether byte ordering is bigendian... " >&6; } ++{ echo "$as_me:$LINENO: checking whether byte ordering is bigendian" >&5 ++echo $ECHO_N "checking whether byte ordering is bigendian... $ECHO_C" >&6; } + if test "${ac_cv_c_bigendian+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_cv_c_bigendian=unknown +- # See if we're dealing with a universal compiler. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#ifndef __APPLE_CC__ +- not a universal capable compiler +- #endif +- typedef int dummy; +- +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- +- # Check for potential -arch flags. It is not universal unless +- # there are some -arch flags. Note that *ppc* also matches +- # ppc64. This check is also rather less than ideal. +- case "${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}" in #( +- *-arch*ppc*|*-arch*i386*|*-arch*x86_64*) ac_cv_c_bigendian=universal;; +- esac ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- if test $ac_cv_c_bigendian = unknown; then +- # See if sys/param.h defines the BYTE_ORDER macro. +- cat >conftest.$ac_ext <<_ACEOF ++ # See if sys/param.h defines the BYTE_ORDER macro. ++cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + #include +- #include ++#include + + int + main () + { +-#if ! (defined BYTE_ORDER && defined BIG_ENDIAN \ +- && defined LITTLE_ENDIAN && BYTE_ORDER && BIG_ENDIAN \ +- && LITTLE_ENDIAN) +- bogus endian macros +- #endif ++#if ! (defined BYTE_ORDER && defined BIG_ENDIAN && defined LITTLE_ENDIAN \ ++ && BYTE_ORDER && BIG_ENDIAN && LITTLE_ENDIAN) ++ bogus endian macros ++#endif + + ; + return 0; +@@ -4903,34 +4724,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + # It does; now see whether it defined to BIG_ENDIAN or not. +- cat >conftest.$ac_ext <<_ACEOF ++cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + #include +- #include ++#include + + int + main () + { + #if BYTE_ORDER != BIG_ENDIAN +- not big endian +- #endif ++ not big endian ++#endif + + ; + return 0; +@@ -4942,21 +4762,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_c_bigendian=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_c_bigendian=no +@@ -4964,69 +4783,29 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- fi +- if test $ac_cv_c_bigendian = unknown; then +- # See if defines _LITTLE_ENDIAN or _BIG_ENDIAN (e.g., Solaris). +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +- +-int +-main () +-{ +-#if ! (defined _LITTLE_ENDIAN || defined _BIG_ENDIAN) +- bogus endian macros +- #endif +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- # It does; now see whether it defined to _BIG_ENDIAN or not. +- cat >conftest.$ac_ext <<_ACEOF ++ # It does not; compile a test program. ++if test "$cross_compiling" = yes; then ++ # try to guess the endianness by grepping values into an object file ++ ac_cv_c_bigendian=unknown ++ cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ +-#include +- ++short int ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; ++short int ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; ++void _ascii () { char *s = (char *) ascii_mm; s = (char *) ascii_ii; } ++short int ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; ++short int ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; ++void _ebcdic () { char *s = (char *) ebcdic_mm; s = (char *) ebcdic_ii; } + int + main () + { +-#ifndef _BIG_ENDIAN +- not big endian +- #endif +- ++ _ascii (); _ebcdic (); + ; + return 0; + } +@@ -5037,101 +4816,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then ++ if grep BIGenDianSyS conftest.$ac_objext >/dev/null ; then + ac_cv_c_bigendian=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_bigendian=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ++if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then ++ if test "$ac_cv_c_bigendian" = unknown; then ++ ac_cv_c_bigendian=no ++ else ++ # finding both strings is unlikely to happen, but who knows? ++ ac_cv_c_bigendian=unknown ++ fi + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- fi +- if test $ac_cv_c_bigendian = unknown; then +- # Compile a test program. +- if test "$cross_compiling" = yes; then +- # Try to guess by grepping values from an object file. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-short int ascii_mm[] = +- { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; +- short int ascii_ii[] = +- { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; +- int use_ascii (int i) { +- return ascii_mm[i] + ascii_ii[i]; +- } +- short int ebcdic_ii[] = +- { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; +- short int ebcdic_mm[] = +- { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; +- int use_ebcdic (int i) { +- return ebcdic_mm[i] + ebcdic_ii[i]; +- } +- extern int foo; +- +-int +-main () +-{ +-return use_ascii (foo) == use_ebcdic (foo); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- if grep BIGenDianSyS conftest.$ac_objext >/dev/null; then +- ac_cv_c_bigendian=yes +- fi +- if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then +- if test "$ac_cv_c_bigendian" = unknown; then +- ac_cv_c_bigendian=no +- else +- # finding both strings is unlikely to happen, but who knows? +- ac_cv_c_bigendian=unknown +- fi +- fi + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -5150,14 +4858,14 @@ + main () + { + +- /* Are we little or big endian? From Harbison&Steele. */ +- union +- { +- long int l; +- char c[sizeof (long int)]; +- } u; +- u.l = 1; +- return u.c[sizeof (long int) - 1] == 1; ++ /* Are we little or big endian? From Harbison&Steele. */ ++ union ++ { ++ long int l; ++ char c[sizeof (long int)]; ++ } u; ++ u.l = 1; ++ return u.c[sizeof (long int) - 1] == 1; + + ; + return 0; +@@ -5169,67 +4877,60 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_c_bigendian=no + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + ac_cv_c_bigendian=yes + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + +- fi + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_bigendian" >&5 +-$as_echo "$ac_cv_c_bigendian" >&6; } +- case $ac_cv_c_bigendian in #( +- yes) +- cat >>confdefs.h <<\_ACEOF +-#define WORDS_BIGENDIAN 1 +-_ACEOF +-;; #( +- no) +- ;; #( +- universal) ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_c_bigendian" >&5 ++echo "${ECHO_T}$ac_cv_c_bigendian" >&6; } ++case $ac_cv_c_bigendian in ++ yes) + + cat >>confdefs.h <<\_ACEOF +-#define AC_APPLE_UNIVERSAL_BUILD 1 ++#define WORDS_BIGENDIAN 1 + _ACEOF +- +- ;; #( +- *) +- { { $as_echo "$as_me:$LINENO: error: unknown endianness +- presetting ac_cv_c_bigendian=no (or yes) will help" >&5 +-$as_echo "$as_me: error: unknown endianness +- presetting ac_cv_c_bigendian=no (or yes) will help" >&2;} ++ ;; ++ no) ++ ;; ++ *) ++ { { echo "$as_me:$LINENO: error: unknown endianness ++presetting ac_cv_c_bigendian=no (or yes) will help" >&5 ++echo "$as_me: error: unknown endianness ++presetting ac_cv_c_bigendian=no (or yes) will help" >&2;} + { (exit 1); exit 1; }; } ;; +- esac ++esac + +-{ $as_echo "$as_me:$LINENO: checking for inline" >&5 +-$as_echo_n "checking for inline... " >&6; } ++{ echo "$as_me:$LINENO: checking for inline" >&5 ++echo $ECHO_N "checking for inline... $ECHO_C" >&6; } + if test "${ac_cv_c_inline+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_cv_c_inline=no + for ac_kw in inline __inline__ __inline; do +@@ -5252,21 +4953,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_c_inline=$ac_kw + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -5277,8 +4977,8 @@ + done + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_inline" >&5 +-$as_echo "$ac_cv_c_inline" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_c_inline" >&5 ++echo "${ECHO_T}$ac_cv_c_inline" >&6; } + + + case $ac_cv_c_inline in +@@ -5300,8 +5000,8 @@ + saved_CFLAGS="$CFLAGS"; + c99_init=no + if test x"$c99_init" = x"no"; then +- { $as_echo "$as_me:$LINENO: checking for C99 designated initializers" >&5 +-$as_echo_n "checking for C99 designated initializers... " >&6; } ++ { echo "$as_me:$LINENO: checking for C99 designated initializers" >&5 ++echo $ECHO_N "checking for C99 designated initializers... $ECHO_C" >&6; } + CFLAGS="$saved_CFLAGS"; + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -5326,33 +5026,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; c99_init=yes ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; }; c99_init=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + if test x"$c99_init" = x"no"; then +- { $as_echo "$as_me:$LINENO: checking for C99 designated initializers with -AC99" >&5 +-$as_echo_n "checking for C99 designated initializers with -AC99... " >&6; } ++ { echo "$as_me:$LINENO: checking for C99 designated initializers with -AC99" >&5 ++echo $ECHO_N "checking for C99 designated initializers with -AC99... $ECHO_C" >&6; } + CFLAGS="$saved_CFLAGS -AC99"; + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -5377,33 +5076,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; c99_init=yes ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; }; c99_init=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + if test x"$c99_init" = x"no"; then +- { $as_echo "$as_me:$LINENO: checking for C99 designated initializers with -qlanglvl=extc99" >&5 +-$as_echo_n "checking for C99 designated initializers with -qlanglvl=extc99... " >&6; } ++ { echo "$as_me:$LINENO: checking for C99 designated initializers with -qlanglvl=extc99" >&5 ++echo $ECHO_N "checking for C99 designated initializers with -qlanglvl=extc99... $ECHO_C" >&6; } + CFLAGS="$saved_CFLAGS -qlanglvl=extc99"; + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -5428,33 +5126,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; c99_init=yes ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; }; c99_init=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + if test x"$c99_init" = x"no"; then +- { $as_echo "$as_me:$LINENO: checking for C99 designated initializers with -qlanglvl=stdc99" >&5 +-$as_echo_n "checking for C99 designated initializers with -qlanglvl=stdc99... " >&6; } ++ { echo "$as_me:$LINENO: checking for C99 designated initializers with -qlanglvl=stdc99" >&5 ++echo $ECHO_N "checking for C99 designated initializers with -qlanglvl=stdc99... $ECHO_C" >&6; } + CFLAGS="$saved_CFLAGS -qlanglvl=stdc99"; + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -5479,33 +5176,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; c99_init=yes ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; }; c99_init=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + if test x"$c99_init" = x"no"; then +- { $as_echo "$as_me:$LINENO: checking for C99 designated initializers with -c99" >&5 +-$as_echo_n "checking for C99 designated initializers with -c99... " >&6; } ++ { echo "$as_me:$LINENO: checking for C99 designated initializers with -c99" >&5 ++echo $ECHO_N "checking for C99 designated initializers with -c99... $ECHO_C" >&6; } + CFLAGS="$saved_CFLAGS -c99" + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -5530,26 +5226,25 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; c99_init=yes ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; }; c99_init=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +@@ -5570,8 +5265,8 @@ + else + CFLAGS="$saved_CFLAGS" + saved_CFLAGS="" +- { $as_echo "$as_me:$LINENO: WARNING: c99 structure initializer are not supported" >&5 +-$as_echo "$as_me: WARNING: c99 structure initializer are not supported" >&2;} ++ { echo "$as_me:$LINENO: WARNING: c99 structure initializer are not supported" >&5 ++echo "$as_me: WARNING: c99 structure initializer are not supported" >&2;} + fi + + +@@ -5588,12 +5283,11 @@ + # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" + # OS/2's system install, which has a completely different semantic + # ./install, which can be erroneously created by make from ./install.sh. +-# Reject install programs that cannot install multiple files. +-{ $as_echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 +-$as_echo_n "checking for a BSD-compatible install... " >&6; } ++{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 ++echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } + if test -z "$INSTALL"; then + if test "${ac_cv_path_install+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + for as_dir in $PATH +@@ -5622,29 +5316,17 @@ + # program-specific install script used by HP pwplus--don't use. + : + else +- rm -rf conftest.one conftest.two conftest.dir +- echo one > conftest.one +- echo two > conftest.two +- mkdir conftest.dir +- if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && +- test -s conftest.one && test -s conftest.two && +- test -s conftest.dir/conftest.one && +- test -s conftest.dir/conftest.two +- then +- ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" +- break 3 +- fi ++ ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" ++ break 3 + fi + fi + done + done + ;; + esac +- + done + IFS=$as_save_IFS + +-rm -rf conftest.one conftest.two conftest.dir + + fi + if test "${ac_cv_path_install+set}" = set; then +@@ -5657,8 +5339,8 @@ + INSTALL=$ac_install_sh + fi + fi +-{ $as_echo "$as_me:$LINENO: result: $INSTALL" >&5 +-$as_echo "$INSTALL" >&6; } ++{ echo "$as_me:$LINENO: result: $INSTALL" >&5 ++echo "${ECHO_T}$INSTALL" >&6; } + + # Use test -z because SunOS4 sh mishandles braces in ${var-val}. + # It thinks the first close brace ends the variable substitution. +@@ -5669,10 +5351,10 @@ + test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + + +-{ $as_echo "$as_me:$LINENO: checking for library containing strerror" >&5 +-$as_echo_n "checking for library containing strerror... " >&6; } ++{ echo "$as_me:$LINENO: checking for library containing strerror" >&5 ++echo $ECHO_N "checking for library containing strerror... $ECHO_C" >&6; } + if test "${ac_cv_search_strerror+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_func_search_save_LIBS=$LIBS + cat >conftest.$ac_ext <<_ACEOF +@@ -5710,30 +5392,26 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_search_strerror=$ac_res + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext + if test "${ac_cv_search_strerror+set}" = set; then +@@ -5748,8 +5426,8 @@ + rm conftest.$ac_ext + LIBS=$ac_func_search_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_search_strerror" >&5 +-$as_echo "$ac_cv_search_strerror" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_search_strerror" >&5 ++echo "${ECHO_T}$ac_cv_search_strerror" >&6; } + ac_res=$ac_cv_search_strerror + if test "$ac_res" != no; then + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" +@@ -5774,10 +5452,10 @@ + + if test "$enable_largefile" != no; then + +- { $as_echo "$as_me:$LINENO: checking for special C compiler options needed for large files" >&5 +-$as_echo_n "checking for special C compiler options needed for large files... " >&6; } ++ { echo "$as_me:$LINENO: checking for special C compiler options needed for large files" >&5 ++echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6; } + if test "${ac_cv_sys_largefile_CC+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_cv_sys_largefile_CC=no + if test "$GCC" != yes; then +@@ -5814,21 +5492,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -5842,21 +5519,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_sys_largefile_CC=' -n32'; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -5869,16 +5545,16 @@ + rm -f conftest.$ac_ext + fi + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_sys_largefile_CC" >&5 +-$as_echo "$ac_cv_sys_largefile_CC" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_sys_largefile_CC" >&5 ++echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6; } + if test "$ac_cv_sys_largefile_CC" != no; then + CC=$CC$ac_cv_sys_largefile_CC + fi + +- { $as_echo "$as_me:$LINENO: checking for _FILE_OFFSET_BITS value needed for large files" >&5 +-$as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; } ++ { echo "$as_me:$LINENO: checking for _FILE_OFFSET_BITS value needed for large files" >&5 ++echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6; } + if test "${ac_cv_sys_file_offset_bits+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + while :; do + cat >conftest.$ac_ext <<_ACEOF +@@ -5910,21 +5586,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_sys_file_offset_bits=no; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -5961,21 +5636,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_sys_file_offset_bits=64; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -5986,8 +5660,8 @@ + break + done + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_sys_file_offset_bits" >&5 +-$as_echo "$ac_cv_sys_file_offset_bits" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_sys_file_offset_bits" >&5 ++echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6; } + case $ac_cv_sys_file_offset_bits in #( + no | unknown) ;; + *) +@@ -5996,12 +5670,12 @@ + _ACEOF + ;; + esac +-rm -rf conftest* ++rm -f conftest* + if test $ac_cv_sys_file_offset_bits = unknown; then +- { $as_echo "$as_me:$LINENO: checking for _LARGE_FILES value needed for large files" >&5 +-$as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; } ++ { echo "$as_me:$LINENO: checking for _LARGE_FILES value needed for large files" >&5 ++echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6; } + if test "${ac_cv_sys_large_files+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + while :; do + cat >conftest.$ac_ext <<_ACEOF +@@ -6033,21 +5707,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_sys_large_files=no; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -6084,21 +5757,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_sys_large_files=1; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -6109,8 +5781,8 @@ + break + done + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_sys_large_files" >&5 +-$as_echo "$ac_cv_sys_large_files" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_sys_large_files" >&5 ++echo "${ECHO_T}$ac_cv_sys_large_files" >&6; } + case $ac_cv_sys_large_files in #( + no | unknown) ;; + *) +@@ -6119,7 +5791,7 @@ + _ACEOF + ;; + esac +-rm -rf conftest* ++rm -f conftest* + fi + fi + +@@ -6138,13 +5810,13 @@ + _ACEOF + + if test "`uname -r`" = "B.11.00" -o "`uname -r`" = "B.11.11"; then +- { $as_echo "$as_me:$LINENO: WARNING: Enabling HPUX 11.00/11.11 header bug workaround" >&5 +-$as_echo "$as_me: WARNING: Enabling HPUX 11.00/11.11 header bug workaround" >&2;} ++ { echo "$as_me:$LINENO: WARNING: Enabling HPUX 11.00/11.11 header bug workaround" >&5 ++echo "$as_me: WARNING: Enabling HPUX 11.00/11.11 header bug workaround" >&2;} + CFLAGS="$CFLAGS -Dpread=pread64 -Dpwrite=pwrite64" + fi + if test "`uname -r`" = "B.11.23"; then +- { $as_echo "$as_me:$LINENO: WARNING: Enabling HPUX 11.23 machine/sys/getppdp.h bug workaround" >&5 +-$as_echo "$as_me: WARNING: Enabling HPUX 11.23 machine/sys/getppdp.h bug workaround" >&2;} ++ { echo "$as_me:$LINENO: WARNING: Enabling HPUX 11.23 machine/sys/getppdp.h bug workaround" >&5 ++echo "$as_me: WARNING: Enabling HPUX 11.23 machine/sys/getppdp.h bug workaround" >&2;} + CFLAGS="$CFLAGS -D_MACHINE_SYS_GETPPDP_INCLUDED" + fi + ;; +@@ -6221,21 +5893,20 @@ + + for ac_header in standards.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -6251,33 +5922,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -6291,393 +5961,87 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +-## ---------------------------------------- ## +-_ASBOX +- ) | sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +- +-fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then +- cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +- +-done +- +- +-# Solaris needs HAVE_LONG_LONG defined +-{ $as_echo "$as_me:$LINENO: checking for long long" >&5 +-$as_echo_n "checking for long long... " >&6; } +-if test "${ac_cv_type_long_long+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_cv_type_long_long=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (long long)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof ((long long))) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_long_long=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_long_long" >&5 +-$as_echo "$ac_cv_type_long_long" >&6; } +-if test "x$ac_cv_type_long_long" = x""yes; then +- +-cat >>confdefs.h <<_ACEOF +-#define HAVE_LONG_LONG 1 +-_ACEOF +- +- +-fi +- +- +-# The cast to long int works around a bug in the HP C Compiler +-# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects +-# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. +-# This bug is HP SR number 8606223364. +-{ $as_echo "$as_me:$LINENO: checking size of int" >&5 +-$as_echo_n "checking size of int... " >&6; } +-if test "${ac_cv_sizeof_int+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- if test "$cross_compiling" = yes; then +- # Depending upon the size, compute the lo and hi bounds. +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-static int test_array [1 - 2 * !(((long int) (sizeof (int))) >= 0)]; +-test_array [0] = 0 +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_lo=0 ac_mid=0 +- while :; do +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-static int test_array [1 - 2 * !(((long int) (sizeof (int))) <= $ac_mid)]; +-test_array [0] = 0 +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_hi=$ac_mid; break +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_lo=`expr $ac_mid + 1` +- if test $ac_lo -le $ac_mid; then +- ac_lo= ac_hi= +- break +- fi +- ac_mid=`expr 2 '*' $ac_mid + 1` +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- done +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-static int test_array [1 - 2 * !(((long int) (sizeof (int))) < 0)]; +-test_array [0] = 0 +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_hi=-1 ac_mid=-1 +- while :; do +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-static int test_array [1 - 2 * !(((long int) (sizeof (int))) >= $ac_mid)]; +-test_array [0] = 0 +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_lo=$ac_mid; break +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_hi=`expr '(' $ac_mid ')' - 1` +- if test $ac_mid -le $ac_hi; then +- ac_lo= ac_hi= +- break +- fi +- ac_mid=`expr 2 '*' $ac_mid` +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- done ++## ---------------------------------------- ## ++_ASBOX ++ ) | sed "s/^/$as_me: WARNING: /" >&2 ++ ;; ++esac ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ eval "$as_ac_Header=\$ac_header_preproc" ++fi ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + +- ac_lo= ac_hi= + fi ++if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ cat >>confdefs.h <<_ACEOF ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++_ACEOF + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-# Binary search between lo and hi bounds. +-while test "x$ac_lo" != "x$ac_hi"; do +- ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` ++done ++ ++ ++# Solaris needs HAVE_LONG_LONG defined ++{ echo "$as_me:$LINENO: checking for long long" >&5 ++echo $ECHO_N "checking for long long... $ECHO_C" >&6; } ++if test "${ac_cv_type_long_long+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -6685,12 +6049,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef long long ac__type_new_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (int))) <= $ac_mid)]; +-test_array [0] = 0 +- ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -6701,42 +6067,43 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- ac_hi=$ac_mid ++ ac_cv_type_long_long=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_lo=`expr '(' $ac_mid ')' + 1` ++ ac_cv_type_long_long=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-done +-case $ac_lo in +-?*) ac_cv_sizeof_int=$ac_lo;; +-'') if test "$ac_cv_type_int" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (int) +-See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (int) +-See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } +- else +- ac_cv_sizeof_int=0 +- fi ;; +-esac ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_long_long" >&5 ++echo "${ECHO_T}$ac_cv_type_long_long" >&6; } ++if test $ac_cv_type_long_long = yes; then ++ ++cat >>confdefs.h <<_ACEOF ++#define HAVE_LONG_LONG 1 ++_ACEOF ++ ++ ++fi ++ ++ ++{ echo "$as_me:$LINENO: checking for int" >&5 ++echo $ECHO_N "checking for int... $ECHO_C" >&6; } ++if test "${ac_cv_type_int+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -6745,103 +6112,56 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default +-static long int longval () { return (long int) (sizeof (int)); } +-static unsigned long int ulongval () { return (long int) (sizeof (int)); } +-#include +-#include ++typedef int ac__type_new_; + int + main () + { +- +- FILE *f = fopen ("conftest.val", "w"); +- if (! f) +- return 1; +- if (((long int) (sizeof (int))) < 0) +- { +- long int i = longval (); +- if (i != ((long int) (sizeof (int)))) +- return 1; +- fprintf (f, "%ld", i); +- } +- else +- { +- unsigned long int i = ulongval (); +- if (i != ((long int) (sizeof (int)))) +- return 1; +- fprintf (f, "%lu", i); +- } +- /* Do not output a trailing newline, as this causes \r\n confusion +- on some platforms. */ +- return ferror (f) || fclose (f) != 0; +- ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } + _ACEOF +-rm -f conftest$ac_exeext +-if { (ac_try="$ac_link" ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_link") 2>&5 +- ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { ac_try='./conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_try") 2>&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- ac_cv_sizeof_int=`cat conftest.val` ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_type_int=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +-( exit $ac_status ) +-if test "$ac_cv_type_int" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (int) +-See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (int) +-See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } +- else +- ac_cv_sizeof_int=0 +- fi +-fi +-rm -rf conftest.dSYM +-rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +-fi +-rm -f conftest.val ++ ac_cv_type_int=no + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_sizeof_int" >&5 +-$as_echo "$ac_cv_sizeof_int" >&6; } +- +- +- +-cat >>confdefs.h <<_ACEOF +-#define SIZEOF_INT $ac_cv_sizeof_int +-_ACEOF + ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_int" >&5 ++echo "${ECHO_T}$ac_cv_type_int" >&6; } + + # The cast to long int works around a bug in the HP C Compiler + # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects + # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. + # This bug is HP SR number 8606223364. +-{ $as_echo "$as_me:$LINENO: checking size of char" >&5 +-$as_echo_n "checking size of char... " >&6; } +-if test "${ac_cv_sizeof_char+set}" = set; then +- $as_echo_n "(cached) " >&6 ++{ echo "$as_me:$LINENO: checking size of int" >&5 ++echo $ECHO_N "checking size of int... $ECHO_C" >&6; } ++if test "${ac_cv_sizeof_int+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + # Depending upon the size, compute the lo and hi bounds. +@@ -6852,10 +6172,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef int ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (char))) >= 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; + test_array [0] = 0 + + ; +@@ -6868,14 +6189,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -6889,10 +6209,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef int ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (char))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -6905,21 +6226,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr $ac_mid + 1` +@@ -6933,7 +6253,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -6943,10 +6263,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef int ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (char))) < 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; + test_array [0] = 0 + + ; +@@ -6959,14 +6280,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -6980,10 +6300,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef int ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (char))) >= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -6996,21 +6317,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_lo=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_hi=`expr '(' $ac_mid ')' - 1` +@@ -7024,7 +6344,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo= ac_hi= +@@ -7044,10 +6364,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef int ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (char))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -7060,21 +6381,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr '(' $ac_mid ')' + 1` +@@ -7083,17 +6403,15 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + case $ac_lo in +-?*) ac_cv_sizeof_char=$ac_lo;; +-'') if test "$ac_cv_type_char" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (char) ++?*) ac_cv_sizeof_int=$ac_lo;; ++'') if test "$ac_cv_type_int" = yes; then ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (int) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (char) ++echo "$as_me: error: cannot compute sizeof (int) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else +- ac_cv_sizeof_char=0 ++ ac_cv_sizeof_int=0 + fi ;; + esac + else +@@ -7104,8 +6422,9 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default +-static long int longval () { return (long int) (sizeof (char)); } +-static unsigned long int ulongval () { return (long int) (sizeof (char)); } ++ typedef int ac__type_sizeof_; ++static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } ++static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } + #include + #include + int +@@ -7115,22 +6434,20 @@ + FILE *f = fopen ("conftest.val", "w"); + if (! f) + return 1; +- if (((long int) (sizeof (char))) < 0) ++ if (((long int) (sizeof (ac__type_sizeof_))) < 0) + { + long int i = longval (); +- if (i != ((long int) (sizeof (char)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%ld", i); ++ fprintf (f, "%ld\n", i); + } + else + { + unsigned long int i = ulongval (); +- if (i != ((long int) (sizeof (char)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%lu", i); ++ fprintf (f, "%lu\n", i); + } +- /* Do not output a trailing newline, as this causes \r\n confusion +- on some platforms. */ + return ferror (f) || fclose (f) != 0; + + ; +@@ -7143,64 +6460,113 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then +- ac_cv_sizeof_char=`cat conftest.val` ++ ac_cv_sizeof_int=`cat conftest.val` + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) +-if test "$ac_cv_type_char" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (char) ++if test "$ac_cv_type_int" = yes; then ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (int) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (char) ++echo "$as_me: error: cannot compute sizeof (int) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else +- ac_cv_sizeof_char=0 ++ ac_cv_sizeof_int=0 + fi + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + rm -f conftest.val + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_sizeof_char" >&5 +-$as_echo "$ac_cv_sizeof_char" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_int" >&5 ++echo "${ECHO_T}$ac_cv_sizeof_int" >&6; } + + + + cat >>confdefs.h <<_ACEOF +-#define SIZEOF_CHAR $ac_cv_sizeof_char ++#define SIZEOF_INT $ac_cv_sizeof_int ++_ACEOF ++ ++ ++{ echo "$as_me:$LINENO: checking for char" >&5 ++echo $ECHO_N "checking for char... $ECHO_C" >&6; } ++if test "${ac_cv_type_char+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++$ac_includes_default ++typedef char ac__type_new_; ++int ++main () ++{ ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; ++ ; ++ return 0; ++} + _ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_type_char=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_char=no ++fi + ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_char" >&5 ++echo "${ECHO_T}$ac_cv_type_char" >&6; } + + # The cast to long int works around a bug in the HP C Compiler + # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects + # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. + # This bug is HP SR number 8606223364. +-{ $as_echo "$as_me:$LINENO: checking size of short" >&5 +-$as_echo_n "checking size of short... " >&6; } +-if test "${ac_cv_sizeof_short+set}" = set; then +- $as_echo_n "(cached) " >&6 ++{ echo "$as_me:$LINENO: checking size of char" >&5 ++echo $ECHO_N "checking size of char... $ECHO_C" >&6; } ++if test "${ac_cv_sizeof_char+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + # Depending upon the size, compute the lo and hi bounds. +@@ -7211,10 +6577,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef char ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (short))) >= 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; + test_array [0] = 0 + + ; +@@ -7227,14 +6594,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -7248,10 +6614,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef char ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (short))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -7264,21 +6631,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr $ac_mid + 1` +@@ -7292,7 +6658,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -7302,10 +6668,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef char ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (short))) < 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; + test_array [0] = 0 + + ; +@@ -7318,14 +6685,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -7339,10 +6705,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef char ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (short))) >= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -7355,21 +6722,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_lo=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_hi=`expr '(' $ac_mid ')' - 1` +@@ -7383,7 +6749,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo= ac_hi= +@@ -7403,10 +6769,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef char ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (short))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -7419,21 +6786,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr '(' $ac_mid ')' + 1` +@@ -7442,17 +6808,15 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + case $ac_lo in +-?*) ac_cv_sizeof_short=$ac_lo;; +-'') if test "$ac_cv_type_short" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (short) ++?*) ac_cv_sizeof_char=$ac_lo;; ++'') if test "$ac_cv_type_char" = yes; then ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (char) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (short) ++echo "$as_me: error: cannot compute sizeof (char) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else +- ac_cv_sizeof_short=0 ++ ac_cv_sizeof_char=0 + fi ;; + esac + else +@@ -7463,8 +6827,9 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default +-static long int longval () { return (long int) (sizeof (short)); } +-static unsigned long int ulongval () { return (long int) (sizeof (short)); } ++ typedef char ac__type_sizeof_; ++static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } ++static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } + #include + #include + int +@@ -7474,22 +6839,20 @@ + FILE *f = fopen ("conftest.val", "w"); + if (! f) + return 1; +- if (((long int) (sizeof (short))) < 0) ++ if (((long int) (sizeof (ac__type_sizeof_))) < 0) + { + long int i = longval (); +- if (i != ((long int) (sizeof (short)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%ld", i); ++ fprintf (f, "%ld\n", i); + } + else + { + unsigned long int i = ulongval (); +- if (i != ((long int) (sizeof (short)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%lu", i); ++ fprintf (f, "%lu\n", i); + } +- /* Do not output a trailing newline, as this causes \r\n confusion +- on some platforms. */ + return ferror (f) || fclose (f) != 0; + + ; +@@ -7502,64 +6865,113 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then +- ac_cv_sizeof_short=`cat conftest.val` ++ ac_cv_sizeof_char=`cat conftest.val` + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) +-if test "$ac_cv_type_short" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (short) ++if test "$ac_cv_type_char" = yes; then ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (char) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (short) ++echo "$as_me: error: cannot compute sizeof (char) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else +- ac_cv_sizeof_short=0 ++ ac_cv_sizeof_char=0 + fi + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + rm -f conftest.val + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_sizeof_short" >&5 +-$as_echo "$ac_cv_sizeof_short" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_char" >&5 ++echo "${ECHO_T}$ac_cv_sizeof_char" >&6; } + + + + cat >>confdefs.h <<_ACEOF +-#define SIZEOF_SHORT $ac_cv_sizeof_short ++#define SIZEOF_CHAR $ac_cv_sizeof_char ++_ACEOF ++ ++ ++{ echo "$as_me:$LINENO: checking for short" >&5 ++echo $ECHO_N "checking for short... $ECHO_C" >&6; } ++if test "${ac_cv_type_short+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++$ac_includes_default ++typedef short ac__type_new_; ++int ++main () ++{ ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; ++ ; ++ return 0; ++} + _ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_type_short=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_short=no ++fi + ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_short" >&5 ++echo "${ECHO_T}$ac_cv_type_short" >&6; } + + # The cast to long int works around a bug in the HP C Compiler + # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects + # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. + # This bug is HP SR number 8606223364. +-{ $as_echo "$as_me:$LINENO: checking size of long" >&5 +-$as_echo_n "checking size of long... " >&6; } +-if test "${ac_cv_sizeof_long+set}" = set; then +- $as_echo_n "(cached) " >&6 ++{ echo "$as_me:$LINENO: checking size of short" >&5 ++echo $ECHO_N "checking size of short... $ECHO_C" >&6; } ++if test "${ac_cv_sizeof_short+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + # Depending upon the size, compute the lo and hi bounds. +@@ -7570,10 +6982,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef short ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (long))) >= 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; + test_array [0] = 0 + + ; +@@ -7586,14 +6999,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -7607,10 +7019,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef short ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (long))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -7623,21 +7036,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr $ac_mid + 1` +@@ -7651,7 +7063,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -7661,10 +7073,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef short ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (long))) < 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; + test_array [0] = 0 + + ; +@@ -7677,14 +7090,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -7698,10 +7110,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef short ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (long))) >= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -7714,21 +7127,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_lo=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_hi=`expr '(' $ac_mid ')' - 1` +@@ -7742,7 +7154,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo= ac_hi= +@@ -7762,10 +7174,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef short ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (long))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -7778,21 +7191,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr '(' $ac_mid ')' + 1` +@@ -7801,17 +7213,15 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + case $ac_lo in +-?*) ac_cv_sizeof_long=$ac_lo;; +-'') if test "$ac_cv_type_long" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long) ++?*) ac_cv_sizeof_short=$ac_lo;; ++'') if test "$ac_cv_type_short" = yes; then ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (short) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (long) ++echo "$as_me: error: cannot compute sizeof (short) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else +- ac_cv_sizeof_long=0 ++ ac_cv_sizeof_short=0 + fi ;; + esac + else +@@ -7822,8 +7232,9 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default +-static long int longval () { return (long int) (sizeof (long)); } +-static unsigned long int ulongval () { return (long int) (sizeof (long)); } ++ typedef short ac__type_sizeof_; ++static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } ++static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } + #include + #include + int +@@ -7833,22 +7244,20 @@ + FILE *f = fopen ("conftest.val", "w"); + if (! f) + return 1; +- if (((long int) (sizeof (long))) < 0) ++ if (((long int) (sizeof (ac__type_sizeof_))) < 0) + { + long int i = longval (); +- if (i != ((long int) (sizeof (long)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%ld", i); ++ fprintf (f, "%ld\n", i); + } + else + { + unsigned long int i = ulongval (); +- if (i != ((long int) (sizeof (long)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%lu", i); ++ fprintf (f, "%lu\n", i); + } +- /* Do not output a trailing newline, as this causes \r\n confusion +- on some platforms. */ + return ferror (f) || fclose (f) != 0; + + ; +@@ -7861,64 +7270,113 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then +- ac_cv_sizeof_long=`cat conftest.val` ++ ac_cv_sizeof_short=`cat conftest.val` + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) +-if test "$ac_cv_type_long" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long) ++if test "$ac_cv_type_short" = yes; then ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (short) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (long) ++echo "$as_me: error: cannot compute sizeof (short) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else +- ac_cv_sizeof_long=0 ++ ac_cv_sizeof_short=0 + fi + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + rm -f conftest.val + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_sizeof_long" >&5 +-$as_echo "$ac_cv_sizeof_long" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_short" >&5 ++echo "${ECHO_T}$ac_cv_sizeof_short" >&6; } + + + + cat >>confdefs.h <<_ACEOF +-#define SIZEOF_LONG $ac_cv_sizeof_long ++#define SIZEOF_SHORT $ac_cv_sizeof_short ++_ACEOF ++ ++ ++{ echo "$as_me:$LINENO: checking for long" >&5 ++echo $ECHO_N "checking for long... $ECHO_C" >&6; } ++if test "${ac_cv_type_long+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++$ac_includes_default ++typedef long ac__type_new_; ++int ++main () ++{ ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; ++ ; ++ return 0; ++} + _ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_type_long=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_long=no ++fi + ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_long" >&5 ++echo "${ECHO_T}$ac_cv_type_long" >&6; } + + # The cast to long int works around a bug in the HP C Compiler + # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects + # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. + # This bug is HP SR number 8606223364. +-{ $as_echo "$as_me:$LINENO: checking size of long long" >&5 +-$as_echo_n "checking size of long long... " >&6; } +-if test "${ac_cv_sizeof_long_long+set}" = set; then +- $as_echo_n "(cached) " >&6 ++{ echo "$as_me:$LINENO: checking size of long" >&5 ++echo $ECHO_N "checking size of long... $ECHO_C" >&6; } ++if test "${ac_cv_sizeof_long+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + # Depending upon the size, compute the lo and hi bounds. +@@ -7929,10 +7387,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (long long))) >= 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; + test_array [0] = 0 + + ; +@@ -7945,14 +7404,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -7966,10 +7424,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (long long))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -7982,21 +7441,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr $ac_mid + 1` +@@ -8010,7 +7468,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -8020,10 +7478,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (long long))) < 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; + test_array [0] = 0 + + ; +@@ -8036,14 +7495,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -8057,10 +7515,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (long long))) >= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -8073,21 +7532,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_lo=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_hi=`expr '(' $ac_mid ')' - 1` +@@ -8101,7 +7559,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo= ac_hi= +@@ -8121,10 +7579,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (long long))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -8137,21 +7596,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr '(' $ac_mid ')' + 1` +@@ -8160,17 +7618,15 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + case $ac_lo in +-?*) ac_cv_sizeof_long_long=$ac_lo;; +-'') if test "$ac_cv_type_long_long" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long long) ++?*) ac_cv_sizeof_long=$ac_lo;; ++'') if test "$ac_cv_type_long" = yes; then ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (long) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (long long) ++echo "$as_me: error: cannot compute sizeof (long) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else +- ac_cv_sizeof_long_long=0 ++ ac_cv_sizeof_long=0 + fi ;; + esac + else +@@ -8181,8 +7637,9 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default +-static long int longval () { return (long int) (sizeof (long long)); } +-static unsigned long int ulongval () { return (long int) (sizeof (long long)); } ++ typedef long ac__type_sizeof_; ++static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } ++static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } + #include + #include + int +@@ -8192,22 +7649,20 @@ + FILE *f = fopen ("conftest.val", "w"); + if (! f) + return 1; +- if (((long int) (sizeof (long long))) < 0) ++ if (((long int) (sizeof (ac__type_sizeof_))) < 0) + { + long int i = longval (); +- if (i != ((long int) (sizeof (long long)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%ld", i); ++ fprintf (f, "%ld\n", i); + } + else + { + unsigned long int i = ulongval (); +- if (i != ((long int) (sizeof (long long)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%lu", i); ++ fprintf (f, "%lu\n", i); + } +- /* Do not output a trailing newline, as this causes \r\n confusion +- on some platforms. */ + return ferror (f) || fclose (f) != 0; + + ; +@@ -8220,201 +7675,56 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then +- ac_cv_sizeof_long_long=`cat conftest.val` ++ ac_cv_sizeof_long=`cat conftest.val` + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) +-if test "$ac_cv_type_long_long" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long long) ++if test "$ac_cv_type_long" = yes; then ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (long) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (long long) ++echo "$as_me: error: cannot compute sizeof (long) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else +- ac_cv_sizeof_long_long=0 ++ ac_cv_sizeof_long=0 + fi + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + rm -f conftest.val + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_sizeof_long_long" >&5 +-$as_echo "$ac_cv_sizeof_long_long" >&6; } +- +- +- +-cat >>confdefs.h <<_ACEOF +-#define SIZEOF_LONG_LONG $ac_cv_sizeof_long_long +-_ACEOF +- +- +- +-{ $as_echo "$as_me:$LINENO: checking for uint_t" >&5 +-$as_echo_n "checking for uint_t... " >&6; } +-if test "${ac_cv_type_uint_t+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_cv_type_uint_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (uint_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof ((uint_t))) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_uint_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- ++{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_long" >&5 ++echo "${ECHO_T}$ac_cv_sizeof_long" >&6; } + +-fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_uint_t" >&5 +-$as_echo "$ac_cv_type_uint_t" >&6; } +-if test "x$ac_cv_type_uint_t" = x""yes; then +- : +-else + + cat >>confdefs.h <<_ACEOF +-#define uint_t unsigned int ++#define SIZEOF_LONG $ac_cv_sizeof_long + _ACEOF + +-fi + +-{ $as_echo "$as_me:$LINENO: checking for int8_t" >&5 +-$as_echo_n "checking for int8_t... " >&6; } +-if test "${ac_cv_type_int8_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++{ echo "$as_me:$LINENO: checking for long long" >&5 ++echo $ECHO_N "checking for long long... $ECHO_C" >&6; } ++if test "${ac_cv_type_long_long+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_int8_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (int8_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -8422,115 +7732,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef long long ac__type_new_; + int + main () + { +-if (sizeof ((int8_t))) +- return 0; +- ; ++if ((ac__type_new_ *) 0) + return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_int8_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_int8_t" >&5 +-$as_echo "$ac_cv_type_int8_t" >&6; } +-if test "x$ac_cv_type_int8_t" = x""yes; then +- : +-else +- +-cat >>confdefs.h <<_ACEOF +-#define int8_t char +-_ACEOF +- +-fi +- +-{ $as_echo "$as_me:$LINENO: checking for uint8_t" >&5 +-$as_echo_n "checking for uint8_t... " >&6; } +-if test "${ac_cv_type_uint8_t+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_cv_type_uint8_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (uint8_t)) +- return 0; +- ; ++if (sizeof (ac__type_new_)) + return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof ((uint8_t))) +- return 0; + ; + return 0; + } +@@ -8541,54 +7750,41 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_uint8_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_long_long=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_long_long=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_uint8_t" >&5 +-$as_echo "$ac_cv_type_uint8_t" >&6; } +-if test "x$ac_cv_type_uint8_t" = x""yes; then +- : +-else +- +-cat >>confdefs.h <<_ACEOF +-#define uint8_t unsigned char +-_ACEOF +- +-fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_long_long" >&5 ++echo "${ECHO_T}$ac_cv_type_long_long" >&6; } + +-{ $as_echo "$as_me:$LINENO: checking for int16_t" >&5 +-$as_echo_n "checking for int16_t... " >&6; } +-if test "${ac_cv_type_int16_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++# The cast to long int works around a bug in the HP C Compiler ++# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects ++# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. ++# This bug is HP SR number 8606223364. ++{ echo "$as_me:$LINENO: checking size of long long" >&5 ++echo $ECHO_N "checking size of long long... $ECHO_C" >&6; } ++if test "${ac_cv_sizeof_long_long+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_int16_t=no ++ if test "$cross_compiling" = yes; then ++ # Depending upon the size, compute the lo and hi bounds. + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -8596,11 +7792,13 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long long ac__type_sizeof_; + int + main () + { +-if (sizeof (int16_t)) +- return 0; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; ++test_array [0] = 0 ++ + ; + return 0; + } +@@ -8611,30 +7809,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- cat >conftest.$ac_ext <<_ACEOF ++ ac_lo=0 ac_mid=0 ++ while :; do ++ cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long long ac__type_sizeof_; + int + main () + { +-if (sizeof ((int16_t))) +- return 0; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; ++test_array [0] = 0 ++ + ; + return 0; + } +@@ -8645,66 +7846,50 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : ++ ac_hi=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_cv_type_int16_t=yes ++ ac_lo=`expr $ac_mid + 1` ++ if test $ac_lo -le $ac_mid; then ++ ac_lo= ac_hi= ++ break ++ fi ++ ac_mid=`expr 2 '*' $ac_mid + 1` + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_int16_t" >&5 +-$as_echo "$ac_cv_type_int16_t" >&6; } +-if test "x$ac_cv_type_int16_t" = x""yes; then +- : +-else +- +-cat >>confdefs.h <<_ACEOF +-#define int16_t short +-_ACEOF +- +-fi +- +-{ $as_echo "$as_me:$LINENO: checking for uint16_t" >&5 +-$as_echo_n "checking for uint16_t... " >&6; } +-if test "${ac_cv_type_uint16_t+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_cv_type_uint16_t=no +-cat >conftest.$ac_ext <<_ACEOF ++ cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long long ac__type_sizeof_; + int + main () + { +-if (sizeof (uint16_t)) +- return 0; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; ++test_array [0] = 0 ++ + ; + return 0; + } +@@ -8715,30 +7900,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- cat >conftest.$ac_ext <<_ACEOF ++ ac_hi=-1 ac_mid=-1 ++ while :; do ++ cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long long ac__type_sizeof_; + int + main () + { +-if (sizeof ((uint16_t))) +- return 0; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; ++test_array [0] = 0 ++ + ; + return 0; + } +@@ -8749,68 +7937,60 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : ++ ac_lo=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_cv_type_uint16_t=yes ++ ac_hi=`expr '(' $ac_mid ')' - 1` ++ if test $ac_mid -le $ac_hi; then ++ ac_lo= ac_hi= ++ break ++ fi ++ ac_mid=`expr 2 '*' $ac_mid` + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_lo= ac_hi= + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_uint16_t" >&5 +-$as_echo "$ac_cv_type_uint16_t" >&6; } +-if test "x$ac_cv_type_uint16_t" = x""yes; then +- : +-else +- +-cat >>confdefs.h <<_ACEOF +-#define uint16_t unsigned short +-_ACEOF +- +-fi +- + +-if test $ac_cv_sizeof_int -eq 4 ; then +-{ $as_echo "$as_me:$LINENO: checking for int32_t" >&5 +-$as_echo_n "checking for int32_t... " >&6; } +-if test "${ac_cv_type_int32_t+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_cv_type_int32_t=no +-cat >conftest.$ac_ext <<_ACEOF ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++# Binary search between lo and hi bounds. ++while test "x$ac_lo" != "x$ac_hi"; do ++ ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` ++ cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long long ac__type_sizeof_; + int + main () + { +-if (sizeof (int32_t)) +- return 0; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; ++test_array [0] = 0 ++ + ; + return 0; + } +@@ -8821,18 +8001,40 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then ++ ac_hi=$ac_mid ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_lo=`expr '(' $ac_mid ')' + 1` ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++done ++case $ac_lo in ++?*) ac_cv_sizeof_long_long=$ac_lo;; ++'') if test "$ac_cv_type_long_long" = yes; then ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (long long) ++See \`config.log' for more details." >&5 ++echo "$as_me: error: cannot compute sizeof (long long) ++See \`config.log' for more details." >&2;} ++ { (exit 77); exit 77; }; } ++ else ++ ac_cv_sizeof_long_long=0 ++ fi ;; ++esac ++else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -8840,81 +8042,110 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long long ac__type_sizeof_; ++static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } ++static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } ++#include ++#include + int + main () + { +-if (sizeof ((int32_t))) +- return 0; ++ ++ FILE *f = fopen ("conftest.val", "w"); ++ if (! f) ++ return 1; ++ if (((long int) (sizeof (ac__type_sizeof_))) < 0) ++ { ++ long int i = longval (); ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) ++ return 1; ++ fprintf (f, "%ld\n", i); ++ } ++ else ++ { ++ unsigned long int i = ulongval (); ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) ++ return 1; ++ fprintf (f, "%lu\n", i); ++ } ++ return ferror (f) || fclose (f) != 0; ++ + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" ++rm -f conftest$ac_exeext ++if { (ac_try="$ac_link" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link") 2>&5 + ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- : ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ++ { (case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_try") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); }; }; then ++ ac_cv_sizeof_long_long=`cat conftest.val` + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_cv_type_int32_t=yes ++( exit $ac_status ) ++if test "$ac_cv_type_long_long" = yes; then ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (long long) ++See \`config.log' for more details." >&5 ++echo "$as_me: error: cannot compute sizeof (long long) ++See \`config.log' for more details." >&2;} ++ { (exit 77); exit 77; }; } ++ else ++ ac_cv_sizeof_long_long=0 ++ fi + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ++rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f conftest.val + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_int32_t" >&5 +-$as_echo "$ac_cv_type_int32_t" >&6; } +-if test "x$ac_cv_type_int32_t" = x""yes; then +- : +-else ++{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_long_long" >&5 ++echo "${ECHO_T}$ac_cv_sizeof_long_long" >&6; } ++ ++ + + cat >>confdefs.h <<_ACEOF +-#define int32_t int ++#define SIZEOF_LONG_LONG $ac_cv_sizeof_long_long + _ACEOF + +-fi + +-{ $as_echo "$as_me:$LINENO: checking for uint32_t" >&5 +-$as_echo_n "checking for uint32_t... " >&6; } +-if test "${ac_cv_type_uint32_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ ++{ echo "$as_me:$LINENO: checking for uint_t" >&5 ++echo $ECHO_N "checking for uint_t... $ECHO_C" >&6; } ++if test "${ac_cv_type_uint_t+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_uint32_t=no +-cat >conftest.$ac_ext <<_ACEOF ++ cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef uint_t ac__type_new_; + int + main () + { +-if (sizeof (uint32_t)) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -8925,18 +8156,44 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then ++ ac_cv_type_uint_t=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_uint_t=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_uint_t" >&5 ++echo "${ECHO_T}$ac_cv_type_uint_t" >&6; } ++if test $ac_cv_type_uint_t = yes; then ++ : ++else ++ ++cat >>confdefs.h <<_ACEOF ++#define uint_t unsigned int ++_ACEOF ++ ++fi ++ ++{ echo "$as_me:$LINENO: checking for int8_t" >&5 ++echo $ECHO_N "checking for int8_t... $ECHO_C" >&6; } ++if test "${ac_cv_type_int8_t+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -8944,11 +8201,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef int8_t ac__type_new_; + int + main () + { +-if (sizeof ((uint32_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -8959,67 +8219,59 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_uint32_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_int8_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_int8_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_uint32_t" >&5 +-$as_echo "$ac_cv_type_uint32_t" >&6; } +-if test "x$ac_cv_type_uint32_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_int8_t" >&5 ++echo "${ECHO_T}$ac_cv_type_int8_t" >&6; } ++if test $ac_cv_type_int8_t = yes; then + : + else + + cat >>confdefs.h <<_ACEOF +-#define uint32_t unsigned int ++#define int8_t char + _ACEOF + + fi + +-elif test $ac_cv_size_long -eq 4 ; then +-{ $as_echo "$as_me:$LINENO: checking for int32_t" >&5 +-$as_echo_n "checking for int32_t... " >&6; } +-if test "${ac_cv_type_int32_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++{ echo "$as_me:$LINENO: checking for uint8_t" >&5 ++echo $ECHO_N "checking for uint8_t... $ECHO_C" >&6; } ++if test "${ac_cv_type_uint8_t+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_int32_t=no +-cat >conftest.$ac_ext <<_ACEOF ++ cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef uint8_t ac__type_new_; + int + main () + { +-if (sizeof (int32_t)) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -9030,18 +8282,44 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then ++ ac_cv_type_uint8_t=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_uint8_t=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_uint8_t" >&5 ++echo "${ECHO_T}$ac_cv_type_uint8_t" >&6; } ++if test $ac_cv_type_uint8_t = yes; then ++ : ++else ++ ++cat >>confdefs.h <<_ACEOF ++#define uint8_t unsigned char ++_ACEOF ++ ++fi ++ ++{ echo "$as_me:$LINENO: checking for int16_t" >&5 ++echo $ECHO_N "checking for int16_t... $ECHO_C" >&6; } ++if test "${ac_cv_type_int16_t+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -9049,11 +8327,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef int16_t ac__type_new_; + int + main () + { +-if (sizeof ((int32_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -9064,66 +8345,59 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_int32_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_int16_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_int16_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_int32_t" >&5 +-$as_echo "$ac_cv_type_int32_t" >&6; } +-if test "x$ac_cv_type_int32_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_int16_t" >&5 ++echo "${ECHO_T}$ac_cv_type_int16_t" >&6; } ++if test $ac_cv_type_int16_t = yes; then + : + else + + cat >>confdefs.h <<_ACEOF +-#define int32_t long ++#define int16_t short + _ACEOF + + fi + +-{ $as_echo "$as_me:$LINENO: checking for uint32_t" >&5 +-$as_echo_n "checking for uint32_t... " >&6; } +-if test "${ac_cv_type_uint32_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++{ echo "$as_me:$LINENO: checking for uint16_t" >&5 ++echo $ECHO_N "checking for uint16_t... $ECHO_C" >&6; } ++if test "${ac_cv_type_uint16_t+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_uint32_t=no +-cat >conftest.$ac_ext <<_ACEOF ++ cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef uint16_t ac__type_new_; + int + main () + { +-if (sizeof (uint32_t)) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -9134,18 +8408,46 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then ++ ac_cv_type_uint16_t=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_uint16_t=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_uint16_t" >&5 ++echo "${ECHO_T}$ac_cv_type_uint16_t" >&6; } ++if test $ac_cv_type_uint16_t = yes; then ++ : ++else ++ ++cat >>confdefs.h <<_ACEOF ++#define uint16_t unsigned short ++_ACEOF ++ ++fi ++ ++ ++if test $ac_cv_sizeof_int -eq 4 ; then ++{ echo "$as_me:$LINENO: checking for int32_t" >&5 ++echo $ECHO_N "checking for int32_t... $ECHO_C" >&6; } ++if test "${ac_cv_type_int32_t+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -9153,11 +8455,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef int32_t ac__type_new_; + int + main () + { +-if (sizeof ((uint32_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -9168,72 +8473,59 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_uint32_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_int32_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_int32_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_uint32_t" >&5 +-$as_echo "$ac_cv_type_uint32_t" >&6; } +-if test "x$ac_cv_type_uint32_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_int32_t" >&5 ++echo "${ECHO_T}$ac_cv_type_int32_t" >&6; } ++if test $ac_cv_type_int32_t = yes; then + : + else + + cat >>confdefs.h <<_ACEOF +-#define uint32_t unsigned long ++#define int32_t int + _ACEOF + + fi + ++{ echo "$as_me:$LINENO: checking for uint32_t" >&5 ++echo $ECHO_N "checking for uint32_t... $ECHO_C" >&6; } ++if test "${ac_cv_type_uint32_t+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +-{ { $as_echo "$as_me:$LINENO: error: LIBREPLACE no 32-bit type found" >&5 +-$as_echo "$as_me: error: LIBREPLACE no 32-bit type found" >&2;} +- { (exit 1); exit 1; }; } +-fi +- +-{ $as_echo "$as_me:$LINENO: checking for int64_t" >&5 +-$as_echo_n "checking for int64_t... " >&6; } +-if test "${ac_cv_type_int64_t+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_cv_type_int64_t=no +-cat >conftest.$ac_ext <<_ACEOF ++ cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef uint32_t ac__type_new_; + int + main () + { +-if (sizeof (int64_t)) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -9244,18 +8536,45 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then ++ ac_cv_type_uint32_t=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_uint32_t=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_uint32_t" >&5 ++echo "${ECHO_T}$ac_cv_type_uint32_t" >&6; } ++if test $ac_cv_type_uint32_t = yes; then ++ : ++else ++ ++cat >>confdefs.h <<_ACEOF ++#define uint32_t unsigned int ++_ACEOF ++ ++fi ++ ++elif test $ac_cv_size_long -eq 4 ; then ++{ echo "$as_me:$LINENO: checking for int32_t" >&5 ++echo $ECHO_N "checking for int32_t... $ECHO_C" >&6; } ++if test "${ac_cv_type_int32_t+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -9263,11 +8582,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef int32_t ac__type_new_; + int + main () + { +-if (sizeof ((int64_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -9278,66 +8600,59 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : ++ ac_cv_type_int32_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_cv_type_int64_t=yes ++ ac_cv_type_int32_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_int64_t" >&5 +-$as_echo "$ac_cv_type_int64_t" >&6; } +-if test "x$ac_cv_type_int64_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_int32_t" >&5 ++echo "${ECHO_T}$ac_cv_type_int32_t" >&6; } ++if test $ac_cv_type_int32_t = yes; then + : + else + + cat >>confdefs.h <<_ACEOF +-#define int64_t long long ++#define int32_t long + _ACEOF + + fi + +-{ $as_echo "$as_me:$LINENO: checking for uint64_t" >&5 +-$as_echo_n "checking for uint64_t... " >&6; } +-if test "${ac_cv_type_uint64_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++{ echo "$as_me:$LINENO: checking for uint32_t" >&5 ++echo $ECHO_N "checking for uint32_t... $ECHO_C" >&6; } ++if test "${ac_cv_type_uint32_t+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_uint64_t=no +-cat >conftest.$ac_ext <<_ACEOF ++ cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef uint32_t ac__type_new_; + int + main () + { +-if (sizeof (uint64_t)) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -9348,18 +8663,50 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then ++ ac_cv_type_uint32_t=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_uint32_t=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_uint32_t" >&5 ++echo "${ECHO_T}$ac_cv_type_uint32_t" >&6; } ++if test $ac_cv_type_uint32_t = yes; then ++ : ++else ++ ++cat >>confdefs.h <<_ACEOF ++#define uint32_t unsigned long ++_ACEOF ++ ++fi ++ ++else ++{ { echo "$as_me:$LINENO: error: LIBREPLACE no 32-bit type found" >&5 ++echo "$as_me: error: LIBREPLACE no 32-bit type found" >&2;} ++ { (exit 1); exit 1; }; } ++fi ++ ++{ echo "$as_me:$LINENO: checking for int64_t" >&5 ++echo $ECHO_N "checking for int64_t... $ECHO_C" >&6; } ++if test "${ac_cv_type_int64_t+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -9367,11 +8714,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef int64_t ac__type_new_; + int + main () + { +-if (sizeof ((uint64_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -9382,67 +8732,59 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : ++ ac_cv_type_int64_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_cv_type_uint64_t=yes ++ ac_cv_type_int64_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_uint64_t" >&5 +-$as_echo "$ac_cv_type_uint64_t" >&6; } +-if test "x$ac_cv_type_uint64_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_int64_t" >&5 ++echo "${ECHO_T}$ac_cv_type_int64_t" >&6; } ++if test $ac_cv_type_int64_t = yes; then + : + else + + cat >>confdefs.h <<_ACEOF +-#define uint64_t unsigned long long ++#define int64_t long long + _ACEOF + + fi + +- +-{ $as_echo "$as_me:$LINENO: checking for size_t" >&5 +-$as_echo_n "checking for size_t... " >&6; } +-if test "${ac_cv_type_size_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++{ echo "$as_me:$LINENO: checking for uint64_t" >&5 ++echo $ECHO_N "checking for uint64_t... $ECHO_C" >&6; } ++if test "${ac_cv_type_uint64_t+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_size_t=no +-cat >conftest.$ac_ext <<_ACEOF ++ cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef uint64_t ac__type_new_; + int + main () + { +-if (sizeof (size_t)) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -9453,18 +8795,45 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then ++ ac_cv_type_uint64_t=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_uint64_t=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_uint64_t" >&5 ++echo "${ECHO_T}$ac_cv_type_uint64_t" >&6; } ++if test $ac_cv_type_uint64_t = yes; then ++ : ++else ++ ++cat >>confdefs.h <<_ACEOF ++#define uint64_t unsigned long long ++_ACEOF ++ ++fi ++ ++ ++{ echo "$as_me:$LINENO: checking for size_t" >&5 ++echo $ECHO_N "checking for size_t... $ECHO_C" >&6; } ++if test "${ac_cv_type_size_t+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -9472,11 +8841,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef size_t ac__type_new_; + int + main () + { +-if (sizeof ((size_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -9487,39 +8859,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_size_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_size_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_size_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 +-$as_echo "$ac_cv_type_size_t" >&6; } +-if test "x$ac_cv_type_size_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 ++echo "${ECHO_T}$ac_cv_type_size_t" >&6; } ++if test $ac_cv_type_size_t = yes; then + : + else + +@@ -9529,24 +8892,26 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for ssize_t" >&5 +-$as_echo_n "checking for ssize_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for ssize_t" >&5 ++echo $ECHO_N "checking for ssize_t... $ECHO_C" >&6; } + if test "${ac_cv_type_ssize_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_ssize_t=no +-cat >conftest.$ac_ext <<_ACEOF ++ cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef ssize_t ac__type_new_; + int + main () + { +-if (sizeof (ssize_t)) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -9557,18 +8922,45 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then ++ ac_cv_type_ssize_t=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_ssize_t=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_ssize_t" >&5 ++echo "${ECHO_T}$ac_cv_type_ssize_t" >&6; } ++if test $ac_cv_type_ssize_t = yes; then ++ : ++else ++ ++cat >>confdefs.h <<_ACEOF ++#define ssize_t int ++_ACEOF ++ ++fi ++ ++ ++{ echo "$as_me:$LINENO: checking for off_t" >&5 ++echo $ECHO_N "checking for off_t... $ECHO_C" >&6; } ++if test "${ac_cv_type_off_t+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -9576,11 +8968,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef off_t ac__type_new_; + int + main () + { +-if (sizeof ((ssize_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -9591,57 +8986,38 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_ssize_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_off_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_off_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_ssize_t" >&5 +-$as_echo "$ac_cv_type_ssize_t" >&6; } +-if test "x$ac_cv_type_ssize_t" = x""yes; then +- : +-else +- +-cat >>confdefs.h <<_ACEOF +-#define ssize_t int +-_ACEOF +- +-fi +- ++{ echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5 ++echo "${ECHO_T}$ac_cv_type_off_t" >&6; } + + # The cast to long int works around a bug in the HP C Compiler + # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects + # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. + # This bug is HP SR number 8606223364. +-{ $as_echo "$as_me:$LINENO: checking size of off_t" >&5 +-$as_echo_n "checking size of off_t... " >&6; } ++{ echo "$as_me:$LINENO: checking size of off_t" >&5 ++echo $ECHO_N "checking size of off_t... $ECHO_C" >&6; } + if test "${ac_cv_sizeof_off_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + # Depending upon the size, compute the lo and hi bounds. +@@ -9652,10 +9028,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef off_t ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (off_t))) >= 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; + test_array [0] = 0 + + ; +@@ -9668,14 +9045,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -9689,10 +9065,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef off_t ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (off_t))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -9705,21 +9082,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr $ac_mid + 1` +@@ -9733,7 +9109,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -9743,10 +9119,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef off_t ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (off_t))) < 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; + test_array [0] = 0 + + ; +@@ -9759,14 +9136,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -9780,10 +9156,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef off_t ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (off_t))) >= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -9796,21 +9173,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_lo=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_hi=`expr '(' $ac_mid ')' - 1` +@@ -9824,7 +9200,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo= ac_hi= +@@ -9844,10 +9220,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef off_t ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (off_t))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -9860,21 +9237,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr '(' $ac_mid ')' + 1` +@@ -9885,13 +9261,11 @@ + case $ac_lo in + ?*) ac_cv_sizeof_off_t=$ac_lo;; + '') if test "$ac_cv_type_off_t" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (off_t) ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (off_t) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (off_t) ++echo "$as_me: error: cannot compute sizeof (off_t) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else + ac_cv_sizeof_off_t=0 + fi ;; +@@ -9904,8 +9278,9 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default +-static long int longval () { return (long int) (sizeof (off_t)); } +-static unsigned long int ulongval () { return (long int) (sizeof (off_t)); } ++ typedef off_t ac__type_sizeof_; ++static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } ++static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } + #include + #include + int +@@ -9915,22 +9290,20 @@ + FILE *f = fopen ("conftest.val", "w"); + if (! f) + return 1; +- if (((long int) (sizeof (off_t))) < 0) ++ if (((long int) (sizeof (ac__type_sizeof_))) < 0) + { + long int i = longval (); +- if (i != ((long int) (sizeof (off_t)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%ld", i); ++ fprintf (f, "%ld\n", i); + } + else + { + unsigned long int i = ulongval (); +- if (i != ((long int) (sizeof (off_t)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%lu", i); ++ fprintf (f, "%lu\n", i); + } +- /* Do not output a trailing newline, as this causes \r\n confusion +- on some platforms. */ + return ferror (f) || fclose (f) != 0; + + ; +@@ -9943,48 +9316,43 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_sizeof_off_t=`cat conftest.val` + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + if test "$ac_cv_type_off_t" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (off_t) ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (off_t) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (off_t) ++echo "$as_me: error: cannot compute sizeof (off_t) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else + ac_cv_sizeof_off_t=0 + fi + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + rm -f conftest.val + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_sizeof_off_t" >&5 +-$as_echo "$ac_cv_sizeof_off_t" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_off_t" >&5 ++echo "${ECHO_T}$ac_cv_sizeof_off_t" >&6; } + + + +@@ -9993,14 +9361,68 @@ + _ACEOF + + ++{ echo "$as_me:$LINENO: checking for size_t" >&5 ++echo $ECHO_N "checking for size_t... $ECHO_C" >&6; } ++if test "${ac_cv_type_size_t+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++$ac_includes_default ++typedef size_t ac__type_new_; ++int ++main () ++{ ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_type_size_t=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_size_t=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 ++echo "${ECHO_T}$ac_cv_type_size_t" >&6; } ++ + # The cast to long int works around a bug in the HP C Compiler + # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects + # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. + # This bug is HP SR number 8606223364. +-{ $as_echo "$as_me:$LINENO: checking size of size_t" >&5 +-$as_echo_n "checking size of size_t... " >&6; } ++{ echo "$as_me:$LINENO: checking size of size_t" >&5 ++echo $ECHO_N "checking size of size_t... $ECHO_C" >&6; } + if test "${ac_cv_sizeof_size_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + # Depending upon the size, compute the lo and hi bounds. +@@ -10011,10 +9433,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef size_t ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) >= 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; + test_array [0] = 0 + + ; +@@ -10027,14 +9450,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -10048,10 +9470,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef size_t ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -10064,21 +9487,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr $ac_mid + 1` +@@ -10092,7 +9514,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -10102,10 +9524,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef size_t ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) < 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; + test_array [0] = 0 + + ; +@@ -10118,14 +9541,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -10139,10 +9561,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef size_t ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) >= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -10155,21 +9578,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_lo=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_hi=`expr '(' $ac_mid ')' - 1` +@@ -10183,7 +9605,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo= ac_hi= +@@ -10203,10 +9625,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef size_t ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -10219,21 +9642,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr '(' $ac_mid ')' + 1` +@@ -10244,13 +9666,11 @@ + case $ac_lo in + ?*) ac_cv_sizeof_size_t=$ac_lo;; + '') if test "$ac_cv_type_size_t" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (size_t) ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (size_t) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (size_t) ++echo "$as_me: error: cannot compute sizeof (size_t) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else + ac_cv_sizeof_size_t=0 + fi ;; +@@ -10263,8 +9683,9 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default +-static long int longval () { return (long int) (sizeof (size_t)); } +-static unsigned long int ulongval () { return (long int) (sizeof (size_t)); } ++ typedef size_t ac__type_sizeof_; ++static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } ++static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } + #include + #include + int +@@ -10274,22 +9695,20 @@ + FILE *f = fopen ("conftest.val", "w"); + if (! f) + return 1; +- if (((long int) (sizeof (size_t))) < 0) ++ if (((long int) (sizeof (ac__type_sizeof_))) < 0) + { + long int i = longval (); +- if (i != ((long int) (sizeof (size_t)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%ld", i); ++ fprintf (f, "%ld\n", i); + } + else + { + unsigned long int i = ulongval (); +- if (i != ((long int) (sizeof (size_t)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%lu", i); ++ fprintf (f, "%lu\n", i); + } +- /* Do not output a trailing newline, as this causes \r\n confusion +- on some platforms. */ + return ferror (f) || fclose (f) != 0; + + ; +@@ -10302,64 +9721,113 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_sizeof_size_t=`cat conftest.val` + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + if test "$ac_cv_type_size_t" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (size_t) ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (size_t) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (size_t) ++echo "$as_me: error: cannot compute sizeof (size_t) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else + ac_cv_sizeof_size_t=0 + fi + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + rm -f conftest.val + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_sizeof_size_t" >&5 +-$as_echo "$ac_cv_sizeof_size_t" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_size_t" >&5 ++echo "${ECHO_T}$ac_cv_sizeof_size_t" >&6; } + + + +-cat >>confdefs.h <<_ACEOF +-#define SIZEOF_SIZE_T $ac_cv_sizeof_size_t +-_ACEOF ++cat >>confdefs.h <<_ACEOF ++#define SIZEOF_SIZE_T $ac_cv_sizeof_size_t ++_ACEOF ++ ++ ++{ echo "$as_me:$LINENO: checking for ssize_t" >&5 ++echo $ECHO_N "checking for ssize_t... $ECHO_C" >&6; } ++if test "${ac_cv_type_ssize_t+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++$ac_includes_default ++typedef ssize_t ac__type_new_; ++int ++main () ++{ ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_type_ssize_t=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_ssize_t=no ++fi + ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_ssize_t" >&5 ++echo "${ECHO_T}$ac_cv_type_ssize_t" >&6; } + + # The cast to long int works around a bug in the HP C Compiler + # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects + # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. + # This bug is HP SR number 8606223364. +-{ $as_echo "$as_me:$LINENO: checking size of ssize_t" >&5 +-$as_echo_n "checking size of ssize_t... " >&6; } ++{ echo "$as_me:$LINENO: checking size of ssize_t" >&5 ++echo $ECHO_N "checking size of ssize_t... $ECHO_C" >&6; } + if test "${ac_cv_sizeof_ssize_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + # Depending upon the size, compute the lo and hi bounds. +@@ -10370,10 +9838,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef ssize_t ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (ssize_t))) >= 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; + test_array [0] = 0 + + ; +@@ -10386,14 +9855,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -10407,10 +9875,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef ssize_t ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (ssize_t))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -10423,21 +9892,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr $ac_mid + 1` +@@ -10451,7 +9919,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -10461,10 +9929,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef ssize_t ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (ssize_t))) < 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; + test_array [0] = 0 + + ; +@@ -10477,14 +9946,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -10498,10 +9966,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef ssize_t ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (ssize_t))) >= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -10514,21 +9983,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_lo=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_hi=`expr '(' $ac_mid ')' - 1` +@@ -10542,7 +10010,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo= ac_hi= +@@ -10562,10 +10030,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef ssize_t ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (ssize_t))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -10578,21 +10047,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr '(' $ac_mid ')' + 1` +@@ -10603,13 +10071,11 @@ + case $ac_lo in + ?*) ac_cv_sizeof_ssize_t=$ac_lo;; + '') if test "$ac_cv_type_ssize_t" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (ssize_t) ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (ssize_t) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (ssize_t) ++echo "$as_me: error: cannot compute sizeof (ssize_t) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else + ac_cv_sizeof_ssize_t=0 + fi ;; +@@ -10622,8 +10088,9 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default +-static long int longval () { return (long int) (sizeof (ssize_t)); } +-static unsigned long int ulongval () { return (long int) (sizeof (ssize_t)); } ++ typedef ssize_t ac__type_sizeof_; ++static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } ++static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } + #include + #include + int +@@ -10633,22 +10100,20 @@ + FILE *f = fopen ("conftest.val", "w"); + if (! f) + return 1; +- if (((long int) (sizeof (ssize_t))) < 0) ++ if (((long int) (sizeof (ac__type_sizeof_))) < 0) + { + long int i = longval (); +- if (i != ((long int) (sizeof (ssize_t)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%ld", i); ++ fprintf (f, "%ld\n", i); + } + else + { + unsigned long int i = ulongval (); +- if (i != ((long int) (sizeof (ssize_t)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%lu", i); ++ fprintf (f, "%lu\n", i); + } +- /* Do not output a trailing newline, as this causes \r\n confusion +- on some platforms. */ + return ferror (f) || fclose (f) != 0; + + ; +@@ -10661,48 +10126,43 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_sizeof_ssize_t=`cat conftest.val` + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + if test "$ac_cv_type_ssize_t" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (ssize_t) ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (ssize_t) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (ssize_t) ++echo "$as_me: error: cannot compute sizeof (ssize_t) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else + ac_cv_sizeof_ssize_t=0 + fi + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + rm -f conftest.val + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_sizeof_ssize_t" >&5 +-$as_echo "$ac_cv_sizeof_ssize_t" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_ssize_t" >&5 ++echo "${ECHO_T}$ac_cv_sizeof_ssize_t" >&6; } + + + +@@ -10712,46 +10172,11 @@ + + + +-{ $as_echo "$as_me:$LINENO: checking for intptr_t" >&5 +-$as_echo_n "checking for intptr_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for intptr_t" >&5 ++echo $ECHO_N "checking for intptr_t... $ECHO_C" >&6; } + if test "${ac_cv_type_intptr_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_intptr_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (intptr_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -10759,11 +10184,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef intptr_t ac__type_new_; + int + main () + { +-if (sizeof ((intptr_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -10774,39 +10202,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_intptr_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_intptr_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_intptr_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_intptr_t" >&5 +-$as_echo "$ac_cv_type_intptr_t" >&6; } +-if test "x$ac_cv_type_intptr_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_intptr_t" >&5 ++echo "${ECHO_T}$ac_cv_type_intptr_t" >&6; } ++if test $ac_cv_type_intptr_t = yes; then + : + else + +@@ -10816,46 +10235,11 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for uintptr_t" >&5 +-$as_echo_n "checking for uintptr_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for uintptr_t" >&5 ++echo $ECHO_N "checking for uintptr_t... $ECHO_C" >&6; } + if test "${ac_cv_type_uintptr_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_uintptr_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (uintptr_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -10863,11 +10247,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef uintptr_t ac__type_new_; + int + main () + { +-if (sizeof ((uintptr_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -10878,39 +10265,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_uintptr_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_uintptr_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_uintptr_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_uintptr_t" >&5 +-$as_echo "$ac_cv_type_uintptr_t" >&6; } +-if test "x$ac_cv_type_uintptr_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_uintptr_t" >&5 ++echo "${ECHO_T}$ac_cv_type_uintptr_t" >&6; } ++if test $ac_cv_type_uintptr_t = yes; then + : + else + +@@ -10920,46 +10298,11 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for ptrdiff_t" >&5 +-$as_echo_n "checking for ptrdiff_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for ptrdiff_t" >&5 ++echo $ECHO_N "checking for ptrdiff_t... $ECHO_C" >&6; } + if test "${ac_cv_type_ptrdiff_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_ptrdiff_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (ptrdiff_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -10967,11 +10310,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef ptrdiff_t ac__type_new_; + int + main () + { +-if (sizeof ((ptrdiff_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -10982,39 +10328,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_ptrdiff_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_ptrdiff_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_ptrdiff_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_ptrdiff_t" >&5 +-$as_echo "$ac_cv_type_ptrdiff_t" >&6; } +-if test "x$ac_cv_type_ptrdiff_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_ptrdiff_t" >&5 ++echo "${ECHO_T}$ac_cv_type_ptrdiff_t" >&6; } ++if test $ac_cv_type_ptrdiff_t = yes; then + : + else + +@@ -11026,23 +10363,23 @@ + + + if test x"$ac_cv_type_long_long" != x"yes";then +- { { $as_echo "$as_me:$LINENO: error: LIBREPLACE needs type 'long long'" >&5 +-$as_echo "$as_me: error: LIBREPLACE needs type 'long long'" >&2;} ++ { { echo "$as_me:$LINENO: error: LIBREPLACE needs type 'long long'" >&5 ++echo "$as_me: error: LIBREPLACE needs type 'long long'" >&2;} + { (exit 1); exit 1; }; } + fi + if test $ac_cv_sizeof_long_long -lt 8;then +- { { $as_echo "$as_me:$LINENO: error: LIBREPLACE needs sizeof(long long) >= 8" >&5 +-$as_echo "$as_me: error: LIBREPLACE needs sizeof(long long) >= 8" >&2;} ++ { { echo "$as_me:$LINENO: error: LIBREPLACE needs sizeof(long long) >= 8" >&5 ++echo "$as_me: error: LIBREPLACE needs sizeof(long long) >= 8" >&2;} + { (exit 1); exit 1; }; } + fi + + ############################################ + # check if the compiler can do immediate structures + +-{ $as_echo "$as_me:$LINENO: checking for immediate structures" >&5 +-$as_echo_n "checking for immediate structures... " >&6; } ++{ echo "$as_me:$LINENO: checking for immediate structures" >&5 ++echo $ECHO_N "checking for immediate structures... $ECHO_C" >&6; } + if test "${libreplace_cv_immediate_structures+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -11079,21 +10416,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + libreplace_cv_immediate_structures=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + libreplace_cv_immediate_structures=no +@@ -11102,8 +10438,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_immediate_structures" >&5 +-$as_echo "$libreplace_cv_immediate_structures" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_immediate_structures" >&5 ++echo "${ECHO_T}$libreplace_cv_immediate_structures" >&6; } + if test x"$libreplace_cv_immediate_structures" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -11127,8 +10463,8 @@ + fi + done + if test x"$tallocdir" = "x"; then +- { { $as_echo "$as_me:$LINENO: error: cannot find talloc source in $tallocpaths" >&5 +-$as_echo "$as_me: error: cannot find talloc source in $tallocpaths" >&2;} ++ { { echo "$as_me:$LINENO: error: cannot find talloc source in $tallocpaths" >&5 ++echo "$as_me: error: cannot find talloc source in $tallocpaths" >&2;} + { (exit 1); exit 1; }; } + fi + TALLOC_OBJ="talloc.o" +@@ -11140,14 +10476,68 @@ + TALLOC_LIBS="" + + ++{ echo "$as_me:$LINENO: checking for size_t" >&5 ++echo $ECHO_N "checking for size_t... $ECHO_C" >&6; } ++if test "${ac_cv_type_size_t+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++$ac_includes_default ++typedef size_t ac__type_new_; ++int ++main () ++{ ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_type_size_t=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_size_t=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 ++echo "${ECHO_T}$ac_cv_type_size_t" >&6; } ++ + # The cast to long int works around a bug in the HP C Compiler + # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects + # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. + # This bug is HP SR number 8606223364. +-{ $as_echo "$as_me:$LINENO: checking size of size_t" >&5 +-$as_echo_n "checking size of size_t... " >&6; } ++{ echo "$as_me:$LINENO: checking size of size_t" >&5 ++echo $ECHO_N "checking size of size_t... $ECHO_C" >&6; } + if test "${ac_cv_sizeof_size_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + # Depending upon the size, compute the lo and hi bounds. +@@ -11158,10 +10548,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef size_t ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) >= 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; + test_array [0] = 0 + + ; +@@ -11174,14 +10565,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -11195,10 +10585,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef size_t ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -11211,21 +10602,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr $ac_mid + 1` +@@ -11239,7 +10629,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -11249,10 +10639,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef size_t ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) < 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; + test_array [0] = 0 + + ; +@@ -11265,14 +10656,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -11286,10 +10676,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef size_t ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) >= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -11302,21 +10693,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_lo=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_hi=`expr '(' $ac_mid ')' - 1` +@@ -11330,7 +10720,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo= ac_hi= +@@ -11350,10 +10740,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef size_t ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -11366,21 +10757,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr '(' $ac_mid ')' + 1` +@@ -11391,13 +10781,11 @@ + case $ac_lo in + ?*) ac_cv_sizeof_size_t=$ac_lo;; + '') if test "$ac_cv_type_size_t" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (size_t) ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (size_t) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (size_t) ++echo "$as_me: error: cannot compute sizeof (size_t) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else + ac_cv_sizeof_size_t=0 + fi ;; +@@ -11410,8 +10798,9 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default +-static long int longval () { return (long int) (sizeof (size_t)); } +-static unsigned long int ulongval () { return (long int) (sizeof (size_t)); } ++ typedef size_t ac__type_sizeof_; ++static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } ++static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } + #include + #include + int +@@ -11421,22 +10810,20 @@ + FILE *f = fopen ("conftest.val", "w"); + if (! f) + return 1; +- if (((long int) (sizeof (size_t))) < 0) ++ if (((long int) (sizeof (ac__type_sizeof_))) < 0) + { + long int i = longval (); +- if (i != ((long int) (sizeof (size_t)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%ld", i); ++ fprintf (f, "%ld\n", i); + } + else + { + unsigned long int i = ulongval (); +- if (i != ((long int) (sizeof (size_t)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%lu", i); ++ fprintf (f, "%lu\n", i); + } +- /* Do not output a trailing newline, as this causes \r\n confusion +- on some platforms. */ + return ferror (f) || fclose (f) != 0; + + ; +@@ -11449,48 +10836,43 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_sizeof_size_t=`cat conftest.val` + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + if test "$ac_cv_type_size_t" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (size_t) ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (size_t) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (size_t) ++echo "$as_me: error: cannot compute sizeof (size_t) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else + ac_cv_sizeof_size_t=0 + fi + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + rm -f conftest.val + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_sizeof_size_t" >&5 +-$as_echo "$ac_cv_sizeof_size_t" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_size_t" >&5 ++echo "${ECHO_T}$ac_cv_sizeof_size_t" >&6; } + + + +@@ -11499,14 +10881,68 @@ + _ACEOF + + ++{ echo "$as_me:$LINENO: checking for void *" >&5 ++echo $ECHO_N "checking for void *... $ECHO_C" >&6; } ++if test "${ac_cv_type_void_p+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++$ac_includes_default ++typedef void * ac__type_new_; ++int ++main () ++{ ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_type_void_p=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_void_p=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_void_p" >&5 ++echo "${ECHO_T}$ac_cv_type_void_p" >&6; } ++ + # The cast to long int works around a bug in the HP C Compiler + # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects + # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. + # This bug is HP SR number 8606223364. +-{ $as_echo "$as_me:$LINENO: checking size of void *" >&5 +-$as_echo_n "checking size of void *... " >&6; } ++{ echo "$as_me:$LINENO: checking size of void *" >&5 ++echo $ECHO_N "checking size of void *... $ECHO_C" >&6; } + if test "${ac_cv_sizeof_void_p+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + # Depending upon the size, compute the lo and hi bounds. +@@ -11517,10 +10953,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef void * ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (void *))) >= 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; + test_array [0] = 0 + + ; +@@ -11533,14 +10970,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -11554,10 +10990,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef void * ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (void *))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -11570,21 +11007,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr $ac_mid + 1` +@@ -11598,7 +11034,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -11608,10 +11044,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef void * ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (void *))) < 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; + test_array [0] = 0 + + ; +@@ -11624,14 +11061,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -11645,10 +11081,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef void * ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (void *))) >= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -11661,21 +11098,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_lo=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_hi=`expr '(' $ac_mid ')' - 1` +@@ -11689,7 +11125,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo= ac_hi= +@@ -11709,10 +11145,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef void * ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (void *))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -11725,21 +11162,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr '(' $ac_mid ')' + 1` +@@ -11750,13 +11186,11 @@ + case $ac_lo in + ?*) ac_cv_sizeof_void_p=$ac_lo;; + '') if test "$ac_cv_type_void_p" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (void *) ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (void *) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (void *) ++echo "$as_me: error: cannot compute sizeof (void *) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else + ac_cv_sizeof_void_p=0 + fi ;; +@@ -11769,8 +11203,9 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default +-static long int longval () { return (long int) (sizeof (void *)); } +-static unsigned long int ulongval () { return (long int) (sizeof (void *)); } ++ typedef void * ac__type_sizeof_; ++static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } ++static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } + #include + #include + int +@@ -11780,22 +11215,20 @@ + FILE *f = fopen ("conftest.val", "w"); + if (! f) + return 1; +- if (((long int) (sizeof (void *))) < 0) ++ if (((long int) (sizeof (ac__type_sizeof_))) < 0) + { + long int i = longval (); +- if (i != ((long int) (sizeof (void *)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%ld", i); ++ fprintf (f, "%ld\n", i); + } + else + { + unsigned long int i = ulongval (); +- if (i != ((long int) (sizeof (void *)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%lu", i); ++ fprintf (f, "%lu\n", i); + } +- /* Do not output a trailing newline, as this causes \r\n confusion +- on some platforms. */ + return ferror (f) || fclose (f) != 0; + + ; +@@ -11808,48 +11241,43 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_sizeof_void_p=`cat conftest.val` + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + if test "$ac_cv_type_void_p" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (void *) ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (void *) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (void *) ++echo "$as_me: error: cannot compute sizeof (void *) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else + ac_cv_sizeof_void_p=0 + fi + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + rm -f conftest.val + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_sizeof_void_p" >&5 +-$as_echo "$ac_cv_sizeof_void_p" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_void_p" >&5 ++echo "${ECHO_T}$ac_cv_sizeof_void_p" >&6; } + + + +@@ -11860,16 +11288,16 @@ + + + if test $ac_cv_sizeof_size_t -lt $ac_cv_sizeof_void_p; then +- { $as_echo "$as_me:$LINENO: WARNING: size_t cannot represent the amount of used memory of a process" >&5 +-$as_echo "$as_me: WARNING: size_t cannot represent the amount of used memory of a process" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: please report this to " >&5 +-$as_echo "$as_me: WARNING: please report this to " >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sizeof(size_t) = $ac_cv_sizeof_size_t" >&5 +-$as_echo "$as_me: WARNING: sizeof(size_t) = $ac_cv_sizeof_size_t" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sizeof(void *) = $ac_cv_sizeof_void_p" >&5 +-$as_echo "$as_me: WARNING: sizeof(void *) = $ac_cv_sizeof_void_p" >&2;} +- { { $as_echo "$as_me:$LINENO: error: sizeof(size_t) < sizeof(void *)" >&5 +-$as_echo "$as_me: error: sizeof(size_t) < sizeof(void *)" >&2;} ++ { echo "$as_me:$LINENO: WARNING: size_t cannot represent the amount of used memory of a process" >&5 ++echo "$as_me: WARNING: size_t cannot represent the amount of used memory of a process" >&2;} ++ { echo "$as_me:$LINENO: WARNING: please report this to " >&5 ++echo "$as_me: WARNING: please report this to " >&2;} ++ { echo "$as_me:$LINENO: WARNING: sizeof(size_t) = $ac_cv_sizeof_size_t" >&5 ++echo "$as_me: WARNING: sizeof(size_t) = $ac_cv_sizeof_size_t" >&2;} ++ { echo "$as_me:$LINENO: WARNING: sizeof(void *) = $ac_cv_sizeof_void_p" >&5 ++echo "$as_me: WARNING: sizeof(void *) = $ac_cv_sizeof_void_p" >&2;} ++ { { echo "$as_me:$LINENO: error: sizeof(size_t) < sizeof(void *)" >&5 ++echo "$as_me: error: sizeof(size_t) < sizeof(void *)" >&2;} + { (exit 1); exit 1; }; } + fi + +@@ -12068,10 +11496,10 @@ + if test x"$ac_cv_c_compiler_gnu" = x"yes" ; then + DEVELOPER_CFLAGS="-g -Wall -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -DDEBUG_PASSWORD -DDEVELOPER" + # Add -Wdeclaration-after-statement if compiler supports it +- { $as_echo "$as_me:$LINENO: checking that the C compiler understands -Wdeclaration-after-statement" >&5 +-$as_echo_n "checking that the C compiler understands -Wdeclaration-after-statement... " >&6; } ++ { echo "$as_me:$LINENO: checking that the C compiler understands -Wdeclaration-after-statement" >&5 ++echo $ECHO_N "checking that the C compiler understands -Wdeclaration-after-statement... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_Wdeclaration_after_statement+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + +@@ -12105,32 +11533,29 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_Wdeclaration_after_statement=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_Wdeclaration_after_statement=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + +@@ -12147,18 +11572,18 @@ + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_Wdeclaration_after_statement" >&5 +-$as_echo "$samba_cv_HAVE_Wdeclaration_after_statement" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_Wdeclaration_after_statement" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_Wdeclaration_after_statement" >&6; } + + if test x"$samba_cv_HAVE_Wdeclaration_after_statement" = x"yes"; then + DEVELOPER_CFLAGS="${DEVELOPER_CFLAGS} -Wdeclaration-after-statement" + fi + + #-Werror-implicit-function-declaration +- { $as_echo "$as_me:$LINENO: checking that the C compiler understands -Werror-implicit-function-declaration" >&5 +-$as_echo_n "checking that the C compiler understands -Werror-implicit-function-declaration... " >&6; } ++ { echo "$as_me:$LINENO: checking that the C compiler understands -Werror-implicit-function-declaration" >&5 ++echo $ECHO_N "checking that the C compiler understands -Werror-implicit-function-declaration... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_Werror_implicit_function_declaration+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + +@@ -12192,32 +11617,29 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_Werror_implicit_function_declaration=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_Werror_implicit_function_declaration=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + +@@ -12234,8 +11656,8 @@ + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_Werror_implicit_function_declaration" >&5 +-$as_echo "$samba_cv_HAVE_Werror_implicit_function_declaration" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_Werror_implicit_function_declaration" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_Werror_implicit_function_declaration" >&6; } + if test x"$samba_cv_HAVE_Werror_implicit_function_declaration" = x"yes"; then + DEVELOPER_CFLAGS="${DEVELOPER_CFLAGS} -Werror-implicit-function-declaration" + fi +@@ -12274,15 +11696,15 @@ + + ################################################# + # check for a shared memory profiling support +-{ $as_echo "$as_me:$LINENO: checking whether to use profiling" >&5 +-$as_echo_n "checking whether to use profiling... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to use profiling" >&5 ++echo $ECHO_N "checking whether to use profiling... $ECHO_C" >&6; } + + # Check whether --with-profiling-data was given. + if test "${with_profiling_data+set}" = set; then + withval=$with_profiling_data; case "$withval" in + yes) +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define WITH_PROFILE 1 +@@ -12291,14 +11713,14 @@ + samba_cv_WITH_PROFILE=yes + ;; + *) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + samba_cv_WITH_PROFILE=no + ;; + esac + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + fi + +@@ -12317,12 +11739,11 @@ + # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" + # OS/2's system install, which has a completely different semantic + # ./install, which can be erroneously created by make from ./install.sh. +-# Reject install programs that cannot install multiple files. +-{ $as_echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 +-$as_echo_n "checking for a BSD-compatible install... " >&6; } ++{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 ++echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } + if test -z "$INSTALL"; then + if test "${ac_cv_path_install+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + for as_dir in $PATH +@@ -12351,29 +11772,17 @@ + # program-specific install script used by HP pwplus--don't use. + : + else +- rm -rf conftest.one conftest.two conftest.dir +- echo one > conftest.one +- echo two > conftest.two +- mkdir conftest.dir +- if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && +- test -s conftest.one && test -s conftest.two && +- test -s conftest.dir/conftest.one && +- test -s conftest.dir/conftest.two +- then +- ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" +- break 3 +- fi ++ ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" ++ break 3 + fi + fi + done + done + ;; + esac +- + done + IFS=$as_save_IFS + +-rm -rf conftest.one conftest.two conftest.dir + + fi + if test "${ac_cv_path_install+set}" = set; then +@@ -12386,8 +11795,8 @@ + INSTALL=$ac_install_sh + fi + fi +-{ $as_echo "$as_me:$LINENO: result: $INSTALL" >&5 +-$as_echo "$INSTALL" >&6; } ++{ echo "$as_me:$LINENO: result: $INSTALL" >&5 ++echo "${ECHO_T}$INSTALL" >&6; } + + # Use test -z because SunOS4 sh mishandles braces in ${var-val}. + # It thinks the first close brace ends the variable substitution. +@@ -12401,10 +11810,10 @@ + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } + if test "${ac_cv_prog_AWK+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test -n "$AWK"; then + ac_cv_prog_AWK="$AWK" # Let the user override the test. +@@ -12417,7 +11826,7 @@ + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AWK="$ac_prog" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -12428,11 +11837,11 @@ + fi + AWK=$ac_cv_prog_AWK + if test -n "$AWK"; then +- { $as_echo "$as_me:$LINENO: result: $AWK" >&5 +-$as_echo "$AWK" >&6; } ++ { echo "$as_me:$LINENO: result: $AWK" >&5 ++echo "${ECHO_T}$AWK" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + +@@ -12441,10 +11850,10 @@ + + # Extract the first word of "perl", so it can be a program name with args. + set dummy perl; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } + if test "${ac_cv_path_PERL+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + case $PERL in + [\\/]* | ?:[\\/]*) +@@ -12459,7 +11868,7 @@ + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_PERL="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -12471,11 +11880,11 @@ + fi + PERL=$ac_cv_path_PERL + if test -n "$PERL"; then +- { $as_echo "$as_me:$LINENO: result: $PERL" >&5 +-$as_echo "$PERL" >&6; } ++ { echo "$as_me:$LINENO: result: $PERL" >&5 ++echo "${ECHO_T}$PERL" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + +@@ -12483,10 +11892,10 @@ + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. + set dummy ${ac_tool_prefix}ar; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } + if test "${ac_cv_prog_AR+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test -n "$AR"; then + ac_cv_prog_AR="$AR" # Let the user override the test. +@@ -12499,7 +11908,7 @@ + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AR="${ac_tool_prefix}ar" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -12510,11 +11919,11 @@ + fi + AR=$ac_cv_prog_AR + if test -n "$AR"; then +- { $as_echo "$as_me:$LINENO: result: $AR" >&5 +-$as_echo "$AR" >&6; } ++ { echo "$as_me:$LINENO: result: $AR" >&5 ++echo "${ECHO_T}$AR" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + +@@ -12523,10 +11932,10 @@ + ac_ct_AR=$AR + # Extract the first word of "ar", so it can be a program name with args. + set dummy ar; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } + if test "${ac_cv_prog_ac_ct_AR+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test -n "$ac_ct_AR"; then + ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. +@@ -12539,7 +11948,7 @@ + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_AR="ar" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -12550,11 +11959,11 @@ + fi + ac_ct_AR=$ac_cv_prog_ac_ct_AR + if test -n "$ac_ct_AR"; then +- { $as_echo "$as_me:$LINENO: result: $ac_ct_AR" >&5 +-$as_echo "$ac_ct_AR" >&6; } ++ { echo "$as_me:$LINENO: result: $ac_ct_AR" >&5 ++echo "${ECHO_T}$ac_ct_AR" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + if test "x$ac_ct_AR" = x; then +@@ -12562,8 +11971,12 @@ + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 +-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ++{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&5 ++echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&2;} + ac_tool_warned=yes ;; + esac + AR=$ac_ct_AR +@@ -12574,10 +11987,10 @@ + + + LD=ld +-{ $as_echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 +-$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } ++{ echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 ++echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; } + if test "${ac_cv_prog_gnu_ld+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + # I'd rather use --version here, but apparently some GNU ld's only accept -v. + if $LD -v 2>&1 &5; then +@@ -12586,17 +11999,17 @@ + ac_cv_prog_gnu_ld=no + fi + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_prog_gnu_ld" >&5 +-$as_echo "$ac_cv_prog_gnu_ld" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_prog_gnu_ld" >&5 ++echo "${ECHO_T}$ac_cv_prog_gnu_ld" >&6; } + + + if test "$ac_cv_prog_gnu_ld" = "yes"; then + ac_cv_gnu_ld_version=`$LD -v 2>/dev/null | head -1` +- { $as_echo "$as_me:$LINENO: checking GNU ld release date" >&5 +-$as_echo_n "checking GNU ld release date... " >&6; } ++ { echo "$as_me:$LINENO: checking GNU ld release date" >&5 ++echo $ECHO_N "checking GNU ld release date... $ECHO_C" >&6; } + ac_cv_gnu_ld_date=`echo $ac_cv_gnu_ld_version | sed -n 's,^.*\([2-9][0-9][0-9][0-9]\)[-]*\([01][0-9]\)[-]*\([0-3][0-9]\).*$,\1\2\3,p'` +- { $as_echo "$as_me:$LINENO: result: ${ac_cv_gnu_ld_date}" >&5 +-$as_echo "${ac_cv_gnu_ld_date}" >&6; } ++ { echo "$as_me:$LINENO: result: ${ac_cv_gnu_ld_date}" >&5 ++echo "${ECHO_T}${ac_cv_gnu_ld_date}" >&6; } + if test -n "$ac_cv_gnu_ld_date"; then + if test "$ac_cv_gnu_ld_date" -lt 20030217; then + ac_cv_gnu_ld_no_default_allow_shlib_undefined=yes +@@ -12605,21 +12018,21 @@ + ac_cv_gnu_ld_version_script=yes + fi + else +- { $as_echo "$as_me:$LINENO: checking GNU ld release version" >&5 +-$as_echo_n "checking GNU ld release version... " >&6; } ++ { echo "$as_me:$LINENO: checking GNU ld release version" >&5 ++echo $ECHO_N "checking GNU ld release version... $ECHO_C" >&6; } + ac_cv_gnu_ld_vernr=`echo $ac_cv_gnu_ld_version | sed -n 's,^.*\([1-9][0-9]*\.[0-9][0-9]*\).*$,\1,p'` + ac_cv_gnu_ld_vernr_major=`echo $ac_cv_gnu_ld_vernr | cut -d '.' -f 1` + ac_cv_gnu_ld_vernr_minor=`echo $ac_cv_gnu_ld_vernr | cut -d '.' -f 2` +- { $as_echo "$as_me:$LINENO: result: ${ac_cv_gnu_ld_vernr}" >&5 +-$as_echo "${ac_cv_gnu_ld_vernr}" >&6; } +- { $as_echo "$as_me:$LINENO: checking GNU ld release version major" >&5 +-$as_echo_n "checking GNU ld release version major... " >&6; } +- { $as_echo "$as_me:$LINENO: result: ${ac_cv_gnu_ld_vernr_major}" >&5 +-$as_echo "${ac_cv_gnu_ld_vernr_major}" >&6; } +- { $as_echo "$as_me:$LINENO: checking GNU ld release version minor" >&5 +-$as_echo_n "checking GNU ld release version minor... " >&6; } +- { $as_echo "$as_me:$LINENO: result: ${ac_cv_gnu_ld_vernr_minor}" >&5 +-$as_echo "${ac_cv_gnu_ld_vernr_minor}" >&6; } ++ { echo "$as_me:$LINENO: result: ${ac_cv_gnu_ld_vernr}" >&5 ++echo "${ECHO_T}${ac_cv_gnu_ld_vernr}" >&6; } ++ { echo "$as_me:$LINENO: checking GNU ld release version major" >&5 ++echo $ECHO_N "checking GNU ld release version major... $ECHO_C" >&6; } ++ { echo "$as_me:$LINENO: result: ${ac_cv_gnu_ld_vernr_major}" >&5 ++echo "${ECHO_T}${ac_cv_gnu_ld_vernr_major}" >&6; } ++ { echo "$as_me:$LINENO: checking GNU ld release version minor" >&5 ++echo $ECHO_N "checking GNU ld release version minor... $ECHO_C" >&6; } ++ { echo "$as_me:$LINENO: result: ${ac_cv_gnu_ld_vernr_minor}" >&5 ++echo "${ECHO_T}${ac_cv_gnu_ld_vernr_minor}" >&6; } + if test "$ac_cv_gnu_ld_vernr_major" -lt 2 || test "$ac_cv_gnu_ld_vernr_minor" -lt 14; then + ac_cv_gnu_ld_no_default_allow_shlib_undefined=yes + fi +@@ -12632,16 +12045,16 @@ + + + if test "x$CC" != xcc; then +- { $as_echo "$as_me:$LINENO: checking whether $CC and cc understand -c and -o together" >&5 +-$as_echo_n "checking whether $CC and cc understand -c and -o together... " >&6; } ++ { echo "$as_me:$LINENO: checking whether $CC and cc understand -c and -o together" >&5 ++echo $ECHO_N "checking whether $CC and cc understand -c and -o together... $ECHO_C" >&6; } + else +- { $as_echo "$as_me:$LINENO: checking whether cc understands -c and -o together" >&5 +-$as_echo_n "checking whether cc understands -c and -o together... " >&6; } ++ { echo "$as_me:$LINENO: checking whether cc understands -c and -o together" >&5 ++echo $ECHO_N "checking whether cc understands -c and -o together... $ECHO_C" >&6; } + fi +-set dummy $CC; ac_cc=`$as_echo "$2" | ++set dummy $CC; ac_cc=`echo $2 | + sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` + if { as_var=ac_cv_prog_cc_${ac_cc}_c_o; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -12667,21 +12080,19 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + test -f conftest2.$ac_objext && { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; + then + eval ac_cv_prog_cc_${ac_cc}_c_o=yes +@@ -12692,11 +12103,10 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_try='cc -c conftest.$ac_ext -o conftest2.$ac_objext >&5' + rm -f conftest2.* +@@ -12704,21 +12114,19 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + test -f conftest2.$ac_objext && { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; + then + # cc works too. +@@ -12736,11 +12144,11 @@ + + fi + if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define NO_MINUS_C_MINUS_O 1 +@@ -12755,10 +12163,10 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking that the C compiler understands -Werror" >&5 +-$as_echo_n "checking that the C compiler understands -Werror... " >&6; } ++{ echo "$as_me:$LINENO: checking that the C compiler understands -Werror" >&5 ++echo $ECHO_N "checking that the C compiler understands -Werror... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_Werror+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + +@@ -12792,32 +12200,29 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_Werror=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_Werror=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + +@@ -12833,15 +12238,15 @@ + export LDFLAGS; + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_Werror" >&5 +-$as_echo "$samba_cv_HAVE_Werror" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_Werror" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_Werror" >&6; } + if test x"$samba_cv_HAVE_Werror" = x"yes"; then + Werror_FLAGS="-Werror" + else +-{ $as_echo "$as_me:$LINENO: checking that the C compiler understands -w2" >&5 +-$as_echo_n "checking that the C compiler understands -w2... " >&6; } ++{ echo "$as_me:$LINENO: checking that the C compiler understands -w2" >&5 ++echo $ECHO_N "checking that the C compiler understands -w2... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_w2+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + +@@ -12875,32 +12280,29 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_w2=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_w2=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + +@@ -12916,15 +12318,15 @@ + export LDFLAGS; + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_w2" >&5 +-$as_echo "$samba_cv_HAVE_w2" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_w2" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_w2" >&6; } + if test x"$samba_cv_HAVE_w2" = x"yes"; then + Werror_FLAGS="-w2" + else +-{ $as_echo "$as_me:$LINENO: checking that the C compiler understands -errwarn" >&5 +-$as_echo_n "checking that the C compiler understands -errwarn... " >&6; } ++{ echo "$as_me:$LINENO: checking that the C compiler understands -errwarn" >&5 ++echo $ECHO_N "checking that the C compiler understands -errwarn... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_errwarn+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + +@@ -12958,32 +12360,29 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_errwarn=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_errwarn=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + +@@ -12999,18 +12398,18 @@ + export LDFLAGS; + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_errwarn" >&5 +-$as_echo "$samba_cv_HAVE_errwarn" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_errwarn" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_errwarn" >&6; } + if test x"$samba_cv_HAVE_errwarn" = x"yes"; then + Werror_FLAGS="-errwarn=%all" + fi + fi + fi + +-{ $as_echo "$as_me:$LINENO: checking that the C compiler understands volatile" >&5 +-$as_echo_n "checking that the C compiler understands volatile... " >&6; } ++{ echo "$as_me:$LINENO: checking that the C compiler understands volatile" >&5 ++echo $ECHO_N "checking that the C compiler understands volatile... $ECHO_C" >&6; } + if test "${samba_cv_volatile+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -13034,21 +12433,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_volatile=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_volatile=no +@@ -13056,8 +12454,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_volatile" >&5 +-$as_echo "$samba_cv_volatile" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_volatile" >&5 ++echo "${ECHO_T}$samba_cv_volatile" >&6; } + if test x"$samba_cv_volatile" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -13071,20 +12469,18 @@ + # and don't truncate the values to INT_MAX + # a runtime test is needed here + +-{ $as_echo "$as_me:$LINENO: checking that the C compiler understands negative enum values" >&5 +-$as_echo_n "checking that the C compiler understands negative enum values... " >&6; } ++{ echo "$as_me:$LINENO: checking that the C compiler understands negative enum values" >&5 ++echo $ECHO_N "checking that the C compiler understands negative enum values... $ECHO_C" >&6; } + if test "${samba_cv_CC_NEGATIVE_ENUM_VALUES+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot run test program while cross compiling ++ { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot run test program while cross compiling ++echo "$as_me: error: cannot run test program while cross compiling + See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++ { (exit 1); exit 1; }; } + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -13118,42 +12514,39 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_CC_NEGATIVE_ENUM_VALUES=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv__CC_NEGATIVE_ENUM_VALUES=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_CC_NEGATIVE_ENUM_VALUES" >&5 +-$as_echo "$samba_cv_CC_NEGATIVE_ENUM_VALUES" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_CC_NEGATIVE_ENUM_VALUES" >&5 ++echo "${ECHO_T}$samba_cv_CC_NEGATIVE_ENUM_VALUES" >&6; } + if test x"$samba_cv_CC_NEGATIVE_ENUM_VALUES" != x"yes"; then +- { $as_echo "$as_me:$LINENO: WARNING: using --unit-enums for pidl" >&5 +-$as_echo "$as_me: WARNING: using --unit-enums for pidl" >&2;} ++ { echo "$as_me:$LINENO: WARNING: using --unit-enums for pidl" >&5 ++echo "$as_me: WARNING: using --unit-enums for pidl" >&2;} + PIDL_ARGS="$PIDL_ARGS --uint-enums" + fi + +@@ -13162,8 +12555,8 @@ + saved_CFLAGS="$CFLAGS"; + c99_init=no + if test x"$c99_init" = x"no"; then +- { $as_echo "$as_me:$LINENO: checking for C99 designated initializers" >&5 +-$as_echo_n "checking for C99 designated initializers... " >&6; } ++ { echo "$as_me:$LINENO: checking for C99 designated initializers" >&5 ++echo $ECHO_N "checking for C99 designated initializers... $ECHO_C" >&6; } + CFLAGS="$saved_CFLAGS"; + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -13188,33 +12581,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; c99_init=yes ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; }; c99_init=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + if test x"$c99_init" = x"no"; then +- { $as_echo "$as_me:$LINENO: checking for C99 designated initializers with -AC99" >&5 +-$as_echo_n "checking for C99 designated initializers with -AC99... " >&6; } ++ { echo "$as_me:$LINENO: checking for C99 designated initializers with -AC99" >&5 ++echo $ECHO_N "checking for C99 designated initializers with -AC99... $ECHO_C" >&6; } + CFLAGS="$saved_CFLAGS -AC99"; + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -13239,33 +12631,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; c99_init=yes ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; }; c99_init=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + if test x"$c99_init" = x"no"; then +- { $as_echo "$as_me:$LINENO: checking for C99 designated initializers with -qlanglvl=extc99" >&5 +-$as_echo_n "checking for C99 designated initializers with -qlanglvl=extc99... " >&6; } ++ { echo "$as_me:$LINENO: checking for C99 designated initializers with -qlanglvl=extc99" >&5 ++echo $ECHO_N "checking for C99 designated initializers with -qlanglvl=extc99... $ECHO_C" >&6; } + CFLAGS="$saved_CFLAGS -qlanglvl=extc99"; + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -13290,33 +12681,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; c99_init=yes ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; }; c99_init=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + if test x"$c99_init" = x"no"; then +- { $as_echo "$as_me:$LINENO: checking for C99 designated initializers with -qlanglvl=stdc99" >&5 +-$as_echo_n "checking for C99 designated initializers with -qlanglvl=stdc99... " >&6; } ++ { echo "$as_me:$LINENO: checking for C99 designated initializers with -qlanglvl=stdc99" >&5 ++echo $ECHO_N "checking for C99 designated initializers with -qlanglvl=stdc99... $ECHO_C" >&6; } + CFLAGS="$saved_CFLAGS -qlanglvl=stdc99"; + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -13341,33 +12731,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; c99_init=yes ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; }; c99_init=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + if test x"$c99_init" = x"no"; then +- { $as_echo "$as_me:$LINENO: checking for C99 designated initializers with -c99" >&5 +-$as_echo_n "checking for C99 designated initializers with -c99... " >&6; } ++ { echo "$as_me:$LINENO: checking for C99 designated initializers with -c99" >&5 ++echo $ECHO_N "checking for C99 designated initializers with -c99... $ECHO_C" >&6; } + CFLAGS="$saved_CFLAGS -c99" + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -13392,26 +12781,25 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; c99_init=yes ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; }; c99_init=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +@@ -13432,41 +12820,41 @@ + else + CFLAGS="$saved_CFLAGS" + saved_CFLAGS="" +- { { $as_echo "$as_me:$LINENO: error: c99 structure initializer are not supported" >&5 +-$as_echo "$as_me: error: c99 structure initializer are not supported" >&2;} ++ { { echo "$as_me:$LINENO: error: c99 structure initializer are not supported" >&5 ++echo "$as_me: error: c99 structure initializer are not supported" >&2;} + { (exit 1); exit 1; }; } + fi + + + UNAME_S=`(uname -s) 2>/dev/null` || UNAME_S="unknown" +-{ $as_echo "$as_me:$LINENO: checking uname -s" >&5 +-$as_echo_n "checking uname -s... " >&6; } +-{ $as_echo "$as_me:$LINENO: result: ${UNAME_S}" >&5 +-$as_echo "${UNAME_S}" >&6; } ++{ echo "$as_me:$LINENO: checking uname -s" >&5 ++echo $ECHO_N "checking uname -s... $ECHO_C" >&6; } ++{ echo "$as_me:$LINENO: result: ${UNAME_S}" >&5 ++echo "${ECHO_T}${UNAME_S}" >&6; } + + UNAME_R=`(uname -r) 2>/dev/null` || UNAME_R="unknown" +-{ $as_echo "$as_me:$LINENO: checking uname -r" >&5 +-$as_echo_n "checking uname -r... " >&6; } +-{ $as_echo "$as_me:$LINENO: result: ${UNAME_R}" >&5 +-$as_echo "${UNAME_R}" >&6; } ++{ echo "$as_me:$LINENO: checking uname -r" >&5 ++echo $ECHO_N "checking uname -r... $ECHO_C" >&6; } ++{ echo "$as_me:$LINENO: result: ${UNAME_R}" >&5 ++echo "${ECHO_T}${UNAME_R}" >&6; } + + UNAME_M=`(uname -m) 2>/dev/null` || UNAME_M="unknown" +-{ $as_echo "$as_me:$LINENO: checking uname -m" >&5 +-$as_echo_n "checking uname -m... " >&6; } +-{ $as_echo "$as_me:$LINENO: result: ${UNAME_M}" >&5 +-$as_echo "${UNAME_M}" >&6; } ++{ echo "$as_me:$LINENO: checking uname -m" >&5 ++echo $ECHO_N "checking uname -m... $ECHO_C" >&6; } ++{ echo "$as_me:$LINENO: result: ${UNAME_M}" >&5 ++echo "${ECHO_T}${UNAME_M}" >&6; } + + UNAME_P=`(uname -p) 2>/dev/null` || UNAME_P="unknown" +-{ $as_echo "$as_me:$LINENO: checking uname -p" >&5 +-$as_echo_n "checking uname -p... " >&6; } +-{ $as_echo "$as_me:$LINENO: result: ${UNAME_P}" >&5 +-$as_echo "${UNAME_P}" >&6; } ++{ echo "$as_me:$LINENO: checking uname -p" >&5 ++echo $ECHO_N "checking uname -p... $ECHO_C" >&6; } ++{ echo "$as_me:$LINENO: result: ${UNAME_P}" >&5 ++echo "${ECHO_T}${UNAME_P}" >&6; } + + UNAME_I=`(uname -i) 2>/dev/null` || UNAME_I="unknown" +-{ $as_echo "$as_me:$LINENO: checking uname -i" >&5 +-$as_echo_n "checking uname -i... " >&6; } +-{ $as_echo "$as_me:$LINENO: result: ${UNAME_I}" >&5 +-$as_echo "${UNAME_I}" >&6; } ++{ echo "$as_me:$LINENO: checking uname -i" >&5 ++echo $ECHO_N "checking uname -i... $ECHO_C" >&6; } ++{ echo "$as_me:$LINENO: result: ${UNAME_I}" >&5 ++echo "${ECHO_T}${UNAME_I}" >&6; } + + case "$host_os" in + *irix6*) +@@ -13516,8 +12904,8 @@ + # + # CRAY Unicos has broken const handling + *unicos*) +- { $as_echo "$as_me:$LINENO: result: disabling const" >&5 +-$as_echo "disabling const" >&6; } ++ { echo "$as_me:$LINENO: result: disabling const" >&5 ++echo "${ECHO_T}disabling const" >&6; } + CPPFLAGS="$CPPFLAGS -Dconst=" + ;; + +@@ -13526,8 +12914,8 @@ + # files *at all* unless the -D_LARGE_FILE or -D_LARGE_FILE_API flags are set. + # + *aix4*) +- { $as_echo "$as_me:$LINENO: result: enabling large file support" >&5 +-$as_echo "enabling large file support" >&6; } ++ { echo "$as_me:$LINENO: result: enabling large file support" >&5 ++echo "${ECHO_T}enabling large file support" >&6; } + CPPFLAGS="$CPPFLAGS -D_LARGE_FILES" + + cat >>confdefs.h <<\_ACEOF +@@ -13553,12 +12941,12 @@ + + case `uname -r` in + 5.0|5.0.*|5.1|5.1.*|5.2|5.2.*|5.3|5.3.*|5.5|5.5.*) +- { $as_echo "$as_me:$LINENO: result: no large file support" >&5 +-$as_echo "no large file support" >&6; } ++ { echo "$as_me:$LINENO: result: no large file support" >&5 ++echo "${ECHO_T}no large file support" >&6; } + ;; + 5.*) +- { $as_echo "$as_me:$LINENO: result: enabling large file support" >&5 +-$as_echo "enabling large file support" >&6; } ++ { echo "$as_me:$LINENO: result: enabling large file support" >&5 ++echo "${ECHO_T}enabling large file support" >&6; } + if test "$ac_cv_c_compiler_gnu" = yes; then + ${CC-cc} -v >conftest.c 2>&1 + ac_cv_gcc_compiler_version_number=`grep 'gcc version' conftest.c` +@@ -13655,8 +13043,8 @@ + # + *sysv4*) + if test $host = mips-sni-sysv4 ; then +- { $as_echo "$as_me:$LINENO: checking for LFS support" >&5 +-$as_echo_n "checking for LFS support... " >&6; } ++ { echo "$as_me:$LINENO: checking for LFS support" >&5 ++echo $ECHO_N "checking for LFS support... $ECHO_C" >&6; } + old_CPPFLAGS="$CPPFLAGS" + CPPFLAGS="-D_LARGEFILE64_SOURCE $CPPFLAGS" + if test "$cross_compiling" = yes; then +@@ -13684,32 +13072,29 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + SINIX_LFS_SUPPORT=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + SINIX_LFS_SUPPORT=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + +@@ -13726,16 +13111,37 @@ + LDFLAGS="`getconf LFS64_LDFLAGS` $LDFLAGS" + LIBS="`getconf LFS64_LIBS` $LIBS" + fi +- { $as_echo "$as_me:$LINENO: result: $SINIX_LFS_SUPPORT" >&5 +-$as_echo "$SINIX_LFS_SUPPORT" >&6; } ++ { echo "$as_me:$LINENO: result: $SINIX_LFS_SUPPORT" >&5 ++echo "${ECHO_T}$SINIX_LFS_SUPPORT" >&6; } + fi + ;; + ++# Systems with LFS support. ++# ++ gnu* | k*bsd*-gnu) ++ CPPFLAGS="-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE $CPPFLAGS" ++ ++cat >>confdefs.h <<\_ACEOF ++#define _LARGEFILE64_SOURCE 1 ++_ACEOF ++ ++ ++cat >>confdefs.h <<\_ACEOF ++#define _FILE_OFFSET_BITS 64 ++_ACEOF ++ ++ ++cat >>confdefs.h <<\_ACEOF ++#define _GNU_SOURCE 1 ++_ACEOF ++ ++ ;; ++ + # Tests for linux LFS support. Need kernel 2.4 and glibc2.2 or greater support. + # + *linux*) +- { $as_echo "$as_me:$LINENO: checking for LFS support" >&5 +-$as_echo_n "checking for LFS support... " >&6; } ++ { echo "$as_me:$LINENO: checking for LFS support" >&5 ++echo $ECHO_N "checking for LFS support... $ECHO_C" >&6; } + old_CPPFLAGS="$CPPFLAGS" + CPPFLAGS="-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE $CPPFLAGS" + if test "$cross_compiling" = yes; then +@@ -13791,32 +13197,29 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + LINUX_LFS_SUPPORT=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + LINUX_LFS_SUPPORT=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + +@@ -13840,8 +13243,8 @@ + _ACEOF + + fi +- { $as_echo "$as_me:$LINENO: result: $LINUX_LFS_SUPPORT" >&5 +-$as_echo "$LINUX_LFS_SUPPORT" >&6; } ++ { echo "$as_me:$LINENO: result: $LINUX_LFS_SUPPORT" >&5 ++echo "${ECHO_T}$LINUX_LFS_SUPPORT" >&6; } + ;; + + # +@@ -13860,8 +13263,8 @@ + + ;; + *hurd*) +- { $as_echo "$as_me:$LINENO: checking for LFS support" >&5 +-$as_echo_n "checking for LFS support... " >&6; } ++ { echo "$as_me:$LINENO: checking for LFS support" >&5 ++echo $ECHO_N "checking for LFS support... $ECHO_C" >&6; } + old_CPPFLAGS="$CPPFLAGS" + CPPFLAGS="-D_LARGEFILE64_SOURCE -D_GNU_SOURCE $CPPFLAGS" + if test "$cross_compiling" = yes; then +@@ -13889,32 +13292,29 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + GLIBC_LFS_SUPPORT=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + GLIBC_LFS_SUPPORT=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + +@@ -13933,8 +13333,8 @@ + _ACEOF + + fi +- { $as_echo "$as_me:$LINENO: result: $GLIBC_LFS_SUPPORT" >&5 +-$as_echo "$GLIBC_LFS_SUPPORT" >&6; } ++ { echo "$as_me:$LINENO: result: $GLIBC_LFS_SUPPORT" >&5 ++echo "${ECHO_T}$GLIBC_LFS_SUPPORT" >&6; } + ;; + + esac +@@ -13958,10 +13358,10 @@ + + LIBREPLACEOBJ="${LIBREPLACEOBJ} snprintf.o" + +-{ $as_echo "$as_me:$LINENO: checking return type of signal handlers" >&5 +-$as_echo_n "checking return type of signal handlers... " >&6; } ++{ echo "$as_me:$LINENO: checking return type of signal handlers" >&5 ++echo $ECHO_N "checking return type of signal handlers... $ECHO_C" >&6; } + if test "${ac_cv_type_signal+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -13986,21 +13386,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_type_signal=int + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_type_signal=void +@@ -14008,18 +13407,18 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_signal" >&5 +-$as_echo "$ac_cv_type_signal" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_type_signal" >&5 ++echo "${ECHO_T}$ac_cv_type_signal" >&6; } + + cat >>confdefs.h <<_ACEOF + #define RETSIGTYPE $ac_cv_type_signal + _ACEOF + + +-{ $as_echo "$as_me:$LINENO: checking for uid_t in sys/types.h" >&5 +-$as_echo_n "checking for uid_t in sys/types.h... " >&6; } ++{ echo "$as_me:$LINENO: checking for uid_t in sys/types.h" >&5 ++echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6; } + if test "${ac_cv_type_uid_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -14039,8 +13438,8 @@ + rm -f conftest* + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_uid_t" >&5 +-$as_echo "$ac_cv_type_uid_t" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_type_uid_t" >&5 ++echo "${ECHO_T}$ac_cv_type_uid_t" >&6; } + if test $ac_cv_type_uid_t = no; then + + cat >>confdefs.h <<\_ACEOF +@@ -14054,46 +13453,11 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for mode_t" >&5 +-$as_echo_n "checking for mode_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for mode_t" >&5 ++echo $ECHO_N "checking for mode_t... $ECHO_C" >&6; } + if test "${ac_cv_type_mode_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_mode_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (mode_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -14101,11 +13465,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef mode_t ac__type_new_; + int + main () + { +-if (sizeof ((mode_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -14116,39 +13483,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_mode_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_mode_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_mode_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_mode_t" >&5 +-$as_echo "$ac_cv_type_mode_t" >&6; } +-if test "x$ac_cv_type_mode_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_mode_t" >&5 ++echo "${ECHO_T}$ac_cv_type_mode_t" >&6; } ++if test $ac_cv_type_mode_t = yes; then + : + else + +@@ -14158,46 +13516,11 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for off_t" >&5 +-$as_echo_n "checking for off_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for off_t" >&5 ++echo $ECHO_N "checking for off_t... $ECHO_C" >&6; } + if test "${ac_cv_type_off_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_off_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (off_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -14205,11 +13528,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef off_t ac__type_new_; + int + main () + { +-if (sizeof ((off_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -14220,39 +13546,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_off_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_off_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_off_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5 +-$as_echo "$ac_cv_type_off_t" >&6; } +-if test "x$ac_cv_type_off_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5 ++echo "${ECHO_T}$ac_cv_type_off_t" >&6; } ++if test $ac_cv_type_off_t = yes; then + : + else + +@@ -14262,46 +13579,11 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for size_t" >&5 +-$as_echo_n "checking for size_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for size_t" >&5 ++echo $ECHO_N "checking for size_t... $ECHO_C" >&6; } + if test "${ac_cv_type_size_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_size_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (size_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -14309,11 +13591,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef size_t ac__type_new_; + int + main () + { +-if (sizeof ((size_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -14324,39 +13609,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_size_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_size_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_size_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 +-$as_echo "$ac_cv_type_size_t" >&6; } +-if test "x$ac_cv_type_size_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 ++echo "${ECHO_T}$ac_cv_type_size_t" >&6; } ++if test $ac_cv_type_size_t = yes; then + : + else + +@@ -14366,46 +13642,11 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for pid_t" >&5 +-$as_echo_n "checking for pid_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for pid_t" >&5 ++echo $ECHO_N "checking for pid_t... $ECHO_C" >&6; } + if test "${ac_cv_type_pid_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_pid_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (pid_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -14413,11 +13654,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef pid_t ac__type_new_; + int + main () + { +-if (sizeof ((pid_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -14428,39 +13672,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_pid_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_pid_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_pid_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_pid_t" >&5 +-$as_echo "$ac_cv_type_pid_t" >&6; } +-if test "x$ac_cv_type_pid_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_pid_t" >&5 ++echo "${ECHO_T}$ac_cv_type_pid_t" >&6; } ++if test $ac_cv_type_pid_t = yes; then + : + else + +@@ -14470,10 +13705,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for struct stat.st_rdev" >&5 +-$as_echo_n "checking for struct stat.st_rdev... " >&6; } ++{ echo "$as_me:$LINENO: checking for struct stat.st_rdev" >&5 ++echo $ECHO_N "checking for struct stat.st_rdev... $ECHO_C" >&6; } + if test "${ac_cv_member_struct_stat_st_rdev+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -14498,21 +13733,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_stat_st_rdev=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -14538,21 +13772,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_stat_st_rdev=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_stat_st_rdev=no +@@ -14563,166 +13796,27 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_stat_st_rdev" >&5 +-$as_echo "$ac_cv_member_struct_stat_st_rdev" >&6; } +-if test "x$ac_cv_member_struct_stat_st_rdev" = x""yes; then +- +-cat >>confdefs.h <<_ACEOF +-#define HAVE_STRUCT_STAT_ST_RDEV 1 +-_ACEOF +- +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_ST_RDEV 1 +-_ACEOF +- +-fi +- +- +-{ $as_echo "$as_me:$LINENO: checking for ino_t" >&5 +-$as_echo_n "checking for ino_t... " >&6; } +-if test "${ac_cv_type_ino_t+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_cv_type_ino_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (ino_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof ((ino_t))) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_ino_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_ino_t" >&5 +-$as_echo "$ac_cv_type_ino_t" >&6; } +-if test "x$ac_cv_type_ino_t" = x""yes; then +- : +-else +- +-cat >>confdefs.h <<_ACEOF +-#define ino_t unsigned +-_ACEOF +- +-fi +- +-{ $as_echo "$as_me:$LINENO: checking for loff_t" >&5 +-$as_echo_n "checking for loff_t... " >&6; } +-if test "${ac_cv_type_loff_t+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_cv_type_loff_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (loff_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_stat_st_rdev" >&5 ++echo "${ECHO_T}$ac_cv_member_struct_stat_st_rdev" >&6; } ++if test $ac_cv_member_struct_stat_st_rdev = yes; then ++ ++cat >>confdefs.h <<_ACEOF ++#define HAVE_STRUCT_STAT_ST_RDEV 1 ++_ACEOF ++ ++ ++cat >>confdefs.h <<\_ACEOF ++#define HAVE_ST_RDEV 1 ++_ACEOF ++ ++fi ++ ++ ++{ echo "$as_me:$LINENO: checking for ino_t" >&5 ++echo $ECHO_N "checking for ino_t... $ECHO_C" >&6; } ++if test "${ac_cv_type_ino_t+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -14730,11 +13824,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef ino_t ac__type_new_; + int + main () + { +-if (sizeof ((loff_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -14745,66 +13842,59 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_loff_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_ino_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_ino_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_loff_t" >&5 +-$as_echo "$ac_cv_type_loff_t" >&6; } +-if test "x$ac_cv_type_loff_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_ino_t" >&5 ++echo "${ECHO_T}$ac_cv_type_ino_t" >&6; } ++if test $ac_cv_type_ino_t = yes; then + : + else + + cat >>confdefs.h <<_ACEOF +-#define loff_t off_t ++#define ino_t unsigned + _ACEOF + + fi + +-{ $as_echo "$as_me:$LINENO: checking for offset_t" >&5 +-$as_echo_n "checking for offset_t... " >&6; } +-if test "${ac_cv_type_offset_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++{ echo "$as_me:$LINENO: checking for loff_t" >&5 ++echo $ECHO_N "checking for loff_t... $ECHO_C" >&6; } ++if test "${ac_cv_type_loff_t+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_offset_t=no +-cat >conftest.$ac_ext <<_ACEOF ++ cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef loff_t ac__type_new_; + int + main () + { +-if (sizeof (offset_t)) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -14815,18 +13905,44 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then ++ ac_cv_type_loff_t=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_loff_t=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_loff_t" >&5 ++echo "${ECHO_T}$ac_cv_type_loff_t" >&6; } ++if test $ac_cv_type_loff_t = yes; then ++ : ++else ++ ++cat >>confdefs.h <<_ACEOF ++#define loff_t off_t ++_ACEOF ++ ++fi ++ ++{ echo "$as_me:$LINENO: checking for offset_t" >&5 ++echo $ECHO_N "checking for offset_t... $ECHO_C" >&6; } ++if test "${ac_cv_type_offset_t+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -14834,11 +13950,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef offset_t ac__type_new_; + int + main () + { +-if (sizeof ((offset_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -14849,39 +13968,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_offset_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_offset_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_offset_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_offset_t" >&5 +-$as_echo "$ac_cv_type_offset_t" >&6; } +-if test "x$ac_cv_type_offset_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_offset_t" >&5 ++echo "${ECHO_T}$ac_cv_type_offset_t" >&6; } ++if test $ac_cv_type_offset_t = yes; then + : + else + +@@ -14892,10 +14002,10 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking for working memcmp" >&5 +-$as_echo_n "checking for working memcmp... " >&6; } ++{ echo "$as_me:$LINENO: checking for working memcmp" >&5 ++echo $ECHO_N "checking for working memcmp... $ECHO_C" >&6; } + if test "${ac_cv_func_memcmp_working+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + ac_cv_func_memcmp_working=no +@@ -14945,39 +14055,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_func_memcmp_working=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + ac_cv_func_memcmp_working=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_memcmp_working" >&5 +-$as_echo "$ac_cv_func_memcmp_working" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_memcmp_working" >&5 ++echo "${ECHO_T}$ac_cv_func_memcmp_working" >&6; } + test $ac_cv_func_memcmp_working = no && case " $LIBOBJS " in + *" memcmp.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS memcmp.$ac_objext" +@@ -14998,11 +14105,11 @@ + + for ac_func in pipe strftime srandom random srand rand usleep setbuffer lstat getpgrp + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -15055,42 +14162,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -15102,21 +14202,20 @@ + + for ac_header in stdbool.h stdint.h sys/select.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -15132,33 +14231,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -15172,52 +14270,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -15226,24 +14323,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -15253,21 +14347,20 @@ + + for ac_header in setjmp.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -15283,33 +14376,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -15323,52 +14415,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -15377,24 +14468,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -15403,17 +14491,17 @@ + + + if test "${ac_cv_header_stdint_h+set}" = set; then +- { $as_echo "$as_me:$LINENO: checking for stdint.h" >&5 +-$as_echo_n "checking for stdint.h... " >&6; } ++ { echo "$as_me:$LINENO: checking for stdint.h" >&5 ++echo $ECHO_N "checking for stdint.h... $ECHO_C" >&6; } + if test "${ac_cv_header_stdint_h+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_stdint_h" >&5 +-$as_echo "$ac_cv_header_stdint_h" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_header_stdint_h" >&5 ++echo "${ECHO_T}$ac_cv_header_stdint_h" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking stdint.h usability" >&5 +-$as_echo_n "checking stdint.h usability... " >&6; } ++{ echo "$as_me:$LINENO: checking stdint.h usability" >&5 ++echo $ECHO_N "checking stdint.h usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -15429,33 +14517,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking stdint.h presence" >&5 +-$as_echo_n "checking stdint.h presence... " >&6; } ++{ echo "$as_me:$LINENO: checking stdint.h presence" >&5 ++echo $ECHO_N "checking stdint.h presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -15469,52 +14556,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: stdint.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: stdint.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: stdint.h: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: stdint.h: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: stdint.h: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: stdint.h: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: stdint.h: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: stdint.h: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: stdint.h: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: stdint.h: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: stdint.h: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: stdint.h: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: stdint.h: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: stdint.h: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: stdint.h: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: stdint.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: stdint.h: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: stdint.h: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: stdint.h: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: stdint.h: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: stdint.h: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: stdint.h: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: stdint.h: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: stdint.h: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: stdint.h: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: stdint.h: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: stdint.h: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: stdint.h: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: stdint.h: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: stdint.h: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: stdint.h: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: stdint.h: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -15523,18 +14609,18 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for stdint.h" >&5 +-$as_echo_n "checking for stdint.h... " >&6; } ++{ echo "$as_me:$LINENO: checking for stdint.h" >&5 ++echo $ECHO_N "checking for stdint.h... $ECHO_C" >&6; } + if test "${ac_cv_header_stdint_h+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_cv_header_stdint_h=$ac_header_preproc + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_stdint_h" >&5 +-$as_echo "$ac_cv_header_stdint_h" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_header_stdint_h" >&5 ++echo "${ECHO_T}$ac_cv_header_stdint_h" >&6; } + + fi +-if test "x$ac_cv_header_stdint_h" = x""yes; then ++if test $ac_cv_header_stdint_h = yes; then + ac_config_commands="$ac_config_commands rm-stdint.h" + + else +@@ -15546,17 +14632,17 @@ + + + if test "${ac_cv_header_stdbool_h+set}" = set; then +- { $as_echo "$as_me:$LINENO: checking for stdbool.h" >&5 +-$as_echo_n "checking for stdbool.h... " >&6; } ++ { echo "$as_me:$LINENO: checking for stdbool.h" >&5 ++echo $ECHO_N "checking for stdbool.h... $ECHO_C" >&6; } + if test "${ac_cv_header_stdbool_h+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_stdbool_h" >&5 +-$as_echo "$ac_cv_header_stdbool_h" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_header_stdbool_h" >&5 ++echo "${ECHO_T}$ac_cv_header_stdbool_h" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking stdbool.h usability" >&5 +-$as_echo_n "checking stdbool.h usability... " >&6; } ++{ echo "$as_me:$LINENO: checking stdbool.h usability" >&5 ++echo $ECHO_N "checking stdbool.h usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -15572,33 +14658,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking stdbool.h presence" >&5 +-$as_echo_n "checking stdbool.h presence... " >&6; } ++{ echo "$as_me:$LINENO: checking stdbool.h presence" >&5 ++echo $ECHO_N "checking stdbool.h presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -15612,52 +14697,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: stdbool.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: stdbool.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: stdbool.h: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: stdbool.h: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: stdbool.h: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: stdbool.h: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: stdbool.h: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: stdbool.h: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: stdbool.h: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: stdbool.h: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: stdbool.h: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: stdbool.h: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: stdbool.h: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: stdbool.h: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: stdbool.h: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: stdbool.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: stdbool.h: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: stdbool.h: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: stdbool.h: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: stdbool.h: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: stdbool.h: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: stdbool.h: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: stdbool.h: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: stdbool.h: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: stdbool.h: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: stdbool.h: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: stdbool.h: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: stdbool.h: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: stdbool.h: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: stdbool.h: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: stdbool.h: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: stdbool.h: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -15666,18 +14750,18 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for stdbool.h" >&5 +-$as_echo_n "checking for stdbool.h... " >&6; } ++{ echo "$as_me:$LINENO: checking for stdbool.h" >&5 ++echo $ECHO_N "checking for stdbool.h... $ECHO_C" >&6; } + if test "${ac_cv_header_stdbool_h+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_cv_header_stdbool_h=$ac_header_preproc + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_stdbool_h" >&5 +-$as_echo "$ac_cv_header_stdbool_h" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_header_stdbool_h" >&5 ++echo "${ECHO_T}$ac_cv_header_stdbool_h" >&6; } + + fi +-if test "x$ac_cv_header_stdbool_h" = x""yes; then ++if test $ac_cv_header_stdbool_h = yes; then + ac_config_commands="$ac_config_commands rm-stdbool.h" + + else +@@ -15689,52 +14773,11 @@ + + + +-{ $as_echo "$as_me:$LINENO: checking for bool" >&5 +-$as_echo_n "checking for bool... " >&6; } ++{ echo "$as_me:$LINENO: checking for bool" >&5 ++echo $ECHO_N "checking for bool... $ECHO_C" >&6; } + if test "${ac_cv_type_bool+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_bool=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-$ac_includes_default +-#ifdef HAVE_STDBOOL_H +-#include +-#endif +- +- +-int +-main () +-{ +-if (sizeof (bool)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -15748,11 +14791,14 @@ + #endif + + ++typedef bool ac__type_new_; + int + main () + { +-if (sizeof ((bool))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -15763,39 +14809,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_bool=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_bool=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_bool=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_bool" >&5 +-$as_echo "$ac_cv_type_bool" >&6; } +-if test "x$ac_cv_type_bool" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_bool" >&5 ++echo "${ECHO_T}$ac_cv_type_bool" >&6; } ++if test $ac_cv_type_bool = yes; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_BOOL 1 +@@ -15804,52 +14841,11 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking for _Bool" >&5 +-$as_echo_n "checking for _Bool... " >&6; } ++{ echo "$as_me:$LINENO: checking for _Bool" >&5 ++echo $ECHO_N "checking for _Bool... $ECHO_C" >&6; } + if test "${ac_cv_type__Bool+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type__Bool=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-$ac_includes_default +-#ifdef HAVE_STDBOOL_H +-#include +-#endif +- +- +-int +-main () +-{ +-if (sizeof (_Bool)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -15863,11 +14859,14 @@ + #endif + + ++typedef _Bool ac__type_new_; + int + main () + { +-if (sizeof ((_Bool))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -15878,39 +14877,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type__Bool=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type__Bool=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type__Bool=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type__Bool" >&5 +-$as_echo "$ac_cv_type__Bool" >&6; } +-if test "x$ac_cv_type__Bool" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type__Bool" >&5 ++echo "${ECHO_T}$ac_cv_type__Bool" >&6; } ++if test $ac_cv_type__Bool = yes; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE__Bool 1 +@@ -15919,10 +14909,10 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking for working mmap" >&5 +-$as_echo_n "checking for working mmap... " >&6; } ++{ echo "$as_me:$LINENO: checking for working mmap" >&5 ++echo $ECHO_N "checking for working mmap... $ECHO_C" >&6; } + if test "${libreplace_cv_HAVE_MMAP+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -15942,39 +14932,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + libreplace_cv_HAVE_MMAP=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + libreplace_cv_HAVE_MMAP=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_MMAP" >&5 +-$as_echo "$libreplace_cv_HAVE_MMAP" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_MMAP" >&5 ++echo "${ECHO_T}$libreplace_cv_HAVE_MMAP" >&6; } + if test x"$libreplace_cv_HAVE_MMAP" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -15988,21 +14975,20 @@ + + for ac_header in sys/syslog.h syslog.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -16018,33 +15004,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -16058,52 +15043,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -16112,24 +15096,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -16140,21 +15121,20 @@ + + for ac_header in sys/time.h time.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -16170,33 +15150,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -16210,52 +15189,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -16264,24 +15242,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -16292,21 +15267,20 @@ + + for ac_header in stdarg.h vararg.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -16322,33 +15296,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -16362,52 +15335,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -16416,24 +15388,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -16444,21 +15413,20 @@ + + for ac_header in sys/mount.h mntent.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -16474,33 +15442,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -16514,52 +15481,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -16568,24 +15534,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -16595,21 +15558,20 @@ + + for ac_header in stropts.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -16625,33 +15587,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -16665,52 +15626,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -16719,24 +15679,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -16753,11 +15710,11 @@ + + for ac_func in seteuid setresuid setegid setresgid chroot bzero strerror + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -16810,42 +15767,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -16859,11 +15809,11 @@ + + for ac_func in vsyslog setlinebuf mktime ftruncate chsize rename + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -16916,42 +15866,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -16965,11 +15908,11 @@ + + for ac_func in waitpid strlcpy strlcat initgroups memmove strdup + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -17022,42 +15965,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -17071,11 +16007,11 @@ + + for ac_func in pread pwrite strndup strcasestr strtok_r mkdtemp + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -17128,42 +16064,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -17172,11 +16101,11 @@ + + for ac_func in isatty + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -17229,52 +16158,45 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi + done + + +- { $as_echo "$as_me:$LINENO: checking for setresuid declaration" >&5 +-$as_echo_n "checking for setresuid declaration... " >&6; } ++ { echo "$as_me:$LINENO: checking for setresuid declaration" >&5 ++echo $ECHO_N "checking for setresuid declaration... $ECHO_C" >&6; } + if test "${ac_cv_have_setresuid_decl+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -17298,21 +16220,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_have_setresuid_decl=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_have_setresuid_decl=no +@@ -17320,8 +16241,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_setresuid_decl" >&5 +-$as_echo "$ac_cv_have_setresuid_decl" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_have_setresuid_decl" >&5 ++echo "${ECHO_T}$ac_cv_have_setresuid_decl" >&6; } + if test x"$ac_cv_have_setresuid_decl" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -17331,10 +16252,10 @@ + fi + + +- { $as_echo "$as_me:$LINENO: checking for setresgid declaration" >&5 +-$as_echo_n "checking for setresgid declaration... " >&6; } ++ { echo "$as_me:$LINENO: checking for setresgid declaration" >&5 ++echo $ECHO_N "checking for setresgid declaration... $ECHO_C" >&6; } + if test "${ac_cv_have_setresgid_decl+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -17358,21 +16279,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_have_setresgid_decl=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_have_setresgid_decl=no +@@ -17380,8 +16300,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_setresgid_decl" >&5 +-$as_echo "$ac_cv_have_setresgid_decl" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_have_setresgid_decl" >&5 ++echo "${ECHO_T}$ac_cv_have_setresgid_decl" >&6; } + if test x"$ac_cv_have_setresgid_decl" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -17391,10 +16311,10 @@ + fi + + +- { $as_echo "$as_me:$LINENO: checking for errno declaration" >&5 +-$as_echo_n "checking for errno declaration... " >&6; } ++ { echo "$as_me:$LINENO: checking for errno declaration" >&5 ++echo $ECHO_N "checking for errno declaration... $ECHO_C" >&6; } + if test "${ac_cv_have_errno_decl+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -17418,21 +16338,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_have_errno_decl=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_have_errno_decl=no +@@ -17440,8 +16359,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_errno_decl" >&5 +-$as_echo "$ac_cv_have_errno_decl" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_have_errno_decl" >&5 ++echo "${ECHO_T}$ac_cv_have_errno_decl" >&6; } + if test x"$ac_cv_have_errno_decl" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -17451,10 +16370,10 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking for secure mkstemp" >&5 +-$as_echo_n "checking for secure mkstemp... " >&6; } ++{ echo "$as_me:$LINENO: checking for secure mkstemp" >&5 ++echo $ECHO_N "checking for secure mkstemp... $ECHO_C" >&6; } + if test "${libreplace_cv_HAVE_SECURE_MKSTEMP+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -17487,39 +16406,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + libreplace_cv_HAVE_SECURE_MKSTEMP=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + libreplace_cv_HAVE_SECURE_MKSTEMP=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_SECURE_MKSTEMP" >&5 +-$as_echo "$libreplace_cv_HAVE_SECURE_MKSTEMP" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_SECURE_MKSTEMP" >&5 ++echo "${ECHO_T}$libreplace_cv_HAVE_SECURE_MKSTEMP" >&6; } + if test x"$libreplace_cv_HAVE_SECURE_MKSTEMP" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -17532,21 +16448,20 @@ + + for ac_header in stdio.h strings.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -17562,33 +16477,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -17602,52 +16516,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -17656,34 +16569,31 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi + + done + +-{ $as_echo "$as_me:$LINENO: checking whether snprintf is declared" >&5 +-$as_echo_n "checking whether snprintf is declared... " >&6; } ++{ echo "$as_me:$LINENO: checking whether snprintf is declared" >&5 ++echo $ECHO_N "checking whether snprintf is declared... $ECHO_C" >&6; } + if test "${ac_cv_have_decl_snprintf+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -17709,21 +16619,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_have_decl_snprintf=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_have_decl_snprintf=no +@@ -17731,9 +16640,9 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_snprintf" >&5 +-$as_echo "$ac_cv_have_decl_snprintf" >&6; } +-if test "x$ac_cv_have_decl_snprintf" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_have_decl_snprintf" >&5 ++echo "${ECHO_T}$ac_cv_have_decl_snprintf" >&6; } ++if test $ac_cv_have_decl_snprintf = yes; then + + cat >>confdefs.h <<_ACEOF + #define HAVE_DECL_SNPRINTF 1 +@@ -17747,10 +16656,10 @@ + + + fi +-{ $as_echo "$as_me:$LINENO: checking whether vsnprintf is declared" >&5 +-$as_echo_n "checking whether vsnprintf is declared... " >&6; } ++{ echo "$as_me:$LINENO: checking whether vsnprintf is declared" >&5 ++echo $ECHO_N "checking whether vsnprintf is declared... $ECHO_C" >&6; } + if test "${ac_cv_have_decl_vsnprintf+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -17776,21 +16685,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_have_decl_vsnprintf=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_have_decl_vsnprintf=no +@@ -17798,9 +16706,9 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_vsnprintf" >&5 +-$as_echo "$ac_cv_have_decl_vsnprintf" >&6; } +-if test "x$ac_cv_have_decl_vsnprintf" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_have_decl_vsnprintf" >&5 ++echo "${ECHO_T}$ac_cv_have_decl_vsnprintf" >&6; } ++if test $ac_cv_have_decl_vsnprintf = yes; then + + cat >>confdefs.h <<_ACEOF + #define HAVE_DECL_VSNPRINTF 1 +@@ -17814,10 +16722,10 @@ + + + fi +-{ $as_echo "$as_me:$LINENO: checking whether asprintf is declared" >&5 +-$as_echo_n "checking whether asprintf is declared... " >&6; } ++{ echo "$as_me:$LINENO: checking whether asprintf is declared" >&5 ++echo $ECHO_N "checking whether asprintf is declared... $ECHO_C" >&6; } + if test "${ac_cv_have_decl_asprintf+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -17843,21 +16751,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_have_decl_asprintf=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_have_decl_asprintf=no +@@ -17865,9 +16772,9 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_asprintf" >&5 +-$as_echo "$ac_cv_have_decl_asprintf" >&6; } +-if test "x$ac_cv_have_decl_asprintf" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_have_decl_asprintf" >&5 ++echo "${ECHO_T}$ac_cv_have_decl_asprintf" >&6; } ++if test $ac_cv_have_decl_asprintf = yes; then + + cat >>confdefs.h <<_ACEOF + #define HAVE_DECL_ASPRINTF 1 +@@ -17881,10 +16788,10 @@ + + + fi +-{ $as_echo "$as_me:$LINENO: checking whether vasprintf is declared" >&5 +-$as_echo_n "checking whether vasprintf is declared... " >&6; } ++{ echo "$as_me:$LINENO: checking whether vasprintf is declared" >&5 ++echo $ECHO_N "checking whether vasprintf is declared... $ECHO_C" >&6; } + if test "${ac_cv_have_decl_vasprintf+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -17910,21 +16817,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_have_decl_vasprintf=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_have_decl_vasprintf=no +@@ -17932,9 +16838,9 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_vasprintf" >&5 +-$as_echo "$ac_cv_have_decl_vasprintf" >&6; } +-if test "x$ac_cv_have_decl_vasprintf" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_have_decl_vasprintf" >&5 ++echo "${ECHO_T}$ac_cv_have_decl_vasprintf" >&6; } ++if test $ac_cv_have_decl_vasprintf = yes; then + + cat >>confdefs.h <<_ACEOF + #define HAVE_DECL_VASPRINTF 1 +@@ -17956,11 +16862,11 @@ + + for ac_func in snprintf vsnprintf asprintf vasprintf + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -18013,52 +16919,45 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi + done + + +-{ $as_echo "$as_me:$LINENO: checking for C99 vsnprintf" >&5 +-$as_echo_n "checking for C99 vsnprintf... " >&6; } ++{ echo "$as_me:$LINENO: checking for C99 vsnprintf" >&5 ++echo $ECHO_N "checking for C99 vsnprintf... $ECHO_C" >&6; } + if test "${libreplace_cv_HAVE_C99_VSNPRINTF+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -18110,39 +17009,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + libreplace_cv_HAVE_C99_VSNPRINTF=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + libreplace_cv_HAVE_C99_VSNPRINTF=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_C99_VSNPRINTF" >&5 +-$as_echo "$libreplace_cv_HAVE_C99_VSNPRINTF" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_C99_VSNPRINTF" >&5 ++echo "${ECHO_T}$libreplace_cv_HAVE_C99_VSNPRINTF" >&6; } + if test x"$libreplace_cv_HAVE_C99_VSNPRINTF" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -18152,10 +17048,10 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking for va_copy" >&5 +-$as_echo_n "checking for va_copy... " >&6; } ++{ echo "$as_me:$LINENO: checking for va_copy" >&5 ++echo $ECHO_N "checking for va_copy... $ECHO_C" >&6; } + if test "${libreplace_cv_HAVE_VA_COPY+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -18180,35 +17076,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + libreplace_cv_HAVE_VA_COPY=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + libreplace_cv_HAVE_VA_COPY=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_VA_COPY" >&5 +-$as_echo "$libreplace_cv_HAVE_VA_COPY" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_VA_COPY" >&5 ++echo "${ECHO_T}$libreplace_cv_HAVE_VA_COPY" >&6; } + if test x"$libreplace_cv_HAVE_VA_COPY" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -18218,10 +17110,10 @@ + fi + + if test x"$libreplace_cv_HAVE_VA_COPY" != x"yes"; then +-{ $as_echo "$as_me:$LINENO: checking for __va_copy" >&5 +-$as_echo_n "checking for __va_copy... " >&6; } ++{ echo "$as_me:$LINENO: checking for __va_copy" >&5 ++echo $ECHO_N "checking for __va_copy... $ECHO_C" >&6; } + if test "${libreplace_cv_HAVE___VA_COPY+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -18246,35 +17138,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + libreplace_cv_HAVE___VA_COPY=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + libreplace_cv_HAVE___VA_COPY=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_HAVE___VA_COPY" >&5 +-$as_echo "$libreplace_cv_HAVE___VA_COPY" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_HAVE___VA_COPY" >&5 ++echo "${ECHO_T}$libreplace_cv_HAVE___VA_COPY" >&6; } + if test x"$libreplace_cv_HAVE___VA_COPY" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -18284,10 +17172,10 @@ + fi + fi + +-{ $as_echo "$as_me:$LINENO: checking for __FUNCTION__ macro" >&5 +-$as_echo_n "checking for __FUNCTION__ macro... " >&6; } ++{ echo "$as_me:$LINENO: checking for __FUNCTION__ macro" >&5 ++echo $ECHO_N "checking for __FUNCTION__ macro... $ECHO_C" >&6; } + if test "${libreplace_cv_HAVE_FUNCTION_MACRO+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -18311,21 +17199,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + libreplace_cv_HAVE_FUNCTION_MACRO=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + libreplace_cv_HAVE_FUNCTION_MACRO=no +@@ -18333,8 +17220,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_FUNCTION_MACRO" >&5 +-$as_echo "$libreplace_cv_HAVE_FUNCTION_MACRO" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_FUNCTION_MACRO" >&5 ++echo "${ECHO_T}$libreplace_cv_HAVE_FUNCTION_MACRO" >&6; } + if test x"$libreplace_cv_HAVE_FUNCTION_MACRO" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -18342,10 +17229,10 @@ + _ACEOF + + else +- { $as_echo "$as_me:$LINENO: checking for __func__ macro" >&5 +-$as_echo_n "checking for __func__ macro... " >&6; } ++ { echo "$as_me:$LINENO: checking for __func__ macro" >&5 ++echo $ECHO_N "checking for __func__ macro... $ECHO_C" >&6; } + if test "${libreplace_cv_HAVE_func_MACRO+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -18369,21 +17256,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + libreplace_cv_HAVE_func_MACRO=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + libreplace_cv_HAVE_func_MACRO=no +@@ -18391,8 +17277,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_func_MACRO" >&5 +-$as_echo "$libreplace_cv_HAVE_func_MACRO" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_func_MACRO" >&5 ++echo "${ECHO_T}$libreplace_cv_HAVE_func_MACRO" >&6; } + if test x"$libreplace_cv_HAVE_func_MACRO" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -18406,21 +17292,20 @@ + + for ac_header in sys/param.h limits.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -18436,33 +17321,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -18476,52 +17360,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -18530,24 +17413,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -18555,46 +17435,11 @@ + done + + +-{ $as_echo "$as_me:$LINENO: checking for comparison_fn_t" >&5 +-$as_echo_n "checking for comparison_fn_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for comparison_fn_t" >&5 ++echo $ECHO_N "checking for comparison_fn_t... $ECHO_C" >&6; } + if test "${ac_cv_type_comparison_fn_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_comparison_fn_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (comparison_fn_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -18602,11 +17447,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef comparison_fn_t ac__type_new_; + int + main () + { +-if (sizeof ((comparison_fn_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -18617,39 +17465,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : ++ ac_cv_type_comparison_fn_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_cv_type_comparison_fn_t=yes ++ ac_cv_type_comparison_fn_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_comparison_fn_t" >&5 +-$as_echo "$ac_cv_type_comparison_fn_t" >&6; } +-if test "x$ac_cv_type_comparison_fn_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_comparison_fn_t" >&5 ++echo "${ECHO_T}$ac_cv_type_comparison_fn_t" >&6; } ++if test $ac_cv_type_comparison_fn_t = yes; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_COMPARISON_FN_T 1 +@@ -18659,10 +17498,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for setenv declaration" >&5 +-$as_echo_n "checking for setenv declaration... " >&6; } ++ { echo "$as_me:$LINENO: checking for setenv declaration" >&5 ++echo $ECHO_N "checking for setenv declaration... $ECHO_C" >&6; } + if test "${ac_cv_have_setenv_decl+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -18686,21 +17525,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_have_setenv_decl=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_have_setenv_decl=no +@@ -18708,8 +17546,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_setenv_decl" >&5 +-$as_echo "$ac_cv_have_setenv_decl" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_have_setenv_decl" >&5 ++echo "${ECHO_T}$ac_cv_have_setenv_decl" >&6; } + if test x"$ac_cv_have_setenv_decl" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -18722,11 +17560,11 @@ + + for ac_func in setenv unsetenv + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -18779,42 +17617,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -18824,11 +17655,11 @@ + + for ac_func in strnlen + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -18881,42 +17712,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -18930,11 +17754,11 @@ + + for ac_func in strtoull __strtoull strtouq strtoll __strtoll strtoq + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -18987,42 +17811,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -19046,14 +17863,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err +@@ -19064,7 +17880,7 @@ + _ACEOF + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -19073,10 +17889,10 @@ + rm -f conftest.err conftest.$ac_ext + + +-{ $as_echo "$as_me:$LINENO: checking for sig_atomic_t type" >&5 +-$as_echo_n "checking for sig_atomic_t type... " >&6; } ++{ echo "$as_me:$LINENO: checking for sig_atomic_t type" >&5 ++echo $ECHO_N "checking for sig_atomic_t type... $ECHO_C" >&6; } + if test "${libreplace_cv_sig_atomic_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -19106,21 +17922,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + libreplace_cv_sig_atomic_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + libreplace_cv_sig_atomic_t=no +@@ -19128,8 +17943,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_sig_atomic_t" >&5 +-$as_echo "$libreplace_cv_sig_atomic_t" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_sig_atomic_t" >&5 ++echo "${ECHO_T}$libreplace_cv_sig_atomic_t" >&6; } + if test x"$libreplace_cv_sig_atomic_t" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -19139,10 +17954,10 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking for O_DIRECT flag to open(2)" >&5 +-$as_echo_n "checking for O_DIRECT flag to open(2)... " >&6; } ++{ echo "$as_me:$LINENO: checking for O_DIRECT flag to open(2)" >&5 ++echo $ECHO_N "checking for O_DIRECT flag to open(2)... $ECHO_C" >&6; } + if test "${libreplace_cv_HAVE_OPEN_O_DIRECT+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -19170,21 +17985,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + libreplace_cv_HAVE_OPEN_O_DIRECT=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + libreplace_cv_HAVE_OPEN_O_DIRECT=no +@@ -19192,8 +18006,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_OPEN_O_DIRECT" >&5 +-$as_echo "$libreplace_cv_HAVE_OPEN_O_DIRECT" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_OPEN_O_DIRECT" >&5 ++echo "${ECHO_T}$libreplace_cv_HAVE_OPEN_O_DIRECT" >&6; } + if test x"$libreplace_cv_HAVE_OPEN_O_DIRECT" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -19203,10 +18017,10 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking that the C compiler understands volatile" >&5 +-$as_echo_n "checking that the C compiler understands volatile... " >&6; } ++{ echo "$as_me:$LINENO: checking that the C compiler understands volatile" >&5 ++echo $ECHO_N "checking that the C compiler understands volatile... $ECHO_C" >&6; } + if test "${libreplace_cv_volatile+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -19230,21 +18044,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + libreplace_cv_volatile=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + libreplace_cv_volatile=no +@@ -19252,8 +18065,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_volatile" >&5 +-$as_echo "$libreplace_cv_volatile" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_volatile" >&5 ++echo "${ECHO_T}$libreplace_cv_volatile" >&6; } + if test x"$libreplace_cv_volatile" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -19270,11 +18083,11 @@ + + ac_header_dirent=no + for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do +- as_ac_Header=`$as_echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_hdr that defines DIR" >&5 +-$as_echo_n "checking for $ac_hdr that defines DIR... " >&6; } ++ as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_hdr that defines DIR" >&5 ++echo $ECHO_N "checking for $ac_hdr that defines DIR... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -19300,21 +18113,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + eval "$as_ac_Header=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_Header=no" +@@ -19322,15 +18134,12 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_hdr" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_hdr" | $as_tr_cpp` 1 + _ACEOF + + ac_header_dirent=$ac_hdr; break +@@ -19339,10 +18148,10 @@ + done + # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix. + if test $ac_header_dirent = dirent.h; then +- { $as_echo "$as_me:$LINENO: checking for library containing opendir" >&5 +-$as_echo_n "checking for library containing opendir... " >&6; } ++ { echo "$as_me:$LINENO: checking for library containing opendir" >&5 ++echo $ECHO_N "checking for library containing opendir... $ECHO_C" >&6; } + if test "${ac_cv_search_opendir+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_func_search_save_LIBS=$LIBS + cat >conftest.$ac_ext <<_ACEOF +@@ -19380,30 +18189,26 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_search_opendir=$ac_res + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext + if test "${ac_cv_search_opendir+set}" = set; then +@@ -19418,8 +18223,8 @@ + rm conftest.$ac_ext + LIBS=$ac_func_search_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_search_opendir" >&5 +-$as_echo "$ac_cv_search_opendir" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_search_opendir" >&5 ++echo "${ECHO_T}$ac_cv_search_opendir" >&6; } + ac_res=$ac_cv_search_opendir + if test "$ac_res" != no; then + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" +@@ -19427,10 +18232,10 @@ + fi + + else +- { $as_echo "$as_me:$LINENO: checking for library containing opendir" >&5 +-$as_echo_n "checking for library containing opendir... " >&6; } ++ { echo "$as_me:$LINENO: checking for library containing opendir" >&5 ++echo $ECHO_N "checking for library containing opendir... $ECHO_C" >&6; } + if test "${ac_cv_search_opendir+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_func_search_save_LIBS=$LIBS + cat >conftest.$ac_ext <<_ACEOF +@@ -19468,30 +18273,26 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_search_opendir=$ac_res + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext + if test "${ac_cv_search_opendir+set}" = set; then +@@ -19506,8 +18307,8 @@ + rm conftest.$ac_ext + LIBS=$ac_func_search_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_search_opendir" >&5 +-$as_echo "$ac_cv_search_opendir" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_search_opendir" >&5 ++echo "${ECHO_T}$ac_cv_search_opendir" >&6; } + ac_res=$ac_cv_search_opendir + if test "$ac_res" != no; then + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" +@@ -19526,21 +18327,20 @@ + + for ac_header in fcntl.h sys/fcntl.h sys/resource.h sys/ioctl.h sys/mode.h sys/filio.h sys/fs/s5param.h sys/filsys.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -19556,33 +18356,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -19596,52 +18395,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -19650,24 +18448,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -19678,21 +18473,20 @@ + + for ac_header in sys/acl.h acl/libacl.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -19708,33 +18502,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -19748,52 +18541,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -19802,24 +18594,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -19831,21 +18620,20 @@ + + for ac_header in sys/select.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -19861,33 +18649,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -19901,52 +18688,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -19955,24 +18741,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -19985,21 +18768,20 @@ + + for ac_header in sys/time.h utime.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -20015,33 +18797,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -20055,52 +18836,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -20109,34 +18889,31 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi + + done + +-{ $as_echo "$as_me:$LINENO: checking whether time.h and sys/time.h may both be included" >&5 +-$as_echo_n "checking whether time.h and sys/time.h may both be included... " >&6; } ++{ echo "$as_me:$LINENO: checking whether time.h and sys/time.h may both be included" >&5 ++echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6; } + if test "${ac_cv_header_time+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -20163,21 +18940,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_header_time=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_header_time=no +@@ -20185,8 +18961,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_time" >&5 +-$as_echo "$ac_cv_header_time" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_header_time" >&5 ++echo "${ECHO_T}$ac_cv_header_time" >&6; } + if test $ac_cv_header_time = yes; then + + cat >>confdefs.h <<\_ACEOF +@@ -20199,11 +18975,11 @@ + + for ac_func in utime utimes + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -20256,42 +19032,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -20299,10 +19068,10 @@ + + + # wait +-{ $as_echo "$as_me:$LINENO: checking for sys/wait.h that is POSIX.1 compatible" >&5 +-$as_echo_n "checking for sys/wait.h that is POSIX.1 compatible... " >&6; } ++{ echo "$as_me:$LINENO: checking for sys/wait.h that is POSIX.1 compatible" >&5 ++echo $ECHO_N "checking for sys/wait.h that is POSIX.1 compatible... $ECHO_C" >&6; } + if test "${ac_cv_header_sys_wait_h+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -20335,21 +19104,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_header_sys_wait_h=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_header_sys_wait_h=no +@@ -20357,8 +19125,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_sys_wait_h" >&5 +-$as_echo "$ac_cv_header_sys_wait_h" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_header_sys_wait_h" >&5 ++echo "${ECHO_T}$ac_cv_header_sys_wait_h" >&6; } + if test $ac_cv_header_sys_wait_h = yes; then + + cat >>confdefs.h <<\_ACEOF +@@ -20372,21 +19140,20 @@ + + for ac_header in sys/capability.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -20402,33 +19169,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -20442,52 +19208,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -20496,24 +19261,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -20523,10 +19285,10 @@ + + case "$host_os" in + *linux*) +-{ $as_echo "$as_me:$LINENO: checking for broken RedHat 7.2 system header files" >&5 +-$as_echo_n "checking for broken RedHat 7.2 system header files... " >&6; } ++{ echo "$as_me:$LINENO: checking for broken RedHat 7.2 system header files" >&5 ++echo $ECHO_N "checking for broken RedHat 7.2 system header files... $ECHO_C" >&6; } + if test "${libreplace_cv_BROKEN_REDHAT_7_SYSTEM_HEADERS+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -20559,21 +19321,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + libreplace_cv_BROKEN_REDHAT_7_SYSTEM_HEADERS=no + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + libreplace_cv_BROKEN_REDHAT_7_SYSTEM_HEADERS=yes +@@ -20582,8 +19343,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_BROKEN_REDHAT_7_SYSTEM_HEADERS" >&5 +-$as_echo "$libreplace_cv_BROKEN_REDHAT_7_SYSTEM_HEADERS" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_BROKEN_REDHAT_7_SYSTEM_HEADERS" >&5 ++echo "${ECHO_T}$libreplace_cv_BROKEN_REDHAT_7_SYSTEM_HEADERS" >&6; } + if test x"$libreplace_cv_BROKEN_REDHAT_7_SYSTEM_HEADERS" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -20592,10 +19353,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for broken RHEL5 sys/capability.h" >&5 +-$as_echo_n "checking for broken RHEL5 sys/capability.h... " >&6; } ++{ echo "$as_me:$LINENO: checking for broken RHEL5 sys/capability.h" >&5 ++echo $ECHO_N "checking for broken RHEL5 sys/capability.h... $ECHO_C" >&6; } + if test "${libreplace_cv_BROKEN_RHEL5_SYS_CAP_HEADER+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -20626,21 +19387,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + libreplace_cv_BROKEN_RHEL5_SYS_CAP_HEADER=no + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + libreplace_cv_BROKEN_RHEL5_SYS_CAP_HEADER=yes +@@ -20649,8 +19409,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_BROKEN_RHEL5_SYS_CAP_HEADER" >&5 +-$as_echo "$libreplace_cv_BROKEN_RHEL5_SYS_CAP_HEADER" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_BROKEN_RHEL5_SYS_CAP_HEADER" >&5 ++echo "${ECHO_T}$libreplace_cv_BROKEN_RHEL5_SYS_CAP_HEADER" >&6; } + if test x"$libreplace_cv_BROKEN_RHEL5_SYS_CAP_HEADER" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -20671,21 +19431,20 @@ + + for ac_header in grp.h sys/id.h compat.h shadow.h sys/priv.h pwd.h sys/security.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -20701,33 +19460,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -20741,52 +19499,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -20795,24 +19552,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -20824,11 +19578,11 @@ + + for ac_func in getpwnam_r getpwuid_r getpwent_r + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -20881,52 +19635,45 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi + done + + +- { $as_echo "$as_me:$LINENO: checking for getpwent_r declaration" >&5 +-$as_echo_n "checking for getpwent_r declaration... " >&6; } ++ { echo "$as_me:$LINENO: checking for getpwent_r declaration" >&5 ++echo $ECHO_N "checking for getpwent_r declaration... $ECHO_C" >&6; } + if test "${ac_cv_have_getpwent_r_decl+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -20953,21 +19700,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_have_getpwent_r_decl=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_have_getpwent_r_decl=no +@@ -20975,8 +19721,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_getpwent_r_decl" >&5 +-$as_echo "$ac_cv_have_getpwent_r_decl" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_have_getpwent_r_decl" >&5 ++echo "${ECHO_T}$ac_cv_have_getpwent_r_decl" >&6; } + if test x"$ac_cv_have_getpwent_r_decl" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -20985,10 +19731,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for prototype struct passwd *getpwent_r(struct passwd *src, char *buf, int buflen)" >&5 +-$as_echo_n "checking for prototype struct passwd *getpwent_r(struct passwd *src, char *buf, int buflen)... " >&6; } ++{ echo "$as_me:$LINENO: checking for prototype struct passwd *getpwent_r(struct passwd *src, char *buf, int buflen)" >&5 ++echo $ECHO_N "checking for prototype struct passwd *getpwent_r(struct passwd *src, char *buf, int buflen)... $ECHO_C" >&6; } + if test "${ac_cv_c_prototype_struct_passwd_pgetpwent_r_struct_passwd_psrc__char_pbuf__int_buflen_+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -21019,14 +19765,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -21035,7 +19780,7 @@ + ac_cv_c_prototype_struct_passwd_pgetpwent_r_struct_passwd_psrc__char_pbuf__int_buflen_=yes + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -21046,8 +19791,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_prototype_struct_passwd_pgetpwent_r_struct_passwd_psrc__char_pbuf__int_buflen_" >&5 +-$as_echo "$ac_cv_c_prototype_struct_passwd_pgetpwent_r_struct_passwd_psrc__char_pbuf__int_buflen_" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_c_prototype_struct_passwd_pgetpwent_r_struct_passwd_psrc__char_pbuf__int_buflen_" >&5 ++echo "${ECHO_T}$ac_cv_c_prototype_struct_passwd_pgetpwent_r_struct_passwd_psrc__char_pbuf__int_buflen_" >&6; } + if test $ac_cv_c_prototype_struct_passwd_pgetpwent_r_struct_passwd_psrc__char_pbuf__int_buflen_ = yes; then + + +@@ -21059,10 +19804,10 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking for prototype struct passwd *getpwent_r(struct passwd *src, char *buf, size_t buflen)" >&5 +-$as_echo_n "checking for prototype struct passwd *getpwent_r(struct passwd *src, char *buf, size_t buflen)... " >&6; } ++{ echo "$as_me:$LINENO: checking for prototype struct passwd *getpwent_r(struct passwd *src, char *buf, size_t buflen)" >&5 ++echo $ECHO_N "checking for prototype struct passwd *getpwent_r(struct passwd *src, char *buf, size_t buflen)... $ECHO_C" >&6; } + if test "${ac_cv_c_prototype_struct_passwd_pgetpwent_r_struct_passwd_psrc__char_pbuf__size_t_buflen_+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -21093,14 +19838,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -21109,7 +19853,7 @@ + ac_cv_c_prototype_struct_passwd_pgetpwent_r_struct_passwd_psrc__char_pbuf__size_t_buflen_=yes + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -21120,8 +19864,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_prototype_struct_passwd_pgetpwent_r_struct_passwd_psrc__char_pbuf__size_t_buflen_" >&5 +-$as_echo "$ac_cv_c_prototype_struct_passwd_pgetpwent_r_struct_passwd_psrc__char_pbuf__size_t_buflen_" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_c_prototype_struct_passwd_pgetpwent_r_struct_passwd_psrc__char_pbuf__size_t_buflen_" >&5 ++echo "${ECHO_T}$ac_cv_c_prototype_struct_passwd_pgetpwent_r_struct_passwd_psrc__char_pbuf__size_t_buflen_" >&6; } + if test $ac_cv_c_prototype_struct_passwd_pgetpwent_r_struct_passwd_psrc__char_pbuf__size_t_buflen_ = yes; then + + +@@ -21138,11 +19882,11 @@ + + for ac_func in getgrnam_r getgrgid_r getgrent_r + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -21195,52 +19939,45 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi + done + + +- { $as_echo "$as_me:$LINENO: checking for getgrent_r declaration" >&5 +-$as_echo_n "checking for getgrent_r declaration... " >&6; } ++ { echo "$as_me:$LINENO: checking for getgrent_r declaration" >&5 ++echo $ECHO_N "checking for getgrent_r declaration... $ECHO_C" >&6; } + if test "${ac_cv_have_getgrent_r_decl+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -21267,21 +20004,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_have_getgrent_r_decl=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_have_getgrent_r_decl=no +@@ -21289,8 +20025,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_getgrent_r_decl" >&5 +-$as_echo "$ac_cv_have_getgrent_r_decl" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_have_getgrent_r_decl" >&5 ++echo "${ECHO_T}$ac_cv_have_getgrent_r_decl" >&6; } + if test x"$ac_cv_have_getgrent_r_decl" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -21299,10 +20035,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for prototype struct group *getgrent_r(struct group *src, char *buf, int buflen)" >&5 +-$as_echo_n "checking for prototype struct group *getgrent_r(struct group *src, char *buf, int buflen)... " >&6; } ++{ echo "$as_me:$LINENO: checking for prototype struct group *getgrent_r(struct group *src, char *buf, int buflen)" >&5 ++echo $ECHO_N "checking for prototype struct group *getgrent_r(struct group *src, char *buf, int buflen)... $ECHO_C" >&6; } + if test "${ac_cv_c_prototype_struct_group_pgetgrent_r_struct_group_psrc__char_pbuf__int_buflen_+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -21333,14 +20069,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -21349,7 +20084,7 @@ + ac_cv_c_prototype_struct_group_pgetgrent_r_struct_group_psrc__char_pbuf__int_buflen_=yes + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -21360,8 +20095,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_prototype_struct_group_pgetgrent_r_struct_group_psrc__char_pbuf__int_buflen_" >&5 +-$as_echo "$ac_cv_c_prototype_struct_group_pgetgrent_r_struct_group_psrc__char_pbuf__int_buflen_" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_c_prototype_struct_group_pgetgrent_r_struct_group_psrc__char_pbuf__int_buflen_" >&5 ++echo "${ECHO_T}$ac_cv_c_prototype_struct_group_pgetgrent_r_struct_group_psrc__char_pbuf__int_buflen_" >&6; } + if test $ac_cv_c_prototype_struct_group_pgetgrent_r_struct_group_psrc__char_pbuf__int_buflen_ = yes; then + + +@@ -21374,10 +20109,10 @@ + + + +-{ $as_echo "$as_me:$LINENO: checking for prototype struct group *getgrent_r(struct group *src, char *buf, size_t buflen)" >&5 +-$as_echo_n "checking for prototype struct group *getgrent_r(struct group *src, char *buf, size_t buflen)... " >&6; } ++{ echo "$as_me:$LINENO: checking for prototype struct group *getgrent_r(struct group *src, char *buf, size_t buflen)" >&5 ++echo $ECHO_N "checking for prototype struct group *getgrent_r(struct group *src, char *buf, size_t buflen)... $ECHO_C" >&6; } + if test "${ac_cv_c_prototype_struct_group_pgetgrent_r_struct_group_psrc__char_pbuf__size_t_buflen_+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -21408,14 +20143,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -21424,7 +20158,7 @@ + ac_cv_c_prototype_struct_group_pgetgrent_r_struct_group_psrc__char_pbuf__size_t_buflen_=yes + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -21435,8 +20169,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_prototype_struct_group_pgetgrent_r_struct_group_psrc__char_pbuf__size_t_buflen_" >&5 +-$as_echo "$ac_cv_c_prototype_struct_group_pgetgrent_r_struct_group_psrc__char_pbuf__size_t_buflen_" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_c_prototype_struct_group_pgetgrent_r_struct_group_psrc__char_pbuf__size_t_buflen_" >&5 ++echo "${ECHO_T}$ac_cv_c_prototype_struct_group_pgetgrent_r_struct_group_psrc__char_pbuf__size_t_buflen_" >&6; } + if test $ac_cv_c_prototype_struct_group_pgetgrent_r_struct_group_psrc__char_pbuf__size_t_buflen_ = yes; then + + +@@ -21454,21 +20188,20 @@ + + for ac_header in ctype.h locale.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -21484,33 +20217,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -21524,52 +20256,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -21578,24 +20309,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -21607,21 +20335,20 @@ + + for ac_header in fnmatch.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -21637,33 +20364,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -21677,52 +20403,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -21731,24 +20456,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -21762,21 +20484,20 @@ + + for ac_header in sys/ipc.h sys/mman.h sys/shm.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -21792,33 +20513,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -21832,52 +20552,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -21886,24 +20605,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -21917,21 +20633,20 @@ + + for ac_header in termios.h termio.h sys/termio.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -21947,33 +20662,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -21987,52 +20701,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -22041,24 +20754,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -22071,10 +20781,10 @@ + LIBS="" + + libreplace_cv_dlfcn=no +-{ $as_echo "$as_me:$LINENO: checking for library containing dlopen" >&5 +-$as_echo_n "checking for library containing dlopen... " >&6; } ++{ echo "$as_me:$LINENO: checking for library containing dlopen" >&5 ++echo $ECHO_N "checking for library containing dlopen... $ECHO_C" >&6; } + if test "${ac_cv_search_dlopen+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_func_search_save_LIBS=$LIBS + cat >conftest.$ac_ext <<_ACEOF +@@ -22112,30 +20822,26 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_search_dlopen=$ac_res + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext + if test "${ac_cv_search_dlopen+set}" = set; then +@@ -22150,8 +20856,8 @@ + rm conftest.$ac_ext + LIBS=$ac_func_search_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_search_dlopen" >&5 +-$as_echo "$ac_cv_search_dlopen" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_search_dlopen" >&5 ++echo "${ECHO_T}$ac_cv_search_dlopen" >&6; } + ac_res=$ac_cv_search_dlopen + if test "$ac_res" != no; then + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" +@@ -22162,21 +20868,20 @@ + + for ac_header in dlfcn.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -22192,33 +20897,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -22232,52 +20936,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -22286,24 +20989,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -22316,11 +21016,11 @@ + + for ac_func in dlopen dlsym dlerror dlclose + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -22373,42 +21073,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + else +@@ -22418,10 +21111,10 @@ + + + libreplace_cv_shl=no +-{ $as_echo "$as_me:$LINENO: checking for library containing shl_load" >&5 +-$as_echo_n "checking for library containing shl_load... " >&6; } ++{ echo "$as_me:$LINENO: checking for library containing shl_load" >&5 ++echo $ECHO_N "checking for library containing shl_load... $ECHO_C" >&6; } + if test "${ac_cv_search_shl_load+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_func_search_save_LIBS=$LIBS + cat >conftest.$ac_ext <<_ACEOF +@@ -22459,30 +21152,26 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_search_shl_load=$ac_res + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext + if test "${ac_cv_search_shl_load+set}" = set; then +@@ -22497,8 +21186,8 @@ + rm conftest.$ac_ext + LIBS=$ac_func_search_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_search_shl_load" >&5 +-$as_echo "$ac_cv_search_shl_load" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_search_shl_load" >&5 ++echo "${ECHO_T}$ac_cv_search_shl_load" >&6; } + ac_res=$ac_cv_search_shl_load + if test "$ac_res" != no; then + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" +@@ -22508,21 +21197,20 @@ + + for ac_header in dl.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -22538,33 +21226,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -22578,52 +21265,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -22632,24 +21318,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -22661,11 +21344,11 @@ + + for ac_func in shl_load shl_unload shl_findsym + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -22718,42 +21401,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + else +@@ -22762,10 +21438,10 @@ + done + + +-{ $as_echo "$as_me:$LINENO: checking for prototype void *dlopen(const char* filename, unsigned int flags)" >&5 +-$as_echo_n "checking for prototype void *dlopen(const char* filename, unsigned int flags)... " >&6; } ++{ echo "$as_me:$LINENO: checking for prototype void *dlopen(const char* filename, unsigned int flags)" >&5 ++echo $ECHO_N "checking for prototype void *dlopen(const char* filename, unsigned int flags)... $ECHO_C" >&6; } + if test "${ac_cv_c_prototype_void_pdlopen_const_charp_filename__unsigned_int_flags_+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -22792,14 +21468,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -22808,7 +21483,7 @@ + ac_cv_c_prototype_void_pdlopen_const_charp_filename__unsigned_int_flags_=yes + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -22819,8 +21494,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_prototype_void_pdlopen_const_charp_filename__unsigned_int_flags_" >&5 +-$as_echo "$ac_cv_c_prototype_void_pdlopen_const_charp_filename__unsigned_int_flags_" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_c_prototype_void_pdlopen_const_charp_filename__unsigned_int_flags_" >&5 ++echo "${ECHO_T}$ac_cv_c_prototype_void_pdlopen_const_charp_filename__unsigned_int_flags_" >&6; } + if test $ac_cv_c_prototype_void_pdlopen_const_charp_filename__unsigned_int_flags_ = yes; then + + +@@ -22841,10 +21516,10 @@ + + LIBS="$save_LIBS" + +-{ $as_echo "$as_me:$LINENO: checking for getpass" >&5 +-$as_echo_n "checking for getpass... " >&6; } ++{ echo "$as_me:$LINENO: checking for getpass" >&5 ++echo $ECHO_N "checking for getpass... $ECHO_C" >&6; } + if test "${ac_cv_func_getpass+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -22897,43 +21572,39 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_getpass=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_getpass=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_getpass" >&5 +-$as_echo "$ac_cv_func_getpass" >&6; } +-if test "x$ac_cv_func_getpass" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_func_getpass" >&5 ++echo "${ECHO_T}$ac_cv_func_getpass" >&6; } ++if test $ac_cv_func_getpass = yes; then + libreplace_cv_HAVE_GETPASS=yes + fi + +-{ $as_echo "$as_me:$LINENO: checking for getpassphrase" >&5 +-$as_echo_n "checking for getpassphrase... " >&6; } ++{ echo "$as_me:$LINENO: checking for getpassphrase" >&5 ++echo $ECHO_N "checking for getpassphrase... $ECHO_C" >&6; } + if test "${ac_cv_func_getpassphrase+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -22986,36 +21657,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_getpassphrase=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_getpassphrase=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_getpassphrase" >&5 +-$as_echo "$ac_cv_func_getpassphrase" >&6; } +-if test "x$ac_cv_func_getpassphrase" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_func_getpassphrase" >&5 ++echo "${ECHO_T}$ac_cv_func_getpassphrase" >&6; } ++if test $ac_cv_func_getpassphrase = yes; then + libreplace_cv_HAVE_GETPASSPHRASE=yes + fi + +@@ -23033,10 +21700,10 @@ + LIBREPLACEOBJ="${LIBREPLACEOBJ} getpass.o" + else + +-{ $as_echo "$as_me:$LINENO: checking whether getpass should be replaced" >&5 +-$as_echo_n "checking whether getpass should be replaced... " >&6; } ++{ echo "$as_me:$LINENO: checking whether getpass should be replaced" >&5 ++echo $ECHO_N "checking whether getpass should be replaced... $ECHO_C" >&6; } + if test "${libreplace_cv_REPLACE_GETPASS+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + SAVE_CPPFLAGS="$CPPFLAGS" +@@ -23066,21 +21733,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + libreplace_cv_REPLACE_GETPASS=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + libreplace_cv_REPLACE_GETPASS=no +@@ -23090,8 +21756,8 @@ + CPPFLAGS="$SAVE_CPPFLAGS" + + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_REPLACE_GETPASS" >&5 +-$as_echo "$libreplace_cv_REPLACE_GETPASS" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_REPLACE_GETPASS" >&5 ++echo "${ECHO_T}$libreplace_cv_REPLACE_GETPASS" >&6; } + if test x"$libreplace_cv_REPLACE_GETPASS" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -23103,10 +21769,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking whether strptime is available and works" >&5 +-$as_echo_n "checking whether strptime is available and works... " >&6; } ++{ echo "$as_me:$LINENO: checking whether strptime is available and works" >&5 ++echo $ECHO_N "checking whether strptime is available and works... $ECHO_C" >&6; } + if test "${libreplace_cv_STRPTIME_OK+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -23129,40 +21795,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + libreplace_cv_STRPTIME_OK=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + libreplace_cv_STRPTIME_OK=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_STRPTIME_OK" >&5 +-$as_echo "$libreplace_cv_STRPTIME_OK" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_STRPTIME_OK" >&5 ++echo "${ECHO_T}$libreplace_cv_STRPTIME_OK" >&6; } + if test x"$libreplace_cv_STRPTIME_OK" != x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -23178,21 +21841,20 @@ + + for ac_header in direct.h windows.h winsock2.h ws2tcpip.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -23208,33 +21870,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -23248,52 +21909,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -23302,24 +21962,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -23329,10 +21986,10 @@ + + ####################################### + # Check for mkdir mode +-{ $as_echo "$as_me:$LINENO: checking whether mkdir supports mode" >&5 +-$as_echo_n "checking whether mkdir supports mode... " >&6; } ++{ echo "$as_me:$LINENO: checking whether mkdir supports mode" >&5 ++echo $ECHO_N "checking whether mkdir supports mode... $ECHO_C" >&6; } + if test "${libreplace_cv_mkdir_has_mode+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -23362,21 +22019,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + libreplace_cv_mkdir_has_mode="yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + libreplace_cv_mkdir_has_mode="no" +@@ -23384,8 +22040,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_mkdir_has_mode" >&5 +-$as_echo "$libreplace_cv_mkdir_has_mode" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_mkdir_has_mode" >&5 ++echo "${ECHO_T}$libreplace_cv_mkdir_has_mode" >&6; } + + if test "$libreplace_cv_mkdir_has_mode" = "yes" + then +@@ -23399,11 +22055,11 @@ + + for ac_func in timegm + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -23456,42 +22112,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + else +@@ -23500,10 +22149,10 @@ + done + + +-{ $as_echo "$as_me:$LINENO: checking for broken readdir" >&5 +-$as_echo_n "checking for broken readdir... " >&6; } ++{ echo "$as_me:$LINENO: checking for broken readdir" >&5 ++echo $ECHO_N "checking for broken readdir... $ECHO_C" >&6; } + if test "${libreplace_cv_READDIR_NEEDED+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -23525,40 +22174,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + libreplace_cv_READDIR_NEEDED=no + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + libreplace_cv_READDIR_NEEDED=yes + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_READDIR_NEEDED" >&5 +-$as_echo "$libreplace_cv_READDIR_NEEDED" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_READDIR_NEEDED" >&5 ++echo "${ECHO_T}$libreplace_cv_READDIR_NEEDED" >&6; } + + # + # try to replace with getdirentries() if needed +@@ -23567,11 +22213,11 @@ + + for ac_func in getdirentries + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -23624,51 +22270,44 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi + done + +-{ $as_echo "$as_me:$LINENO: checking for prototype long telldir(const DIR *dir)" >&5 +-$as_echo_n "checking for prototype long telldir(const DIR *dir)... " >&6; } ++{ echo "$as_me:$LINENO: checking for prototype long telldir(const DIR *dir)" >&5 ++echo $ECHO_N "checking for prototype long telldir(const DIR *dir)... $ECHO_C" >&6; } + if test "${ac_cv_c_prototype_long_telldir_const_DIR_pdir_+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -23695,14 +22334,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -23711,7 +22349,7 @@ + ac_cv_c_prototype_long_telldir_const_DIR_pdir_=yes + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -23722,8 +22360,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_prototype_long_telldir_const_DIR_pdir_" >&5 +-$as_echo "$ac_cv_c_prototype_long_telldir_const_DIR_pdir_" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_c_prototype_long_telldir_const_DIR_pdir_" >&5 ++echo "${ECHO_T}$ac_cv_c_prototype_long_telldir_const_DIR_pdir_" >&6; } + if test $ac_cv_c_prototype_long_telldir_const_DIR_pdir_ = yes; then + + +@@ -23736,10 +22374,10 @@ + + + +-{ $as_echo "$as_me:$LINENO: checking for prototype int seekdir(DIR *dir, long ofs)" >&5 +-$as_echo_n "checking for prototype int seekdir(DIR *dir, long ofs)... " >&6; } ++{ echo "$as_me:$LINENO: checking for prototype int seekdir(DIR *dir, long ofs)" >&5 ++echo $ECHO_N "checking for prototype int seekdir(DIR *dir, long ofs)... $ECHO_C" >&6; } + if test "${ac_cv_c_prototype_int_seekdir_DIR_pdir__long_ofs_+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -23766,14 +22404,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -23782,7 +22419,7 @@ + ac_cv_c_prototype_int_seekdir_DIR_pdir__long_ofs_=yes + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -23793,8 +22430,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_prototype_int_seekdir_DIR_pdir__long_ofs_" >&5 +-$as_echo "$ac_cv_c_prototype_int_seekdir_DIR_pdir__long_ofs_" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_c_prototype_int_seekdir_DIR_pdir__long_ofs_" >&5 ++echo "${ECHO_T}$ac_cv_c_prototype_int_seekdir_DIR_pdir__long_ofs_" >&6; } + if test $ac_cv_c_prototype_int_seekdir_DIR_pdir__long_ofs_ = yes; then + + +@@ -23806,20 +22443,18 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking for replacing readdir using getdirentries()" >&5 +-$as_echo_n "checking for replacing readdir using getdirentries()... " >&6; } ++{ echo "$as_me:$LINENO: checking for replacing readdir using getdirentries()" >&5 ++echo $ECHO_N "checking for replacing readdir using getdirentries()... $ECHO_C" >&6; } + if test "${libreplace_cv_READDIR_GETDIRENTRIES+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot run test program while cross compiling ++ { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot run test program while cross compiling ++echo "$as_me: error: cannot run test program while cross compiling + See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++ { (exit 1); exit 1; }; } + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -23839,40 +22474,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + libreplace_cv_READDIR_GETDIRENTRIES=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + libreplace_cv_READDIR_GETDIRENTRIES=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_READDIR_GETDIRENTRIES" >&5 +-$as_echo "$libreplace_cv_READDIR_GETDIRENTRIES" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_READDIR_GETDIRENTRIES" >&5 ++echo "${ECHO_T}$libreplace_cv_READDIR_GETDIRENTRIES" >&6; } + fi + if test x"$libreplace_cv_READDIR_GETDIRENTRIES" = x"yes"; then + +@@ -23896,11 +22528,11 @@ + + for ac_func in getdents + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -23953,61 +22585,52 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi + done + +-{ $as_echo "$as_me:$LINENO: checking for replacing readdir using getdents()" >&5 +-$as_echo_n "checking for replacing readdir using getdents()... " >&6; } ++{ echo "$as_me:$LINENO: checking for replacing readdir using getdents()" >&5 ++echo $ECHO_N "checking for replacing readdir using getdents()... $ECHO_C" >&6; } + if test "${libreplace_cv_READDIR_GETDENTS+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot run test program while cross compiling ++ { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot run test program while cross compiling ++echo "$as_me: error: cannot run test program while cross compiling + See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++ { (exit 1); exit 1; }; } + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -24028,40 +22651,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + libreplace_cv_READDIR_GETDENTS=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + libreplace_cv_READDIR_GETDENTS=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_READDIR_GETDENTS" >&5 +-$as_echo "$libreplace_cv_READDIR_GETDENTS" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_READDIR_GETDENTS" >&5 ++echo "${ECHO_T}$libreplace_cv_READDIR_GETDENTS" >&6; } + fi + if test x"$libreplace_cv_READDIR_GETDENTS" = x"yes"; then + +@@ -24078,16 +22698,16 @@ + libreplace_cv_READDIR_NEEDED=no + fi + +-{ $as_echo "$as_me:$LINENO: checking a usable readdir()" >&5 +-$as_echo_n "checking a usable readdir()... " >&6; } ++{ echo "$as_me:$LINENO: checking a usable readdir()" >&5 ++echo $ECHO_N "checking a usable readdir()... $ECHO_C" >&6; } + if test x"$libreplace_cv_READDIR_NEEDED" = x"yes"; then +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } +- { $as_echo "$as_me:$LINENO: WARNING: the provided readdir() is broken" >&5 +-$as_echo "$as_me: WARNING: the provided readdir() is broken" >&2;} ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++ { echo "$as_me:$LINENO: WARNING: the provided readdir() is broken" >&5 ++echo "$as_me: WARNING: the provided readdir() is broken" >&2;} + else +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + fi + + +@@ -24097,11 +22717,11 @@ + + for ac_func in syslog printf memset memcpy + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -24154,47 +22774,40 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + else +- { { $as_echo "$as_me:$LINENO: error: Required function not found" >&5 +-$as_echo "$as_me: error: Required function not found" >&2;} ++ { { echo "$as_me:$LINENO: error: Required function not found" >&5 ++echo "$as_me: error: Required function not found" >&2;} + { (exit 1); exit 1; }; } + fi + done +@@ -24219,21 +22832,20 @@ + + for ac_header in sys/socket.h netinet/in.h netdb.h arpa/inet.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -24249,33 +22861,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -24289,52 +22900,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -24343,24 +22953,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -24373,21 +22980,20 @@ + + for ac_header in netinet/ip.h netinet/tcp.h netinet/in_systm.h netinet/in_ip.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -24403,33 +23009,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -24443,52 +23048,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -24497,24 +23101,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -24525,21 +23126,20 @@ + + for ac_header in sys/sockio.h sys/un.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -24555,33 +23155,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -24595,52 +23194,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -24649,24 +23247,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -24674,10 +23269,10 @@ + done + + +-{ $as_echo "$as_me:$LINENO: checking for usable net/if.h" >&5 +-$as_echo_n "checking for usable net/if.h... " >&6; } ++{ echo "$as_me:$LINENO: checking for usable net/if.h" >&5 ++echo $ECHO_N "checking for usable net/if.h... $ECHO_C" >&6; } + if test "${libreplace_cv_USABLE_NET_IF_H+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -24700,21 +23295,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + libreplace_cv_USABLE_NET_IF_H=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + libreplace_cv_USABLE_NET_IF_H=no +@@ -24724,8 +23318,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_USABLE_NET_IF_H" >&5 +-$as_echo "$libreplace_cv_USABLE_NET_IF_H" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_USABLE_NET_IF_H" >&5 ++echo "${ECHO_T}$libreplace_cv_USABLE_NET_IF_H" >&6; } + if test x"$libreplace_cv_USABLE_NET_IF_H" = x"yes";then + + cat >>confdefs.h <<\_ACEOF +@@ -24737,10 +23331,10 @@ + + + cv=`echo "socklen_t" | sed 'y%./+- %__p__%'` +-{ $as_echo "$as_me:$LINENO: checking for socklen_t" >&5 +-$as_echo_n "checking for socklen_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for socklen_t" >&5 ++echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6; } + if { as_var=ac_cv_type_$cv; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -24765,21 +23359,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + eval "ac_cv_type_$cv=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "ac_cv_type_$cv=no" +@@ -24788,51 +23381,16 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + ac_foo=`eval echo \\$ac_cv_type_$cv` +-{ $as_echo "$as_me:$LINENO: result: $ac_foo" >&5 +-$as_echo "$ac_foo" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_foo" >&5 ++echo "${ECHO_T}$ac_foo" >&6; } + if test "$ac_foo" = yes; then + ac_tr_hdr=HAVE_`echo socklen_t | sed 'y%abcdefghijklmnopqrstuvwxyz./- %ABCDEFGHIJKLMNOPQRSTUVWXYZ____%'` + if false; then +- { $as_echo "$as_me:$LINENO: checking for socklen_t" >&5 +-$as_echo_n "checking for socklen_t... " >&6; } ++ { echo "$as_me:$LINENO: checking for socklen_t" >&5 ++echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6; } + if test "${ac_cv_type_socklen_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_socklen_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (socklen_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -24840,11 +23398,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef socklen_t ac__type_new_; + int + main () + { +-if (sizeof ((socklen_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -24855,39 +23416,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_socklen_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_socklen_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_socklen_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_socklen_t" >&5 +-$as_echo "$ac_cv_type_socklen_t" >&6; } +-if test "x$ac_cv_type_socklen_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_socklen_t" >&5 ++echo "${ECHO_T}$ac_cv_type_socklen_t" >&6; } ++if test $ac_cv_type_socklen_t = yes; then + + cat >>confdefs.h <<_ACEOF + #define HAVE_SOCKLEN_T 1 +@@ -24907,10 +23459,10 @@ + + + cv=`echo "sa_family_t" | sed 'y%./+- %__p__%'` +-{ $as_echo "$as_me:$LINENO: checking for sa_family_t" >&5 +-$as_echo_n "checking for sa_family_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for sa_family_t" >&5 ++echo $ECHO_N "checking for sa_family_t... $ECHO_C" >&6; } + if { as_var=ac_cv_type_$cv; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -24935,21 +23487,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + eval "ac_cv_type_$cv=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "ac_cv_type_$cv=no" +@@ -24958,51 +23509,16 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + ac_foo=`eval echo \\$ac_cv_type_$cv` +-{ $as_echo "$as_me:$LINENO: result: $ac_foo" >&5 +-$as_echo "$ac_foo" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_foo" >&5 ++echo "${ECHO_T}$ac_foo" >&6; } + if test "$ac_foo" = yes; then + ac_tr_hdr=HAVE_`echo sa_family_t | sed 'y%abcdefghijklmnopqrstuvwxyz./- %ABCDEFGHIJKLMNOPQRSTUVWXYZ____%'` + if false; then +- { $as_echo "$as_me:$LINENO: checking for sa_family_t" >&5 +-$as_echo_n "checking for sa_family_t... " >&6; } ++ { echo "$as_me:$LINENO: checking for sa_family_t" >&5 ++echo $ECHO_N "checking for sa_family_t... $ECHO_C" >&6; } + if test "${ac_cv_type_sa_family_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_sa_family_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (sa_family_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -25010,11 +23526,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef sa_family_t ac__type_new_; + int + main () + { +-if (sizeof ((sa_family_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -25025,39 +23544,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_sa_family_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_sa_family_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_sa_family_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_sa_family_t" >&5 +-$as_echo "$ac_cv_type_sa_family_t" >&6; } +-if test "x$ac_cv_type_sa_family_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_sa_family_t" >&5 ++echo "${ECHO_T}$ac_cv_type_sa_family_t" >&6; } ++if test $ac_cv_type_sa_family_t = yes; then + + cat >>confdefs.h <<_ACEOF + #define HAVE_SA_FAMILY_T 1 +@@ -25077,10 +23587,10 @@ + + + cv=`echo "struct addrinfo" | sed 'y%./+- %__p__%'` +-{ $as_echo "$as_me:$LINENO: checking for struct addrinfo" >&5 +-$as_echo_n "checking for struct addrinfo... " >&6; } ++{ echo "$as_me:$LINENO: checking for struct addrinfo" >&5 ++echo $ECHO_N "checking for struct addrinfo... $ECHO_C" >&6; } + if { as_var=ac_cv_type_$cv; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -25105,21 +23615,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + eval "ac_cv_type_$cv=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "ac_cv_type_$cv=no" +@@ -25128,51 +23637,16 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + ac_foo=`eval echo \\$ac_cv_type_$cv` +-{ $as_echo "$as_me:$LINENO: result: $ac_foo" >&5 +-$as_echo "$ac_foo" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_foo" >&5 ++echo "${ECHO_T}$ac_foo" >&6; } + if test "$ac_foo" = yes; then + ac_tr_hdr=HAVE_`echo struct addrinfo | sed 'y%abcdefghijklmnopqrstuvwxyz./- %ABCDEFGHIJKLMNOPQRSTUVWXYZ____%'` + if false; then +- { $as_echo "$as_me:$LINENO: checking for struct addrinfo" >&5 +-$as_echo_n "checking for struct addrinfo... " >&6; } ++ { echo "$as_me:$LINENO: checking for struct addrinfo" >&5 ++echo $ECHO_N "checking for struct addrinfo... $ECHO_C" >&6; } + if test "${ac_cv_type_struct_addrinfo+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_struct_addrinfo=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (struct addrinfo)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -25180,11 +23654,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef struct addrinfo ac__type_new_; + int + main () + { +-if (sizeof ((struct addrinfo))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -25195,39 +23672,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_struct_addrinfo=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_struct_addrinfo=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_struct_addrinfo=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_struct_addrinfo" >&5 +-$as_echo "$ac_cv_type_struct_addrinfo" >&6; } +-if test "x$ac_cv_type_struct_addrinfo" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_struct_addrinfo" >&5 ++echo "${ECHO_T}$ac_cv_type_struct_addrinfo" >&6; } ++if test $ac_cv_type_struct_addrinfo = yes; then + + cat >>confdefs.h <<_ACEOF + #define HAVE_STRUCT_ADDRINFO 1 +@@ -25247,10 +23715,10 @@ + + + cv=`echo "struct sockaddr" | sed 'y%./+- %__p__%'` +-{ $as_echo "$as_me:$LINENO: checking for struct sockaddr" >&5 +-$as_echo_n "checking for struct sockaddr... " >&6; } ++{ echo "$as_me:$LINENO: checking for struct sockaddr" >&5 ++echo $ECHO_N "checking for struct sockaddr... $ECHO_C" >&6; } + if { as_var=ac_cv_type_$cv; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -25275,21 +23743,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + eval "ac_cv_type_$cv=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "ac_cv_type_$cv=no" +@@ -25298,51 +23765,16 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + ac_foo=`eval echo \\$ac_cv_type_$cv` +-{ $as_echo "$as_me:$LINENO: result: $ac_foo" >&5 +-$as_echo "$ac_foo" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_foo" >&5 ++echo "${ECHO_T}$ac_foo" >&6; } + if test "$ac_foo" = yes; then + ac_tr_hdr=HAVE_`echo struct sockaddr | sed 'y%abcdefghijklmnopqrstuvwxyz./- %ABCDEFGHIJKLMNOPQRSTUVWXYZ____%'` + if false; then +- { $as_echo "$as_me:$LINENO: checking for struct sockaddr" >&5 +-$as_echo_n "checking for struct sockaddr... " >&6; } ++ { echo "$as_me:$LINENO: checking for struct sockaddr" >&5 ++echo $ECHO_N "checking for struct sockaddr... $ECHO_C" >&6; } + if test "${ac_cv_type_struct_sockaddr+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_struct_sockaddr=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (struct sockaddr)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -25350,11 +23782,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef struct sockaddr ac__type_new_; + int + main () + { +-if (sizeof ((struct sockaddr))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -25365,39 +23800,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_struct_sockaddr=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_struct_sockaddr=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_struct_sockaddr=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_struct_sockaddr" >&5 +-$as_echo "$ac_cv_type_struct_sockaddr" >&6; } +-if test "x$ac_cv_type_struct_sockaddr" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_struct_sockaddr" >&5 ++echo "${ECHO_T}$ac_cv_type_struct_sockaddr" >&6; } ++if test $ac_cv_type_struct_sockaddr = yes; then + + cat >>confdefs.h <<_ACEOF + #define HAVE_STRUCT_SOCKADDR 1 +@@ -25417,10 +23843,10 @@ + + + cv=`echo "struct sockaddr_storage" | sed 'y%./+- %__p__%'` +-{ $as_echo "$as_me:$LINENO: checking for struct sockaddr_storage" >&5 +-$as_echo_n "checking for struct sockaddr_storage... " >&6; } ++{ echo "$as_me:$LINENO: checking for struct sockaddr_storage" >&5 ++echo $ECHO_N "checking for struct sockaddr_storage... $ECHO_C" >&6; } + if { as_var=ac_cv_type_$cv; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -25449,21 +23875,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + eval "ac_cv_type_$cv=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "ac_cv_type_$cv=no" +@@ -25472,51 +23897,16 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + ac_foo=`eval echo \\$ac_cv_type_$cv` +-{ $as_echo "$as_me:$LINENO: result: $ac_foo" >&5 +-$as_echo "$ac_foo" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_foo" >&5 ++echo "${ECHO_T}$ac_foo" >&6; } + if test "$ac_foo" = yes; then + ac_tr_hdr=HAVE_`echo struct sockaddr_storage | sed 'y%abcdefghijklmnopqrstuvwxyz./- %ABCDEFGHIJKLMNOPQRSTUVWXYZ____%'` + if false; then +- { $as_echo "$as_me:$LINENO: checking for struct sockaddr_storage" >&5 +-$as_echo_n "checking for struct sockaddr_storage... " >&6; } ++ { echo "$as_me:$LINENO: checking for struct sockaddr_storage" >&5 ++echo $ECHO_N "checking for struct sockaddr_storage... $ECHO_C" >&6; } + if test "${ac_cv_type_struct_sockaddr_storage+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_struct_sockaddr_storage=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (struct sockaddr_storage)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -25524,11 +23914,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef struct sockaddr_storage ac__type_new_; + int + main () + { +-if (sizeof ((struct sockaddr_storage))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -25539,39 +23932,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_struct_sockaddr_storage=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_struct_sockaddr_storage=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_struct_sockaddr_storage=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_struct_sockaddr_storage" >&5 +-$as_echo "$ac_cv_type_struct_sockaddr_storage" >&6; } +-if test "x$ac_cv_type_struct_sockaddr_storage" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_struct_sockaddr_storage" >&5 ++echo "${ECHO_T}$ac_cv_type_struct_sockaddr_storage" >&6; } ++if test $ac_cv_type_struct_sockaddr_storage = yes; then + + cat >>confdefs.h <<_ACEOF + #define HAVE_STRUCT_SOCKADDR_STORAGE 1 +@@ -25591,10 +23975,10 @@ + + + cv=`echo "struct sockaddr_in6" | sed 'y%./+- %__p__%'` +-{ $as_echo "$as_me:$LINENO: checking for struct sockaddr_in6" >&5 +-$as_echo_n "checking for struct sockaddr_in6... " >&6; } ++{ echo "$as_me:$LINENO: checking for struct sockaddr_in6" >&5 ++echo $ECHO_N "checking for struct sockaddr_in6... $ECHO_C" >&6; } + if { as_var=ac_cv_type_$cv; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -25623,21 +24007,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + eval "ac_cv_type_$cv=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "ac_cv_type_$cv=no" +@@ -25646,51 +24029,16 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + ac_foo=`eval echo \\$ac_cv_type_$cv` +-{ $as_echo "$as_me:$LINENO: result: $ac_foo" >&5 +-$as_echo "$ac_foo" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_foo" >&5 ++echo "${ECHO_T}$ac_foo" >&6; } + if test "$ac_foo" = yes; then + ac_tr_hdr=HAVE_`echo struct sockaddr_in6 | sed 'y%abcdefghijklmnopqrstuvwxyz./- %ABCDEFGHIJKLMNOPQRSTUVWXYZ____%'` + if false; then +- { $as_echo "$as_me:$LINENO: checking for struct sockaddr_in6" >&5 +-$as_echo_n "checking for struct sockaddr_in6... " >&6; } ++ { echo "$as_me:$LINENO: checking for struct sockaddr_in6" >&5 ++echo $ECHO_N "checking for struct sockaddr_in6... $ECHO_C" >&6; } + if test "${ac_cv_type_struct_sockaddr_in6+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_struct_sockaddr_in6=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (struct sockaddr_in6)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -25698,11 +24046,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef struct sockaddr_in6 ac__type_new_; + int + main () + { +-if (sizeof ((struct sockaddr_in6))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -25713,39 +24064,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : ++ ac_cv_type_struct_sockaddr_in6=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_cv_type_struct_sockaddr_in6=yes ++ ac_cv_type_struct_sockaddr_in6=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_struct_sockaddr_in6" >&5 +-$as_echo "$ac_cv_type_struct_sockaddr_in6" >&6; } +-if test "x$ac_cv_type_struct_sockaddr_in6" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_struct_sockaddr_in6" >&5 ++echo "${ECHO_T}$ac_cv_type_struct_sockaddr_in6" >&6; } ++if test $ac_cv_type_struct_sockaddr_in6 = yes; then + + cat >>confdefs.h <<_ACEOF + #define HAVE_STRUCT_SOCKADDR_IN6 1 +@@ -25764,10 +24106,10 @@ + + + if test x"$ac_cv_type_struct_sockaddr_storage" = x"yes"; then +-{ $as_echo "$as_me:$LINENO: checking for struct sockaddr_storage.ss_family" >&5 +-$as_echo_n "checking for struct sockaddr_storage.ss_family... " >&6; } ++{ echo "$as_me:$LINENO: checking for struct sockaddr_storage.ss_family" >&5 ++echo $ECHO_N "checking for struct sockaddr_storage.ss_family... $ECHO_C" >&6; } + if test "${ac_cv_member_struct_sockaddr_storage_ss_family+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -25797,21 +24139,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_sockaddr_storage_ss_family=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -25842,21 +24183,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_sockaddr_storage_ss_family=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_sockaddr_storage_ss_family=no +@@ -25867,9 +24207,9 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_sockaddr_storage_ss_family" >&5 +-$as_echo "$ac_cv_member_struct_sockaddr_storage_ss_family" >&6; } +-if test "x$ac_cv_member_struct_sockaddr_storage_ss_family" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_sockaddr_storage_ss_family" >&5 ++echo "${ECHO_T}$ac_cv_member_struct_sockaddr_storage_ss_family" >&6; } ++if test $ac_cv_member_struct_sockaddr_storage_ss_family = yes; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_SS_FAMILY 1 +@@ -25879,10 +24219,10 @@ + + + if test x"$ac_cv_member_struct_sockaddr_storage_ss_family" != x"yes"; then +-{ $as_echo "$as_me:$LINENO: checking for struct sockaddr_storage.__ss_family" >&5 +-$as_echo_n "checking for struct sockaddr_storage.__ss_family... " >&6; } ++{ echo "$as_me:$LINENO: checking for struct sockaddr_storage.__ss_family" >&5 ++echo $ECHO_N "checking for struct sockaddr_storage.__ss_family... $ECHO_C" >&6; } + if test "${ac_cv_member_struct_sockaddr_storage___ss_family+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -25912,21 +24252,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_sockaddr_storage___ss_family=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -25957,21 +24296,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_sockaddr_storage___ss_family=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_sockaddr_storage___ss_family=no +@@ -25982,9 +24320,9 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_sockaddr_storage___ss_family" >&5 +-$as_echo "$ac_cv_member_struct_sockaddr_storage___ss_family" >&6; } +-if test "x$ac_cv_member_struct_sockaddr_storage___ss_family" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_sockaddr_storage___ss_family" >&5 ++echo "${ECHO_T}$ac_cv_member_struct_sockaddr_storage___ss_family" >&6; } ++if test $ac_cv_member_struct_sockaddr_storage___ss_family = yes; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE___SS_FAMILY 1 +@@ -25995,10 +24333,10 @@ + fi + fi + +-{ $as_echo "$as_me:$LINENO: checking for sin_len in sock" >&5 +-$as_echo_n "checking for sin_len in sock... " >&6; } ++{ echo "$as_me:$LINENO: checking for sin_len in sock" >&5 ++echo $ECHO_N "checking for sin_len in sock... $ECHO_C" >&6; } + if test "${libreplace_cv_HAVE_SOCK_SIN_LEN+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -26028,14 +24366,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -26044,7 +24381,7 @@ + libreplace_cv_HAVE_SOCK_SIN_LEN=yes + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -26055,8 +24392,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_SOCK_SIN_LEN" >&5 +-$as_echo "$libreplace_cv_HAVE_SOCK_SIN_LEN" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_SOCK_SIN_LEN" >&5 ++echo "${ECHO_T}$libreplace_cv_HAVE_SOCK_SIN_LEN" >&6; } + if test x"$libreplace_cv_HAVE_SOCK_SIN_LEN" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -26067,10 +24404,10 @@ + + ############################################ + # check for unix domain sockets +-{ $as_echo "$as_me:$LINENO: checking for unix domain sockets" >&5 +-$as_echo_n "checking for unix domain sockets... " >&6; } ++{ echo "$as_me:$LINENO: checking for unix domain sockets" >&5 ++echo $ECHO_N "checking for unix domain sockets... $ECHO_C" >&6; } + if test "${libreplace_cv_HAVE_UNIXSOCKET+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -26103,14 +24440,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -26119,7 +24455,7 @@ + libreplace_cv_HAVE_UNIXSOCKET=yes + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -26130,8 +24466,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_UNIXSOCKET" >&5 +-$as_echo "$libreplace_cv_HAVE_UNIXSOCKET" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_UNIXSOCKET" >&5 ++echo "${ECHO_T}$libreplace_cv_HAVE_UNIXSOCKET" >&6; } + if test x"$libreplace_cv_HAVE_UNIXSOCKET" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -26143,11 +24479,11 @@ + + for ac_func in connect + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -26200,42 +24536,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -26251,10 +24580,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for connect in -lnsl_s" >&5 +-$as_echo_n "checking for connect in -lnsl_s... " >&6; } ++ { echo "$as_me:$LINENO: checking for connect in -lnsl_s" >&5 ++echo $ECHO_N "checking for connect in -lnsl_s... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_nsl_s_connect+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -26284,38 +24613,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_nsl_s_connect=yes; + ac_cv_lib_ext_nsl_s=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_nsl_s_connect=no; + ac_cv_lib_ext_nsl_s=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_nsl_s_connect" >&5 +-$as_echo "$ac_cv_lib_ext_nsl_s_connect" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_nsl_s_connect" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_nsl_s_connect" >&6; } + if test $ac_cv_lib_ext_nsl_s_connect = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_CONNECT 1 +@@ -26350,10 +24675,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for connect in -lnsl" >&5 +-$as_echo_n "checking for connect in -lnsl... " >&6; } ++ { echo "$as_me:$LINENO: checking for connect in -lnsl" >&5 ++echo $ECHO_N "checking for connect in -lnsl... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_nsl_connect+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -26383,38 +24708,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_nsl_connect=yes; + ac_cv_lib_ext_nsl=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_nsl_connect=no; + ac_cv_lib_ext_nsl=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_nsl_connect" >&5 +-$as_echo "$ac_cv_lib_ext_nsl_connect" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_nsl_connect" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_nsl_connect" >&6; } + if test $ac_cv_lib_ext_nsl_connect = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_CONNECT 1 +@@ -26449,10 +24770,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for connect in -lsocket" >&5 +-$as_echo_n "checking for connect in -lsocket... " >&6; } ++ { echo "$as_me:$LINENO: checking for connect in -lsocket" >&5 ++echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_socket_connect+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -26482,38 +24803,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_socket_connect=yes; + ac_cv_lib_ext_socket=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_socket_connect=no; + ac_cv_lib_ext_socket=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_socket_connect" >&5 +-$as_echo "$ac_cv_lib_ext_socket_connect" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_socket_connect" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_socket_connect" >&6; } + if test $ac_cv_lib_ext_socket_connect = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_CONNECT 1 +@@ -26548,10 +24865,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for connect in -linet" >&5 +-$as_echo_n "checking for connect in -linet... " >&6; } ++ { echo "$as_me:$LINENO: checking for connect in -linet" >&5 ++echo $ECHO_N "checking for connect in -linet... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_inet_connect+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -26581,38 +24898,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_inet_connect=yes; + ac_cv_lib_ext_inet=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_inet_connect=no; + ac_cv_lib_ext_inet=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_inet_connect" >&5 +-$as_echo "$ac_cv_lib_ext_inet_connect" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_inet_connect" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_inet_connect" >&6; } + if test $ac_cv_lib_ext_inet_connect = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_CONNECT 1 +@@ -26654,11 +24967,11 @@ + + for ac_func in gethostbyname + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -26711,42 +25024,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -26762,10 +25068,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for gethostbyname in -lnsl_s" >&5 +-$as_echo_n "checking for gethostbyname in -lnsl_s... " >&6; } ++ { echo "$as_me:$LINENO: checking for gethostbyname in -lnsl_s" >&5 ++echo $ECHO_N "checking for gethostbyname in -lnsl_s... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_nsl_s_gethostbyname+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -26795,38 +25101,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_nsl_s_gethostbyname=yes; + ac_cv_lib_ext_nsl_s=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_nsl_s_gethostbyname=no; + ac_cv_lib_ext_nsl_s=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_nsl_s_gethostbyname" >&5 +-$as_echo "$ac_cv_lib_ext_nsl_s_gethostbyname" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_nsl_s_gethostbyname" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_nsl_s_gethostbyname" >&6; } + if test $ac_cv_lib_ext_nsl_s_gethostbyname = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_GETHOSTBYNAME 1 +@@ -26861,10 +25163,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&5 +-$as_echo_n "checking for gethostbyname in -lnsl... " >&6; } ++ { echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&5 ++echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_nsl_gethostbyname+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -26894,38 +25196,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_nsl_gethostbyname=yes; + ac_cv_lib_ext_nsl=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_nsl_gethostbyname=no; + ac_cv_lib_ext_nsl=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_nsl_gethostbyname" >&5 +-$as_echo "$ac_cv_lib_ext_nsl_gethostbyname" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_nsl_gethostbyname" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_nsl_gethostbyname" >&6; } + if test $ac_cv_lib_ext_nsl_gethostbyname = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_GETHOSTBYNAME 1 +@@ -26960,10 +25258,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for gethostbyname in -lsocket" >&5 +-$as_echo_n "checking for gethostbyname in -lsocket... " >&6; } ++ { echo "$as_me:$LINENO: checking for gethostbyname in -lsocket" >&5 ++echo $ECHO_N "checking for gethostbyname in -lsocket... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_socket_gethostbyname+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -26993,38 +25291,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_socket_gethostbyname=yes; + ac_cv_lib_ext_socket=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_socket_gethostbyname=no; + ac_cv_lib_ext_socket=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_socket_gethostbyname" >&5 +-$as_echo "$ac_cv_lib_ext_socket_gethostbyname" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_socket_gethostbyname" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_socket_gethostbyname" >&6; } + if test $ac_cv_lib_ext_socket_gethostbyname = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_GETHOSTBYNAME 1 +@@ -27065,11 +25359,11 @@ + + for ac_func in if_nametoindex + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -27122,42 +25416,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -27173,10 +25460,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for if_nametoindex in -lipv6" >&5 +-$as_echo_n "checking for if_nametoindex in -lipv6... " >&6; } ++ { echo "$as_me:$LINENO: checking for if_nametoindex in -lipv6" >&5 ++echo $ECHO_N "checking for if_nametoindex in -lipv6... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_ipv6_if_nametoindex+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -27206,38 +25493,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_ipv6_if_nametoindex=yes; + ac_cv_lib_ext_ipv6=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_ipv6_if_nametoindex=no; + ac_cv_lib_ext_ipv6=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_ipv6_if_nametoindex" >&5 +-$as_echo "$ac_cv_lib_ext_ipv6_if_nametoindex" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_ipv6_if_nametoindex" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_ipv6_if_nametoindex" >&6; } + if test $ac_cv_lib_ext_ipv6_if_nametoindex = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_IF_NAMETOINDEX 1 +@@ -27282,11 +25565,11 @@ + + for ac_func in socketpair + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -27339,42 +25622,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + else +@@ -27383,10 +25659,10 @@ + done + + +-{ $as_echo "$as_me:$LINENO: checking for broken inet_ntoa" >&5 +-$as_echo_n "checking for broken inet_ntoa... " >&6; } ++{ echo "$as_me:$LINENO: checking for broken inet_ntoa" >&5 ++echo $ECHO_N "checking for broken inet_ntoa... $ECHO_C" >&6; } + if test "${libreplace_cv_REPLACE_INET_NTOA+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -27417,48 +25693,45 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + libreplace_cv_REPLACE_INET_NTOA=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + libreplace_cv_REPLACE_INET_NTOA=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_REPLACE_INET_NTOA" >&5 +-$as_echo "$libreplace_cv_REPLACE_INET_NTOA" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_REPLACE_INET_NTOA" >&5 ++echo "${ECHO_T}$libreplace_cv_REPLACE_INET_NTOA" >&6; } + + + for ac_func in inet_ntoa + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -27511,42 +25784,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + else +@@ -27566,11 +25832,11 @@ + + for ac_func in inet_aton + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -27623,42 +25889,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + else +@@ -27670,11 +25929,11 @@ + + for ac_func in inet_ntop + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -27727,42 +25986,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + else +@@ -27774,11 +26026,11 @@ + + for ac_func in inet_pton + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -27831,42 +26083,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + else +@@ -27875,10 +26120,10 @@ + done + + +-{ $as_echo "$as_me:$LINENO: checking for getaddrinfo" >&5 +-$as_echo_n "checking for getaddrinfo... " >&6; } ++{ echo "$as_me:$LINENO: checking for getaddrinfo" >&5 ++echo $ECHO_N "checking for getaddrinfo... $ECHO_C" >&6; } + if test "${libreplace_cv_HAVE_GETADDRINFO+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -27921,35 +26166,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + libreplace_cv_HAVE_GETADDRINFO=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + libreplace_cv_HAVE_GETADDRINFO=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_GETADDRINFO" >&5 +-$as_echo "$libreplace_cv_HAVE_GETADDRINFO" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_GETADDRINFO" >&5 ++echo "${ECHO_T}$libreplace_cv_HAVE_GETADDRINFO" >&6; } + if test x"$libreplace_cv_HAVE_GETADDRINFO" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -27978,21 +26219,20 @@ + + for ac_header in ifaddrs.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -28008,33 +26248,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -28048,52 +26287,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -28102,24 +26340,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -28127,10 +26362,10 @@ + done + + +-{ $as_echo "$as_me:$LINENO: checking for struct sockaddr.sa_len" >&5 +-$as_echo_n "checking for struct sockaddr.sa_len... " >&6; } ++{ echo "$as_me:$LINENO: checking for struct sockaddr.sa_len" >&5 ++echo $ECHO_N "checking for struct sockaddr.sa_len... $ECHO_C" >&6; } + if test "${ac_cv_member_struct_sockaddr_sa_len+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -28156,21 +26391,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_sockaddr_sa_len=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -28197,21 +26431,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_sockaddr_sa_len=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_sockaddr_sa_len=no +@@ -28222,9 +26455,9 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_sockaddr_sa_len" >&5 +-$as_echo "$ac_cv_member_struct_sockaddr_sa_len" >&6; } +-if test "x$ac_cv_member_struct_sockaddr_sa_len" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_sockaddr_sa_len" >&5 ++echo "${ECHO_T}$ac_cv_member_struct_sockaddr_sa_len" >&6; } ++if test $ac_cv_member_struct_sockaddr_sa_len = yes; then + + cat >>confdefs.h <<_ACEOF + #define HAVE_STRUCT_SOCKADDR_SA_LEN 1 +@@ -28238,10 +26471,10 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking for getifaddrs and freeifaddrs" >&5 +-$as_echo_n "checking for getifaddrs and freeifaddrs... " >&6; } ++{ echo "$as_me:$LINENO: checking for getifaddrs and freeifaddrs" >&5 ++echo $ECHO_N "checking for getifaddrs and freeifaddrs... $ECHO_C" >&6; } + if test "${libreplace_cv_HAVE_GETIFADDRS+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -28279,21 +26512,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + libreplace_cv_HAVE_GETIFADDRS=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + libreplace_cv_HAVE_GETIFADDRS=no +@@ -28301,8 +26533,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_GETIFADDRS" >&5 +-$as_echo "$libreplace_cv_HAVE_GETIFADDRS" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_GETIFADDRS" >&5 ++echo "${ECHO_T}$libreplace_cv_HAVE_GETIFADDRS" >&6; } + if test x"$libreplace_cv_HAVE_GETIFADDRS" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -28324,10 +26556,10 @@ + ################## + # look for a method of finding the list of network interfaces + iface=no; +-{ $as_echo "$as_me:$LINENO: checking for iface getifaddrs" >&5 +-$as_echo_n "checking for iface getifaddrs... " >&6; } ++{ echo "$as_me:$LINENO: checking for iface getifaddrs" >&5 ++echo $ECHO_N "checking for iface getifaddrs... $ECHO_C" >&6; } + if test "${libreplace_cv_HAVE_IFACE_GETIFADDRS+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -28357,39 +26589,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + libreplace_cv_HAVE_IFACE_GETIFADDRS=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + libreplace_cv_HAVE_IFACE_GETIFADDRS=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_IFACE_GETIFADDRS" >&5 +-$as_echo "$libreplace_cv_HAVE_IFACE_GETIFADDRS" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_IFACE_GETIFADDRS" >&5 ++echo "${ECHO_T}$libreplace_cv_HAVE_IFACE_GETIFADDRS" >&6; } + if test x"$libreplace_cv_HAVE_IFACE_GETIFADDRS" = x"yes"; then + iface=yes; + cat >>confdefs.h <<\_ACEOF +@@ -28402,10 +26631,10 @@ + + + if test $iface = no; then +-{ $as_echo "$as_me:$LINENO: checking for iface AIX" >&5 +-$as_echo_n "checking for iface AIX... " >&6; } ++{ echo "$as_me:$LINENO: checking for iface AIX" >&5 ++echo $ECHO_N "checking for iface AIX... $ECHO_C" >&6; } + if test "${libreplace_cv_HAVE_IFACE_AIX+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -28436,39 +26665,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + libreplace_cv_HAVE_IFACE_AIX=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + libreplace_cv_HAVE_IFACE_AIX=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_IFACE_AIX" >&5 +-$as_echo "$libreplace_cv_HAVE_IFACE_AIX" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_IFACE_AIX" >&5 ++echo "${ECHO_T}$libreplace_cv_HAVE_IFACE_AIX" >&6; } + if test x"$libreplace_cv_HAVE_IFACE_AIX" = x"yes"; then + iface=yes; + cat >>confdefs.h <<\_ACEOF +@@ -28480,10 +26706,10 @@ + + + if test $iface = no; then +-{ $as_echo "$as_me:$LINENO: checking for iface ifconf" >&5 +-$as_echo_n "checking for iface ifconf... " >&6; } ++{ echo "$as_me:$LINENO: checking for iface ifconf" >&5 ++echo $ECHO_N "checking for iface ifconf... $ECHO_C" >&6; } + if test "${libreplace_cv_HAVE_IFACE_IFCONF+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -28513,39 +26739,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + libreplace_cv_HAVE_IFACE_IFCONF=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + libreplace_cv_HAVE_IFACE_IFCONF=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_IFACE_IFCONF" >&5 +-$as_echo "$libreplace_cv_HAVE_IFACE_IFCONF" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_IFACE_IFCONF" >&5 ++echo "${ECHO_T}$libreplace_cv_HAVE_IFACE_IFCONF" >&6; } + if test x"$libreplace_cv_HAVE_IFACE_IFCONF" = x"yes"; then + iface=yes; + cat >>confdefs.h <<\_ACEOF +@@ -28556,10 +26779,10 @@ + fi + + if test $iface = no; then +-{ $as_echo "$as_me:$LINENO: checking for iface ifreq" >&5 +-$as_echo_n "checking for iface ifreq... " >&6; } ++{ echo "$as_me:$LINENO: checking for iface ifreq" >&5 ++echo $ECHO_N "checking for iface ifreq... $ECHO_C" >&6; } + if test "${libreplace_cv_HAVE_IFACE_IFREQ+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -28589,39 +26812,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + libreplace_cv_HAVE_IFACE_IFREQ=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + libreplace_cv_HAVE_IFACE_IFREQ=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_IFACE_IFREQ" >&5 +-$as_echo "$libreplace_cv_HAVE_IFACE_IFREQ" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_IFACE_IFREQ" >&5 ++echo "${ECHO_T}$libreplace_cv_HAVE_IFACE_IFREQ" >&6; } + if test x"$libreplace_cv_HAVE_IFACE_IFREQ" = x"yes"; then + iface=yes; + cat >>confdefs.h <<\_ACEOF +@@ -28631,10 +26851,10 @@ + fi + fi + +-{ $as_echo "$as_me:$LINENO: checking for ipv6 support" >&5 +-$as_echo_n "checking for ipv6 support... " >&6; } ++{ echo "$as_me:$LINENO: checking for ipv6 support" >&5 ++echo $ECHO_N "checking for ipv6 support... $ECHO_C" >&6; } + if test "${libreplace_cv_HAVE_IPV6+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -28674,26 +26894,23 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + libreplace_cv_HAVE_IPV6=yes + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -28701,13 +26918,12 @@ + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_IPV6" >&5 +-$as_echo "$libreplace_cv_HAVE_IPV6" >&6; } ++{ echo "$as_me:$LINENO: result: $libreplace_cv_HAVE_IPV6" >&5 ++echo "${ECHO_T}$libreplace_cv_HAVE_IPV6" >&6; } + if test x"$libreplace_cv_HAVE_IPV6" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -28746,21 +26962,20 @@ + + for ac_header in aio.h sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h rpc/nettype.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -28776,33 +26991,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -28816,52 +27030,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -28870,24 +27083,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -28902,21 +27112,20 @@ + + for ac_header in unistd.h utime.h grp.h sys/id.h memory.h alloca.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -28932,33 +27141,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -28972,52 +27180,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -29026,24 +27233,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -29056,21 +27260,20 @@ + + for ac_header in limits.h float.h pthread.h libintl.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -29086,33 +27289,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -29126,52 +27328,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -29180,24 +27381,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -29209,21 +27407,20 @@ + + for ac_header in rpc/rpc.h rpcsvc/nis.h rpcsvc/ypclnt.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -29239,33 +27436,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -29279,52 +27475,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -29333,24 +27528,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -29366,21 +27558,20 @@ + + for ac_header in sys/param.h ctype.h sys/wait.h sys/resource.h sys/ioctl.h sys/ipc.h sys/prctl.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -29396,33 +27587,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -29436,52 +27626,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -29490,24 +27679,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -29523,21 +27709,20 @@ + + for ac_header in sys/mman.h sys/filio.h sys/priv.h sys/shm.h string.h strings.h stdlib.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -29553,33 +27738,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -29593,52 +27777,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -29647,24 +27830,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -29679,21 +27859,20 @@ + + for ac_header in sys/mount.h sys/vfs.h sys/fs/s5param.h sys/filsys.h termios.h termio.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -29709,33 +27888,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -29749,52 +27927,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -29803,24 +27980,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -29834,21 +28008,20 @@ + + for ac_header in sys/termio.h sys/statfs.h sys/dustat.h sys/statvfs.h stdarg.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -29864,33 +28037,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -29904,52 +28076,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -29958,24 +28129,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -29985,21 +28153,20 @@ + + for ac_header in sys/sysmacros.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -30015,33 +28182,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -30055,52 +28221,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -30109,24 +28274,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -30137,21 +28299,20 @@ + + for ac_header in sys/syslog.h syslog.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -30167,33 +28328,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -30207,52 +28367,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -30261,24 +28420,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -30289,21 +28445,20 @@ + + for ac_header in langinfo.h locale.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -30319,33 +28474,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -30359,52 +28513,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -30413,24 +28566,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -30440,21 +28590,20 @@ + + for ac_header in xfs/libxfs.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -30470,33 +28619,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -30510,52 +28658,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -30564,24 +28711,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -30591,21 +28735,20 @@ + + for ac_header in netgroup.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -30621,33 +28764,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -30661,52 +28803,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -30715,24 +28856,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -30743,11 +28881,11 @@ + + for ac_header in rpcsvc/yp_prot.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -30769,21 +28907,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + eval "$as_ac_Header=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_Header=no" +@@ -30791,15 +28928,12 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -30811,21 +28945,20 @@ + + for ac_header in sys/mode.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -30841,33 +28974,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -30881,52 +29013,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -30935,24 +29066,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -30966,21 +29094,20 @@ + + for ac_header in CoreFoundation/CFStringEncodingConverter.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -30996,33 +29123,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -31036,52 +29162,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -31090,45 +29215,41 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + else + + for ac_header in CFStringEncodingConverter.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -31144,33 +29265,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -31184,52 +29304,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -31238,24 +29357,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -31275,21 +29391,20 @@ + + for ac_header in valgrind.h valgrind/valgrind.h valgrind/memcheck.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -31305,33 +29420,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -31345,52 +29459,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -31399,24 +29512,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -31467,21 +29577,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_header_shadow_h=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_header_shadow_h=no +@@ -31500,21 +29609,20 @@ + + for ac_header in shadow.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -31530,33 +29638,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -31570,52 +29677,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -31624,24 +29730,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -31655,21 +29758,20 @@ + + for ac_header in nss.h nss_common.h nsswitch.h ns_api.h sys/security.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -31685,33 +29787,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -31725,52 +29826,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -31779,24 +29879,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -31807,21 +29904,20 @@ + + for ac_header in syscall.h sys/syscall.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -31837,33 +29933,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -31877,52 +29972,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -31931,24 +30025,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -31963,21 +30054,20 @@ + + for ac_header in sys/attributes.h attr/xattr.h sys/xattr.h sys/extattr.h sys/uio.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -31993,33 +30083,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -32033,52 +30122,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -32087,24 +30175,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -32115,21 +30200,20 @@ + + for ac_header in sys/ea.h sys/proplist.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -32145,33 +30229,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -32185,52 +30268,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -32239,24 +30321,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -32268,21 +30347,20 @@ + + for ac_header in sys/cdefs.h glob.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -32298,33 +30376,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -32338,52 +30415,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -32392,24 +30468,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -32423,21 +30496,20 @@ + + for ac_header in utmp.h utmpx.h lastlog.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -32453,33 +30525,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -32493,52 +30564,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -32547,24 +30617,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -32572,14 +30639,68 @@ + done + + ++{ echo "$as_me:$LINENO: checking for int" >&5 ++echo $ECHO_N "checking for int... $ECHO_C" >&6; } ++if test "${ac_cv_type_int+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++$ac_includes_default ++typedef int ac__type_new_; ++int ++main () ++{ ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_type_int=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_int=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_int" >&5 ++echo "${ECHO_T}$ac_cv_type_int" >&6; } ++ + # The cast to long int works around a bug in the HP C Compiler + # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects + # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. + # This bug is HP SR number 8606223364. +-{ $as_echo "$as_me:$LINENO: checking size of int" >&5 +-$as_echo_n "checking size of int... " >&6; } ++{ echo "$as_me:$LINENO: checking size of int" >&5 ++echo $ECHO_N "checking size of int... $ECHO_C" >&6; } + if test "${ac_cv_sizeof_int+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + # Depending upon the size, compute the lo and hi bounds. +@@ -32590,10 +30711,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef int ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (int))) >= 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; + test_array [0] = 0 + + ; +@@ -32606,14 +30728,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -32627,10 +30748,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef int ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (int))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -32643,21 +30765,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr $ac_mid + 1` +@@ -32671,7 +30792,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -32681,10 +30802,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef int ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (int))) < 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; + test_array [0] = 0 + + ; +@@ -32697,14 +30819,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -32718,10 +30839,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef int ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (int))) >= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -32734,21 +30856,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_lo=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_hi=`expr '(' $ac_mid ')' - 1` +@@ -32762,7 +30883,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo= ac_hi= +@@ -32782,10 +30903,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef int ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (int))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -32798,21 +30920,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr '(' $ac_mid ')' + 1` +@@ -32823,13 +30944,11 @@ + case $ac_lo in + ?*) ac_cv_sizeof_int=$ac_lo;; + '') if test "$ac_cv_type_int" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (int) ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (int) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (int) ++echo "$as_me: error: cannot compute sizeof (int) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else + ac_cv_sizeof_int=0 + fi ;; +@@ -32842,8 +30961,9 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default +-static long int longval () { return (long int) (sizeof (int)); } +-static unsigned long int ulongval () { return (long int) (sizeof (int)); } ++ typedef int ac__type_sizeof_; ++static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } ++static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } + #include + #include + int +@@ -32853,22 +30973,20 @@ + FILE *f = fopen ("conftest.val", "w"); + if (! f) + return 1; +- if (((long int) (sizeof (int))) < 0) ++ if (((long int) (sizeof (ac__type_sizeof_))) < 0) + { + long int i = longval (); +- if (i != ((long int) (sizeof (int)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%ld", i); ++ fprintf (f, "%ld\n", i); + } + else + { + unsigned long int i = ulongval (); +- if (i != ((long int) (sizeof (int)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%lu", i); ++ fprintf (f, "%lu\n", i); + } +- /* Do not output a trailing newline, as this causes \r\n confusion +- on some platforms. */ + return ferror (f) || fclose (f) != 0; + + ; +@@ -32881,48 +30999,43 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_sizeof_int=`cat conftest.val` + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + if test "$ac_cv_type_int" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (int) ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (int) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (int) ++echo "$as_me: error: cannot compute sizeof (int) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else + ac_cv_sizeof_int=0 + fi + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + rm -f conftest.val + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_sizeof_int" >&5 +-$as_echo "$ac_cv_sizeof_int" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_int" >&5 ++echo "${ECHO_T}$ac_cv_sizeof_int" >&6; } + + + +@@ -32931,14 +31044,68 @@ + _ACEOF + + ++{ echo "$as_me:$LINENO: checking for long" >&5 ++echo $ECHO_N "checking for long... $ECHO_C" >&6; } ++if test "${ac_cv_type_long+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++$ac_includes_default ++typedef long ac__type_new_; ++int ++main () ++{ ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_type_long=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_long=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_long" >&5 ++echo "${ECHO_T}$ac_cv_type_long" >&6; } ++ + # The cast to long int works around a bug in the HP C Compiler + # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects + # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. + # This bug is HP SR number 8606223364. +-{ $as_echo "$as_me:$LINENO: checking size of long" >&5 +-$as_echo_n "checking size of long... " >&6; } ++{ echo "$as_me:$LINENO: checking size of long" >&5 ++echo $ECHO_N "checking size of long... $ECHO_C" >&6; } + if test "${ac_cv_sizeof_long+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + # Depending upon the size, compute the lo and hi bounds. +@@ -32949,10 +31116,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (long))) >= 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; + test_array [0] = 0 + + ; +@@ -32965,14 +31133,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -32986,10 +31153,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (long))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -33002,21 +31170,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr $ac_mid + 1` +@@ -33030,7 +31197,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -33040,10 +31207,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (long))) < 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; + test_array [0] = 0 + + ; +@@ -33056,14 +31224,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -33077,10 +31244,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (long))) >= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -33093,21 +31261,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_lo=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_hi=`expr '(' $ac_mid ')' - 1` +@@ -33121,7 +31288,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo= ac_hi= +@@ -33141,10 +31308,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (long))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -33157,21 +31325,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr '(' $ac_mid ')' + 1` +@@ -33182,13 +31349,11 @@ + case $ac_lo in + ?*) ac_cv_sizeof_long=$ac_lo;; + '') if test "$ac_cv_type_long" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long) ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (long) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (long) ++echo "$as_me: error: cannot compute sizeof (long) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else + ac_cv_sizeof_long=0 + fi ;; +@@ -33201,8 +31366,9 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default +-static long int longval () { return (long int) (sizeof (long)); } +-static unsigned long int ulongval () { return (long int) (sizeof (long)); } ++ typedef long ac__type_sizeof_; ++static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } ++static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } + #include + #include + int +@@ -33212,22 +31378,20 @@ + FILE *f = fopen ("conftest.val", "w"); + if (! f) + return 1; +- if (((long int) (sizeof (long))) < 0) ++ if (((long int) (sizeof (ac__type_sizeof_))) < 0) + { + long int i = longval (); +- if (i != ((long int) (sizeof (long)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%ld", i); ++ fprintf (f, "%ld\n", i); + } + else + { + unsigned long int i = ulongval (); +- if (i != ((long int) (sizeof (long)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%lu", i); ++ fprintf (f, "%lu\n", i); + } +- /* Do not output a trailing newline, as this causes \r\n confusion +- on some platforms. */ + return ferror (f) || fclose (f) != 0; + + ; +@@ -33240,48 +31404,43 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_sizeof_long=`cat conftest.val` + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + if test "$ac_cv_type_long" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long) ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (long) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (long) ++echo "$as_me: error: cannot compute sizeof (long) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else + ac_cv_sizeof_long=0 + fi + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + rm -f conftest.val + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_sizeof_long" >&5 +-$as_echo "$ac_cv_sizeof_long" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_long" >&5 ++echo "${ECHO_T}$ac_cv_sizeof_long" >&6; } + + + +@@ -33290,14 +31449,68 @@ + _ACEOF + + ++{ echo "$as_me:$LINENO: checking for long long" >&5 ++echo $ECHO_N "checking for long long... $ECHO_C" >&6; } ++if test "${ac_cv_type_long_long+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++$ac_includes_default ++typedef long long ac__type_new_; ++int ++main () ++{ ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_type_long_long=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_long_long=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_long_long" >&5 ++echo "${ECHO_T}$ac_cv_type_long_long" >&6; } ++ + # The cast to long int works around a bug in the HP C Compiler + # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects + # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. + # This bug is HP SR number 8606223364. +-{ $as_echo "$as_me:$LINENO: checking size of long long" >&5 +-$as_echo_n "checking size of long long... " >&6; } ++{ echo "$as_me:$LINENO: checking size of long long" >&5 ++echo $ECHO_N "checking size of long long... $ECHO_C" >&6; } + if test "${ac_cv_sizeof_long_long+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + # Depending upon the size, compute the lo and hi bounds. +@@ -33308,10 +31521,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long long ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (long long))) >= 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; + test_array [0] = 0 + + ; +@@ -33324,14 +31538,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -33345,10 +31558,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long long ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (long long))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -33361,21 +31575,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr $ac_mid + 1` +@@ -33389,7 +31602,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -33399,10 +31612,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long long ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (long long))) < 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; + test_array [0] = 0 + + ; +@@ -33415,14 +31629,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -33436,10 +31649,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long long ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (long long))) >= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -33452,21 +31666,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_lo=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_hi=`expr '(' $ac_mid ')' - 1` +@@ -33480,7 +31693,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo= ac_hi= +@@ -33500,10 +31713,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef long long ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (long long))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -33516,21 +31730,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr '(' $ac_mid ')' + 1` +@@ -33541,13 +31754,11 @@ + case $ac_lo in + ?*) ac_cv_sizeof_long_long=$ac_lo;; + '') if test "$ac_cv_type_long_long" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long long) ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (long long) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (long long) ++echo "$as_me: error: cannot compute sizeof (long long) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else + ac_cv_sizeof_long_long=0 + fi ;; +@@ -33560,8 +31771,9 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default +-static long int longval () { return (long int) (sizeof (long long)); } +-static unsigned long int ulongval () { return (long int) (sizeof (long long)); } ++ typedef long long ac__type_sizeof_; ++static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } ++static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } + #include + #include + int +@@ -33571,22 +31783,20 @@ + FILE *f = fopen ("conftest.val", "w"); + if (! f) + return 1; +- if (((long int) (sizeof (long long))) < 0) ++ if (((long int) (sizeof (ac__type_sizeof_))) < 0) + { + long int i = longval (); +- if (i != ((long int) (sizeof (long long)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%ld", i); ++ fprintf (f, "%ld\n", i); + } + else + { + unsigned long int i = ulongval (); +- if (i != ((long int) (sizeof (long long)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%lu", i); ++ fprintf (f, "%lu\n", i); + } +- /* Do not output a trailing newline, as this causes \r\n confusion +- on some platforms. */ + return ferror (f) || fclose (f) != 0; + + ; +@@ -33599,48 +31809,43 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_sizeof_long_long=`cat conftest.val` + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + if test "$ac_cv_type_long_long" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (long long) ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (long long) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (long long) ++echo "$as_me: error: cannot compute sizeof (long long) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else + ac_cv_sizeof_long_long=0 + fi + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + rm -f conftest.val + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_sizeof_long_long" >&5 +-$as_echo "$ac_cv_sizeof_long_long" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_long_long" >&5 ++echo "${ECHO_T}$ac_cv_sizeof_long_long" >&6; } + + + +@@ -33649,14 +31854,68 @@ + _ACEOF + + ++{ echo "$as_me:$LINENO: checking for short" >&5 ++echo $ECHO_N "checking for short... $ECHO_C" >&6; } ++if test "${ac_cv_type_short+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++$ac_includes_default ++typedef short ac__type_new_; ++int ++main () ++{ ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_type_short=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_short=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_type_short" >&5 ++echo "${ECHO_T}$ac_cv_type_short" >&6; } ++ + # The cast to long int works around a bug in the HP C Compiler + # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects + # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. + # This bug is HP SR number 8606223364. +-{ $as_echo "$as_me:$LINENO: checking size of short" >&5 +-$as_echo_n "checking size of short... " >&6; } ++{ echo "$as_me:$LINENO: checking size of short" >&5 ++echo $ECHO_N "checking size of short... $ECHO_C" >&6; } + if test "${ac_cv_sizeof_short+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + # Depending upon the size, compute the lo and hi bounds. +@@ -33667,10 +31926,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef short ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (short))) >= 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)]; + test_array [0] = 0 + + ; +@@ -33683,14 +31943,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -33704,10 +31963,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef short ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (short))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -33720,21 +31980,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr $ac_mid + 1` +@@ -33748,7 +32007,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -33758,10 +32017,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef short ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (short))) < 0)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)]; + test_array [0] = 0 + + ; +@@ -33774,14 +32034,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -33795,10 +32054,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef short ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (short))) >= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -33811,21 +32071,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_lo=$ac_mid; break + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_hi=`expr '(' $ac_mid ')' - 1` +@@ -33839,7 +32098,7 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo= ac_hi= +@@ -33859,10 +32118,11 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++ typedef short ac__type_sizeof_; + int + main () + { +-static int test_array [1 - 2 * !(((long int) (sizeof (short))) <= $ac_mid)]; ++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)]; + test_array [0] = 0 + + ; +@@ -33875,21 +32135,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_hi=$ac_mid + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_lo=`expr '(' $ac_mid ')' + 1` +@@ -33900,13 +32159,11 @@ + case $ac_lo in + ?*) ac_cv_sizeof_short=$ac_lo;; + '') if test "$ac_cv_type_short" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (short) ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (short) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (short) ++echo "$as_me: error: cannot compute sizeof (short) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else + ac_cv_sizeof_short=0 + fi ;; +@@ -33919,8 +32176,9 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default +-static long int longval () { return (long int) (sizeof (short)); } +-static unsigned long int ulongval () { return (long int) (sizeof (short)); } ++ typedef short ac__type_sizeof_; ++static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); } ++static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); } + #include + #include + int +@@ -33930,22 +32188,20 @@ + FILE *f = fopen ("conftest.val", "w"); + if (! f) + return 1; +- if (((long int) (sizeof (short))) < 0) ++ if (((long int) (sizeof (ac__type_sizeof_))) < 0) + { + long int i = longval (); +- if (i != ((long int) (sizeof (short)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%ld", i); ++ fprintf (f, "%ld\n", i); + } + else + { + unsigned long int i = ulongval (); +- if (i != ((long int) (sizeof (short)))) ++ if (i != ((long int) (sizeof (ac__type_sizeof_)))) + return 1; +- fprintf (f, "%lu", i); ++ fprintf (f, "%lu\n", i); + } +- /* Do not output a trailing newline, as this causes \r\n confusion +- on some platforms. */ + return ferror (f) || fclose (f) != 0; + + ; +@@ -33958,48 +32214,43 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_sizeof_short=`cat conftest.val` + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + if test "$ac_cv_type_short" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot compute sizeof (short) ++ { { echo "$as_me:$LINENO: error: cannot compute sizeof (short) + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot compute sizeof (short) ++echo "$as_me: error: cannot compute sizeof (short) + See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; }; } ++ { (exit 77); exit 77; }; } + else + ac_cv_sizeof_short=0 + fi + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + rm -f conftest.val + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_sizeof_short" >&5 +-$as_echo "$ac_cv_sizeof_short" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_short" >&5 ++echo "${ECHO_T}$ac_cv_sizeof_short" >&6; } + + + +@@ -34009,10 +32260,10 @@ + + + +-{ $as_echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5 +-$as_echo_n "checking for an ANSI C-conforming const... " >&6; } ++{ echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5 ++echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6; } + if test "${ac_cv_c_const+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -34084,21 +32335,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_c_const=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_c_const=no +@@ -34106,20 +32356,20 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5 +-$as_echo "$ac_cv_c_const" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5 ++echo "${ECHO_T}$ac_cv_c_const" >&6; } + if test $ac_cv_c_const = no; then + + cat >>confdefs.h <<\_ACEOF +-#define const /**/ ++#define const + _ACEOF + + fi + +-{ $as_echo "$as_me:$LINENO: checking for inline" >&5 +-$as_echo_n "checking for inline... " >&6; } ++{ echo "$as_me:$LINENO: checking for inline" >&5 ++echo $ECHO_N "checking for inline... $ECHO_C" >&6; } + if test "${ac_cv_c_inline+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_cv_c_inline=no + for ac_kw in inline __inline__ __inline; do +@@ -34142,21 +32392,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_c_inline=$ac_kw + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -34167,8 +32416,8 @@ + done + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_inline" >&5 +-$as_echo "$ac_cv_c_inline" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_c_inline" >&5 ++echo "${ECHO_T}$ac_cv_c_inline" >&6; } + + + case $ac_cv_c_inline in +@@ -34186,78 +32435,28 @@ + ;; + esac + +- +- { $as_echo "$as_me:$LINENO: checking whether byte ordering is bigendian" >&5 +-$as_echo_n "checking whether byte ordering is bigendian... " >&6; } ++{ echo "$as_me:$LINENO: checking whether byte ordering is bigendian" >&5 ++echo $ECHO_N "checking whether byte ordering is bigendian... $ECHO_C" >&6; } + if test "${ac_cv_c_bigendian+set}" = set; then +- $as_echo_n "(cached) " >&6 +-else +- ac_cv_c_bigendian=unknown +- # See if we're dealing with a universal compiler. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#ifndef __APPLE_CC__ +- not a universal capable compiler +- #endif +- typedef int dummy; +- +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- +- # Check for potential -arch flags. It is not universal unless +- # there are some -arch flags. Note that *ppc* also matches +- # ppc64. This check is also rather less than ideal. +- case "${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}" in #( +- *-arch*ppc*|*-arch*i386*|*-arch*x86_64*) ac_cv_c_bigendian=universal;; +- esac ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- if test $ac_cv_c_bigendian = unknown; then +- # See if sys/param.h defines the BYTE_ORDER macro. +- cat >conftest.$ac_ext <<_ACEOF ++ # See if sys/param.h defines the BYTE_ORDER macro. ++cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + #include +- #include ++#include + + int + main () + { +-#if ! (defined BYTE_ORDER && defined BIG_ENDIAN \ +- && defined LITTLE_ENDIAN && BYTE_ORDER && BIG_ENDIAN \ +- && LITTLE_ENDIAN) +- bogus endian macros +- #endif ++#if ! (defined BYTE_ORDER && defined BIG_ENDIAN && defined LITTLE_ENDIAN \ ++ && BYTE_ORDER && BIG_ENDIAN && LITTLE_ENDIAN) ++ bogus endian macros ++#endif + + ; + return 0; +@@ -34269,34 +32468,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + # It does; now see whether it defined to BIG_ENDIAN or not. +- cat >conftest.$ac_ext <<_ACEOF ++cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + #include +- #include ++#include + + int + main () + { + #if BYTE_ORDER != BIG_ENDIAN +- not big endian +- #endif ++ not big endian ++#endif + + ; + return 0; +@@ -34308,21 +32506,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_c_bigendian=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_c_bigendian=no +@@ -34330,69 +32527,29 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- fi +- if test $ac_cv_c_bigendian = unknown; then +- # See if defines _LITTLE_ENDIAN or _BIG_ENDIAN (e.g., Solaris). +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +- +-int +-main () +-{ +-#if ! (defined _LITTLE_ENDIAN || defined _BIG_ENDIAN) +- bogus endian macros +- #endif +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- # It does; now see whether it defined to _BIG_ENDIAN or not. +- cat >conftest.$ac_ext <<_ACEOF ++ # It does not; compile a test program. ++if test "$cross_compiling" = yes; then ++ # try to guess the endianness by grepping values into an object file ++ ac_cv_c_bigendian=unknown ++ cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ +-#include +- ++short int ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; ++short int ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; ++void _ascii () { char *s = (char *) ascii_mm; s = (char *) ascii_ii; } ++short int ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; ++short int ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; ++void _ebcdic () { char *s = (char *) ebcdic_mm; s = (char *) ebcdic_ii; } + int + main () + { +-#ifndef _BIG_ENDIAN +- not big endian +- #endif +- ++ _ascii (); _ebcdic (); + ; + return 0; + } +@@ -34403,101 +32560,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then ++ if grep BIGenDianSyS conftest.$ac_objext >/dev/null ; then + ac_cv_c_bigendian=yes +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_bigendian=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ++if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then ++ if test "$ac_cv_c_bigendian" = unknown; then ++ ac_cv_c_bigendian=no ++ else ++ # finding both strings is unlikely to happen, but who knows? ++ ac_cv_c_bigendian=unknown ++ fi + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- fi +- if test $ac_cv_c_bigendian = unknown; then +- # Compile a test program. +- if test "$cross_compiling" = yes; then +- # Try to guess by grepping values from an object file. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-short int ascii_mm[] = +- { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; +- short int ascii_ii[] = +- { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; +- int use_ascii (int i) { +- return ascii_mm[i] + ascii_ii[i]; +- } +- short int ebcdic_ii[] = +- { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; +- short int ebcdic_mm[] = +- { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; +- int use_ebcdic (int i) { +- return ebcdic_mm[i] + ebcdic_ii[i]; +- } +- extern int foo; +- +-int +-main () +-{ +-return use_ascii (foo) == use_ebcdic (foo); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- if grep BIGenDianSyS conftest.$ac_objext >/dev/null; then +- ac_cv_c_bigendian=yes +- fi +- if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then +- if test "$ac_cv_c_bigendian" = unknown; then +- ac_cv_c_bigendian=no +- else +- # finding both strings is unlikely to happen, but who knows? +- ac_cv_c_bigendian=unknown +- fi +- fi + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -34516,14 +32602,14 @@ + main () + { + +- /* Are we little or big endian? From Harbison&Steele. */ +- union +- { +- long int l; +- char c[sizeof (long int)]; +- } u; +- u.l = 1; +- return u.c[sizeof (long int) - 1] == 1; ++ /* Are we little or big endian? From Harbison&Steele. */ ++ union ++ { ++ long int l; ++ char c[sizeof (long int)]; ++ } u; ++ u.l = 1; ++ return u.c[sizeof (long int) - 1] == 1; + + ; + return 0; +@@ -34535,68 +32621,61 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_c_bigendian=no + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + ac_cv_c_bigendian=yes + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + +- fi + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_bigendian" >&5 +-$as_echo "$ac_cv_c_bigendian" >&6; } +- case $ac_cv_c_bigendian in #( +- yes) +- cat >>confdefs.h <<\_ACEOF +-#define WORDS_BIGENDIAN 1 +-_ACEOF +-;; #( +- no) +- ;; #( +- universal) ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_c_bigendian" >&5 ++echo "${ECHO_T}$ac_cv_c_bigendian" >&6; } ++case $ac_cv_c_bigendian in ++ yes) + + cat >>confdefs.h <<\_ACEOF +-#define AC_APPLE_UNIVERSAL_BUILD 1 ++#define WORDS_BIGENDIAN 1 + _ACEOF +- +- ;; #( +- *) +- { { $as_echo "$as_me:$LINENO: error: unknown endianness +- presetting ac_cv_c_bigendian=no (or yes) will help" >&5 +-$as_echo "$as_me: error: unknown endianness +- presetting ac_cv_c_bigendian=no (or yes) will help" >&2;} ++ ;; ++ no) ++ ;; ++ *) ++ { { echo "$as_me:$LINENO: error: unknown endianness ++presetting ac_cv_c_bigendian=no (or yes) will help" >&5 ++echo "$as_me: error: unknown endianness ++presetting ac_cv_c_bigendian=no (or yes) will help" >&2;} + { (exit 1); exit 1; }; } ;; +- esac ++esac + + +-{ $as_echo "$as_me:$LINENO: checking whether char is unsigned" >&5 +-$as_echo_n "checking whether char is unsigned... " >&6; } ++{ echo "$as_me:$LINENO: checking whether char is unsigned" >&5 ++echo $ECHO_N "checking whether char is unsigned... $ECHO_C" >&6; } + if test "${ac_cv_c_char_unsigned+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -34621,21 +32700,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_c_char_unsigned=no + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_c_char_unsigned=yes +@@ -34643,8 +32721,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_char_unsigned" >&5 +-$as_echo "$ac_cv_c_char_unsigned" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_c_char_unsigned" >&5 ++echo "${ECHO_T}$ac_cv_c_char_unsigned" >&6; } + if test $ac_cv_c_char_unsigned = yes && test "$GCC" != yes; then + cat >>confdefs.h <<\_ACEOF + #define __CHAR_UNSIGNED__ 1 +@@ -34653,10 +32731,10 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking return type of signal handlers" >&5 +-$as_echo_n "checking return type of signal handlers... " >&6; } ++{ echo "$as_me:$LINENO: checking return type of signal handlers" >&5 ++echo $ECHO_N "checking return type of signal handlers... $ECHO_C" >&6; } + if test "${ac_cv_type_signal+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -34681,21 +32759,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_type_signal=int + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_type_signal=void +@@ -34703,18 +32780,18 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_signal" >&5 +-$as_echo "$ac_cv_type_signal" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_type_signal" >&5 ++echo "${ECHO_T}$ac_cv_type_signal" >&6; } + + cat >>confdefs.h <<_ACEOF + #define RETSIGTYPE $ac_cv_type_signal + _ACEOF + + +-{ $as_echo "$as_me:$LINENO: checking for uid_t in sys/types.h" >&5 +-$as_echo_n "checking for uid_t in sys/types.h... " >&6; } ++{ echo "$as_me:$LINENO: checking for uid_t in sys/types.h" >&5 ++echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6; } + if test "${ac_cv_type_uid_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -34734,8 +32811,8 @@ + rm -f conftest* + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_uid_t" >&5 +-$as_echo "$ac_cv_type_uid_t" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_type_uid_t" >&5 ++echo "${ECHO_T}$ac_cv_type_uid_t" >&6; } + if test $ac_cv_type_uid_t = no; then + + cat >>confdefs.h <<\_ACEOF +@@ -34749,46 +32826,11 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for mode_t" >&5 +-$as_echo_n "checking for mode_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for mode_t" >&5 ++echo $ECHO_N "checking for mode_t... $ECHO_C" >&6; } + if test "${ac_cv_type_mode_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_mode_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (mode_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -34796,11 +32838,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef mode_t ac__type_new_; + int + main () + { +-if (sizeof ((mode_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -34811,39 +32856,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_mode_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_mode_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_mode_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_mode_t" >&5 +-$as_echo "$ac_cv_type_mode_t" >&6; } +-if test "x$ac_cv_type_mode_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_mode_t" >&5 ++echo "${ECHO_T}$ac_cv_type_mode_t" >&6; } ++if test $ac_cv_type_mode_t = yes; then + : + else + +@@ -34853,46 +32889,11 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for off_t" >&5 +-$as_echo_n "checking for off_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for off_t" >&5 ++echo $ECHO_N "checking for off_t... $ECHO_C" >&6; } + if test "${ac_cv_type_off_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_off_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (off_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -34900,11 +32901,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef off_t ac__type_new_; + int + main () + { +-if (sizeof ((off_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -34915,39 +32919,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_off_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_off_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_off_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5 +-$as_echo "$ac_cv_type_off_t" >&6; } +-if test "x$ac_cv_type_off_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5 ++echo "${ECHO_T}$ac_cv_type_off_t" >&6; } ++if test $ac_cv_type_off_t = yes; then + : + else + +@@ -34957,46 +32952,11 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for size_t" >&5 +-$as_echo_n "checking for size_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for size_t" >&5 ++echo $ECHO_N "checking for size_t... $ECHO_C" >&6; } + if test "${ac_cv_type_size_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_size_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (size_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -35004,11 +32964,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef size_t ac__type_new_; + int + main () + { +-if (sizeof ((size_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -35019,39 +32982,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : ++ ac_cv_type_size_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_cv_type_size_t=yes ++ ac_cv_type_size_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 +-$as_echo "$ac_cv_type_size_t" >&6; } +-if test "x$ac_cv_type_size_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 ++echo "${ECHO_T}$ac_cv_type_size_t" >&6; } ++if test $ac_cv_type_size_t = yes; then + : + else + +@@ -35061,46 +33015,11 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for pid_t" >&5 +-$as_echo_n "checking for pid_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for pid_t" >&5 ++echo $ECHO_N "checking for pid_t... $ECHO_C" >&6; } + if test "${ac_cv_type_pid_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_pid_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (pid_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -35108,11 +33027,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef pid_t ac__type_new_; + int + main () + { +-if (sizeof ((pid_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -35123,39 +33045,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_pid_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_pid_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_pid_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_pid_t" >&5 +-$as_echo "$ac_cv_type_pid_t" >&6; } +-if test "x$ac_cv_type_pid_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_pid_t" >&5 ++echo "${ECHO_T}$ac_cv_type_pid_t" >&6; } ++if test $ac_cv_type_pid_t = yes; then + : + else + +@@ -35165,10 +33078,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for struct stat.st_rdev" >&5 +-$as_echo_n "checking for struct stat.st_rdev... " >&6; } ++{ echo "$as_me:$LINENO: checking for struct stat.st_rdev" >&5 ++echo $ECHO_N "checking for struct stat.st_rdev... $ECHO_C" >&6; } + if test "${ac_cv_member_struct_stat_st_rdev+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -35193,21 +33106,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_stat_st_rdev=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -35233,21 +33145,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_stat_st_rdev=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_stat_st_rdev=no +@@ -35258,9 +33169,9 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_stat_st_rdev" >&5 +-$as_echo "$ac_cv_member_struct_stat_st_rdev" >&6; } +-if test "x$ac_cv_member_struct_stat_st_rdev" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_stat_st_rdev" >&5 ++echo "${ECHO_T}$ac_cv_member_struct_stat_st_rdev" >&6; } ++if test $ac_cv_member_struct_stat_st_rdev = yes; then + + cat >>confdefs.h <<_ACEOF + #define HAVE_STRUCT_STAT_ST_RDEV 1 +@@ -35274,10 +33185,10 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking for d_off in dirent" >&5 +-$as_echo_n "checking for d_off in dirent... " >&6; } ++{ echo "$as_me:$LINENO: checking for d_off in dirent" >&5 ++echo $ECHO_N "checking for d_off in dirent... $ECHO_C" >&6; } + if test "${ac_cv_dirent_d_off+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -35303,21 +33214,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_dirent_d_off=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_dirent_d_off=no +@@ -35325,8 +33235,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_dirent_d_off" >&5 +-$as_echo "$ac_cv_dirent_d_off" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_dirent_d_off" >&5 ++echo "${ECHO_T}$ac_cv_dirent_d_off" >&6; } + if test $ac_cv_dirent_d_off = yes; then + + cat >>confdefs.h <<\_ACEOF +@@ -35335,46 +33245,11 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for ssize_t" >&5 +-$as_echo_n "checking for ssize_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for ssize_t" >&5 ++echo $ECHO_N "checking for ssize_t... $ECHO_C" >&6; } + if test "${ac_cv_type_ssize_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_ssize_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (ssize_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -35382,11 +33257,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef ssize_t ac__type_new_; + int + main () + { +-if (sizeof ((ssize_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -35397,39 +33275,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_ssize_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_ssize_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_ssize_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_ssize_t" >&5 +-$as_echo "$ac_cv_type_ssize_t" >&6; } +-if test "x$ac_cv_type_ssize_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_ssize_t" >&5 ++echo "${ECHO_T}$ac_cv_type_ssize_t" >&6; } ++if test $ac_cv_type_ssize_t = yes; then + : + else + +@@ -35439,46 +33308,11 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for wchar_t" >&5 +-$as_echo_n "checking for wchar_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for wchar_t" >&5 ++echo $ECHO_N "checking for wchar_t... $ECHO_C" >&6; } + if test "${ac_cv_type_wchar_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_wchar_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (wchar_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -35486,11 +33320,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef wchar_t ac__type_new_; + int + main () + { +-if (sizeof ((wchar_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -35501,39 +33338,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_wchar_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_wchar_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_wchar_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_wchar_t" >&5 +-$as_echo "$ac_cv_type_wchar_t" >&6; } +-if test "x$ac_cv_type_wchar_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_wchar_t" >&5 ++echo "${ECHO_T}$ac_cv_type_wchar_t" >&6; } ++if test $ac_cv_type_wchar_t = yes; then + : + else + +@@ -35556,10 +33384,10 @@ + if test x$enable_cups != xno; then + # Extract the first word of "cups-config", so it can be a program name with args. + set dummy cups-config; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } + if test "${ac_cv_path_CUPS_CONFIG+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + case $CUPS_CONFIG in + [\\/]* | ?:[\\/]*) +@@ -35574,7 +33402,7 @@ + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_CUPS_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -35586,11 +33414,11 @@ + fi + CUPS_CONFIG=$ac_cv_path_CUPS_CONFIG + if test -n "$CUPS_CONFIG"; then +- { $as_echo "$as_me:$LINENO: result: $CUPS_CONFIG" >&5 +-$as_echo "$CUPS_CONFIG" >&6; } ++ { echo "$as_me:$LINENO: result: $CUPS_CONFIG" >&5 ++echo "${ECHO_T}$CUPS_CONFIG" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + +@@ -35607,21 +33435,20 @@ + + for ac_header in cups/cups.h cups/language.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -35637,33 +33464,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -35677,52 +33503,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -35731,24 +33556,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -35764,16 +33586,16 @@ + + samba_cv_HAVE_CUPS=yes + else +- { $as_echo "$as_me:$LINENO: WARNING: cups-config around but cups-devel not installed" >&5 +-$as_echo "$as_me: WARNING: cups-config around but cups-devel not installed" >&2;} ++ { echo "$as_me:$LINENO: WARNING: cups-config around but cups-devel not installed" >&5 ++echo "$as_me: WARNING: cups-config around but cups-devel not installed" >&2;} + CFLAGS=$ac_save_CFLAGS + LDFLAGS=$ac_save_LDFLAGS + PRINT_LIBS=$ac_save_PRINT_LIBS + fi + + elif test x"$enable_cups" = x"yes"; then +- { { $as_echo "$as_me:$LINENO: error: Cups support required but cups-config not located. Make sure cups-devel related files are installed." >&5 +-$as_echo "$as_me: error: Cups support required but cups-config not located. Make sure cups-devel related files are installed." >&2;} ++ { { echo "$as_me:$LINENO: error: Cups support required but cups-config not located. Make sure cups-devel related files are installed." >&5 ++echo "$as_me: error: Cups support required but cups-config not located. Make sure cups-devel related files are installed." >&2;} + { (exit 1); exit 1; }; } + fi + fi +@@ -35792,18 +33614,18 @@ + _ACEOF + + elif test x"$enable_iprint" = x"yes"; then +- { { $as_echo "$as_me:$LINENO: error: iPrint support required but cups not enabled. Make sure cups-devel related files are installed and that cups is enabled." >&5 +-$as_echo "$as_me: error: iPrint support required but cups not enabled. Make sure cups-devel related files are installed and that cups is enabled." >&2;} ++ { { echo "$as_me:$LINENO: error: iPrint support required but cups not enabled. Make sure cups-devel related files are installed and that cups is enabled." >&5 ++echo "$as_me: error: iPrint support required but cups not enabled. Make sure cups-devel related files are installed and that cups is enabled." >&2;} + { (exit 1); exit 1; }; } + fi + fi + + ############################################ + # check if the compiler will optimize out function calls +-{ $as_echo "$as_me:$LINENO: checking if the compiler will optimize out function calls" >&5 +-$as_echo_n "checking if the compiler will optimize out function calls... " >&6; } ++{ echo "$as_me:$LINENO: checking if the compiler will optimize out function calls" >&5 ++echo $ECHO_N "checking if the compiler will optimize out function calls... $ECHO_C" >&6; } + if test "${samba_cv_optimize_out_funcation_calls+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -35835,35 +33657,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_optimize_out_funcation_calls=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_optimize_out_funcation_calls=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_optimize_out_funcation_calls" >&5 +-$as_echo "$samba_cv_optimize_out_funcation_calls" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_optimize_out_funcation_calls" >&5 ++echo "${ECHO_T}$samba_cv_optimize_out_funcation_calls" >&6; } + if test x"$samba_cv_optimize_out_funcation_calls" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -35874,10 +33692,10 @@ + + ############################################# + # check for fd passing struct via msg_control +-{ $as_echo "$as_me:$LINENO: checking for fd passing via msg_control" >&5 +-$as_echo_n "checking for fd passing via msg_control... " >&6; } ++{ echo "$as_me:$LINENO: checking for fd passing via msg_control" >&5 ++echo $ECHO_N "checking for fd passing via msg_control... $ECHO_C" >&6; } + if test "${samba_cv_msghdr_msg_control+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -35914,21 +33732,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_msghdr_msg_control=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_msghdr_msg_control=no +@@ -35936,8 +33753,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_msghdr_msg_control" >&5 +-$as_echo "$samba_cv_msghdr_msg_control" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_msghdr_msg_control" >&5 ++echo "${ECHO_T}$samba_cv_msghdr_msg_control" >&6; } + if test x"$samba_cv_msghdr_msg_control" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -35948,10 +33765,10 @@ + + ############################################# + # check for fd passing struct via msg_acctrights +-{ $as_echo "$as_me:$LINENO: checking for fd passing via msg_acctrights" >&5 +-$as_echo_n "checking for fd passing via msg_acctrights... " >&6; } ++{ echo "$as_me:$LINENO: checking for fd passing via msg_acctrights" >&5 ++echo $ECHO_N "checking for fd passing via msg_acctrights... $ECHO_C" >&6; } + if test "${samba_cv_msghdr_msg_acctrights+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -35985,21 +33802,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_msghdr_msg_acctrights=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_msghdr_msg_acctrights=no +@@ -36007,8 +33823,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_msghdr_msg_acctrights" >&5 +-$as_echo "$samba_cv_msghdr_msg_acctrights" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_msghdr_msg_acctrights" >&5 ++echo "${ECHO_T}$samba_cv_msghdr_msg_acctrights" >&6; } + if test x"$samba_cv_msghdr_msg_acctrights" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -36020,11 +33836,11 @@ + + for ac_func in dirfd + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -36077,42 +33893,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -36122,10 +33931,10 @@ + default_shared_modules="$default_shared_modules vfs_syncops" + fi + +-{ $as_echo "$as_me:$LINENO: checking for sig_atomic_t type" >&5 +-$as_echo_n "checking for sig_atomic_t type... " >&6; } ++{ echo "$as_me:$LINENO: checking for sig_atomic_t type" >&5 ++echo $ECHO_N "checking for sig_atomic_t type... $ECHO_C" >&6; } + if test "${samba_cv_sig_atomic_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -36155,21 +33964,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_sig_atomic_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_sig_atomic_t=no +@@ -36177,8 +33985,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_sig_atomic_t" >&5 +-$as_echo "$samba_cv_sig_atomic_t" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_sig_atomic_t" >&5 ++echo "${ECHO_T}$samba_cv_sig_atomic_t" >&6; } + if test x"$samba_cv_sig_atomic_t" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -36187,10 +33995,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for struct sigevent type" >&5 +-$as_echo_n "checking for struct sigevent type... " >&6; } ++{ echo "$as_me:$LINENO: checking for struct sigevent type" >&5 ++echo $ECHO_N "checking for struct sigevent type... $ECHO_C" >&6; } + if test "${samba_cv_struct_sigevent+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -36220,21 +34028,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_struct_sigevent=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_struct_sigevent=no +@@ -36242,18 +34049,18 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_struct_sigevent" >&5 +-$as_echo "$samba_cv_struct_sigevent" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_struct_sigevent" >&5 ++echo "${ECHO_T}$samba_cv_struct_sigevent" >&6; } + if test x"$samba_cv_struct_sigevent" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_STRUCT_SIGEVENT 1 + _ACEOF + +- { $as_echo "$as_me:$LINENO: checking for struct sigevent.sigev_value.sival_ptr" >&5 +-$as_echo_n "checking for struct sigevent.sigev_value.sival_ptr... " >&6; } ++ { echo "$as_me:$LINENO: checking for struct sigevent.sigev_value.sival_ptr" >&5 ++echo $ECHO_N "checking for struct sigevent.sigev_value.sival_ptr... $ECHO_C" >&6; } + if test "${ac_cv_member_struct_sigevent_sigev_value_sival_ptr+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -36279,21 +34086,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_sigevent_sigev_value_sival_ptr=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -36320,21 +34126,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_sigevent_sigev_value_sival_ptr=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_sigevent_sigev_value_sival_ptr=no +@@ -36345,9 +34150,9 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_sigevent_sigev_value_sival_ptr" >&5 +-$as_echo "$ac_cv_member_struct_sigevent_sigev_value_sival_ptr" >&6; } +-if test "x$ac_cv_member_struct_sigevent_sigev_value_sival_ptr" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_sigevent_sigev_value_sival_ptr" >&5 ++echo "${ECHO_T}$ac_cv_member_struct_sigevent_sigev_value_sival_ptr" >&6; } ++if test $ac_cv_member_struct_sigevent_sigev_value_sival_ptr = yes; then + + cat >>confdefs.h <<_ACEOF + #define HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIVAL_PTR 1 +@@ -36355,10 +34160,10 @@ + + + fi +-{ $as_echo "$as_me:$LINENO: checking for struct sigevent.sigev_value.sigval_ptr" >&5 +-$as_echo_n "checking for struct sigevent.sigev_value.sigval_ptr... " >&6; } ++{ echo "$as_me:$LINENO: checking for struct sigevent.sigev_value.sigval_ptr" >&5 ++echo $ECHO_N "checking for struct sigevent.sigev_value.sigval_ptr... $ECHO_C" >&6; } + if test "${ac_cv_member_struct_sigevent_sigev_value_sigval_ptr+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -36384,21 +34189,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_sigevent_sigev_value_sigval_ptr=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -36425,21 +34229,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_sigevent_sigev_value_sigval_ptr=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_sigevent_sigev_value_sigval_ptr=no +@@ -36450,9 +34253,9 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_sigevent_sigev_value_sigval_ptr" >&5 +-$as_echo "$ac_cv_member_struct_sigevent_sigev_value_sigval_ptr" >&6; } +-if test "x$ac_cv_member_struct_sigevent_sigev_value_sigval_ptr" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_sigevent_sigev_value_sigval_ptr" >&5 ++echo "${ECHO_T}$ac_cv_member_struct_sigevent_sigev_value_sigval_ptr" >&6; } ++if test $ac_cv_member_struct_sigevent_sigev_value_sigval_ptr = yes; then + + cat >>confdefs.h <<_ACEOF + #define HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIGVAL_PTR 1 +@@ -36463,10 +34266,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for struct timespec type" >&5 +-$as_echo_n "checking for struct timespec type... " >&6; } ++{ echo "$as_me:$LINENO: checking for struct timespec type" >&5 ++echo $ECHO_N "checking for struct timespec type... $ECHO_C" >&6; } + if test "${samba_cv_struct_timespec+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -36506,21 +34309,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_struct_timespec=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_struct_timespec=no +@@ -36528,8 +34330,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_struct_timespec" >&5 +-$as_echo "$samba_cv_struct_timespec" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_struct_timespec" >&5 ++echo "${ECHO_T}$samba_cv_struct_timespec" >&6; } + if test x"$samba_cv_struct_timespec" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -36540,10 +34342,10 @@ + + # stupid headers have the functions but no declaration. grrrr. + +- { $as_echo "$as_me:$LINENO: checking for errno declaration" >&5 +-$as_echo_n "checking for errno declaration... " >&6; } ++ { echo "$as_me:$LINENO: checking for errno declaration" >&5 ++echo $ECHO_N "checking for errno declaration... $ECHO_C" >&6; } + if test "${ac_cv_have_errno_decl+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -36567,21 +34369,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_have_errno_decl=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_have_errno_decl=no +@@ -36589,8 +34390,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_errno_decl" >&5 +-$as_echo "$ac_cv_have_errno_decl" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_have_errno_decl" >&5 ++echo "${ECHO_T}$ac_cv_have_errno_decl" >&6; } + if test x"$ac_cv_have_errno_decl" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -36600,10 +34401,10 @@ + fi + + +- { $as_echo "$as_me:$LINENO: checking for setresuid declaration" >&5 +-$as_echo_n "checking for setresuid declaration... " >&6; } ++ { echo "$as_me:$LINENO: checking for setresuid declaration" >&5 ++echo $ECHO_N "checking for setresuid declaration... $ECHO_C" >&6; } + if test "${ac_cv_have_setresuid_decl+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -36627,21 +34428,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_have_setresuid_decl=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_have_setresuid_decl=no +@@ -36649,8 +34449,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_setresuid_decl" >&5 +-$as_echo "$ac_cv_have_setresuid_decl" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_have_setresuid_decl" >&5 ++echo "${ECHO_T}$ac_cv_have_setresuid_decl" >&6; } + if test x"$ac_cv_have_setresuid_decl" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -36660,10 +34460,10 @@ + fi + + +- { $as_echo "$as_me:$LINENO: checking for setresgid declaration" >&5 +-$as_echo_n "checking for setresgid declaration... " >&6; } ++ { echo "$as_me:$LINENO: checking for setresgid declaration" >&5 ++echo $ECHO_N "checking for setresgid declaration... $ECHO_C" >&6; } + if test "${ac_cv_have_setresgid_decl+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -36687,21 +34487,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_have_setresgid_decl=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_have_setresgid_decl=no +@@ -36709,8 +34508,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_setresgid_decl" >&5 +-$as_echo "$ac_cv_have_setresgid_decl" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_have_setresgid_decl" >&5 ++echo "${ECHO_T}$ac_cv_have_setresgid_decl" >&6; } + if test x"$ac_cv_have_setresgid_decl" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -36722,10 +34521,10 @@ + + # and glibc has setresuid under linux but the function does + # nothing until kernel 2.1.44! very dumb. +-{ $as_echo "$as_me:$LINENO: checking for real setresuid" >&5 +-$as_echo_n "checking for real setresuid... " >&6; } ++{ echo "$as_me:$LINENO: checking for real setresuid" >&5 ++echo $ECHO_N "checking for real setresuid... $ECHO_C" >&6; } + if test "${samba_cv_have_setresuid+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -36746,39 +34545,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_have_setresuid=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_have_setresuid=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_have_setresuid" >&5 +-$as_echo "$samba_cv_have_setresuid" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_have_setresuid" >&5 ++echo "${ECHO_T}$samba_cv_have_setresuid" >&6; } + if test x"$samba_cv_have_setresuid" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -36789,10 +34585,10 @@ + + # Do the same check for setresguid... + # +-{ $as_echo "$as_me:$LINENO: checking for real setresgid" >&5 +-$as_echo_n "checking for real setresgid... " >&6; } ++{ echo "$as_me:$LINENO: checking for real setresgid" >&5 ++echo $ECHO_N "checking for real setresgid... $ECHO_C" >&6; } + if test "${samba_cv_have_setresgid+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -36814,39 +34610,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_have_setresgid=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_have_setresgid=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_have_setresgid" >&5 +-$as_echo "$samba_cv_have_setresgid" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_have_setresgid" >&5 ++echo "${ECHO_T}$samba_cv_have_setresgid" >&6; } + if test x"$samba_cv_have_setresgid" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -36855,10 +34648,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for working memcmp" >&5 +-$as_echo_n "checking for working memcmp... " >&6; } ++{ echo "$as_me:$LINENO: checking for working memcmp" >&5 ++echo $ECHO_N "checking for working memcmp... $ECHO_C" >&6; } + if test "${ac_cv_func_memcmp_working+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + ac_cv_func_memcmp_working=no +@@ -36908,39 +34701,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_func_memcmp_working=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + ac_cv_func_memcmp_working=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_memcmp_working" >&5 +-$as_echo "$ac_cv_func_memcmp_working" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_memcmp_working" >&5 ++echo "${ECHO_T}$ac_cv_func_memcmp_working" >&6; } + test $ac_cv_func_memcmp_working = no && case " $LIBOBJS " in + *" memcmp.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS memcmp.$ac_objext" +@@ -36954,36 +34744,35 @@ + test "${with_readline+set}" != "set" && with_readline=yes + + # test for where we get readline() from +-{ $as_echo "$as_me:$LINENO: checking whether to use readline" >&5 +-$as_echo_n "checking whether to use readline... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to use readline" >&5 ++echo $ECHO_N "checking whether to use readline... $ECHO_C" >&6; } + + # Check whether --with-readline was given. + if test "${with_readline+set}" = set; then + withval=$with_readline; case "$with_readline" in + yes) +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + + + + for ac_header in readline.h history.h readline/readline.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -36999,33 +34788,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -37039,52 +34827,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -37093,24 +34880,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -37120,21 +34904,20 @@ + + for ac_header in readline/history.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -37150,33 +34933,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -37190,52 +34972,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -37244,24 +35025,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -37273,21 +35051,20 @@ + + for ac_header in readline.h readline/readline.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -37303,33 +35080,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -37343,52 +35119,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -37397,32 +35172,29 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + for termlib in ncurses curses termcap terminfo termlib tinfo; do +- as_ac_Lib=`$as_echo "ac_cv_lib_${termlib}''_tgetent" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for tgetent in -l${termlib}" >&5 +-$as_echo_n "checking for tgetent in -l${termlib}... " >&6; } ++ as_ac_Lib=`echo "ac_cv_lib_${termlib}''_tgetent" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for tgetent in -l${termlib}" >&5 ++echo $ECHO_N "checking for tgetent in -l${termlib}... $ECHO_C" >&6; } + if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-l${termlib} $LIBS" +@@ -37454,49 +35226,42 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_Lib=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_Lib=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-ac_res=`eval 'as_val=${'$as_ac_Lib'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_Lib'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_Lib'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_Lib'}'` = yes; then + TERMLIBS="-l${termlib}"; break + fi + + done +- { $as_echo "$as_me:$LINENO: checking for rl_callback_handler_install in -lreadline" >&5 +-$as_echo_n "checking for rl_callback_handler_install in -lreadline... " >&6; } ++ { echo "$as_me:$LINENO: checking for rl_callback_handler_install in -lreadline" >&5 ++echo $ECHO_N "checking for rl_callback_handler_install in -lreadline... $ECHO_C" >&6; } + if test "${ac_cv_lib_readline_rl_callback_handler_install+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lreadline $TERMLIBS $LIBS" +@@ -37528,37 +35293,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_readline_rl_callback_handler_install=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_readline_rl_callback_handler_install=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_readline_rl_callback_handler_install" >&5 +-$as_echo "$ac_cv_lib_readline_rl_callback_handler_install" >&6; } +-if test "x$ac_cv_lib_readline_rl_callback_handler_install" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_readline_rl_callback_handler_install" >&5 ++echo "${ECHO_T}$ac_cv_lib_readline_rl_callback_handler_install" >&6; } ++if test $ac_cv_lib_readline_rl_callback_handler_install = yes; then + TERMLIBS="-lreadline $TERMLIBS" + + cat >>confdefs.h <<\_ACEOF +@@ -37576,12 +35337,12 @@ + + ;; + no) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + ;; + *) +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + # Needed for AC_CHECK_HEADERS and AC_CHECK_LIB to look at + # alternate readline path +@@ -37597,21 +35358,20 @@ + + for ac_header in readline.h history.h readline/readline.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -37627,33 +35387,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -37667,52 +35426,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -37721,24 +35479,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -37748,21 +35503,20 @@ + + for ac_header in readline/history.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -37778,33 +35532,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -37818,52 +35571,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -37872,24 +35624,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -37901,21 +35650,20 @@ + + for ac_header in readline.h readline/readline.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -37931,33 +35679,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -37971,52 +35718,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -38025,32 +35771,29 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + for termlib in ncurses curses termcap terminfo termlib; do +- as_ac_Lib=`$as_echo "ac_cv_lib_${termlib}''_tgetent" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for tgetent in -l${termlib}" >&5 +-$as_echo_n "checking for tgetent in -l${termlib}... " >&6; } ++ as_ac_Lib=`echo "ac_cv_lib_${termlib}''_tgetent" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for tgetent in -l${termlib}" >&5 ++echo $ECHO_N "checking for tgetent in -l${termlib}... $ECHO_C" >&6; } + if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-l${termlib} $LIBS" +@@ -38082,49 +35825,42 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_Lib=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_Lib=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-ac_res=`eval 'as_val=${'$as_ac_Lib'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_Lib'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_Lib'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_Lib'}'` = yes; then + TERMLIBS="-l${termlib}"; break + fi + + done +- { $as_echo "$as_me:$LINENO: checking for rl_callback_handler_install in -lreadline" >&5 +-$as_echo_n "checking for rl_callback_handler_install in -lreadline... " >&6; } ++ { echo "$as_me:$LINENO: checking for rl_callback_handler_install in -lreadline" >&5 ++echo $ECHO_N "checking for rl_callback_handler_install in -lreadline... $ECHO_C" >&6; } + if test "${ac_cv_lib_readline_rl_callback_handler_install+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lreadline $TERMLIBS $LIBS" +@@ -38156,37 +35892,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_readline_rl_callback_handler_install=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_readline_rl_callback_handler_install=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_readline_rl_callback_handler_install" >&5 +-$as_echo "$ac_cv_lib_readline_rl_callback_handler_install" >&6; } +-if test "x$ac_cv_lib_readline_rl_callback_handler_install" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_readline_rl_callback_handler_install" >&5 ++echo "${ECHO_T}$ac_cv_lib_readline_rl_callback_handler_install" >&6; } ++if test $ac_cv_lib_readline_rl_callback_handler_install = yes; then + TERMLDFLAGS="-L$with_readline/lib" + TERMCPPFLAGS="-I$with_readline/include" + CPPFLAGS="-I$with_readline/include $CPPFLAGS" +@@ -38210,8 +35942,8 @@ + ;; + esac + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + fi + +@@ -38221,10 +35953,10 @@ + # The readline API changed slightly from readline3 to readline4, so + # code will generate warnings on one of them unless we have a few + # special cases. +-{ $as_echo "$as_me:$LINENO: checking for rl_completion_matches in -lreadline" >&5 +-$as_echo_n "checking for rl_completion_matches in -lreadline... " >&6; } ++{ echo "$as_me:$LINENO: checking for rl_completion_matches in -lreadline" >&5 ++echo $ECHO_N "checking for rl_completion_matches in -lreadline... $ECHO_C" >&6; } + if test "${ac_cv_lib_readline_rl_completion_matches+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lreadline $TERMLIBS $LIBS" +@@ -38256,37 +35988,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_readline_rl_completion_matches=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_readline_rl_completion_matches=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_readline_rl_completion_matches" >&5 +-$as_echo "$ac_cv_lib_readline_rl_completion_matches" >&6; } +-if test "x$ac_cv_lib_readline_rl_completion_matches" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_readline_rl_completion_matches" >&5 ++echo "${ECHO_T}$ac_cv_lib_readline_rl_completion_matches" >&6; } ++if test $ac_cv_lib_readline_rl_completion_matches = yes; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_NEW_LIBREADLINE 1 +@@ -38296,10 +36024,10 @@ + + + # not all readline libs have rl_event_hook or history_list +-{ $as_echo "$as_me:$LINENO: checking whether rl_event_hook is declared" >&5 +-$as_echo_n "checking whether rl_event_hook is declared... " >&6; } ++{ echo "$as_me:$LINENO: checking whether rl_event_hook is declared" >&5 ++echo $ECHO_N "checking whether rl_event_hook is declared... $ECHO_C" >&6; } + if test "${ac_cv_have_decl_rl_event_hook+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -38326,21 +36054,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_have_decl_rl_event_hook=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_have_decl_rl_event_hook=no +@@ -38348,9 +36075,9 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_decl_rl_event_hook" >&5 +-$as_echo "$ac_cv_have_decl_rl_event_hook" >&6; } +-if test "x$ac_cv_have_decl_rl_event_hook" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_have_decl_rl_event_hook" >&5 ++echo "${ECHO_T}$ac_cv_have_decl_rl_event_hook" >&6; } ++if test $ac_cv_have_decl_rl_event_hook = yes; then + + cat >>confdefs.h <<_ACEOF + #define HAVE_DECL_RL_EVENT_HOOK 1 +@@ -38366,10 +36093,10 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking for history_list in -lreadline" >&5 +-$as_echo_n "checking for history_list in -lreadline... " >&6; } ++{ echo "$as_me:$LINENO: checking for history_list in -lreadline" >&5 ++echo $ECHO_N "checking for history_list in -lreadline... $ECHO_C" >&6; } + if test "${ac_cv_lib_readline_history_list+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lreadline $TERMLIBS $LIBS" +@@ -38401,37 +36128,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_readline_history_list=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_readline_history_list=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_readline_history_list" >&5 +-$as_echo "$ac_cv_lib_readline_history_list" >&6; } +-if test "x$ac_cv_lib_readline_history_list" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_readline_history_list" >&5 ++echo "${ECHO_T}$ac_cv_lib_readline_history_list" >&6; } ++if test $ac_cv_lib_readline_history_list = yes; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_HISTORY_LIST 1 +@@ -38442,10 +36165,10 @@ + + ############################################### + # test for where we get yp_get_default_domain() from +-{ $as_echo "$as_me:$LINENO: checking for library containing yp_get_default_domain" >&5 +-$as_echo_n "checking for library containing yp_get_default_domain... " >&6; } ++{ echo "$as_me:$LINENO: checking for library containing yp_get_default_domain" >&5 ++echo $ECHO_N "checking for library containing yp_get_default_domain... $ECHO_C" >&6; } + if test "${ac_cv_search_yp_get_default_domain+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_func_search_save_LIBS=$LIBS + cat >conftest.$ac_ext <<_ACEOF +@@ -38483,30 +36206,26 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_search_yp_get_default_domain=$ac_res + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext + if test "${ac_cv_search_yp_get_default_domain+set}" = set; then +@@ -38521,8 +36240,8 @@ + rm conftest.$ac_ext + LIBS=$ac_func_search_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_search_yp_get_default_domain" >&5 +-$as_echo "$ac_cv_search_yp_get_default_domain" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_search_yp_get_default_domain" >&5 ++echo "${ECHO_T}$ac_cv_search_yp_get_default_domain" >&6; } + ac_res=$ac_cv_search_yp_get_default_domain + if test "$ac_res" != no; then + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" +@@ -38532,11 +36251,11 @@ + + for ac_func in yp_get_default_domain + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -38589,42 +36308,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -38635,11 +36347,11 @@ + + for ac_func in execl + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -38692,42 +36404,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -38754,11 +36459,11 @@ + + for ac_func in waitpid getcwd strdup strndup strnlen strerror chown fchown lchown chmod fchmod chroot link mknod mknod64 + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -38811,42 +36516,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -38860,11 +36558,11 @@ + + for ac_func in strtol strtoll strtoul strtoull strtouq __strtoull + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -38917,42 +36615,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -38965,11 +36656,11 @@ + + for ac_func in fstat strchr utime utimes chflags + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -39022,42 +36713,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -39072,11 +36756,11 @@ + + for ac_func in getrlimit fsync fdatasync memset strlcpy strlcat setpgid + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -39129,42 +36813,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -39179,11 +36856,11 @@ + + for ac_func in memmove setsid glob strpbrk pipe crypt16 getauthuid + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -39236,42 +36913,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -39288,11 +36958,11 @@ + + for ac_func in strftime sigprocmask sigblock sigaction sigset innetgr setnetgrent getnetgrent endnetgrent + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -39345,42 +37015,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -39396,11 +37059,11 @@ + + for ac_func in initgroups select poll rdchk getgrnam getgrent pathconf realpath + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -39453,42 +37116,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -39507,11 +37163,11 @@ + + for ac_func in setpriv setgidx setuidx setgroups sysconf mktime rename ftruncate chsize stat64 fstat64 + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -39564,42 +37220,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -39614,11 +37263,11 @@ + + for ac_func in lstat64 fopen64 atexit grantpt dup2 lseek64 ftruncate64 + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -39671,42 +37320,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -39721,11 +37363,11 @@ + + for ac_func in fseek64 fseeko64 ftell64 ftello64 setluid getpwanam setlinebuf + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -39778,42 +37420,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -39827,11 +37462,11 @@ + + for ac_func in opendir64 readdir64 seekdir64 telldir64 rewinddir64 closedir64 + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -39884,42 +37519,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -39928,11 +37556,11 @@ + + for ac_func in getpwent_r + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -39985,42 +37613,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -40030,11 +37651,11 @@ + + for ac_func in getdents getdents64 + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -40087,42 +37708,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -40141,11 +37755,11 @@ + + for ac_func in srandom random srand rand setenv usleep strcasecmp fcvt fcvtl symlink readlink + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -40198,42 +37812,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -40244,11 +37851,11 @@ + + for ac_func in syslog vsyslog timegm + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -40301,42 +37908,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -40346,11 +37946,11 @@ + + for ac_func in setlocale nl_langinfo + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -40403,42 +38003,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -40447,11 +38040,11 @@ + + for ac_func in nanosleep + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -40504,42 +38097,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -40551,11 +38137,11 @@ + + for ac_func in mlock munlock mlockall munlockall + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -40608,42 +38194,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -40654,11 +38233,11 @@ + + for ac_func in memalign posix_memalign hstrerror + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -40711,42 +38290,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -40755,21 +38327,20 @@ + + for ac_header in sys/mman.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -40785,33 +38356,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -40825,52 +38395,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -40879,24 +38448,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -40909,11 +38475,11 @@ + + for ac_func in setbuffer shmget shm_open + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -40966,42 +38532,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -41011,11 +38570,11 @@ + + for ac_func in gettext dgettext + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -41068,42 +38627,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -41116,21 +38668,20 @@ + + for ac_header in execinfo.h libexc.h libunwind.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -41146,33 +38697,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -41186,52 +38736,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -41240,24 +38789,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -41265,10 +38811,10 @@ + done + + # libexecinfo provides backtrace_symbols on FreeBSD +-{ $as_echo "$as_me:$LINENO: checking for library containing backtrace_symbols" >&5 +-$as_echo_n "checking for library containing backtrace_symbols... " >&6; } ++{ echo "$as_me:$LINENO: checking for library containing backtrace_symbols" >&5 ++echo $ECHO_N "checking for library containing backtrace_symbols... $ECHO_C" >&6; } + if test "${ac_cv_search_backtrace_symbols+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_func_search_save_LIBS=$LIBS + cat >conftest.$ac_ext <<_ACEOF +@@ -41306,30 +38852,26 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_search_backtrace_symbols=$ac_res + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext + if test "${ac_cv_search_backtrace_symbols+set}" = set; then +@@ -41344,8 +38886,8 @@ + rm conftest.$ac_ext + LIBS=$ac_func_search_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_search_backtrace_symbols" >&5 +-$as_echo "$ac_cv_search_backtrace_symbols" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_search_backtrace_symbols" >&5 ++echo "${ECHO_T}$ac_cv_search_backtrace_symbols" >&6; } + ac_res=$ac_cv_search_backtrace_symbols + if test "$ac_res" != no; then + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" +@@ -41355,11 +38897,11 @@ + + for ac_func in backtrace_symbols + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -41412,52 +38954,45 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi + done + + +-{ $as_echo "$as_me:$LINENO: checking for trace_back_stack in -lexc" >&5 +-$as_echo_n "checking for trace_back_stack in -lexc... " >&6; } ++{ echo "$as_me:$LINENO: checking for trace_back_stack in -lexc" >&5 ++echo $ECHO_N "checking for trace_back_stack in -lexc... $ECHO_C" >&6; } + if test "${ac_cv_lib_exc_trace_back_stack+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lexc $LIBS" +@@ -41489,37 +39024,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_exc_trace_back_stack=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_exc_trace_back_stack=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_exc_trace_back_stack" >&5 +-$as_echo "$ac_cv_lib_exc_trace_back_stack" >&6; } +-if test "x$ac_cv_lib_exc_trace_back_stack" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_exc_trace_back_stack" >&5 ++echo "${ECHO_T}$ac_cv_lib_exc_trace_back_stack" >&6; } ++if test $ac_cv_lib_exc_trace_back_stack = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_LIBEXC 1 + _ACEOF +@@ -41553,30 +39084,26 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_GPFS=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_GPFS=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + echo $samba_cv_HAVE_GPFS +@@ -41614,30 +39141,26 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_GPFS=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_GPFS=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + echo $samba_cv_HAVE_GPFS +@@ -41654,8 +39177,8 @@ + # Note that all the libunwind symbols in the API are defined to internal + # platform-specific version, so we must include libunwind.h before checking + # any of them. +-{ $as_echo "$as_me:$LINENO: checking for libunwind" >&5 +-$as_echo_n "checking for libunwind... " >&6; } ++{ echo "$as_me:$LINENO: checking for libunwind" >&5 ++echo $ECHO_N "checking for libunwind... $ECHO_C" >&6; } + save_LIBS=$LIBS + + UNWIND_ARCH="unknown" +@@ -41714,24 +39237,21 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define HAVE_LIBUNWIND 1 +@@ -41744,21 +39264,20 @@ + + for ac_header in libunwind-ptrace.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -41774,33 +39293,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -41814,52 +39332,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -41868,34 +39385,31 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi + + done + +- { $as_echo "$as_me:$LINENO: checking for _UPT_create in -lunwind-ptrace" >&5 +-$as_echo_n "checking for _UPT_create in -lunwind-ptrace... " >&6; } ++ { echo "$as_me:$LINENO: checking for _UPT_create in -lunwind-ptrace" >&5 ++echo $ECHO_N "checking for _UPT_create in -lunwind-ptrace... $ECHO_C" >&6; } + if test "${ac_cv_lib_unwind_ptrace__UPT_create+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lunwind-ptrace $LIBS" +@@ -41927,37 +39441,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_unwind_ptrace__UPT_create=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_unwind_ptrace__UPT_create=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_unwind_ptrace__UPT_create" >&5 +-$as_echo "$ac_cv_lib_unwind_ptrace__UPT_create" >&6; } +-if test "x$ac_cv_lib_unwind_ptrace__UPT_create" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_unwind_ptrace__UPT_create" >&5 ++echo "${ECHO_T}$ac_cv_lib_unwind_ptrace__UPT_create" >&6; } ++if test $ac_cv_lib_unwind_ptrace__UPT_create = yes; then + + LIBUNWIND_PTRACE="-lunwind-ptrace"; + +@@ -41974,17 +39484,16 @@ + LIBS=$save_LIBS + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + LIBS=$save_LIBS + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +@@ -41993,21 +39502,20 @@ + + for ac_header in sys/ptrace.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -42023,33 +39531,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -42063,52 +39570,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -42117,32 +39623,29 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi + + done + +- { $as_echo "$as_me:$LINENO: checking for the Linux ptrace(2) interface" >&5 +-$as_echo_n "checking for the Linux ptrace(2) interface... " >&6; } ++ { echo "$as_me:$LINENO: checking for the Linux ptrace(2) interface" >&5 ++echo $ECHO_N "checking for the Linux ptrace(2) interface... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -42179,24 +39682,21 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define HAVE_LINUX_PTRACE 1 +@@ -42204,17 +39704,16 @@ + + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + LIBUNWIND_PTRACE="" + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +@@ -42230,11 +39729,11 @@ + + for ac_func in _dup _dup2 _opendir _readdir _seekdir _telldir _closedir + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -42287,42 +39786,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -42337,11 +39829,11 @@ + + for ac_func in __dup __dup2 __opendir __readdir __seekdir __telldir __closedir + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -42394,42 +39886,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -42439,11 +39924,11 @@ + + for ac_func in __getcwd _getcwd + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -42496,42 +39981,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -42542,11 +40020,11 @@ + + for ac_func in __xstat __fxstat __lxstat + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -42599,42 +40077,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -42648,11 +40119,11 @@ + + for ac_func in _stat _lstat _fstat __stat __lstat __fstat + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -42705,42 +40176,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -42756,11 +40220,11 @@ + + for ac_func in _acl __acl _facl __facl _open __open _chdir __chdir + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -42813,42 +40277,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -42862,11 +40319,11 @@ + + for ac_func in _close __close _fchdir __fchdir _fcntl __fcntl + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -42919,42 +40376,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -42968,11 +40418,11 @@ + + for ac_func in getdents __getdents _lseek __lseek _read __read + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -43025,42 +40475,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -43073,11 +40516,11 @@ + + for ac_func in getdirentries _write __write _fork __fork + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -43130,42 +40573,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -43179,11 +40615,11 @@ + + for ac_func in _stat64 __stat64 _fstat64 __fstat64 _lstat64 __lstat64 + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -43236,42 +40672,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -43286,11 +40715,11 @@ + + for ac_func in __sys_llseek llseek _llseek __llseek readdir64 _readdir64 __readdir64 + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -43343,42 +40772,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -43392,11 +40814,11 @@ + + for ac_func in pread _pread __pread pread64 _pread64 __pread64 + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -43449,42 +40871,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -43498,11 +40913,11 @@ + + for ac_func in pwrite _pwrite __pwrite pwrite64 _pwrite64 __pwrite64 + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -43555,42 +40970,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -43602,11 +41010,11 @@ + + for ac_func in open64 _open64 __open64 creat64 + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -43659,42 +41067,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -43703,11 +41104,11 @@ + + for ac_func in prctl + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -43760,42 +41161,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -43827,14 +41221,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -43845,7 +41238,7 @@ + _ACEOF + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -43857,16 +41250,14 @@ + # + # + case "$host_os" in +- *linux*) ++ linux*-gnu* | gnu* | k*bsd*-gnu) + # glibc <= 2.3.2 has a broken getgrouplist + if test "$cross_compiling" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot run test program while cross compiling ++ { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot run test program while cross compiling ++echo "$as_me: error: cannot run test program while cross compiling + See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++ { (exit 1); exit 1; }; } + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -43898,32 +41289,29 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + linux_getgrouplist_ok=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + linux_getgrouplist_ok=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + +@@ -43940,11 +41328,11 @@ + + for ac_func in getgrouplist + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -43997,42 +41385,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -44046,8 +41427,8 @@ + # + + if test x$ac_cv_func_stat64 = xno ; then +- { $as_echo "$as_me:$LINENO: checking for stat64 in " >&5 +-$as_echo_n "checking for stat64 in ... " >&6; } ++ { echo "$as_me:$LINENO: checking for stat64 in " >&5 ++echo $ECHO_N "checking for stat64 in ... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -44074,34 +41455,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_stat64=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +- { $as_echo "$as_me:$LINENO: result: $ac_cv_func_stat64" >&5 +-$as_echo "$ac_cv_func_stat64" >&6; } ++ { echo "$as_me:$LINENO: result: $ac_cv_func_stat64" >&5 ++echo "${ECHO_T}$ac_cv_func_stat64" >&6; } + if test x$ac_cv_func_stat64 = xyes ; then + + cat >>confdefs.h <<\_ACEOF +@@ -44112,8 +41489,8 @@ + fi + + if test x$ac_cv_func_lstat64 = xno ; then +- { $as_echo "$as_me:$LINENO: checking for lstat64 in " >&5 +-$as_echo_n "checking for lstat64 in ... " >&6; } ++ { echo "$as_me:$LINENO: checking for lstat64 in " >&5 ++echo $ECHO_N "checking for lstat64 in ... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -44140,34 +41517,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_lstat64=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +- { $as_echo "$as_me:$LINENO: result: $ac_cv_func_lstat64" >&5 +-$as_echo "$ac_cv_func_lstat64" >&6; } ++ { echo "$as_me:$LINENO: result: $ac_cv_func_lstat64" >&5 ++echo "${ECHO_T}$ac_cv_func_lstat64" >&6; } + if test x$ac_cv_func_lstat64 = xyes ; then + cat >>confdefs.h <<\_ACEOF + #define HAVE_LSTAT64 Whether lstat64() is available +@@ -44177,8 +41550,8 @@ + fi + + if test x$ac_cv_func_fstat64 = xno ; then +- { $as_echo "$as_me:$LINENO: checking for fstat64 in " >&5 +-$as_echo_n "checking for fstat64 in ... " >&6; } ++ { echo "$as_me:$LINENO: checking for fstat64 in " >&5 ++echo $ECHO_N "checking for fstat64 in ... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -44205,34 +41578,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_fstat64=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +- { $as_echo "$as_me:$LINENO: result: $ac_cv_func_fstat64" >&5 +-$as_echo "$ac_cv_func_fstat64" >&6; } ++ { echo "$as_me:$LINENO: result: $ac_cv_func_fstat64" >&5 ++echo "${ECHO_T}$ac_cv_func_fstat64" >&6; } + if test x$ac_cv_func_fstat64 = xyes ; then + + cat >>confdefs.h <<\_ACEOF +@@ -44254,10 +41623,10 @@ + # "struct timespec" or "timespec_t". Linux doesn't have timespec_t, so we + # prefer struct timespec. + +-{ $as_echo "$as_me:$LINENO: checking whether struct stat has sub-second timestamps" >&5 +-$as_echo_n "checking whether struct stat has sub-second timestamps... " >&6; } ++{ echo "$as_me:$LINENO: checking whether struct stat has sub-second timestamps" >&5 ++echo $ECHO_N "checking whether struct stat has sub-second timestamps... $ECHO_C" >&6; } + if test "${samba_cv_stat_hires+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -44304,21 +41673,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_stat_hires=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_stat_hires=no +@@ -44327,8 +41695,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_stat_hires" >&5 +-$as_echo "$samba_cv_stat_hires" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_stat_hires" >&5 ++echo "${ECHO_T}$samba_cv_stat_hires" >&6; } + + if test x"$samba_cv_stat_hires" = x"yes" ; then + +@@ -44353,10 +41721,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking whether struct stat has sub-second timestamps without struct timespec" >&5 +-$as_echo_n "checking whether struct stat has sub-second timestamps without struct timespec... " >&6; } ++{ echo "$as_me:$LINENO: checking whether struct stat has sub-second timestamps without struct timespec" >&5 ++echo $ECHO_N "checking whether struct stat has sub-second timestamps without struct timespec... $ECHO_C" >&6; } + if test "${samba_cv_stat_hires_notimespec+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -44403,21 +41771,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_stat_hires=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_stat_hires=no +@@ -44426,8 +41793,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_stat_hires_notimespec" >&5 +-$as_echo "$samba_cv_stat_hires_notimespec" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_stat_hires_notimespec" >&5 ++echo "${ECHO_T}$samba_cv_stat_hires_notimespec" >&6; } + + if test x"$samba_cv_stat_hires_notimespec" = x"yes" ; then + +@@ -44452,10 +41819,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking whether struct stat has st_birthtimespec" >&5 +-$as_echo_n "checking whether struct stat has st_birthtimespec... " >&6; } ++{ echo "$as_me:$LINENO: checking whether struct stat has st_birthtimespec" >&5 ++echo $ECHO_N "checking whether struct stat has st_birthtimespec... $ECHO_C" >&6; } + if test "${samba_cv_stat_st_birthtimespec+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -44497,21 +41864,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_stat_st_birthtimespec=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_stat_birthtimespec=no +@@ -44520,8 +41886,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_stat_st_birthtimespec" >&5 +-$as_echo "$samba_cv_stat_st_birthtimespec" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_stat_st_birthtimespec" >&5 ++echo "${ECHO_T}$samba_cv_stat_st_birthtimespec" >&6; } + + if test x"$samba_cv_stat_st_birthtimespec" = x"yes" ; then + +@@ -44531,10 +41897,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking whether struct stat has st_birthtimensec" >&5 +-$as_echo_n "checking whether struct stat has st_birthtimensec... " >&6; } ++{ echo "$as_me:$LINENO: checking whether struct stat has st_birthtimensec" >&5 ++echo $ECHO_N "checking whether struct stat has st_birthtimensec... $ECHO_C" >&6; } + if test "${samba_cv_stat_st_birthtimensec+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -44576,21 +41942,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_stat_st_birthtimensec=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_stat_birthtimensec=no +@@ -44599,8 +41964,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_stat_st_birthtimensec" >&5 +-$as_echo "$samba_cv_stat_st_birthtimensec" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_stat_st_birthtimensec" >&5 ++echo "${ECHO_T}$samba_cv_stat_st_birthtimensec" >&6; } + + if test x"$samba_cv_stat_st_birthtimensec" = x"yes" ; then + +@@ -44610,10 +41975,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking whether struct stat has st_birthtime" >&5 +-$as_echo_n "checking whether struct stat has st_birthtime... " >&6; } ++{ echo "$as_me:$LINENO: checking whether struct stat has st_birthtime" >&5 ++echo $ECHO_N "checking whether struct stat has st_birthtime... $ECHO_C" >&6; } + if test "${samba_cv_stat_st_birthtime+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -44655,21 +42020,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_stat_st_birthtime=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_stat_birthtime=no +@@ -44678,8 +42042,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_stat_st_birthtime" >&5 +-$as_echo "$samba_cv_stat_st_birthtime" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_stat_st_birthtime" >&5 ++echo "${ECHO_T}$samba_cv_stat_st_birthtime" >&6; } + + if test x"$samba_cv_stat_st_birthtime" = x"yes" ; then + +@@ -44692,10 +42056,10 @@ + ##################################### + # needed for SRV lookups + +-{ $as_echo "$as_me:$LINENO: checking for dn_expand in -lresolv" >&5 +-$as_echo_n "checking for dn_expand in -lresolv... " >&6; } ++{ echo "$as_me:$LINENO: checking for dn_expand in -lresolv" >&5 ++echo $ECHO_N "checking for dn_expand in -lresolv... $ECHO_C" >&6; } + if test "${ac_cv_lib_resolv_dn_expand+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lresolv $LIBS" +@@ -44727,37 +42091,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_resolv_dn_expand=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_resolv_dn_expand=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_resolv_dn_expand" >&5 +-$as_echo "$ac_cv_lib_resolv_dn_expand" >&6; } +-if test "x$ac_cv_lib_resolv_dn_expand" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_resolv_dn_expand" >&5 ++echo "${ECHO_T}$ac_cv_lib_resolv_dn_expand" >&6; } ++if test $ac_cv_lib_resolv_dn_expand = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_LIBRESOLV 1 + _ACEOF +@@ -44767,10 +42127,10 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking for _dn_expand in -lresolv" >&5 +-$as_echo_n "checking for _dn_expand in -lresolv... " >&6; } ++{ echo "$as_me:$LINENO: checking for _dn_expand in -lresolv" >&5 ++echo $ECHO_N "checking for _dn_expand in -lresolv... $ECHO_C" >&6; } + if test "${ac_cv_lib_resolv__dn_expand+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lresolv $LIBS" +@@ -44802,37 +42162,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_resolv__dn_expand=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_resolv__dn_expand=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_resolv__dn_expand" >&5 +-$as_echo "$ac_cv_lib_resolv__dn_expand" >&6; } +-if test "x$ac_cv_lib_resolv__dn_expand" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_resolv__dn_expand" >&5 ++echo "${ECHO_T}$ac_cv_lib_resolv__dn_expand" >&6; } ++if test $ac_cv_lib_resolv__dn_expand = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_LIBRESOLV 1 + _ACEOF +@@ -44842,10 +42198,10 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking for __dn_expand in -lresolv" >&5 +-$as_echo_n "checking for __dn_expand in -lresolv... " >&6; } ++{ echo "$as_me:$LINENO: checking for __dn_expand in -lresolv" >&5 ++echo $ECHO_N "checking for __dn_expand in -lresolv... $ECHO_C" >&6; } + if test "${ac_cv_lib_resolv___dn_expand+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lresolv $LIBS" +@@ -44877,37 +42233,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_resolv___dn_expand=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_resolv___dn_expand=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_resolv___dn_expand" >&5 +-$as_echo "$ac_cv_lib_resolv___dn_expand" >&6; } +-if test "x$ac_cv_lib_resolv___dn_expand" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_resolv___dn_expand" >&5 ++echo "${ECHO_T}$ac_cv_lib_resolv___dn_expand" >&6; } ++if test $ac_cv_lib_resolv___dn_expand = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_LIBRESOLV 1 + _ACEOF +@@ -44927,11 +42279,11 @@ + + for ac_func in putprpwnam + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -44984,42 +42336,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + # putprpwnam was found in libc or existing $LIBS +@@ -45044,10 +42389,10 @@ + ;; + *) + # putprpwnam was not found, try adding libsecurity +- { $as_echo "$as_me:$LINENO: checking for putprpwnam in -lsecurity" >&5 +-$as_echo_n "checking for putprpwnam in -lsecurity... " >&6; } ++ { echo "$as_me:$LINENO: checking for putprpwnam in -lsecurity" >&5 ++echo $ECHO_N "checking for putprpwnam in -lsecurity... $ECHO_C" >&6; } + if test "${ac_cv_lib_security_putprpwnam+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lsecurity $LIBS" +@@ -45079,37 +42424,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_security_putprpwnam=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_security_putprpwnam=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_security_putprpwnam" >&5 +-$as_echo "$ac_cv_lib_security_putprpwnam" >&6; } +-if test "x$ac_cv_lib_security_putprpwnam" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_security_putprpwnam" >&5 ++echo "${ECHO_T}$ac_cv_lib_security_putprpwnam" >&6; } ++if test $ac_cv_lib_security_putprpwnam = yes; then + + LIBS="-lsecurity $LIBS" + +@@ -45141,11 +42482,11 @@ + + for ac_func in putprpwnam + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -45198,42 +42539,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + # putprpwnam was found in libc or existing $LIBS +@@ -45258,10 +42592,10 @@ + ;; + *) + # putprpwnam was not found, try adding libsec +- { $as_echo "$as_me:$LINENO: checking for putprpwnam in -lsec" >&5 +-$as_echo_n "checking for putprpwnam in -lsec... " >&6; } ++ { echo "$as_me:$LINENO: checking for putprpwnam in -lsec" >&5 ++echo $ECHO_N "checking for putprpwnam in -lsec... $ECHO_C" >&6; } + if test "${ac_cv_lib_sec_putprpwnam+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lsec $LIBS" +@@ -45293,37 +42627,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_sec_putprpwnam=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_sec_putprpwnam=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_sec_putprpwnam" >&5 +-$as_echo "$ac_cv_lib_sec_putprpwnam" >&6; } +-if test "x$ac_cv_lib_sec_putprpwnam" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_sec_putprpwnam" >&5 ++echo "${ECHO_T}$ac_cv_lib_sec_putprpwnam" >&6; } ++if test $ac_cv_lib_sec_putprpwnam = yes; then + + LIBS="-lsec $LIBS" + +@@ -45356,11 +42686,11 @@ + + for ac_func in set_auth_parameters + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -45413,42 +42743,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + # set_auth_parameters was found in libc or existing $LIBS +@@ -45473,10 +42796,10 @@ + ;; + *) + # set_auth_parameters was not found, try adding libsecurity +- { $as_echo "$as_me:$LINENO: checking for set_auth_parameters in -lsecurity" >&5 +-$as_echo_n "checking for set_auth_parameters in -lsecurity... " >&6; } ++ { echo "$as_me:$LINENO: checking for set_auth_parameters in -lsecurity" >&5 ++echo $ECHO_N "checking for set_auth_parameters in -lsecurity... $ECHO_C" >&6; } + if test "${ac_cv_lib_security_set_auth_parameters+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lsecurity $LIBS" +@@ -45508,37 +42831,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_security_set_auth_parameters=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_security_set_auth_parameters=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_security_set_auth_parameters" >&5 +-$as_echo "$ac_cv_lib_security_set_auth_parameters" >&6; } +-if test "x$ac_cv_lib_security_set_auth_parameters" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_security_set_auth_parameters" >&5 ++echo "${ECHO_T}$ac_cv_lib_security_set_auth_parameters" >&6; } ++if test $ac_cv_lib_security_set_auth_parameters = yes; then + + LIBS="-lsecurity $LIBS" + +@@ -45570,11 +42889,11 @@ + + for ac_func in set_auth_parameters + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -45627,42 +42946,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + # set_auth_parameters was found in libc or existing $LIBS +@@ -45687,10 +42999,10 @@ + ;; + *) + # set_auth_parameters was not found, try adding libsec +- { $as_echo "$as_me:$LINENO: checking for set_auth_parameters in -lsec" >&5 +-$as_echo_n "checking for set_auth_parameters in -lsec... " >&6; } ++ { echo "$as_me:$LINENO: checking for set_auth_parameters in -lsec" >&5 ++echo $ECHO_N "checking for set_auth_parameters in -lsec... $ECHO_C" >&6; } + if test "${ac_cv_lib_sec_set_auth_parameters+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lsec $LIBS" +@@ -45722,37 +43034,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_sec_set_auth_parameters=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_sec_set_auth_parameters=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_sec_set_auth_parameters" >&5 +-$as_echo "$ac_cv_lib_sec_set_auth_parameters" >&6; } +-if test "x$ac_cv_lib_sec_set_auth_parameters" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_sec_set_auth_parameters" >&5 ++echo "${ECHO_T}$ac_cv_lib_sec_set_auth_parameters" >&6; } ++if test $ac_cv_lib_sec_set_auth_parameters = yes; then + + LIBS="-lsec $LIBS" + +@@ -45786,11 +43094,11 @@ + + for ac_func in getspnam + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -45843,42 +43151,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + # getspnam was found in libc or existing $LIBS +@@ -45903,10 +43204,10 @@ + ;; + *) + # getspnam was not found, try adding libgen +- { $as_echo "$as_me:$LINENO: checking for getspnam in -lgen" >&5 +-$as_echo_n "checking for getspnam in -lgen... " >&6; } ++ { echo "$as_me:$LINENO: checking for getspnam in -lgen" >&5 ++echo $ECHO_N "checking for getspnam in -lgen... $ECHO_C" >&6; } + if test "${ac_cv_lib_gen_getspnam+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lgen $LIBS" +@@ -45938,37 +43239,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_gen_getspnam=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_gen_getspnam=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_gen_getspnam" >&5 +-$as_echo "$ac_cv_lib_gen_getspnam" >&6; } +-if test "x$ac_cv_lib_gen_getspnam" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_gen_getspnam" >&5 ++echo "${ECHO_T}$ac_cv_lib_gen_getspnam" >&6; } ++if test $ac_cv_lib_gen_getspnam = yes; then + + LIBS="-lgen $LIBS" + +@@ -46001,11 +43298,11 @@ + + for ac_func in getspnam + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -46058,42 +43355,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + # getspnam was found in libc or existing $LIBS +@@ -46118,10 +43408,10 @@ + ;; + *) + # getspnam was not found, try adding libsecurity +- { $as_echo "$as_me:$LINENO: checking for getspnam in -lsecurity" >&5 +-$as_echo_n "checking for getspnam in -lsecurity... " >&6; } ++ { echo "$as_me:$LINENO: checking for getspnam in -lsecurity" >&5 ++echo $ECHO_N "checking for getspnam in -lsecurity... $ECHO_C" >&6; } + if test "${ac_cv_lib_security_getspnam+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lsecurity $LIBS" +@@ -46153,37 +43443,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_security_getspnam=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_security_getspnam=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_security_getspnam" >&5 +-$as_echo "$ac_cv_lib_security_getspnam" >&6; } +-if test "x$ac_cv_lib_security_getspnam" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_security_getspnam" >&5 ++echo "${ECHO_T}$ac_cv_lib_security_getspnam" >&6; } ++if test $ac_cv_lib_security_getspnam = yes; then + + LIBS="-lsecurity $LIBS" + +@@ -46215,11 +43501,11 @@ + + for ac_func in getspnam + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -46272,42 +43558,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + # getspnam was found in libc or existing $LIBS +@@ -46332,10 +43611,10 @@ + ;; + *) + # getspnam was not found, try adding libsec +- { $as_echo "$as_me:$LINENO: checking for getspnam in -lsec" >&5 +-$as_echo_n "checking for getspnam in -lsec... " >&6; } ++ { echo "$as_me:$LINENO: checking for getspnam in -lsec" >&5 ++echo $ECHO_N "checking for getspnam in -lsec... $ECHO_C" >&6; } + if test "${ac_cv_lib_sec_getspnam+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lsec $LIBS" +@@ -46367,37 +43646,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_sec_getspnam=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_sec_getspnam=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_sec_getspnam" >&5 +-$as_echo "$ac_cv_lib_sec_getspnam" >&6; } +-if test "x$ac_cv_lib_sec_getspnam" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_sec_getspnam" >&5 ++echo "${ECHO_T}$ac_cv_lib_sec_getspnam" >&6; } ++if test $ac_cv_lib_sec_getspnam = yes; then + + LIBS="-lsec $LIBS" + +@@ -46430,11 +43705,11 @@ + + for ac_func in bigcrypt + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -46487,42 +43762,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + # bigcrypt was found in libc or existing $LIBS +@@ -46547,10 +43815,10 @@ + ;; + *) + # bigcrypt was not found, try adding libsecurity +- { $as_echo "$as_me:$LINENO: checking for bigcrypt in -lsecurity" >&5 +-$as_echo_n "checking for bigcrypt in -lsecurity... " >&6; } ++ { echo "$as_me:$LINENO: checking for bigcrypt in -lsecurity" >&5 ++echo $ECHO_N "checking for bigcrypt in -lsecurity... $ECHO_C" >&6; } + if test "${ac_cv_lib_security_bigcrypt+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lsecurity $LIBS" +@@ -46582,37 +43850,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_security_bigcrypt=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_security_bigcrypt=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_security_bigcrypt" >&5 +-$as_echo "$ac_cv_lib_security_bigcrypt" >&6; } +-if test "x$ac_cv_lib_security_bigcrypt" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_security_bigcrypt" >&5 ++echo "${ECHO_T}$ac_cv_lib_security_bigcrypt" >&6; } ++if test $ac_cv_lib_security_bigcrypt = yes; then + + LIBS="-lsecurity $LIBS" + +@@ -46644,11 +43908,11 @@ + + for ac_func in bigcrypt + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -46701,42 +43965,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + # bigcrypt was found in libc or existing $LIBS +@@ -46761,10 +44018,10 @@ + ;; + *) + # bigcrypt was not found, try adding libsec +- { $as_echo "$as_me:$LINENO: checking for bigcrypt in -lsec" >&5 +-$as_echo_n "checking for bigcrypt in -lsec... " >&6; } ++ { echo "$as_me:$LINENO: checking for bigcrypt in -lsec" >&5 ++echo $ECHO_N "checking for bigcrypt in -lsec... $ECHO_C" >&6; } + if test "${ac_cv_lib_sec_bigcrypt+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lsec $LIBS" +@@ -46796,37 +44053,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_sec_bigcrypt=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_sec_bigcrypt=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_sec_bigcrypt" >&5 +-$as_echo "$ac_cv_lib_sec_bigcrypt" >&6; } +-if test "x$ac_cv_lib_sec_bigcrypt" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_sec_bigcrypt" >&5 ++echo "${ECHO_T}$ac_cv_lib_sec_bigcrypt" >&6; } ++if test $ac_cv_lib_sec_bigcrypt = yes; then + + LIBS="-lsec $LIBS" + +@@ -46859,11 +44112,11 @@ + + for ac_func in getprpwnam + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -46916,42 +44169,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + # getprpwnam was found in libc or existing $LIBS +@@ -46976,10 +44222,10 @@ + ;; + *) + # getprpwnam was not found, try adding libsecurity +- { $as_echo "$as_me:$LINENO: checking for getprpwnam in -lsecurity" >&5 +-$as_echo_n "checking for getprpwnam in -lsecurity... " >&6; } ++ { echo "$as_me:$LINENO: checking for getprpwnam in -lsecurity" >&5 ++echo $ECHO_N "checking for getprpwnam in -lsecurity... $ECHO_C" >&6; } + if test "${ac_cv_lib_security_getprpwnam+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lsecurity $LIBS" +@@ -47011,37 +44257,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_security_getprpwnam=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_security_getprpwnam=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_security_getprpwnam" >&5 +-$as_echo "$ac_cv_lib_security_getprpwnam" >&6; } +-if test "x$ac_cv_lib_security_getprpwnam" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_security_getprpwnam" >&5 ++echo "${ECHO_T}$ac_cv_lib_security_getprpwnam" >&6; } ++if test $ac_cv_lib_security_getprpwnam = yes; then + + LIBS="-lsecurity $LIBS" + +@@ -47073,11 +44315,11 @@ + + for ac_func in getprpwnam + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -47130,42 +44372,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + # getprpwnam was found in libc or existing $LIBS +@@ -47190,10 +44425,10 @@ + ;; + *) + # getprpwnam was not found, try adding libsec +- { $as_echo "$as_me:$LINENO: checking for getprpwnam in -lsec" >&5 +-$as_echo_n "checking for getprpwnam in -lsec... " >&6; } ++ { echo "$as_me:$LINENO: checking for getprpwnam in -lsec" >&5 ++echo $ECHO_N "checking for getprpwnam in -lsec... $ECHO_C" >&6; } + if test "${ac_cv_lib_sec_getprpwnam+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lsec $LIBS" +@@ -47225,37 +44460,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_sec_getprpwnam=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_sec_getprpwnam=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_sec_getprpwnam" >&5 +-$as_echo "$ac_cv_lib_sec_getprpwnam" >&6; } +-if test "x$ac_cv_lib_sec_getprpwnam" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_sec_getprpwnam" >&5 ++echo "${ECHO_T}$ac_cv_lib_sec_getprpwnam" >&6; } ++if test $ac_cv_lib_sec_getprpwnam = yes; then + + LIBS="-lsec $LIBS" + +@@ -47287,11 +44518,11 @@ + + for ac_func in strsignal + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -47344,42 +44575,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -47390,10 +44614,10 @@ + # Check if we have libattr + case "$host_os" in + *osf*) +- { $as_echo "$as_me:$LINENO: checking for library containing getproplist" >&5 +-$as_echo_n "checking for library containing getproplist... " >&6; } ++ { echo "$as_me:$LINENO: checking for library containing getproplist" >&5 ++echo $ECHO_N "checking for library containing getproplist... $ECHO_C" >&6; } + if test "${ac_cv_search_getproplist+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_func_search_save_LIBS=$LIBS + cat >conftest.$ac_ext <<_ACEOF +@@ -47431,30 +44655,26 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_search_getproplist=$ac_res + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext + if test "${ac_cv_search_getproplist+set}" = set; then +@@ -47469,8 +44689,8 @@ + rm conftest.$ac_ext + LIBS=$ac_func_search_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_search_getproplist" >&5 +-$as_echo "$ac_cv_search_getproplist" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_search_getproplist" >&5 ++echo "${ECHO_T}$ac_cv_search_getproplist" >&6; } + ac_res=$ac_cv_search_getproplist + if test "$ac_res" != no; then + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" +@@ -47483,11 +44703,11 @@ + + for ac_func in getproplist fgetproplist setproplist fsetproplist + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -47540,42 +44760,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -47587,11 +44800,11 @@ + + for ac_func in delproplist fdelproplist add_proplist_entry get_proplist_entry + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -47644,42 +44857,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -47688,11 +44894,11 @@ + + for ac_func in sizeof_proplist_entry + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -47745,42 +44951,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -47788,10 +44987,10 @@ + + ;; + *) +- { $as_echo "$as_me:$LINENO: checking for library containing getxattr" >&5 +-$as_echo_n "checking for library containing getxattr... " >&6; } ++ { echo "$as_me:$LINENO: checking for library containing getxattr" >&5 ++echo $ECHO_N "checking for library containing getxattr... $ECHO_C" >&6; } + if test "${ac_cv_search_getxattr+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_func_search_save_LIBS=$LIBS + cat >conftest.$ac_ext <<_ACEOF +@@ -47829,30 +45028,26 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_search_getxattr=$ac_res + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext + if test "${ac_cv_search_getxattr+set}" = set; then +@@ -47867,8 +45062,8 @@ + rm conftest.$ac_ext + LIBS=$ac_func_search_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_search_getxattr" >&5 +-$as_echo "$ac_cv_search_getxattr" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_search_getxattr" >&5 ++echo "${ECHO_T}$ac_cv_search_getxattr" >&6; } + ac_res=$ac_cv_search_getxattr + if test "$ac_res" != no; then + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" +@@ -47882,11 +45077,11 @@ + + for ac_func in getxattr lgetxattr fgetxattr listxattr llistxattr + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -47939,42 +45134,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -47988,11 +45176,11 @@ + + for ac_func in getea fgetea lgetea listea flistea llistea + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -48045,42 +45233,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -48094,11 +45275,11 @@ + + for ac_func in removeea fremoveea lremoveea setea fsetea lsetea + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -48151,42 +45332,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -48198,11 +45372,11 @@ + + for ac_func in flistxattr removexattr lremovexattr fremovexattr + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -48255,42 +45429,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -48301,11 +45468,11 @@ + + for ac_func in setxattr lsetxattr fsetxattr + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -48358,42 +45525,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -48405,11 +45565,11 @@ + + for ac_func in attr_get attr_list attr_set attr_remove + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -48462,42 +45622,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -48509,11 +45662,11 @@ + + for ac_func in attr_getf attr_listf attr_setf attr_removef + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -48566,42 +45719,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -48617,11 +45763,11 @@ + + for ac_func in attropen + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -48674,42 +45820,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -48721,10 +45860,10 @@ + ######################################################## + # Do xattr functions take additional options like on Darwin? + if test x"$ac_cv_func_getxattr" = x"yes" ; then +- { $as_echo "$as_me:$LINENO: checking whether xattr interface takes additional options" >&5 +-$as_echo_n "checking whether xattr interface takes additional options... " >&6; } ++ { echo "$as_me:$LINENO: checking whether xattr interface takes additional options" >&5 ++echo $ECHO_N "checking whether xattr interface takes additional options... $ECHO_C" >&6; } + if test "${smb_attr_cv_xattr_add_opt+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + old_LIBS=$LIBS +@@ -48759,21 +45898,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + smb_attr_cv_xattr_add_opt=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + smb_attr_cv_xattr_add_opt=no;LIBS=$old_LIBS +@@ -48782,8 +45920,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $smb_attr_cv_xattr_add_opt" >&5 +-$as_echo "$smb_attr_cv_xattr_add_opt" >&6; } ++{ echo "$as_me:$LINENO: result: $smb_attr_cv_xattr_add_opt" >&5 ++echo "${ECHO_T}$smb_attr_cv_xattr_add_opt" >&6; } + if test x"$smb_attr_cv_xattr_add_opt" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -48808,11 +45946,11 @@ + + for ac_func in extattr_delete_fd extattr_delete_file extattr_delete_link + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -48865,42 +46003,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -48911,11 +46042,11 @@ + + for ac_func in extattr_get_fd extattr_get_file extattr_get_link + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -48968,42 +46099,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -49014,11 +46138,11 @@ + + for ac_func in extattr_list_fd extattr_list_file extattr_list_link + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -49071,42 +46195,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -49117,11 +46234,11 @@ + + for ac_func in extattr_set_fd extattr_set_file extattr_set_link + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -49174,42 +46291,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -49275,10 +46385,10 @@ + + if test "x$enable_pie" != xno + then +- { $as_echo "$as_me:$LINENO: checking for -pie and -fPIE" >&5 +-$as_echo_n "checking for -pie and -fPIE... " >&6; } ++ { echo "$as_me:$LINENO: checking for -pie and -fPIE" >&5 ++echo $ECHO_N "checking for -pie and -fPIE... $ECHO_C" >&6; } + if test "${samba_cv_fpie+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat > conftest.c <&5 + (eval $ac_try) 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } + then + samba_cv_fpie=yes +@@ -49299,8 +46409,8 @@ + rm -f conftest* + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_fpie" >&5 +-$as_echo "$samba_cv_fpie" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_fpie" >&5 ++echo "${ECHO_T}$samba_cv_fpie" >&6; } + if test x"${samba_cv_fpie}" = x"yes" + then + PIE_CFLAGS="-fPIE" +@@ -49318,10 +46428,10 @@ + + if test "x$enable_relro" != xno + then +- { $as_echo "$as_me:$LINENO: checking for -Wl,-z,relro" >&5 +-$as_echo_n "checking for -Wl,-z,relro... " >&6; } ++ { echo "$as_me:$LINENO: checking for -Wl,-z,relro" >&5 ++echo $ECHO_N "checking for -Wl,-z,relro... $ECHO_C" >&6; } + if test "${samba_cv_relro+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat > conftest.c <&5 + (eval $ac_try) 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } + then + samba_cv_relro=yes +@@ -49342,8 +46452,8 @@ + rm -f conftest* + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_relro" >&5 +-$as_echo "$samba_cv_relro" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_relro" >&5 ++echo "${ECHO_T}$samba_cv_relro" >&6; } + if test x"${samba_cv_relro}" = x"yes" + then + RELRO_LDFLAGS="-Wl,-z,relro" +@@ -49371,16 +46481,19 @@ + # You need to specify how to create a shared library and + # how to compile C code to produce PIC object files + +- { $as_echo "$as_me:$LINENO: checking ability to build shared libraries" >&5 +-$as_echo_n "checking ability to build shared libraries... " >&6; } ++ { echo "$as_me:$LINENO: checking ability to build shared libraries" >&5 ++echo $ECHO_N "checking ability to build shared libraries... $ECHO_C" >&6; } + + # and these are for particular systems + case "$host_os" in +- *linux*) ++ linux*-gnu* | gnu* | k*bsd*-gnu) ++ case "$host_os" in linux*) ++ + cat >>confdefs.h <<\_ACEOF + #define LINUX 1 + _ACEOF +- ++ ;; ++ esac + BLDSHARED="true" + if test "${ac_cv_gnu_ld_no_default_allow_shlib_undefined}" = "yes"; then + LDSHFLAGS="-shared -Wl,-Bsymbolic -Wl,--allow-shlib-undefined" +@@ -49640,10 +46753,10 @@ + ;; + *dgux*) # Extract the first word of "groff", so it can be a program name with args. + set dummy groff; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } + if test "${ac_cv_prog_ROFF+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test -n "$ROFF"; then + ac_cv_prog_ROFF="$ROFF" # Let the user override the test. +@@ -49656,7 +46769,7 @@ + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ROFF="groff -etpsR -Tascii -man" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -49667,11 +46780,11 @@ + fi + ROFF=$ac_cv_prog_ROFF + if test -n "$ROFF"; then +- { $as_echo "$as_me:$LINENO: result: $ROFF" >&5 +-$as_echo "$ROFF" >&6; } ++ { echo "$as_me:$LINENO: result: $ROFF" >&5 ++echo "${ECHO_T}$ROFF" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + +@@ -49777,54 +46890,54 @@ + LDFLAGS="$LDFLAGS -L./bin" + fi + +-{ $as_echo "$as_me:$LINENO: result: $BLDSHARED" >&5 +-$as_echo "$BLDSHARED" >&6; } ++{ echo "$as_me:$LINENO: result: $BLDSHARED" >&5 ++echo "${ECHO_T}$BLDSHARED" >&6; } + +-{ $as_echo "$as_me:$LINENO: checking LDFLAGS" >&5 +-$as_echo_n "checking LDFLAGS... " >&6; } +-{ $as_echo "$as_me:$LINENO: result: $LDFLAGS" >&5 +-$as_echo "$LDFLAGS" >&6; } +-{ $as_echo "$as_me:$LINENO: checking DYNEXP" >&5 +-$as_echo_n "checking DYNEXP... " >&6; } +-{ $as_echo "$as_me:$LINENO: result: $DYNEXP" >&5 +-$as_echo "$DYNEXP" >&6; } ++{ echo "$as_me:$LINENO: checking LDFLAGS" >&5 ++echo $ECHO_N "checking LDFLAGS... $ECHO_C" >&6; } ++{ echo "$as_me:$LINENO: result: $LDFLAGS" >&5 ++echo "${ECHO_T}$LDFLAGS" >&6; } ++{ echo "$as_me:$LINENO: checking DYNEXP" >&5 ++echo $ECHO_N "checking DYNEXP... $ECHO_C" >&6; } ++{ echo "$as_me:$LINENO: result: $DYNEXP" >&5 ++echo "${ECHO_T}$DYNEXP" >&6; } + + ####################################################### + # test whether building a shared library actually works + if test $BLDSHARED = true; then + +-{ $as_echo "$as_me:$LINENO: checking SHLD" >&5 +-$as_echo_n "checking SHLD... " >&6; } +-{ $as_echo "$as_me:$LINENO: result: $SHLD" >&5 +-$as_echo "$SHLD" >&6; } +-{ $as_echo "$as_me:$LINENO: checking LDSHFLAGS" >&5 +-$as_echo_n "checking LDSHFLAGS... " >&6; } +-{ $as_echo "$as_me:$LINENO: result: $LDSHFLAGS" >&5 +-$as_echo "$LDSHFLAGS" >&6; } +- +-{ $as_echo "$as_me:$LINENO: checking SHLIBEXT" >&5 +-$as_echo_n "checking SHLIBEXT... " >&6; } +-{ $as_echo "$as_me:$LINENO: result: $SHLIBEXT" >&5 +-$as_echo "$SHLIBEXT" >&6; } +-{ $as_echo "$as_me:$LINENO: checking SONAMEFLAG" >&5 +-$as_echo_n "checking SONAMEFLAG... " >&6; } +-{ $as_echo "$as_me:$LINENO: result: $SONAMEFLAG" >&5 +-$as_echo "$SONAMEFLAG" >&6; } +- +-{ $as_echo "$as_me:$LINENO: checking PICFLAG" >&5 +-$as_echo_n "checking PICFLAG... " >&6; } +-{ $as_echo "$as_me:$LINENO: result: $PICFLAG" >&5 +-$as_echo "$PICFLAG" >&6; } +- +-{ $as_echo "$as_me:$LINENO: checking NSSSONAMEVERSIONSUFFIX" >&5 +-$as_echo_n "checking NSSSONAMEVERSIONSUFFIX... " >&6; } +-{ $as_echo "$as_me:$LINENO: result: $NSSSONAMEVERSIONSUFFIX" >&5 +-$as_echo "$NSSSONAMEVERSIONSUFFIX" >&6; } ++{ echo "$as_me:$LINENO: checking SHLD" >&5 ++echo $ECHO_N "checking SHLD... $ECHO_C" >&6; } ++{ echo "$as_me:$LINENO: result: $SHLD" >&5 ++echo "${ECHO_T}$SHLD" >&6; } ++{ echo "$as_me:$LINENO: checking LDSHFLAGS" >&5 ++echo $ECHO_N "checking LDSHFLAGS... $ECHO_C" >&6; } ++{ echo "$as_me:$LINENO: result: $LDSHFLAGS" >&5 ++echo "${ECHO_T}$LDSHFLAGS" >&6; } ++ ++{ echo "$as_me:$LINENO: checking SHLIBEXT" >&5 ++echo $ECHO_N "checking SHLIBEXT... $ECHO_C" >&6; } ++{ echo "$as_me:$LINENO: result: $SHLIBEXT" >&5 ++echo "${ECHO_T}$SHLIBEXT" >&6; } ++{ echo "$as_me:$LINENO: checking SONAMEFLAG" >&5 ++echo $ECHO_N "checking SONAMEFLAG... $ECHO_C" >&6; } ++{ echo "$as_me:$LINENO: result: $SONAMEFLAG" >&5 ++echo "${ECHO_T}$SONAMEFLAG" >&6; } ++ ++{ echo "$as_me:$LINENO: checking PICFLAG" >&5 ++echo $ECHO_N "checking PICFLAG... $ECHO_C" >&6; } ++{ echo "$as_me:$LINENO: result: $PICFLAG" >&5 ++echo "${ECHO_T}$PICFLAG" >&6; } ++ ++{ echo "$as_me:$LINENO: checking NSSSONAMEVERSIONSUFFIX" >&5 ++echo $ECHO_N "checking NSSSONAMEVERSIONSUFFIX... $ECHO_C" >&6; } ++{ echo "$as_me:$LINENO: result: $NSSSONAMEVERSIONSUFFIX" >&5 ++echo "${ECHO_T}$NSSSONAMEVERSIONSUFFIX" >&6; } + +-{ $as_echo "$as_me:$LINENO: checking whether building shared libraries actually works" >&5 +-$as_echo_n "checking whether building shared libraries actually works... " >&6; } ++{ echo "$as_me:$LINENO: checking whether building shared libraries actually works" >&5 ++echo $ECHO_N "checking whether building shared libraries actually works... $ECHO_C" >&6; } + if test "${ac_cv_shlib_works+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + # try building a trivial shared library +@@ -49839,8 +46952,8 @@ + + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_shlib_works" >&5 +-$as_echo "$ac_cv_shlib_works" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_shlib_works" >&5 ++echo "${ECHO_T}$ac_cv_shlib_works" >&6; } + if test $ac_cv_shlib_works = no; then + BLDSHARED=false + fi +@@ -49855,10 +46968,10 @@ + SHLIBEXT="shared_libraries_disabled" + fi + +-{ $as_echo "$as_me:$LINENO: checking used PICFLAG" >&5 +-$as_echo_n "checking used PICFLAG... " >&6; } +-{ $as_echo "$as_me:$LINENO: result: $PICFLAG" >&5 +-$as_echo "$PICFLAG" >&6; } ++{ echo "$as_me:$LINENO: checking used PICFLAG" >&5 ++echo $ECHO_N "checking used PICFLAG... $ECHO_C" >&6; } ++{ echo "$as_me:$LINENO: result: $PICFLAG" >&5 ++echo "${ECHO_T}$PICFLAG" >&6; } + + + cat >>confdefs.h <<_ACEOF +@@ -49899,10 +47012,10 @@ + + ################ + +-{ $as_echo "$as_me:$LINENO: checking for long long" >&5 +-$as_echo_n "checking for long long... " >&6; } ++{ echo "$as_me:$LINENO: checking for long long" >&5 ++echo $ECHO_N "checking for long long... $ECHO_C" >&6; } + if test "${samba_cv_have_longlong+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -49923,85 +47036,47 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_have_longlong=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_have_longlong=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_have_longlong" >&5 +-$as_echo "$samba_cv_have_longlong" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_have_longlong" >&5 ++echo "${ECHO_T}$samba_cv_have_longlong" >&6; } + if test x"$samba_cv_have_longlong" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_LONGLONG 1 + _ACEOF + +- { $as_echo "$as_me:$LINENO: checking for intptr_t" >&5 +-$as_echo_n "checking for intptr_t... " >&6; } ++ { echo "$as_me:$LINENO: checking for intptr_t" >&5 ++echo $ECHO_N "checking for intptr_t... $ECHO_C" >&6; } + if test "${ac_cv_type_intptr_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_intptr_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (intptr_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -50009,11 +47084,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef intptr_t ac__type_new_; + int + main () + { +-if (sizeof ((intptr_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -50024,39 +47102,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_intptr_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_intptr_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_intptr_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_intptr_t" >&5 +-$as_echo "$ac_cv_type_intptr_t" >&6; } +-if test "x$ac_cv_type_intptr_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_intptr_t" >&5 ++echo "${ECHO_T}$ac_cv_type_intptr_t" >&6; } ++if test $ac_cv_type_intptr_t = yes; then + : + else + +@@ -50067,46 +47136,11 @@ + fi + + else +- { $as_echo "$as_me:$LINENO: checking for intptr_t" >&5 +-$as_echo_n "checking for intptr_t... " >&6; } ++ { echo "$as_me:$LINENO: checking for intptr_t" >&5 ++echo $ECHO_N "checking for intptr_t... $ECHO_C" >&6; } + if test "${ac_cv_type_intptr_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_intptr_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-int +-main () +-{ +-if (sizeof (intptr_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -50114,11 +47148,14 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default ++typedef intptr_t ac__type_new_; + int + main () + { +-if (sizeof ((intptr_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -50129,39 +47166,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_intptr_t=yes +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cv_type_intptr_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ++ ac_cv_type_intptr_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_intptr_t" >&5 +-$as_echo "$ac_cv_type_intptr_t" >&6; } +-if test "x$ac_cv_type_intptr_t" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_type_intptr_t" >&5 ++echo "${ECHO_T}$ac_cv_type_intptr_t" >&6; } ++if test $ac_cv_type_intptr_t = yes; then + : + else + +@@ -50177,10 +47205,10 @@ + # Check if the compiler supports the LL prefix on long long integers. + # AIX needs this. + +-{ $as_echo "$as_me:$LINENO: checking for LL suffix on long long integers" >&5 +-$as_echo_n "checking for LL suffix on long long integers... " >&6; } ++{ echo "$as_me:$LINENO: checking for LL suffix on long long integers" >&5 ++echo $ECHO_N "checking for LL suffix on long long integers... $ECHO_C" >&6; } + if test "${samba_cv_compiler_supports_ll+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -50204,21 +47232,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_compiler_supports_ll=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_compiler_supports_ll=no +@@ -50226,8 +47253,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_compiler_supports_ll" >&5 +-$as_echo "$samba_cv_compiler_supports_ll" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_compiler_supports_ll" >&5 ++echo "${ECHO_T}$samba_cv_compiler_supports_ll" >&6; } + if test x"$samba_cv_compiler_supports_ll" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -50237,10 +47264,10 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking for 64 bit time_t" >&5 +-$as_echo_n "checking for 64 bit time_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for 64 bit time_t" >&5 ++echo $ECHO_N "checking for 64 bit time_t... $ECHO_C" >&6; } + if test "${samba_cv_SIZEOF_TIME_T+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -50261,39 +47288,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_SIZEOF_TIME_T=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_SIZEOF_TIME_T=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_SIZEOF_TIME_T" >&5 +-$as_echo "$samba_cv_SIZEOF_TIME_T" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_SIZEOF_TIME_T" >&5 ++echo "${ECHO_T}$samba_cv_SIZEOF_TIME_T" >&6; } + if test x"$samba_cv_SIZEOF_TIME_T" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -50302,10 +47326,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for 64 bit off_t" >&5 +-$as_echo_n "checking for 64 bit off_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for 64 bit off_t" >&5 ++echo $ECHO_N "checking for 64 bit off_t... $ECHO_C" >&6; } + if test "${samba_cv_SIZEOF_OFF_T+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -50327,39 +47351,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_SIZEOF_OFF_T=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_SIZEOF_OFF_T=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_SIZEOF_OFF_T" >&5 +-$as_echo "$samba_cv_SIZEOF_OFF_T" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_SIZEOF_OFF_T" >&5 ++echo "${ECHO_T}$samba_cv_SIZEOF_OFF_T" >&6; } + if test x"$samba_cv_SIZEOF_OFF_T" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -50368,10 +47389,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for off64_t" >&5 +-$as_echo_n "checking for off64_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for off64_t" >&5 ++echo $ECHO_N "checking for off64_t... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_OFF64_T+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -50397,39 +47418,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_OFF64_T=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_OFF64_T=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_OFF64_T" >&5 +-$as_echo "$samba_cv_HAVE_OFF64_T" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_OFF64_T" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_OFF64_T" >&6; } + if test x"$samba_cv_HAVE_OFF64_T" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -50438,10 +47456,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for 64 bit ino_t" >&5 +-$as_echo_n "checking for 64 bit ino_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for 64 bit ino_t" >&5 ++echo $ECHO_N "checking for 64 bit ino_t... $ECHO_C" >&6; } + if test "${samba_cv_SIZEOF_INO_T+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -50467,39 +47485,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_SIZEOF_INO_T=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_SIZEOF_INO_T=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_SIZEOF_INO_T" >&5 +-$as_echo "$samba_cv_SIZEOF_INO_T" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_SIZEOF_INO_T" >&5 ++echo "${ECHO_T}$samba_cv_SIZEOF_INO_T" >&6; } + if test x"$samba_cv_SIZEOF_INO_T" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -50508,10 +47523,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for ino64_t" >&5 +-$as_echo_n "checking for ino64_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for ino64_t" >&5 ++echo $ECHO_N "checking for ino64_t... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_INO64_T+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -50537,39 +47552,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_INO64_T=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_INO64_T=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_INO64_T" >&5 +-$as_echo "$samba_cv_HAVE_INO64_T" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_INO64_T" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_INO64_T" >&6; } + if test x"$samba_cv_HAVE_INO64_T" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -50578,10 +47590,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for 64 bit dev_t" >&5 +-$as_echo_n "checking for 64 bit dev_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for 64 bit dev_t" >&5 ++echo $ECHO_N "checking for 64 bit dev_t... $ECHO_C" >&6; } + if test "${samba_cv_SIZEOF_DEV_T+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -50607,39 +47619,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_SIZEOF_DEV_T=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_SIZEOF_DEV_T=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_SIZEOF_DEV_T" >&5 +-$as_echo "$samba_cv_SIZEOF_DEV_T" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_SIZEOF_DEV_T" >&5 ++echo "${ECHO_T}$samba_cv_SIZEOF_DEV_T" >&6; } + if test x"$samba_cv_SIZEOF_DEV_T" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -50648,10 +47657,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for dev64_t" >&5 +-$as_echo_n "checking for dev64_t... " >&6; } ++{ echo "$as_me:$LINENO: checking for dev64_t" >&5 ++echo $ECHO_N "checking for dev64_t... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_DEV64_T+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -50677,39 +47686,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_DEV64_T=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_DEV64_T=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_DEV64_T" >&5 +-$as_echo "$samba_cv_HAVE_DEV64_T" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_DEV64_T" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_DEV64_T" >&6; } + if test x"$samba_cv_HAVE_DEV64_T" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -50718,10 +47724,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for struct dirent64" >&5 +-$as_echo_n "checking for struct dirent64... " >&6; } ++{ echo "$as_me:$LINENO: checking for struct dirent64" >&5 ++echo $ECHO_N "checking for struct dirent64... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_STRUCT_DIR64+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -50750,21 +47756,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_STRUCT_DIR64=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_STRUCT_DIR64=no +@@ -50772,8 +47777,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_STRUCT_DIR64" >&5 +-$as_echo "$samba_cv_HAVE_STRUCT_DIR64" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_STRUCT_DIR64" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_STRUCT_DIR64" >&6; } + if test x"$samba_cv_HAVE_STRUCT_DIR64" = x"yes" && test x"$ac_cv_func_readdir64" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -50782,10 +47787,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for struct dirent64" >&5 +-$as_echo_n "checking for struct dirent64... " >&6; } ++{ echo "$as_me:$LINENO: checking for struct dirent64" >&5 ++echo $ECHO_N "checking for struct dirent64... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_STRUCT_DIRENT64+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -50814,21 +47819,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_STRUCT_DIRENT64=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_STRUCT_DIRENT64=no +@@ -50836,8 +47840,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_STRUCT_DIRENT64" >&5 +-$as_echo "$samba_cv_HAVE_STRUCT_DIRENT64" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_STRUCT_DIRENT64" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_STRUCT_DIRENT64" >&6; } + if test x"$samba_cv_HAVE_STRUCT_DIRENT64" = x"yes" && test x"$ac_cv_func_readdir64" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -50846,10 +47850,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for major macro" >&5 +-$as_echo_n "checking for major macro... " >&6; } ++{ echo "$as_me:$LINENO: checking for major macro" >&5 ++echo $ECHO_N "checking for major macro... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_DEVICE_MAJOR_FN+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -50874,39 +47878,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_DEVICE_MAJOR_FN=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_DEVICE_MAJOR_FN=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_DEVICE_MAJOR_FN" >&5 +-$as_echo "$samba_cv_HAVE_DEVICE_MAJOR_FN" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_DEVICE_MAJOR_FN" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_DEVICE_MAJOR_FN" >&6; } + if test x"$samba_cv_HAVE_DEVICE_MAJOR_FN" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -50915,10 +47916,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for minor macro" >&5 +-$as_echo_n "checking for minor macro... " >&6; } ++{ echo "$as_me:$LINENO: checking for minor macro" >&5 ++echo $ECHO_N "checking for minor macro... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_DEVICE_MINOR_FN+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -50943,39 +47944,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_DEVICE_MINOR_FN=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_DEVICE_MINOR_FN=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_DEVICE_MINOR_FN" >&5 +-$as_echo "$samba_cv_HAVE_DEVICE_MINOR_FN" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_DEVICE_MINOR_FN" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_DEVICE_MINOR_FN" >&6; } + if test x"$samba_cv_HAVE_DEVICE_MINOR_FN" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -50984,10 +47982,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for makedev macro" >&5 +-$as_echo_n "checking for makedev macro... " >&6; } ++{ echo "$as_me:$LINENO: checking for makedev macro" >&5 ++echo $ECHO_N "checking for makedev macro... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_MAKEDEV+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -51012,39 +48010,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_MAKEDEV=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_MAKEDEV=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_MAKEDEV" >&5 +-$as_echo "$samba_cv_HAVE_MAKEDEV" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_MAKEDEV" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_MAKEDEV" >&6; } + if test x"$samba_cv_HAVE_MAKEDEV" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -51053,10 +48048,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for unsigned char" >&5 +-$as_echo_n "checking for unsigned char... " >&6; } ++{ echo "$as_me:$LINENO: checking for unsigned char" >&5 ++echo $ECHO_N "checking for unsigned char... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_UNSIGNED_CHAR+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -51077,39 +48072,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_UNSIGNED_CHAR=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_UNSIGNED_CHAR=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_UNSIGNED_CHAR" >&5 +-$as_echo "$samba_cv_HAVE_UNSIGNED_CHAR" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_UNSIGNED_CHAR" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_UNSIGNED_CHAR" >&6; } + if test x"$samba_cv_HAVE_UNSIGNED_CHAR" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -51118,10 +48110,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking whether seekdir returns void" >&5 +-$as_echo_n "checking whether seekdir returns void... " >&6; } ++{ echo "$as_me:$LINENO: checking whether seekdir returns void" >&5 ++echo $ECHO_N "checking whether seekdir returns void... $ECHO_C" >&6; } + if test "${samba_cv_SEEKDIR_RETURNS_VOID+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -51147,21 +48139,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_SEEKDIR_RETURNS_VOID=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_SEEKDIR_RETURNS_VOID=no +@@ -51169,8 +48160,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_SEEKDIR_RETURNS_VOID" >&5 +-$as_echo "$samba_cv_SEEKDIR_RETURNS_VOID" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_SEEKDIR_RETURNS_VOID" >&5 ++echo "${ECHO_T}$samba_cv_SEEKDIR_RETURNS_VOID" >&6; } + if test x"$samba_cv_SEEKDIR_RETURNS_VOID" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -51179,10 +48170,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for __FUNCTION__ macro" >&5 +-$as_echo_n "checking for __FUNCTION__ macro... " >&6; } ++{ echo "$as_me:$LINENO: checking for __FUNCTION__ macro" >&5 ++echo $ECHO_N "checking for __FUNCTION__ macro... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_FUNCTION_MACRO+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -51206,21 +48197,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_FUNCTION_MACRO=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_FUNCTION_MACRO=no +@@ -51228,8 +48218,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_FUNCTION_MACRO" >&5 +-$as_echo "$samba_cv_HAVE_FUNCTION_MACRO" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_FUNCTION_MACRO" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_FUNCTION_MACRO" >&6; } + if test x"$samba_cv_HAVE_FUNCTION_MACRO" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -51238,10 +48228,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking if gettimeofday takes tz argument" >&5 +-$as_echo_n "checking if gettimeofday takes tz argument... " >&6; } ++{ echo "$as_me:$LINENO: checking if gettimeofday takes tz argument" >&5 ++echo $ECHO_N "checking if gettimeofday takes tz argument... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_GETTIMEOFDAY_TZ+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -51267,35 +48257,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_GETTIMEOFDAY_TZ=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_GETTIMEOFDAY_TZ=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_GETTIMEOFDAY_TZ" >&5 +-$as_echo "$samba_cv_HAVE_GETTIMEOFDAY_TZ" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_GETTIMEOFDAY_TZ" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_GETTIMEOFDAY_TZ" >&6; } + if test x"$samba_cv_HAVE_GETTIMEOFDAY_TZ" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -51315,11 +48301,11 @@ + + for ac_func in clock_gettime + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -51372,42 +48358,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + # clock_gettime was found in libc or existing $LIBS +@@ -51419,8 +48398,8 @@ + _ACEOF + + +- { $as_echo "$as_me:$LINENO: checking for CLOCK_MONOTONIC" >&5 +-$as_echo_n "checking for CLOCK_MONOTONIC... " >&6; } ++ { echo "$as_me:$LINENO: checking for CLOCK_MONOTONIC" >&5 ++echo $ECHO_N "checking for CLOCK_MONOTONIC... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -51455,24 +48434,21 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define HAVE_CLOCK_MONOTONIC 1 +@@ -51480,22 +48456,21 @@ + + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + +- { $as_echo "$as_me:$LINENO: checking for CLOCK_PROCESS_CPUTIME_ID" >&5 +-$as_echo_n "checking for CLOCK_PROCESS_CPUTIME_ID... " >&6; } ++ { echo "$as_me:$LINENO: checking for CLOCK_PROCESS_CPUTIME_ID" >&5 ++echo $ECHO_N "checking for CLOCK_PROCESS_CPUTIME_ID... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -51530,24 +48505,21 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define HAVE_CLOCK_PROCESS_CPUTIME_ID 1 +@@ -51555,22 +48527,21 @@ + + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + +- { $as_echo "$as_me:$LINENO: checking for CLOCK_REALTIME" >&5 +-$as_echo_n "checking for CLOCK_REALTIME... " >&6; } ++ { echo "$as_me:$LINENO: checking for CLOCK_REALTIME" >&5 ++echo $ECHO_N "checking for CLOCK_REALTIME... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -51605,24 +48576,21 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define HAVE_CLOCK_REALTIME 1 +@@ -51630,16 +48598,15 @@ + + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +@@ -51659,10 +48626,10 @@ + ;; + *) + # clock_gettime was not found, try adding librt +- { $as_echo "$as_me:$LINENO: checking for clock_gettime in -lrt" >&5 +-$as_echo_n "checking for clock_gettime in -lrt... " >&6; } ++ { echo "$as_me:$LINENO: checking for clock_gettime in -lrt" >&5 ++echo $ECHO_N "checking for clock_gettime in -lrt... $ECHO_C" >&6; } + if test "${ac_cv_lib_rt_clock_gettime+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lrt $LIBS" +@@ -51694,37 +48661,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_rt_clock_gettime=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_rt_clock_gettime=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_rt_clock_gettime" >&5 +-$as_echo "$ac_cv_lib_rt_clock_gettime" >&6; } +-if test "x$ac_cv_lib_rt_clock_gettime" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_rt_clock_gettime" >&5 ++echo "${ECHO_T}$ac_cv_lib_rt_clock_gettime" >&6; } ++if test $ac_cv_lib_rt_clock_gettime = yes; then + + LIBS="-lrt $LIBS" + +@@ -51735,8 +48698,8 @@ + _ACEOF + + +- { $as_echo "$as_me:$LINENO: checking for CLOCK_MONOTONIC" >&5 +-$as_echo_n "checking for CLOCK_MONOTONIC... " >&6; } ++ { echo "$as_me:$LINENO: checking for CLOCK_MONOTONIC" >&5 ++echo $ECHO_N "checking for CLOCK_MONOTONIC... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -51771,24 +48734,21 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define HAVE_CLOCK_MONOTONIC 1 +@@ -51796,22 +48756,21 @@ + + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + +- { $as_echo "$as_me:$LINENO: checking for CLOCK_PROCESS_CPUTIME_ID" >&5 +-$as_echo_n "checking for CLOCK_PROCESS_CPUTIME_ID... " >&6; } ++ { echo "$as_me:$LINENO: checking for CLOCK_PROCESS_CPUTIME_ID" >&5 ++echo $ECHO_N "checking for CLOCK_PROCESS_CPUTIME_ID... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -51846,24 +48805,21 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define HAVE_CLOCK_PROCESS_CPUTIME_ID 1 +@@ -51871,22 +48827,21 @@ + + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + +- { $as_echo "$as_me:$LINENO: checking for CLOCK_REALTIME" >&5 +-$as_echo_n "checking for CLOCK_REALTIME... " >&6; } ++ { echo "$as_me:$LINENO: checking for CLOCK_REALTIME" >&5 ++echo $ECHO_N "checking for CLOCK_REALTIME... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -51921,24 +48876,21 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define HAVE_CLOCK_REALTIME 1 +@@ -51946,16 +48898,15 @@ + + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +@@ -51982,10 +48933,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for broken readdir name" >&5 +-$as_echo_n "checking for broken readdir name... " >&6; } ++{ echo "$as_me:$LINENO: checking for broken readdir name" >&5 ++echo $ECHO_N "checking for broken readdir name... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_BROKEN_READDIR_NAME+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -52009,39 +48960,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_BROKEN_READDIR_NAME=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_BROKEN_READDIR_NAME=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_BROKEN_READDIR_NAME" >&5 +-$as_echo "$samba_cv_HAVE_BROKEN_READDIR_NAME" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_BROKEN_READDIR_NAME" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_BROKEN_READDIR_NAME" >&6; } + if test x"$samba_cv_HAVE_BROKEN_READDIR_NAME" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -52050,10 +48998,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for utimbuf" >&5 +-$as_echo_n "checking for utimbuf... " >&6; } ++{ echo "$as_me:$LINENO: checking for utimbuf" >&5 ++echo $ECHO_N "checking for utimbuf... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_UTIMBUF+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -52078,21 +49026,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_UTIMBUF=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_UTIMBUF=no +@@ -52100,8 +49047,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_UTIMBUF" >&5 +-$as_echo "$samba_cv_HAVE_UTIMBUF" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_UTIMBUF" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_UTIMBUF" >&6; } + if test x"$samba_cv_HAVE_UTIMBUF" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -52121,11 +49068,11 @@ + + for ac_func in pututline pututxline updwtmp updwtmpx getutmpx + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -52178,52 +49125,45 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi + done + + +-{ $as_echo "$as_me:$LINENO: checking for ut_name in utmp" >&5 +-$as_echo_n "checking for ut_name in utmp... " >&6; } ++{ echo "$as_me:$LINENO: checking for ut_name in utmp" >&5 ++echo $ECHO_N "checking for ut_name in utmp... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_UT_UT_NAME+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -52248,21 +49188,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_UT_UT_NAME=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_UT_UT_NAME=no +@@ -52270,8 +49209,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_NAME" >&5 +-$as_echo "$samba_cv_HAVE_UT_UT_NAME" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_NAME" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_UT_UT_NAME" >&6; } + if test x"$samba_cv_HAVE_UT_UT_NAME" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -52280,10 +49219,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for ut_user in utmp" >&5 +-$as_echo_n "checking for ut_user in utmp... " >&6; } ++{ echo "$as_me:$LINENO: checking for ut_user in utmp" >&5 ++echo $ECHO_N "checking for ut_user in utmp... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_UT_UT_USER+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -52308,21 +49247,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_UT_UT_USER=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_UT_UT_USER=no +@@ -52330,8 +49268,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_USER" >&5 +-$as_echo "$samba_cv_HAVE_UT_UT_USER" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_USER" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_UT_UT_USER" >&6; } + if test x"$samba_cv_HAVE_UT_UT_USER" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -52340,10 +49278,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for ut_id in utmp" >&5 +-$as_echo_n "checking for ut_id in utmp... " >&6; } ++{ echo "$as_me:$LINENO: checking for ut_id in utmp" >&5 ++echo $ECHO_N "checking for ut_id in utmp... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_UT_UT_ID+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -52368,21 +49306,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_UT_UT_ID=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_UT_UT_ID=no +@@ -52390,8 +49327,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_ID" >&5 +-$as_echo "$samba_cv_HAVE_UT_UT_ID" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_ID" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_UT_UT_ID" >&6; } + if test x"$samba_cv_HAVE_UT_UT_ID" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -52400,10 +49337,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for ut_host in utmp" >&5 +-$as_echo_n "checking for ut_host in utmp... " >&6; } ++{ echo "$as_me:$LINENO: checking for ut_host in utmp" >&5 ++echo $ECHO_N "checking for ut_host in utmp... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_UT_UT_HOST+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -52428,21 +49365,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_UT_UT_HOST=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_UT_UT_HOST=no +@@ -52450,8 +49386,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_HOST" >&5 +-$as_echo "$samba_cv_HAVE_UT_UT_HOST" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_HOST" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_UT_UT_HOST" >&6; } + if test x"$samba_cv_HAVE_UT_UT_HOST" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -52460,10 +49396,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for ut_time in utmp" >&5 +-$as_echo_n "checking for ut_time in utmp... " >&6; } ++{ echo "$as_me:$LINENO: checking for ut_time in utmp" >&5 ++echo $ECHO_N "checking for ut_time in utmp... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_UT_UT_TIME+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -52488,21 +49424,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_UT_UT_TIME=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_UT_UT_TIME=no +@@ -52510,8 +49445,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_TIME" >&5 +-$as_echo "$samba_cv_HAVE_UT_UT_TIME" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_TIME" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_UT_UT_TIME" >&6; } + if test x"$samba_cv_HAVE_UT_UT_TIME" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -52520,10 +49455,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for ut_tv in utmp" >&5 +-$as_echo_n "checking for ut_tv in utmp... " >&6; } ++{ echo "$as_me:$LINENO: checking for ut_tv in utmp" >&5 ++echo $ECHO_N "checking for ut_tv in utmp... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_UT_UT_TV+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -52548,21 +49483,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_UT_UT_TV=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_UT_UT_TV=no +@@ -52570,8 +49504,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_TV" >&5 +-$as_echo "$samba_cv_HAVE_UT_UT_TV" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_TV" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_UT_UT_TV" >&6; } + if test x"$samba_cv_HAVE_UT_UT_TV" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -52580,10 +49514,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for ut_type in utmp" >&5 +-$as_echo_n "checking for ut_type in utmp... " >&6; } ++{ echo "$as_me:$LINENO: checking for ut_type in utmp" >&5 ++echo $ECHO_N "checking for ut_type in utmp... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_UT_UT_TYPE+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -52608,21 +49542,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_UT_UT_TYPE=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_UT_UT_TYPE=no +@@ -52630,8 +49563,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_TYPE" >&5 +-$as_echo "$samba_cv_HAVE_UT_UT_TYPE" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_TYPE" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_UT_UT_TYPE" >&6; } + if test x"$samba_cv_HAVE_UT_UT_TYPE" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -52640,10 +49573,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for ut_pid in utmp" >&5 +-$as_echo_n "checking for ut_pid in utmp... " >&6; } ++{ echo "$as_me:$LINENO: checking for ut_pid in utmp" >&5 ++echo $ECHO_N "checking for ut_pid in utmp... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_UT_UT_PID+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -52668,21 +49601,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_UT_UT_PID=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_UT_UT_PID=no +@@ -52690,8 +49622,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_PID" >&5 +-$as_echo "$samba_cv_HAVE_UT_UT_PID" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_PID" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_UT_UT_PID" >&6; } + if test x"$samba_cv_HAVE_UT_UT_PID" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -52700,10 +49632,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for ut_exit in utmp" >&5 +-$as_echo_n "checking for ut_exit in utmp... " >&6; } ++{ echo "$as_me:$LINENO: checking for ut_exit in utmp" >&5 ++echo $ECHO_N "checking for ut_exit in utmp... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_UT_UT_EXIT+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -52728,21 +49660,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_UT_UT_EXIT=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_UT_UT_EXIT=no +@@ -52750,8 +49681,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_EXIT" >&5 +-$as_echo "$samba_cv_HAVE_UT_UT_EXIT" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_EXIT" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_UT_UT_EXIT" >&6; } + if test x"$samba_cv_HAVE_UT_UT_EXIT" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -52760,10 +49691,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for ut_addr_v6 in utmp" >&5 +-$as_echo_n "checking for ut_addr_v6 in utmp... " >&6; } ++{ echo "$as_me:$LINENO: checking for ut_addr_v6 in utmp" >&5 ++echo $ECHO_N "checking for ut_addr_v6 in utmp... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_UT_UT_ADDR_V6+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -52788,21 +49719,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_UT_UT_ADDR_V6=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_UT_UT_ADDR_V6=no +@@ -52810,8 +49740,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_ADDR_V6" >&5 +-$as_echo "$samba_cv_HAVE_UT_UT_ADDR_V6" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_ADDR_V6" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_UT_UT_ADDR_V6" >&6; } + if test x"$samba_cv_HAVE_UT_UT_ADDR_V6" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -52820,10 +49750,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for ut_addr in utmp" >&5 +-$as_echo_n "checking for ut_addr in utmp... " >&6; } ++{ echo "$as_me:$LINENO: checking for ut_addr in utmp" >&5 ++echo $ECHO_N "checking for ut_addr in utmp... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_UT_UT_ADDR+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -52848,21 +49778,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_UT_UT_ADDR=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_UT_UT_ADDR=no +@@ -52870,8 +49799,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_ADDR" >&5 +-$as_echo "$samba_cv_HAVE_UT_UT_ADDR" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_UT_UT_ADDR" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_UT_UT_ADDR" >&6; } + if test x"$samba_cv_HAVE_UT_UT_ADDR" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -52881,10 +49810,10 @@ + fi + + if test x$ac_cv_func_pututline = xyes ; then +- { $as_echo "$as_me:$LINENO: checking whether pututline returns pointer" >&5 +-$as_echo_n "checking whether pututline returns pointer... " >&6; } ++ { echo "$as_me:$LINENO: checking whether pututline returns pointer" >&5 ++echo $ECHO_N "checking whether pututline returns pointer... $ECHO_C" >&6; } + if test "${samba_cv_PUTUTLINE_RETURNS_UTMP+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -52909,21 +49838,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_PUTUTLINE_RETURNS_UTMP=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_PUTUTLINE_RETURNS_UTMP=no +@@ -52931,8 +49859,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_PUTUTLINE_RETURNS_UTMP" >&5 +-$as_echo "$samba_cv_PUTUTLINE_RETURNS_UTMP" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_PUTUTLINE_RETURNS_UTMP" >&5 ++echo "${ECHO_T}$samba_cv_PUTUTLINE_RETURNS_UTMP" >&6; } + if test x"$samba_cv_PUTUTLINE_RETURNS_UTMP" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -52942,10 +49870,10 @@ + fi + fi + +-{ $as_echo "$as_me:$LINENO: checking for ut_syslen in utmpx" >&5 +-$as_echo_n "checking for ut_syslen in utmpx... " >&6; } ++{ echo "$as_me:$LINENO: checking for ut_syslen in utmpx" >&5 ++echo $ECHO_N "checking for ut_syslen in utmpx... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_UX_UT_SYSLEN+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -52970,21 +49898,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_UX_UT_SYSLEN=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_UX_UT_SYSLEN=no +@@ -52992,8 +49919,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_UX_UT_SYSLEN" >&5 +-$as_echo "$samba_cv_HAVE_UX_UT_SYSLEN" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_UX_UT_SYSLEN" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_UX_UT_SYSLEN" >&6; } + if test x"$samba_cv_HAVE_UX_UT_SYSLEN" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -53012,8 +49939,8 @@ + if test "${with_libiconv+set}" = set; then + withval=$with_libiconv; + if test "$withval" = "no" ; then +- { { $as_echo "$as_me:$LINENO: error: argument to --with-libiconv must be a directory" >&5 +-$as_echo "$as_me: error: argument to --with-libiconv must be a directory" >&2;} ++ { { echo "$as_me:$LINENO: error: argument to --with-libiconv must be a directory" >&5 ++echo "$as_me: error: argument to --with-libiconv must be a directory" >&2;} + { (exit 1); exit 1; }; } + else + if test "$withval" != "yes" ; then +@@ -53060,8 +49987,8 @@ + export LDFLAGS LIBS CPPFLAGS + # Try to find iconv(3) + +- { $as_echo "$as_me:$LINENO: checking for iconv in $i/$l" >&5 +-$as_echo_n "checking for iconv in $i/$l... " >&6; } ++ { echo "$as_me:$LINENO: checking for iconv in $i/$l" >&5 ++echo $ECHO_N "checking for iconv in $i/$l... $ECHO_C" >&6; } + jm_cv_func_iconv="no" + jm_cv_lib_iconv="" + jm_cv_giconv=no +@@ -53092,33 +50019,29 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + jm_cv_func_iconv=yes + jm_cv_include="giconv.h" + jm_cv_giconv="yes" + jm_cv_lib_iconv="" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +@@ -53147,32 +50070,28 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + jm_cv_include="iconv.h" + jm_cv_func_iconv=yes + jm_cv_lib_iconv="" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +@@ -53203,34 +50122,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + jm_cv_lib_iconv=yes + jm_cv_func_iconv=yes + jm_cv_include="giconv.h" + jm_cv_giconv=yes + jm_cv_lib_iconv="giconv" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +@@ -53263,32 +50178,28 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + jm_cv_include="iconv.h" + jm_cv_func_iconv=yes + jm_cv_lib_iconv="iconv" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS="$jm_save_LIBS" +@@ -53320,34 +50231,30 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + jm_cv_lib_iconv=yes + jm_cv_func_iconv=yes + jm_cv_include="biconv.h" + jm_cv_biconv=yes + jm_cv_lib_iconv="biconv" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +@@ -53364,8 +50271,8 @@ + #define HAVE_GICONV 1 + _ACEOF + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + ICONV_FOUND=yes + else + if test "$jm_cv_biconv" = yes; then +@@ -53374,8 +50281,8 @@ + #define HAVE_BICONV 1 + _ACEOF + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + ICONV_FOUND=yes + else + +@@ -53383,14 +50290,14 @@ + #define HAVE_ICONV 1 + _ACEOF + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + ICONV_FOUND=yes + fi + fi + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + if test x"$ICONV_FOUND" = "xyes" ; then +@@ -53427,8 +50334,8 @@ + # check for default dos charset name + for j in CP850 IBM850 ; do + +- { $as_echo "$as_me:$LINENO: checking can we convert from $j to UCS2-LE?" >&5 +-$as_echo_n "checking can we convert from $j to UCS2-LE?... " >&6; } ++ { echo "$as_me:$LINENO: checking can we convert from $j to UCS2-LE?" >&5 ++echo $ECHO_N "checking can we convert from $j to UCS2-LE?... $ECHO_C" >&6; } + if test "$cross_compiling" = yes; then + ICONV_CHARSET=cross + else +@@ -53455,38 +50362,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ICONV_CHARSET=$j + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + ICONV_CHARSET=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + +- { $as_echo "$as_me:$LINENO: result: $ICONV_CHARSET" >&5 +-$as_echo "$ICONV_CHARSET" >&6; } ++ { echo "$as_me:$LINENO: result: $ICONV_CHARSET" >&5 ++echo "${ECHO_T}$ICONV_CHARSET" >&6; } + + default_dos_charset="$ICONV_CHARSET" + if test x"$default_dos_charset" = x"$j"; then +@@ -53497,8 +50401,8 @@ + # check for default display charset name + for j in ASCII 646 ; do + +- { $as_echo "$as_me:$LINENO: checking can we convert from $j to UCS2-LE?" >&5 +-$as_echo_n "checking can we convert from $j to UCS2-LE?... " >&6; } ++ { echo "$as_me:$LINENO: checking can we convert from $j to UCS2-LE?" >&5 ++echo $ECHO_N "checking can we convert from $j to UCS2-LE?... $ECHO_C" >&6; } + if test "$cross_compiling" = yes; then + ICONV_CHARSET=cross + else +@@ -53525,38 +50429,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ICONV_CHARSET=$j + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + ICONV_CHARSET=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + +- { $as_echo "$as_me:$LINENO: result: $ICONV_CHARSET" >&5 +-$as_echo "$ICONV_CHARSET" >&6; } ++ { echo "$as_me:$LINENO: result: $ICONV_CHARSET" >&5 ++echo "${ECHO_T}$ICONV_CHARSET" >&6; } + + default_display_charset="$ICONV_CHARSET" + if test x"$default_display_charset" = x"$j"; then +@@ -53567,8 +50468,8 @@ + # check for default unix charset name + for j in UTF-8 UTF8 ; do + +- { $as_echo "$as_me:$LINENO: checking can we convert from $j to UCS2-LE?" >&5 +-$as_echo_n "checking can we convert from $j to UCS2-LE?... " >&6; } ++ { echo "$as_me:$LINENO: checking can we convert from $j to UCS2-LE?" >&5 ++echo $ECHO_N "checking can we convert from $j to UCS2-LE?... $ECHO_C" >&6; } + if test "$cross_compiling" = yes; then + ICONV_CHARSET=cross + else +@@ -53595,38 +50496,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ICONV_CHARSET=$j + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + ICONV_CHARSET=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + +- { $as_echo "$as_me:$LINENO: result: $ICONV_CHARSET" >&5 +-$as_echo "$ICONV_CHARSET" >&6; } ++ { echo "$as_me:$LINENO: result: $ICONV_CHARSET" >&5 ++echo "${ECHO_T}$ICONV_CHARSET" >&6; } + + default_unix_charset="$ICONV_CHARSET" + if test x"$default_unix_charset" = x"$j"; then +@@ -53664,10 +50562,10 @@ + default_display_charset="ASCII" + default_unix_charset="UTF-8" + samba_cv_HAVE_NATIVE_ICONV=yes +- { $as_echo "$as_me:$LINENO: WARNING: assuming the libiconv in $iconv_current_LDFLAGS can convert" >&5 +-$as_echo "$as_me: WARNING: assuming the libiconv in $iconv_current_LDFLAGS can convert" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $default_dos_charset, $default_display_charset and $default_unix_charset to UCS-16LE" >&5 +-$as_echo "$as_me: WARNING: $default_dos_charset, $default_display_charset and $default_unix_charset to UCS-16LE" >&2;} ++ { echo "$as_me:$LINENO: WARNING: assuming the libiconv in $iconv_current_LDFLAGS can convert" >&5 ++echo "$as_me: WARNING: assuming the libiconv in $iconv_current_LDFLAGS can convert" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $default_dos_charset, $default_display_charset and $default_unix_charset to UCS-16LE" >&5 ++echo "$as_me: WARNING: $default_dos_charset, $default_display_charset and $default_unix_charset to UCS-16LE" >&2;} + fi + + if test x"$samba_cv_HAVE_NATIVE_ICONV" = x"yes" ; then +@@ -53726,9 +50624,9 @@ + + + if test x"$ICONV_FOUND" = x"no" -o x"$samba_cv_HAVE_NATIVE_ICONV" != x"yes" ; then +- { $as_echo "$as_me:$LINENO: WARNING: Sufficient support for iconv function was not found. ++ { echo "$as_me:$LINENO: WARNING: Sufficient support for iconv function was not found. + Install libiconv from http://freshmeat.net/projects/libiconv/ for better charset compatibility!" >&5 +-$as_echo "$as_me: WARNING: Sufficient support for iconv function was not found. ++echo "$as_me: WARNING: Sufficient support for iconv function was not found. + Install libiconv from http://freshmeat.net/projects/libiconv/ for better charset compatibility!" >&2;} + + cat >>confdefs.h <<_ACEOF +@@ -53748,10 +50646,10 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking for Linux kernel oplocks" >&5 +-$as_echo_n "checking for Linux kernel oplocks... " >&6; } ++{ echo "$as_me:$LINENO: checking for Linux kernel oplocks" >&5 ++echo $ECHO_N "checking for Linux kernel oplocks... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_KERNEL_OPLOCKS_LINUX+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -53781,39 +50679,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_KERNEL_OPLOCKS_LINUX" >&5 +-$as_echo "$samba_cv_HAVE_KERNEL_OPLOCKS_LINUX" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_KERNEL_OPLOCKS_LINUX" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_KERNEL_OPLOCKS_LINUX" >&6; } + if test x"$samba_cv_HAVE_KERNEL_OPLOCKS_LINUX" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -53822,10 +50717,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for kernel change notify support" >&5 +-$as_echo_n "checking for kernel change notify support... " >&6; } ++{ echo "$as_me:$LINENO: checking for kernel change notify support" >&5 ++echo $ECHO_N "checking for kernel change notify support... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_KERNEL_CHANGE_NOTIFY+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -53855,39 +50750,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_KERNEL_CHANGE_NOTIFY=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_KERNEL_CHANGE_NOTIFY=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_KERNEL_CHANGE_NOTIFY" >&5 +-$as_echo "$samba_cv_HAVE_KERNEL_CHANGE_NOTIFY" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_KERNEL_CHANGE_NOTIFY" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_KERNEL_CHANGE_NOTIFY" >&6; } + if test x"$samba_cv_HAVE_KERNEL_CHANGE_NOTIFY" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -53896,10 +50788,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for inotify support" >&5 +-$as_echo_n "checking for inotify support... " >&6; } ++{ echo "$as_me:$LINENO: checking for inotify support" >&5 ++echo $ECHO_N "checking for inotify support... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_INOTIFY+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + +@@ -53907,21 +50799,20 @@ + + for ac_header in linux/inotify.h asm/unistd.h sys/inotify.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -53937,33 +50828,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -53977,52 +50867,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -54031,24 +50920,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -54058,11 +50944,11 @@ + + for ac_func in inotify_init + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -54115,52 +51001,45 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi + done + + +- { $as_echo "$as_me:$LINENO: checking for __NR_inotify_init declaration" >&5 +-$as_echo_n "checking for __NR_inotify_init declaration... " >&6; } ++ { echo "$as_me:$LINENO: checking for __NR_inotify_init declaration" >&5 ++echo $ECHO_N "checking for __NR_inotify_init declaration... $ECHO_C" >&6; } + if test "${ac_cv_have___NR_inotify_init_decl+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -54184,21 +51063,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_have___NR_inotify_init_decl=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_have___NR_inotify_init_decl=no +@@ -54206,8 +51084,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_have___NR_inotify_init_decl" >&5 +-$as_echo "$ac_cv_have___NR_inotify_init_decl" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_have___NR_inotify_init_decl" >&5 ++echo "${ECHO_T}$ac_cv_have___NR_inotify_init_decl" >&6; } + if test x"$ac_cv_have___NR_inotify_init_decl" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -54218,8 +51096,8 @@ + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_INOTIFY" >&5 +-$as_echo "$samba_cv_HAVE_INOTIFY" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_INOTIFY" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_INOTIFY" >&6; } + + if test x"$ac_cv_func_inotify_init" = x"yes" -a x"$ac_cv_header_linux_inotify_h" = x"yes"; then + +@@ -54243,21 +51121,20 @@ + + for ac_header in fam.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -54273,33 +51150,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -54313,52 +51189,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -54367,24 +51242,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + samba_cv_HAVE_FAM_H=yes + else +@@ -54396,10 +51268,10 @@ + if test x"$samba_cv_HAVE_FAM_H" = x"yes"; then + # On IRIX, libfam requires libC, but other FAM implementations + # might not need it. +- { $as_echo "$as_me:$LINENO: checking for FAMOpen2 in -lfam" >&5 +-$as_echo_n "checking for FAMOpen2 in -lfam... " >&6; } ++ { echo "$as_me:$LINENO: checking for FAMOpen2 in -lfam" >&5 ++echo $ECHO_N "checking for FAMOpen2 in -lfam... $ECHO_C" >&6; } + if test "${ac_cv_lib_fam_FAMOpen2+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lfam $LIBS" +@@ -54431,37 +51303,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_fam_FAMOpen2=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_fam_FAMOpen2=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_fam_FAMOpen2" >&5 +-$as_echo "$ac_cv_lib_fam_FAMOpen2" >&6; } +-if test "x$ac_cv_lib_fam_FAMOpen2" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_fam_FAMOpen2" >&5 ++echo "${ECHO_T}$ac_cv_lib_fam_FAMOpen2" >&6; } ++if test $ac_cv_lib_fam_FAMOpen2 = yes; then + samba_cv_HAVE_LIBFAM=yes; SMB_FAM_LIBS="-lfam" + else + samba_cv_HAVE_LIBFAM=no +@@ -54479,10 +51347,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for FAMOpen2 in -lfam" >&5 +-$as_echo_n "checking for FAMOpen2 in -lfam... " >&6; } ++ { echo "$as_me:$LINENO: checking for FAMOpen2 in -lfam" >&5 ++echo $ECHO_N "checking for FAMOpen2 in -lfam... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_fam_FAMOpen2+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -54512,38 +51380,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_fam_FAMOpen2=yes; + ac_cv_lib_ext_fam=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_fam_FAMOpen2=no; + ac_cv_lib_ext_fam=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_fam_FAMOpen2" >&5 +-$as_echo "$ac_cv_lib_ext_fam_FAMOpen2" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_fam_FAMOpen2" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_fam_FAMOpen2" >&6; } + if test $ac_cv_lib_ext_fam_FAMOpen2 = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_FAMOPEN2 1 +@@ -54588,14 +51452,13 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -54606,7 +51469,7 @@ + _ACEOF + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -54616,8 +51479,8 @@ + fi + + if test x$enable_fam = xyes && test x"$samba_cv_HAVE_LIBFAM" != xyes ; then +- { { $as_echo "$as_me:$LINENO: error: FAM support requested but FAM library not available " >&5 +-$as_echo "$as_me: error: FAM support requested but FAM library not available " >&2;} ++ { { echo "$as_me:$LINENO: error: FAM support requested but FAM library not available " >&5 ++echo "$as_me: error: FAM support requested but FAM library not available " >&2;} + { (exit 1); exit 1; }; } + fi + fi +@@ -54631,10 +51494,10 @@ + samba_dmapi_libs="" + + if test x"$samba_dmapi_libs" = x"" ; then +- { $as_echo "$as_me:$LINENO: checking for dm_get_eventlist in -ldm" >&5 +-$as_echo_n "checking for dm_get_eventlist in -ldm... " >&6; } ++ { echo "$as_me:$LINENO: checking for dm_get_eventlist in -ldm" >&5 ++echo $ECHO_N "checking for dm_get_eventlist in -ldm... $ECHO_C" >&6; } + if test "${ac_cv_lib_dm_dm_get_eventlist+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldm $LIBS" +@@ -54666,47 +51529,43 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_dm_dm_get_eventlist=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_dm_dm_get_eventlist=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dm_dm_get_eventlist" >&5 +-$as_echo "$ac_cv_lib_dm_dm_get_eventlist" >&6; } +-if test "x$ac_cv_lib_dm_dm_get_eventlist" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_dm_dm_get_eventlist" >&5 ++echo "${ECHO_T}$ac_cv_lib_dm_dm_get_eventlist" >&6; } ++if test $ac_cv_lib_dm_dm_get_eventlist = yes; then + samba_dmapi_libs="-ldm" + fi + + fi + + if test x"$samba_dmapi_libs" = x"" ; then +- { $as_echo "$as_me:$LINENO: checking for dm_get_eventlist in -ljfsdm" >&5 +-$as_echo_n "checking for dm_get_eventlist in -ljfsdm... " >&6; } ++ { echo "$as_me:$LINENO: checking for dm_get_eventlist in -ljfsdm" >&5 ++echo $ECHO_N "checking for dm_get_eventlist in -ljfsdm... $ECHO_C" >&6; } + if test "${ac_cv_lib_jfsdm_dm_get_eventlist+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ljfsdm $LIBS" +@@ -54738,47 +51597,43 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_jfsdm_dm_get_eventlist=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_jfsdm_dm_get_eventlist=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_jfsdm_dm_get_eventlist" >&5 +-$as_echo "$ac_cv_lib_jfsdm_dm_get_eventlist" >&6; } +-if test "x$ac_cv_lib_jfsdm_dm_get_eventlist" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_jfsdm_dm_get_eventlist" >&5 ++echo "${ECHO_T}$ac_cv_lib_jfsdm_dm_get_eventlist" >&6; } ++if test $ac_cv_lib_jfsdm_dm_get_eventlist = yes; then + samba_dmapi_libs="-ljfsdm" + fi + + fi + + if test x"$samba_dmapi_libs" = x"" ; then +- { $as_echo "$as_me:$LINENO: checking for dm_get_eventlist in -lxdsm" >&5 +-$as_echo_n "checking for dm_get_eventlist in -lxdsm... " >&6; } ++ { echo "$as_me:$LINENO: checking for dm_get_eventlist in -lxdsm" >&5 ++echo $ECHO_N "checking for dm_get_eventlist in -lxdsm... $ECHO_C" >&6; } + if test "${ac_cv_lib_xdsm_dm_get_eventlist+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lxdsm $LIBS" +@@ -54810,47 +51665,43 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_xdsm_dm_get_eventlist=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_xdsm_dm_get_eventlist=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_xdsm_dm_get_eventlist" >&5 +-$as_echo "$ac_cv_lib_xdsm_dm_get_eventlist" >&6; } +-if test "x$ac_cv_lib_xdsm_dm_get_eventlist" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_xdsm_dm_get_eventlist" >&5 ++echo "${ECHO_T}$ac_cv_lib_xdsm_dm_get_eventlist" >&6; } ++if test $ac_cv_lib_xdsm_dm_get_eventlist = yes; then + samba_dmapi_libs="-lxdsm" + fi + + fi + + if test x"$samba_dmapi_libs" = x"" ; then +- { $as_echo "$as_me:$LINENO: checking for dm_get_eventlist in -ldmapi" >&5 +-$as_echo_n "checking for dm_get_eventlist in -ldmapi... " >&6; } ++ { echo "$as_me:$LINENO: checking for dm_get_eventlist in -ldmapi" >&5 ++echo $ECHO_N "checking for dm_get_eventlist in -ldmapi... $ECHO_C" >&6; } + if test "${ac_cv_lib_dmapi_dm_get_eventlist+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldmapi $LIBS" +@@ -54882,37 +51733,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_dmapi_dm_get_eventlist=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_dmapi_dm_get_eventlist=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dmapi_dm_get_eventlist" >&5 +-$as_echo "$ac_cv_lib_dmapi_dm_get_eventlist" >&6; } +-if test "x$ac_cv_lib_dmapi_dm_get_eventlist" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_dmapi_dm_get_eventlist" >&5 ++echo "${ECHO_T}$ac_cv_lib_dmapi_dm_get_eventlist" >&6; } ++if test $ac_cv_lib_dmapi_dm_get_eventlist = yes; then + samba_dmapi_libs="-ldmapi" + fi + +@@ -54928,21 +51775,20 @@ + + for ac_header in sys/dmi.h xfs/dmapi.h sys/jfsdmapi.h sys/dmapi.h dmapi.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -54958,33 +51804,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -54998,52 +51843,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -55052,24 +51896,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -55126,26 +51967,23 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + true # DMAPI link test succeeded + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -55154,7 +51992,6 @@ + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS="$samba_dmapi_save_LIBS" +@@ -55163,8 +52000,8 @@ + if test x"$samba_dmapi_libs" = x"" ; then + # DMAPI detection failure actions begin + +- { $as_echo "$as_me:$LINENO: DMAPI support not present" >&5 +-$as_echo "$as_me: DMAPI support not present" >&6;} ++ { echo "$as_me:$LINENO: DMAPI support not present" >&5 ++echo "$as_me: DMAPI support not present" >&6;} + + # DMAPI detection failure actions end + else +@@ -55175,8 +52012,8 @@ + #define USE_DMAPI 1 + _ACEOF + +- { $as_echo "$as_me:$LINENO: Found DMAPI support in $samba_dmapi_libs" >&5 +-$as_echo "$as_me: Found DMAPI support in $samba_dmapi_libs" >&6;} ++ { echo "$as_me:$LINENO: Found DMAPI support in $samba_dmapi_libs" >&5 ++echo "$as_me: Found DMAPI support in $samba_dmapi_libs" >&6;} + + # DMAPI detection success actions end + fi +@@ -55189,10 +52026,10 @@ + default_shared_modules="$default_shared_modules vfs_tsmsm" + fi + +-{ $as_echo "$as_me:$LINENO: checking for kernel share modes" >&5 +-$as_echo_n "checking for kernel share modes... " >&6; } ++{ echo "$as_me:$LINENO: checking for kernel share modes" >&5 ++echo $ECHO_N "checking for kernel share modes... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_KERNEL_SHARE_MODES+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -55224,39 +52061,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_KERNEL_SHARE_MODES=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_KERNEL_SHARE_MODES=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_KERNEL_SHARE_MODES" >&5 +-$as_echo "$samba_cv_HAVE_KERNEL_SHARE_MODES" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_KERNEL_SHARE_MODES" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_KERNEL_SHARE_MODES" >&6; } + if test x"$samba_cv_HAVE_KERNEL_SHARE_MODES" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -55266,10 +52100,10 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking for IRIX kernel oplock type definitions" >&5 +-$as_echo_n "checking for IRIX kernel oplock type definitions... " >&6; } ++{ echo "$as_me:$LINENO: checking for IRIX kernel oplock type definitions" >&5 ++echo $ECHO_N "checking for IRIX kernel oplock type definitions... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_KERNEL_OPLOCKS_IRIX+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -55294,21 +52128,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_KERNEL_OPLOCKS_IRIX=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_KERNEL_OPLOCKS_IRIX=no +@@ -55316,8 +52149,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_KERNEL_OPLOCKS_IRIX" >&5 +-$as_echo "$samba_cv_HAVE_KERNEL_OPLOCKS_IRIX" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_KERNEL_OPLOCKS_IRIX" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_KERNEL_OPLOCKS_IRIX" >&6; } + if test x"$samba_cv_HAVE_KERNEL_OPLOCKS_IRIX" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -55330,17 +52163,17 @@ + # Check for POSIX capability support + + if test "${ac_cv_header_sys_capability_h+set}" = set; then +- { $as_echo "$as_me:$LINENO: checking for sys/capability.h" >&5 +-$as_echo_n "checking for sys/capability.h... " >&6; } ++ { echo "$as_me:$LINENO: checking for sys/capability.h" >&5 ++echo $ECHO_N "checking for sys/capability.h... $ECHO_C" >&6; } + if test "${ac_cv_header_sys_capability_h+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_sys_capability_h" >&5 +-$as_echo "$ac_cv_header_sys_capability_h" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_header_sys_capability_h" >&5 ++echo "${ECHO_T}$ac_cv_header_sys_capability_h" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking sys/capability.h usability" >&5 +-$as_echo_n "checking sys/capability.h usability... " >&6; } ++{ echo "$as_me:$LINENO: checking sys/capability.h usability" >&5 ++echo $ECHO_N "checking sys/capability.h usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -55356,33 +52189,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking sys/capability.h presence" >&5 +-$as_echo_n "checking sys/capability.h presence... " >&6; } ++{ echo "$as_me:$LINENO: checking sys/capability.h presence" >&5 ++echo $ECHO_N "checking sys/capability.h presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -55396,52 +52228,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: sys/capability.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: sys/capability.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/capability.h: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: sys/capability.h: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: sys/capability.h: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: sys/capability.h: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: sys/capability.h: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: sys/capability.h: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: sys/capability.h: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: sys/capability.h: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/capability.h: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: sys/capability.h: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/capability.h: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: sys/capability.h: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/capability.h: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: sys/capability.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/capability.h: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: sys/capability.h: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: sys/capability.h: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: sys/capability.h: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: sys/capability.h: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: sys/capability.h: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: sys/capability.h: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: sys/capability.h: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: sys/capability.h: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: sys/capability.h: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: sys/capability.h: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: sys/capability.h: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: sys/capability.h: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: sys/capability.h: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: sys/capability.h: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: sys/capability.h: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -55450,18 +52281,18 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for sys/capability.h" >&5 +-$as_echo_n "checking for sys/capability.h... " >&6; } ++{ echo "$as_me:$LINENO: checking for sys/capability.h" >&5 ++echo $ECHO_N "checking for sys/capability.h... $ECHO_C" >&6; } + if test "${ac_cv_header_sys_capability_h+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_cv_header_sys_capability_h=$ac_header_preproc + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_sys_capability_h" >&5 +-$as_echo "$ac_cv_header_sys_capability_h" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_header_sys_capability_h" >&5 ++echo "${ECHO_T}$ac_cv_header_sys_capability_h" >&6; } + + fi +-if test "x$ac_cv_header_sys_capability_h" = x""yes; then ++if test $ac_cv_header_sys_capability_h = yes; then + samba_cv_HAVE_SYS_CAPABILITY_H=yes; + + cat >>confdefs.h <<\_ACEOF +@@ -55479,11 +52310,11 @@ + + for ac_func in cap_get_proc + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -55536,42 +52367,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + # cap_get_proc was found in libc or existing $LIBS +@@ -55596,10 +52420,10 @@ + ;; + *) + # cap_get_proc was not found, try adding libcap +- { $as_echo "$as_me:$LINENO: checking for cap_get_proc in -lcap" >&5 +-$as_echo_n "checking for cap_get_proc in -lcap... " >&6; } ++ { echo "$as_me:$LINENO: checking for cap_get_proc in -lcap" >&5 ++echo $ECHO_N "checking for cap_get_proc in -lcap... $ECHO_C" >&6; } + if test "${ac_cv_lib_cap_cap_get_proc+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lcap $LIBS" +@@ -55631,37 +52455,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_cap_cap_get_proc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_cap_cap_get_proc=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_cap_cap_get_proc" >&5 +-$as_echo "$ac_cv_lib_cap_cap_get_proc" >&6; } +-if test "x$ac_cv_lib_cap_cap_get_proc" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_cap_cap_get_proc" >&5 ++echo "${ECHO_T}$ac_cv_lib_cap_cap_get_proc" >&6; } ++if test $ac_cv_lib_cap_cap_get_proc = yes; then + + LIBS="-lcap $LIBS" + +@@ -55690,10 +52510,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for POSIX capabilities" >&5 +-$as_echo_n "checking for POSIX capabilities... " >&6; } ++ { echo "$as_me:$LINENO: checking for POSIX capabilities" >&5 ++echo $ECHO_N "checking for POSIX capabilities... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_POSIX_CAPABILITIES+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -55725,40 +52545,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_POSIX_CAPABILITIES=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_POSIX_CAPABILITIES=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_POSIX_CAPABILITIES" >&5 +-$as_echo "$samba_cv_HAVE_POSIX_CAPABILITIES" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_POSIX_CAPABILITIES" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_POSIX_CAPABILITIES" >&6; } + + if test x"$samba_cv_HAVE_POSIX_CAPABILITIES" = x"yes"; then + +@@ -55777,10 +52594,10 @@ + # This is *really* broken but some systems (DEC OSF1) do this.... JRA. + # + +-{ $as_echo "$as_me:$LINENO: checking for int16 typedef included by rpc/rpc.h" >&5 +-$as_echo_n "checking for int16 typedef included by rpc/rpc.h... " >&6; } ++{ echo "$as_me:$LINENO: checking for int16 typedef included by rpc/rpc.h" >&5 ++echo $ECHO_N "checking for int16 typedef included by rpc/rpc.h... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_INT16_FROM_RPC_RPC_H+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -55807,21 +52624,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_INT16_FROM_RPC_RPC_H=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_INT16_FROM_RPC_RPC_H=no +@@ -55829,8 +52645,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_INT16_FROM_RPC_RPC_H" >&5 +-$as_echo "$samba_cv_HAVE_INT16_FROM_RPC_RPC_H" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_INT16_FROM_RPC_RPC_H" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_INT16_FROM_RPC_RPC_H" >&6; } + if test x"$samba_cv_HAVE_INT16_FROM_RPC_RPC_H" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -55839,10 +52655,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for uint16 typedef included by rpc/rpc.h" >&5 +-$as_echo_n "checking for uint16 typedef included by rpc/rpc.h... " >&6; } ++{ echo "$as_me:$LINENO: checking for uint16 typedef included by rpc/rpc.h" >&5 ++echo $ECHO_N "checking for uint16 typedef included by rpc/rpc.h... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_UINT16_FROM_RPC_RPC_H+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -55869,21 +52685,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_UINT16_FROM_RPC_RPC_H=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_UINT16_FROM_RPC_RPC_H=no +@@ -55891,8 +52706,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_UINT16_FROM_RPC_RPC_H" >&5 +-$as_echo "$samba_cv_HAVE_UINT16_FROM_RPC_RPC_H" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_UINT16_FROM_RPC_RPC_H" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_UINT16_FROM_RPC_RPC_H" >&6; } + if test x"$samba_cv_HAVE_UINT16_FROM_RPC_RPC_H" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -55901,10 +52716,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for int32 typedef included by rpc/rpc.h" >&5 +-$as_echo_n "checking for int32 typedef included by rpc/rpc.h... " >&6; } ++{ echo "$as_me:$LINENO: checking for int32 typedef included by rpc/rpc.h" >&5 ++echo $ECHO_N "checking for int32 typedef included by rpc/rpc.h... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_INT32_FROM_RPC_RPC_H+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -55931,21 +52746,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_INT32_FROM_RPC_RPC_H=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_INT32_FROM_RPC_RPC_H=no +@@ -55953,8 +52767,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_INT32_FROM_RPC_RPC_H" >&5 +-$as_echo "$samba_cv_HAVE_INT32_FROM_RPC_RPC_H" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_INT32_FROM_RPC_RPC_H" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_INT32_FROM_RPC_RPC_H" >&6; } + if test x"$samba_cv_HAVE_INT32_FROM_RPC_RPC_H" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -55963,10 +52777,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for uint32 typedef included by rpc/rpc.h" >&5 +-$as_echo_n "checking for uint32 typedef included by rpc/rpc.h... " >&6; } ++{ echo "$as_me:$LINENO: checking for uint32 typedef included by rpc/rpc.h" >&5 ++echo $ECHO_N "checking for uint32 typedef included by rpc/rpc.h... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_UINT32_FROM_RPC_RPC_H+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -55993,21 +52807,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_UINT32_FROM_RPC_RPC_H=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_UINT32_FROM_RPC_RPC_H=no +@@ -56015,8 +52828,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_UINT32_FROM_RPC_RPC_H" >&5 +-$as_echo "$samba_cv_HAVE_UINT32_FROM_RPC_RPC_H" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_UINT32_FROM_RPC_RPC_H" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_UINT32_FROM_RPC_RPC_H" >&6; } + if test x"$samba_cv_HAVE_UINT32_FROM_RPC_RPC_H" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -56026,10 +52839,10 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking for conflicting AUTH_ERROR define in rpc/rpc.h" >&5 +-$as_echo_n "checking for conflicting AUTH_ERROR define in rpc/rpc.h... " >&6; } ++{ echo "$as_me:$LINENO: checking for conflicting AUTH_ERROR define in rpc/rpc.h" >&5 ++echo $ECHO_N "checking for conflicting AUTH_ERROR define in rpc/rpc.h... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -56060,21 +52873,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT=no + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT=yes +@@ -56082,8 +52894,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT" >&5 +-$as_echo "$samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT" >&6; } + if test x"$samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -56092,11 +52904,11 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for test routines" >&5 +-$as_echo_n "checking for test routines... " >&6; } ++{ echo "$as_me:$LINENO: checking for test routines" >&5 ++echo $ECHO_N "checking for test routines... $ECHO_C" >&6; } + if test "$cross_compiling" = yes; then +- { $as_echo "$as_me:$LINENO: WARNING: cannot run when cross-compiling" >&5 +-$as_echo "$as_me: WARNING: cannot run when cross-compiling" >&2;} ++ { echo "$as_me:$LINENO: WARNING: cannot run when cross-compiling" >&5 ++echo "$as_me: WARNING: cannot run when cross-compiling" >&2;} + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -56112,44 +52924,41 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) +-{ { $as_echo "$as_me:$LINENO: error: cant find test code. Aborting config" >&5 +-$as_echo "$as_me: error: cant find test code. Aborting config" >&2;} ++{ { echo "$as_me:$LINENO: error: cant find test code. Aborting config" >&5 ++echo "$as_me: error: cant find test code. Aborting config" >&2;} + { (exit 1); exit 1; }; } + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + +-{ $as_echo "$as_me:$LINENO: checking for ftruncate extend" >&5 +-$as_echo_n "checking for ftruncate extend... " >&6; } ++{ echo "$as_me:$LINENO: checking for ftruncate extend" >&5 ++echo $ECHO_N "checking for ftruncate extend... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_FTRUNCATE_EXTEND+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -56169,39 +52978,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_FTRUNCATE_EXTEND=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_FTRUNCATE_EXTEND=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_FTRUNCATE_EXTEND" >&5 +-$as_echo "$samba_cv_HAVE_FTRUNCATE_EXTEND" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_FTRUNCATE_EXTEND" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_FTRUNCATE_EXTEND" >&6; } + if test x"$samba_cv_HAVE_FTRUNCATE_EXTEND" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -56210,10 +53016,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for broken getgroups" >&5 +-$as_echo_n "checking for broken getgroups... " >&6; } ++{ echo "$as_me:$LINENO: checking for broken getgroups" >&5 ++echo $ECHO_N "checking for broken getgroups... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_BROKEN_GETGROUPS+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -56233,39 +53039,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_BROKEN_GETGROUPS=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_BROKEN_GETGROUPS=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_BROKEN_GETGROUPS" >&5 +-$as_echo "$samba_cv_HAVE_BROKEN_GETGROUPS" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_BROKEN_GETGROUPS" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_BROKEN_GETGROUPS" >&6; } + if test x"$samba_cv_HAVE_BROKEN_GETGROUPS" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -56275,10 +53078,10 @@ + fi + + +- { $as_echo "$as_me:$LINENO: checking for sysconf(_SC_NGROUPS_MAX)" >&5 +-$as_echo_n "checking for sysconf(_SC_NGROUPS_MAX)... " >&6; } ++ { echo "$as_me:$LINENO: checking for sysconf(_SC_NGROUPS_MAX)" >&5 ++echo $ECHO_N "checking for sysconf(_SC_NGROUPS_MAX)... $ECHO_C" >&6; } + if test "${samba_cv_SYSCONF_SC_NGROUPS_MAX+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -56302,36 +53105,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_SYSCONF_SC_NGROUPS_MAX=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_SYSCONF_SC_NGROUPS_MAX=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_SYSCONF_SC_NGROUPS_MAX" >&5 +-$as_echo "$samba_cv_SYSCONF_SC_NGROUPS_MAX" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_SYSCONF_SC_NGROUPS_MAX" >&5 ++echo "${ECHO_T}$samba_cv_SYSCONF_SC_NGROUPS_MAX" >&6; } + + if test x"$samba_cv_SYSCONF_SC_NGROUPS_MAX" = x"yes" ; then + +@@ -56342,10 +53141,10 @@ + fi + + +- { $as_echo "$as_me:$LINENO: checking for sysconf(_SC_NPROC_ONLN)" >&5 +-$as_echo_n "checking for sysconf(_SC_NPROC_ONLN)... " >&6; } ++ { echo "$as_me:$LINENO: checking for sysconf(_SC_NPROC_ONLN)" >&5 ++echo $ECHO_N "checking for sysconf(_SC_NPROC_ONLN)... $ECHO_C" >&6; } + if test "${samba_cv_SYSCONF_SC_NPROC_ONLN+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -56369,36 +53168,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_SYSCONF_SC_NPROC_ONLN=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_SYSCONF_SC_NPROC_ONLN=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_SYSCONF_SC_NPROC_ONLN" >&5 +-$as_echo "$samba_cv_SYSCONF_SC_NPROC_ONLN" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_SYSCONF_SC_NPROC_ONLN" >&5 ++echo "${ECHO_T}$samba_cv_SYSCONF_SC_NPROC_ONLN" >&6; } + + if test x"$samba_cv_SYSCONF_SC_NPROC_ONLN" = x"yes" ; then + +@@ -56409,10 +53204,10 @@ + fi + + +- { $as_echo "$as_me:$LINENO: checking for sysconf(_SC_NPROCESSORS_ONLN)" >&5 +-$as_echo_n "checking for sysconf(_SC_NPROCESSORS_ONLN)... " >&6; } ++ { echo "$as_me:$LINENO: checking for sysconf(_SC_NPROCESSORS_ONLN)" >&5 ++echo $ECHO_N "checking for sysconf(_SC_NPROCESSORS_ONLN)... $ECHO_C" >&6; } + if test "${samba_cv_SYSCONF_SC_NPROCESSORS_ONLN+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -56436,36 +53231,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_SYSCONF_SC_NPROCESSORS_ONLN=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_SYSCONF_SC_NPROCESSORS_ONLN=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_SYSCONF_SC_NPROCESSORS_ONLN" >&5 +-$as_echo "$samba_cv_SYSCONF_SC_NPROCESSORS_ONLN" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_SYSCONF_SC_NPROCESSORS_ONLN" >&5 ++echo "${ECHO_T}$samba_cv_SYSCONF_SC_NPROCESSORS_ONLN" >&6; } + + if test x"$samba_cv_SYSCONF_SC_NPROCESSORS_ONLN" = x"yes" ; then + +@@ -56476,10 +53267,10 @@ + fi + + +- { $as_echo "$as_me:$LINENO: checking for sysconf(_SC_PAGESIZE)" >&5 +-$as_echo_n "checking for sysconf(_SC_PAGESIZE)... " >&6; } ++ { echo "$as_me:$LINENO: checking for sysconf(_SC_PAGESIZE)" >&5 ++echo $ECHO_N "checking for sysconf(_SC_PAGESIZE)... $ECHO_C" >&6; } + if test "${samba_cv_SYSCONF_SC_PAGESIZE+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -56503,36 +53294,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_SYSCONF_SC_PAGESIZE=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_SYSCONF_SC_PAGESIZE=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_SYSCONF_SC_PAGESIZE" >&5 +-$as_echo "$samba_cv_SYSCONF_SC_PAGESIZE" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_SYSCONF_SC_PAGESIZE" >&5 ++echo "${ECHO_T}$samba_cv_SYSCONF_SC_PAGESIZE" >&6; } + + if test x"$samba_cv_SYSCONF_SC_PAGESIZE" = x"yes" ; then + +@@ -56545,11 +53332,11 @@ + + for ac_func in getpagesize + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -56602,42 +53389,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -56649,10 +53429,10 @@ + seteuid=no; + + if test $seteuid = no; then +-{ $as_echo "$as_me:$LINENO: checking for setreuid" >&5 +-$as_echo_n "checking for setreuid... " >&6; } ++{ echo "$as_me:$LINENO: checking for setreuid" >&5 ++echo $ECHO_N "checking for setreuid... $ECHO_C" >&6; } + if test "${samba_cv_USE_SETREUID+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -56676,39 +53456,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_USE_SETREUID=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_USE_SETREUID=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_USE_SETREUID" >&5 +-$as_echo "$samba_cv_USE_SETREUID" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_USE_SETREUID" >&5 ++echo "${ECHO_T}$samba_cv_USE_SETREUID" >&6; } + if test x"$samba_cv_USE_SETREUID" = x"yes"; then + seteuid=yes; + cat >>confdefs.h <<\_ACEOF +@@ -56721,10 +53498,10 @@ + # we check for setresuid second as it conflicts with AIO on Linux. + # see http://samba.org/~tridge/junkcode/aio_uid.c + if test $seteuid = no; then +-{ $as_echo "$as_me:$LINENO: checking for setresuid" >&5 +-$as_echo_n "checking for setresuid... " >&6; } ++{ echo "$as_me:$LINENO: checking for setresuid" >&5 ++echo $ECHO_N "checking for setresuid... $ECHO_C" >&6; } + if test "${samba_cv_USE_SETRESUID+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -56748,39 +53525,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_USE_SETRESUID=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_USE_SETRESUID=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_USE_SETRESUID" >&5 +-$as_echo "$samba_cv_USE_SETRESUID" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_USE_SETRESUID" >&5 ++echo "${ECHO_T}$samba_cv_USE_SETRESUID" >&6; } + if test x"$samba_cv_USE_SETRESUID" = x"yes"; then + seteuid=yes; + cat >>confdefs.h <<\_ACEOF +@@ -56791,10 +53565,10 @@ + fi + + if test $seteuid = no; then +-{ $as_echo "$as_me:$LINENO: checking for seteuid" >&5 +-$as_echo_n "checking for seteuid... " >&6; } ++{ echo "$as_me:$LINENO: checking for seteuid" >&5 ++echo $ECHO_N "checking for seteuid... $ECHO_C" >&6; } + if test "${samba_cv_USE_SETEUID+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -56818,39 +53592,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_USE_SETEUID=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_USE_SETEUID=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_USE_SETEUID" >&5 +-$as_echo "$samba_cv_USE_SETEUID" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_USE_SETEUID" >&5 ++echo "${ECHO_T}$samba_cv_USE_SETEUID" >&6; } + if test x"$samba_cv_USE_SETEUID" = x"yes"; then + seteuid=yes; + cat >>confdefs.h <<\_ACEOF +@@ -56861,10 +53632,10 @@ + fi + + if test $seteuid = no; then +-{ $as_echo "$as_me:$LINENO: checking for setuidx" >&5 +-$as_echo_n "checking for setuidx... " >&6; } ++{ echo "$as_me:$LINENO: checking for setuidx" >&5 ++echo $ECHO_N "checking for setuidx... $ECHO_C" >&6; } + if test "${samba_cv_USE_SETUIDX+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -56888,39 +53659,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_USE_SETUIDX=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_USE_SETUIDX=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_USE_SETUIDX" >&5 +-$as_echo "$samba_cv_USE_SETUIDX" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_USE_SETUIDX" >&5 ++echo "${ECHO_T}$samba_cv_USE_SETUIDX" >&6; } + if test x"$samba_cv_USE_SETUIDX" = x"yes"; then + seteuid=yes; + cat >>confdefs.h <<\_ACEOF +@@ -56930,10 +53698,10 @@ + fi + fi + +-{ $as_echo "$as_me:$LINENO: checking for the Darwin initgroups system call" >&5 +-$as_echo_n "checking for the Darwin initgroups system call... " >&6; } ++{ echo "$as_me:$LINENO: checking for the Darwin initgroups system call" >&5 ++echo $ECHO_N "checking for the Darwin initgroups system call... $ECHO_C" >&6; } + if test "${samba_cv_DARWIN_INITGROUPS+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -56959,36 +53727,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_DARWIN_INITGROUPS=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_DARWIN_INITGROUPS=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_DARWIN_INITGROUPS" >&5 +-$as_echo "$samba_cv_DARWIN_INITGROUPS" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_DARWIN_INITGROUPS" >&5 ++echo "${ECHO_T}$samba_cv_DARWIN_INITGROUPS" >&6; } + + if test x"$samba_cv_DARWIN_INITGROUPS" = x"yes" ; then + +@@ -56998,10 +53762,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for fcntl locking" >&5 +-$as_echo_n "checking for fcntl locking... " >&6; } ++{ echo "$as_me:$LINENO: checking for fcntl locking" >&5 ++echo $ECHO_N "checking for fcntl locking... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_FCNTL_LOCK+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -57021,39 +53785,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_FCNTL_LOCK=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_FCNTL_LOCK=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_FCNTL_LOCK" >&5 +-$as_echo "$samba_cv_HAVE_FCNTL_LOCK" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_FCNTL_LOCK" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_FCNTL_LOCK" >&6; } + if test x"$samba_cv_HAVE_FCNTL_LOCK" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -57062,10 +53823,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for broken (glibc2.1/x86) 64 bit fcntl locking" >&5 +-$as_echo_n "checking for broken (glibc2.1/x86) 64 bit fcntl locking... " >&6; } ++{ echo "$as_me:$LINENO: checking for broken (glibc2.1/x86) 64 bit fcntl locking" >&5 ++echo $ECHO_N "checking for broken (glibc2.1/x86) 64 bit fcntl locking... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_BROKEN_FCNTL64_LOCKS+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -57085,39 +53846,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_BROKEN_FCNTL64_LOCKS=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_BROKEN_FCNTL64_LOCKS=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_BROKEN_FCNTL64_LOCKS" >&5 +-$as_echo "$samba_cv_HAVE_BROKEN_FCNTL64_LOCKS" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_BROKEN_FCNTL64_LOCKS" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_BROKEN_FCNTL64_LOCKS" >&6; } + if test x"$samba_cv_HAVE_BROKEN_FCNTL64_LOCKS" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -57128,10 +53886,10 @@ + else + + +- { $as_echo "$as_me:$LINENO: checking for 64 bit fcntl locking" >&5 +-$as_echo_n "checking for 64 bit fcntl locking... " >&6; } ++ { echo "$as_me:$LINENO: checking for 64 bit fcntl locking" >&5 ++echo $ECHO_N "checking for 64 bit fcntl locking... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_STRUCT_FLOCK64+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -57171,39 +53929,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_STRUCT_FLOCK64=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_STRUCT_FLOCK64=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_STRUCT_FLOCK64" >&5 +-$as_echo "$samba_cv_HAVE_STRUCT_FLOCK64" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_STRUCT_FLOCK64" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_STRUCT_FLOCK64" >&6; } + + if test x"$samba_cv_HAVE_STRUCT_FLOCK64" = x"yes"; then + +@@ -57214,10 +53969,10 @@ + fi + fi + +-{ $as_echo "$as_me:$LINENO: checking for st_blocks in struct stat" >&5 +-$as_echo_n "checking for st_blocks in struct stat... " >&6; } ++{ echo "$as_me:$LINENO: checking for st_blocks in struct stat" >&5 ++echo $ECHO_N "checking for st_blocks in struct stat... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_STAT_ST_BLOCKS+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -57243,21 +53998,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_STAT_ST_BLOCKS=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_STAT_ST_BLOCKS=no +@@ -57265,8 +54019,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_STAT_ST_BLOCKS" >&5 +-$as_echo "$samba_cv_HAVE_STAT_ST_BLOCKS" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_STAT_ST_BLOCKS" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_STAT_ST_BLOCKS" >&6; } + if test x"$samba_cv_HAVE_STAT_ST_BLOCKS" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -57275,10 +54029,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for st_blksize in struct stat" >&5 +-$as_echo_n "checking for st_blksize in struct stat... " >&6; } ++{ echo "$as_me:$LINENO: checking for st_blksize in struct stat" >&5 ++echo $ECHO_N "checking for st_blksize in struct stat... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_STAT_ST_BLKSIZE+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -57304,21 +54058,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_STAT_ST_BLKSIZE=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_STAT_ST_BLKSIZE=no +@@ -57326,8 +54079,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_STAT_ST_BLKSIZE" >&5 +-$as_echo "$samba_cv_HAVE_STAT_ST_BLKSIZE" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_STAT_ST_BLKSIZE" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_STAT_ST_BLKSIZE" >&6; } + if test x"$samba_cv_HAVE_STAT_ST_BLKSIZE" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -57336,10 +54089,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for st_flags in struct stat" >&5 +-$as_echo_n "checking for st_flags in struct stat... " >&6; } ++{ echo "$as_me:$LINENO: checking for st_flags in struct stat" >&5 ++echo $ECHO_N "checking for st_flags in struct stat... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_STAT_ST_FLAGS+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -57365,21 +54118,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_STAT_ST_FLAGS=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_STAT_ST_FLAGS=no +@@ -57388,8 +54140,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_STAT_ST_FLAGS" >&5 +-$as_echo "$samba_cv_HAVE_STAT_ST_FLAGS" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_STAT_ST_FLAGS" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_STAT_ST_FLAGS" >&6; } + + if test x"$samba_cv_HAVE_STAT_ST_FLAGS" = x"yes"; then + +@@ -57399,10 +54151,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for broken nisplus include files" >&5 +-$as_echo_n "checking for broken nisplus include files... " >&6; } ++{ echo "$as_me:$LINENO: checking for broken nisplus include files" >&5 ++echo $ECHO_N "checking for broken nisplus include files... $ECHO_C" >&6; } + if test "${samba_cv_BROKEN_NISPLUS_INCLUDE_FILES+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -57431,21 +54183,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_BROKEN_NISPLUS_INCLUDE_FILES=no + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_BROKEN_NISPLUS_INCLUDE_FILES=yes +@@ -57453,8 +54204,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_BROKEN_NISPLUS_INCLUDE_FILES" >&5 +-$as_echo "$samba_cv_BROKEN_NISPLUS_INCLUDE_FILES" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_BROKEN_NISPLUS_INCLUDE_FILES" >&5 ++echo "${ECHO_T}$samba_cv_BROKEN_NISPLUS_INCLUDE_FILES" >&6; } + if test x"$samba_cv_BROKEN_NISPLUS_INCLUDE_FILES" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -57463,10 +54214,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking if the realpath function allows a NULL argument" >&5 +-$as_echo_n "checking if the realpath function allows a NULL argument... " >&6; } ++{ echo "$as_me:$LINENO: checking if the realpath function allows a NULL argument" >&5 ++echo $ECHO_N "checking if the realpath function allows a NULL argument... $ECHO_C" >&6; } + if test "${samba_cv_REALPATH_TAKES_NULL+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -57501,39 +54252,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_REALPATH_TAKES_NULL=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_REALPATH_TAKES_NULL=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_REALPATH_TAKES_NULL" >&5 +-$as_echo "$samba_cv_REALPATH_TAKES_NULL" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_REALPATH_TAKES_NULL" >&5 ++echo "${ECHO_T}$samba_cv_REALPATH_TAKES_NULL" >&6; } + if test x"$samba_cv_REALPATH_TAKES_NULL" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -57545,25 +54293,25 @@ + ################################################# + # check for AFS clear-text auth support + samba_cv_WITH_AFS=no +-{ $as_echo "$as_me:$LINENO: checking whether to use AFS clear-text auth" >&5 +-$as_echo_n "checking whether to use AFS clear-text auth... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to use AFS clear-text auth" >&5 ++echo $ECHO_N "checking whether to use AFS clear-text auth... $ECHO_C" >&6; } + + # Check whether --with-afs was given. + if test "${with_afs+set}" = set; then + withval=$with_afs; case "$withval" in + yes|auto) +- { $as_echo "$as_me:$LINENO: result: $withval" >&5 +-$as_echo "$withval" >&6; } ++ { echo "$as_me:$LINENO: result: $withval" >&5 ++echo "${ECHO_T}$withval" >&6; } + samba_cv_WITH_AFS=$withval + ;; + *) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + ;; + esac + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + fi + +@@ -57571,25 +54319,25 @@ + #################################################### + # check for Linux-specific AFS fake-kaserver support + samba_cv_WITH_FAKE_KASERVER=no +-{ $as_echo "$as_me:$LINENO: checking whether to use AFS fake-kaserver" >&5 +-$as_echo_n "checking whether to use AFS fake-kaserver... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to use AFS fake-kaserver" >&5 ++echo $ECHO_N "checking whether to use AFS fake-kaserver... $ECHO_C" >&6; } + + # Check whether --with-fake-kaserver was given. + if test "${with_fake_kaserver+set}" = set; then + withval=$with_fake_kaserver; case "$withval" in + yes|auto) +- { $as_echo "$as_me:$LINENO: result: $withval" >&5 +-$as_echo "$withval" >&6; } ++ { echo "$as_me:$LINENO: result: $withval" >&5 ++echo "${ECHO_T}$withval" >&6; } + samba_cv_WITH_FAKE_KASERVER=$withval + ;; + *) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + ;; + esac + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + fi + +@@ -57600,16 +54348,16 @@ + test x"$samba_cv_WITH_FAKE_KASERVER" != x"no"; then + + # see if this box has the afs-headers in /usr/include/afs +- { $as_echo "$as_me:$LINENO: checking for /usr/include/afs" >&5 +-$as_echo_n "checking for /usr/include/afs... " >&6; } ++ { echo "$as_me:$LINENO: checking for /usr/include/afs" >&5 ++echo $ECHO_N "checking for /usr/include/afs... $ECHO_C" >&6; } + if test -d /usr/include/afs; then + CFLAGS="$CFLAGS -I/usr/include/afs" + CPPFLAGS="$CPPFLAGS -I/usr/include/afs" +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + # check for afs.h +@@ -57618,21 +54366,20 @@ + + for ac_header in afs.h afs/afs.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -57648,33 +54395,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -57688,52 +54434,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -57742,24 +54487,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -57769,11 +54511,11 @@ + if test x"$ac_cv_header_afs_h" = x"no" && test x"$ac_cv_header_afs_afs_h" = x"no"; then + if test x"$samba_cv_WITH_FAKE_KASERVER" = x"auto" || + test x"$samba_cv_WITH_AFS" = x"auto"; then +- { $as_echo "$as_me:$LINENO: WARNING: AFS cannot be supported without afs.h" >&5 +-$as_echo "$as_me: WARNING: AFS cannot be supported without afs.h" >&2;} ++ { echo "$as_me:$LINENO: WARNING: AFS cannot be supported without afs.h" >&5 ++echo "$as_me: WARNING: AFS cannot be supported without afs.h" >&2;} + else +- { { $as_echo "$as_me:$LINENO: error: AFS cannot be supported without afs.h" >&5 +-$as_echo "$as_me: error: AFS cannot be supported without afs.h" >&2;} ++ { { echo "$as_me:$LINENO: error: AFS cannot be supported without afs.h" >&5 ++echo "$as_me: error: AFS cannot be supported without afs.h" >&2;} + { (exit 1); exit 1; }; } + fi + else +@@ -57795,25 +54537,25 @@ + ################################################# + # check whether to compile AFS/NT ACL mapping module + samba_cv_WITH_VFS_AFSACL=no +-{ $as_echo "$as_me:$LINENO: checking whether to use AFS ACL mapping module" >&5 +-$as_echo_n "checking whether to use AFS ACL mapping module... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to use AFS ACL mapping module" >&5 ++echo $ECHO_N "checking whether to use AFS ACL mapping module... $ECHO_C" >&6; } + + # Check whether --with-vfs-afsacl was given. + if test "${with_vfs_afsacl+set}" = set; then + withval=$with_vfs_afsacl; case "$withval" in + yes|auto) +- { $as_echo "$as_me:$LINENO: result: $withval" >&5 +-$as_echo "$withval" >&6; } ++ { echo "$as_me:$LINENO: result: $withval" >&5 ++echo "${ECHO_T}$withval" >&6; } + samba_cv_WITH_VFS_AFSACL=yes + ;; + *) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + ;; + esac + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + fi + +@@ -57832,15 +54574,15 @@ + + ################################################# + # check for the DFS clear-text auth system +-{ $as_echo "$as_me:$LINENO: checking whether to use DFS clear-text auth" >&5 +-$as_echo_n "checking whether to use DFS clear-text auth... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to use DFS clear-text auth" >&5 ++echo $ECHO_N "checking whether to use DFS clear-text auth... $ECHO_C" >&6; } + + # Check whether --with-dfs was given. + if test "${with_dfs+set}" = set; then + withval=$with_dfs; case "$withval" in + yes) +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define WITH_DFS 1 +@@ -57848,13 +54590,13 @@ + + ;; + *) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + ;; + esac + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + fi + +@@ -57863,8 +54605,8 @@ + # Compile with LDAP support? + + with_ldap_support=auto +-{ $as_echo "$as_me:$LINENO: checking for LDAP support" >&5 +-$as_echo_n "checking for LDAP support... " >&6; } ++{ echo "$as_me:$LINENO: checking for LDAP support" >&5 ++echo $ECHO_N "checking for LDAP support... $ECHO_C" >&6; } + + + # Check whether --with-ldap was given. +@@ -57877,8 +54619,8 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: result: $with_ldap_support" >&5 +-$as_echo "$with_ldap_support" >&6; } ++{ echo "$as_me:$LINENO: result: $with_ldap_support" >&5 ++echo "${ECHO_T}$with_ldap_support" >&6; } + + SMBLDAP="" + +@@ -57896,21 +54638,20 @@ + + for ac_header in ldap.h lber.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -57926,33 +54667,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -57966,52 +54706,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -58020,24 +54759,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -58047,12 +54783,12 @@ + + if test x"$ac_cv_header_ldap_h" != x"yes"; then + if test x"$with_ldap_support" = x"yes"; then +- { { $as_echo "$as_me:$LINENO: error: ldap.h is needed for LDAP support" >&5 +-$as_echo "$as_me: error: ldap.h is needed for LDAP support" >&2;} ++ { { echo "$as_me:$LINENO: error: ldap.h is needed for LDAP support" >&5 ++echo "$as_me: error: ldap.h is needed for LDAP support" >&2;} + { (exit 1); exit 1; }; } + else +- { $as_echo "$as_me:$LINENO: WARNING: ldap.h is needed for LDAP support" >&5 +-$as_echo "$as_me: WARNING: ldap.h is needed for LDAP support" >&2;} ++ { echo "$as_me:$LINENO: WARNING: ldap.h is needed for LDAP support" >&5 ++echo "$as_me: WARNING: ldap.h is needed for LDAP support" >&2;} + fi + + with_ldap_support=no +@@ -58063,54 +54799,18 @@ + # unsigned int in include/includes.h + case $host_os in + *hpux*) +- { $as_echo "$as_me:$LINENO: WARNING: ber_tag_t is needed for LDAP support" >&5 +-$as_echo "$as_me: WARNING: ber_tag_t is needed for LDAP support" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: ber_tag_t must be configured in includes.h for hpux" >&5 +-$as_echo "$as_me: WARNING: ber_tag_t must be configured in includes.h for hpux" >&2;} ++ { echo "$as_me:$LINENO: WARNING: ber_tag_t is needed for LDAP support" >&5 ++echo "$as_me: WARNING: ber_tag_t is needed for LDAP support" >&2;} ++ { echo "$as_me:$LINENO: WARNING: ber_tag_t must be configured in includes.h for hpux" >&5 ++echo "$as_me: WARNING: ber_tag_t must be configured in includes.h for hpux" >&2;} + with_ldap_support=yes + ;; + *) +- { $as_echo "$as_me:$LINENO: checking for ber_tag_t" >&5 +-$as_echo_n "checking for ber_tag_t... " >&6; } ++ { echo "$as_me:$LINENO: checking for ber_tag_t" >&5 ++echo $ECHO_N "checking for ber_tag_t... $ECHO_C" >&6; } + if test "${ac_cv_type_ber_tag_t+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_cv_type_ber_tag_t=no +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +- +-int +-main () +-{ +-if (sizeof (ber_tag_t)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -58119,11 +54819,14 @@ + /* end confdefs.h. */ + #include + ++typedef ber_tag_t ac__type_new_; + int + main () + { +-if (sizeof ((ber_tag_t))) +- return 0; ++if ((ac__type_new_ *) 0) ++ return 0; ++if (sizeof (ac__type_new_)) ++ return 0; + ; + return 0; + } +@@ -58134,47 +54837,38 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- : ++ ac_cv_type_ber_tag_t=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_cv_type_ber_tag_t=yes ++ ac_cv_type_ber_tag_t=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-else +- $as_echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_ber_tag_t" >&5 +-$as_echo "$ac_cv_type_ber_tag_t" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_type_ber_tag_t" >&5 ++echo "${ECHO_T}$ac_cv_type_ber_tag_t" >&6; } + + if test x"$ac_cv_type_ber_tag_t" != x"yes"; then + if test x"$with_ldap_support" = x"yes"; then +- { { $as_echo "$as_me:$LINENO: error: ber_tag_t is needed for LDAP support" >&5 +-$as_echo "$as_me: error: ber_tag_t is needed for LDAP support" >&2;} ++ { { echo "$as_me:$LINENO: error: ber_tag_t is needed for LDAP support" >&5 ++echo "$as_me: error: ber_tag_t is needed for LDAP support" >&2;} + { (exit 1); exit 1; }; } + else +- { $as_echo "$as_me:$LINENO: WARNING: ber_tag_t is needed for LDAP support" >&5 +-$as_echo "$as_me: WARNING: ber_tag_t is needed for LDAP support" >&2;} ++ { echo "$as_me:$LINENO: WARNING: ber_tag_t is needed for LDAP support" >&5 ++echo "$as_me: WARNING: ber_tag_t is needed for LDAP support" >&2;} + fi + with_ldap_support=no + fi +@@ -58197,10 +54891,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for ber_scanf in -llber" >&5 +-$as_echo_n "checking for ber_scanf in -llber... " >&6; } ++ { echo "$as_me:$LINENO: checking for ber_scanf in -llber" >&5 ++echo $ECHO_N "checking for ber_scanf in -llber... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_lber_ber_scanf+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -58230,38 +54924,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_lber_ber_scanf=yes; + ac_cv_lib_ext_lber=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_lber_ber_scanf=no; + ac_cv_lib_ext_lber=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_lber_ber_scanf" >&5 +-$as_echo "$ac_cv_lib_ext_lber_ber_scanf" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_lber_ber_scanf" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_lber_ber_scanf" >&6; } + if test $ac_cv_lib_ext_lber_ber_scanf = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_BER_SCANF 1 +@@ -58296,10 +54986,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$LDAP_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for ber_sockbuf_add_io" >&5 +-$as_echo_n "checking for ber_sockbuf_add_io... " >&6; } ++ { echo "$as_me:$LINENO: checking for ber_sockbuf_add_io" >&5 ++echo $ECHO_N "checking for ber_sockbuf_add_io... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_ber_sockbuf_add_io+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -58352,35 +55042,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_ber_sockbuf_add_io=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_ber_sockbuf_add_io=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_ber_sockbuf_add_io" >&5 +-$as_echo "$ac_cv_func_ext_ber_sockbuf_add_io" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_ber_sockbuf_add_io" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_ber_sockbuf_add_io" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_ber_sockbuf_add_io = yes; then + cat >>confdefs.h <<_ACEOF +@@ -58390,10 +55076,10 @@ + fi + + +- { $as_echo "$as_me:$LINENO: checking for LDAP_OPT_SOCKBUF" >&5 +-$as_echo_n "checking for LDAP_OPT_SOCKBUF... " >&6; } ++ { echo "$as_me:$LINENO: checking for LDAP_OPT_SOCKBUF" >&5 ++echo $ECHO_N "checking for LDAP_OPT_SOCKBUF... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_LDAP_OPT_SOCKBUF+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -58417,21 +55103,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_LDAP_OPT_SOCKBUF=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_LDAP_OPT_SOCKBUF=no +@@ -58439,8 +55124,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_LDAP_OPT_SOCKBUF" >&5 +-$as_echo "$samba_cv_HAVE_LDAP_OPT_SOCKBUF" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_LDAP_OPT_SOCKBUF" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_LDAP_OPT_SOCKBUF" >&6; } + + if test x"$ac_cv_func_ext_ber_sockbuf_add_io" = x"yes" -a \ + x"$samba_cv_HAVE_LDAP_OPT_SOCKBUF" = x"yes"; then +@@ -58454,10 +55139,10 @@ + ####################################################### + # if we have LBER_OPT_LOG_PRINT_FN, we can intercept + # ldap logging and print it out in the samba logs +- { $as_echo "$as_me:$LINENO: checking for LBER_OPT_LOG_PRINT_FN" >&5 +-$as_echo_n "checking for LBER_OPT_LOG_PRINT_FN... " >&6; } ++ { echo "$as_me:$LINENO: checking for LBER_OPT_LOG_PRINT_FN" >&5 ++echo $ECHO_N "checking for LBER_OPT_LOG_PRINT_FN... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_LBER_OPT_LOG_PRINT_FN+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -58480,21 +55165,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_LBER_OPT_LOG_PRINT_FN=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_LBER_OPT_LOG_PRINT_FN=no +@@ -58502,8 +55186,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_LBER_OPT_LOG_PRINT_FN" >&5 +-$as_echo "$samba_cv_HAVE_LBER_OPT_LOG_PRINT_FN" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_LBER_OPT_LOG_PRINT_FN" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_LBER_OPT_LOG_PRINT_FN" >&6; } + + if test x"$samba_cv_HAVE_LBER_OPT_LOG_PRINT_FN" = x"yes"; then + +@@ -58524,10 +55208,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for ldap_init in -lldap" >&5 +-$as_echo_n "checking for ldap_init in -lldap... " >&6; } ++ { echo "$as_me:$LINENO: checking for ldap_init in -lldap" >&5 ++echo $ECHO_N "checking for ldap_init in -lldap... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_ldap_ldap_init+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -58557,38 +55241,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_ldap_ldap_init=yes; + ac_cv_lib_ext_ldap=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_ldap_ldap_init=no; + ac_cv_lib_ext_ldap=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_ldap_ldap_init" >&5 +-$as_echo "$ac_cv_lib_ext_ldap_ldap_init" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_ldap_ldap_init" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_ldap_ldap_init" >&6; } + if test $ac_cv_lib_ext_ldap_ldap_init = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_LDAP_INIT 1 +@@ -58623,10 +55303,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$LDAP_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for ldap_set_rebind_proc" >&5 +-$as_echo_n "checking for ldap_set_rebind_proc... " >&6; } ++ { echo "$as_me:$LINENO: checking for ldap_set_rebind_proc" >&5 ++echo $ECHO_N "checking for ldap_set_rebind_proc... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_ldap_set_rebind_proc+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -58679,35 +55359,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_ldap_set_rebind_proc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_ldap_set_rebind_proc=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_ldap_set_rebind_proc" >&5 +-$as_echo "$ac_cv_func_ext_ldap_set_rebind_proc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_ldap_set_rebind_proc" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_ldap_set_rebind_proc" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_ldap_set_rebind_proc = yes; then + cat >>confdefs.h <<_ACEOF +@@ -58718,10 +55394,10 @@ + + + LIBS="$LIBS $LDAP_LIBS" +- { $as_echo "$as_me:$LINENO: checking whether ldap_set_rebind_proc takes 3 arguments" >&5 +-$as_echo_n "checking whether ldap_set_rebind_proc takes 3 arguments... " >&6; } ++ { echo "$as_me:$LINENO: checking whether ldap_set_rebind_proc takes 3 arguments" >&5 ++echo $ECHO_N "checking whether ldap_set_rebind_proc takes 3 arguments... $ECHO_C" >&6; } + if test "${smb_ldap_cv_ldap_set_rebind_proc+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -58747,21 +55423,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + smb_ldap_cv_ldap_set_rebind_proc=3 + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + smb_ldap_cv_ldap_set_rebind_proc=2 +@@ -58771,8 +55446,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $smb_ldap_cv_ldap_set_rebind_proc" >&5 +-$as_echo "$smb_ldap_cv_ldap_set_rebind_proc" >&6; } ++{ echo "$as_me:$LINENO: result: $smb_ldap_cv_ldap_set_rebind_proc" >&5 ++echo "${ECHO_T}$smb_ldap_cv_ldap_set_rebind_proc" >&6; } + + + cat >>confdefs.h <<_ACEOF +@@ -58785,10 +55460,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$LDAP_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for ldap_initialize" >&5 +-$as_echo_n "checking for ldap_initialize... " >&6; } ++ { echo "$as_me:$LINENO: checking for ldap_initialize" >&5 ++echo $ECHO_N "checking for ldap_initialize... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_ldap_initialize+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -58841,35 +55516,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_ldap_initialize=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_ldap_initialize=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_ldap_initialize" >&5 +-$as_echo "$ac_cv_func_ext_ldap_initialize" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_ldap_initialize" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_ldap_initialize" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_ldap_initialize = yes; then + cat >>confdefs.h <<_ACEOF +@@ -58891,18 +55562,18 @@ + SMBLDAP="lib/smbldap.o" + SMBLDAPUTIL="lib/smbldap_util.o" + with_ldap_support=yes +- { $as_echo "$as_me:$LINENO: checking whether LDAP support is used" >&5 +-$as_echo_n "checking whether LDAP support is used... " >&6; } +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: checking whether LDAP support is used" >&5 ++echo $ECHO_N "checking whether LDAP support is used... $ECHO_C" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else + if test x"$with_ldap_support" = x"yes"; then +- { { $as_echo "$as_me:$LINENO: error: libldap is needed for LDAP support" >&5 +-$as_echo "$as_me: error: libldap is needed for LDAP support" >&2;} ++ { { echo "$as_me:$LINENO: error: libldap is needed for LDAP support" >&5 ++echo "$as_me: error: libldap is needed for LDAP support" >&2;} + { (exit 1); exit 1; }; } + else +- { $as_echo "$as_me:$LINENO: WARNING: libldap is needed for LDAP support" >&5 +-$as_echo "$as_me: WARNING: libldap is needed for LDAP support" >&2;} ++ { echo "$as_me:$LINENO: WARNING: libldap is needed for LDAP support" >&5 ++echo "$as_me: WARNING: libldap is needed for LDAP support" >&2;} + fi + + LDAP_LIBS="" +@@ -58916,8 +55587,8 @@ + # active directory support + + with_ads_support=auto +-{ $as_echo "$as_me:$LINENO: checking for Active Directory and krb5 support" >&5 +-$as_echo_n "checking for Active Directory and krb5 support... " >&6; } ++{ echo "$as_me:$LINENO: checking for Active Directory and krb5 support" >&5 ++echo $ECHO_N "checking for Active Directory and krb5 support... $ECHO_C" >&6; } + + + # Check whether --with-ads was given. +@@ -58930,8 +55601,8 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: result: $with_ads_support" >&5 +-$as_echo "$with_ads_support" >&6; } ++{ echo "$as_me:$LINENO: result: $with_ads_support" >&5 ++echo "${ECHO_T}$with_ads_support" >&6; } + + FOUND_KRB5=no + KRB5_LIBS="" +@@ -58939,12 +55610,12 @@ + if test x"$with_ldap_support" != x"yes"; then + + if test x"$with_ads_support" = x"yes"; then +- { { $as_echo "$as_me:$LINENO: error: Active Directory Support requires LDAP support" >&5 +-$as_echo "$as_me: error: Active Directory Support requires LDAP support" >&2;} ++ { { echo "$as_me:$LINENO: error: Active Directory Support requires LDAP support" >&5 ++echo "$as_me: error: Active Directory Support requires LDAP support" >&2;} + { (exit 1); exit 1; }; } + elif test x"$with_ads_support" = x"auto"; then +- { $as_echo "$as_me:$LINENO: WARNING: Disabling Active Directory support (requires LDAP support)" >&5 +-$as_echo "$as_me: WARNING: Disabling Active Directory support (requires LDAP support)" >&2;} ++ { echo "$as_me:$LINENO: WARNING: Disabling Active Directory support (requires LDAP support)" >&5 ++echo "$as_me: WARNING: Disabling Active Directory support (requires LDAP support)" >&2;} + with_ads_support=no + fi + +@@ -58961,10 +55632,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$LDAP_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for ldap_init" >&5 +-$as_echo_n "checking for ldap_init... " >&6; } ++ { echo "$as_me:$LINENO: checking for ldap_init" >&5 ++echo $ECHO_N "checking for ldap_init... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_ldap_init+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -59017,35 +55688,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_ldap_init=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_ldap_init=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_ldap_init" >&5 +-$as_echo "$ac_cv_func_ext_ldap_init" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_ldap_init" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_ldap_init" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_ldap_init = yes; then + cat >>confdefs.h <<_ACEOF +@@ -59057,12 +55724,12 @@ + + if test x"$ac_cv_func_ext_ldap_init" != x"yes"; then + if test x"$with_ads_support" = x"yes"; then +- { { $as_echo "$as_me:$LINENO: error: Active Directory support on HPUX requires ldap_init" >&5 +-$as_echo "$as_me: error: Active Directory support on HPUX requires ldap_init" >&2;} ++ { { echo "$as_me:$LINENO: error: Active Directory support on HPUX requires ldap_init" >&5 ++echo "$as_me: error: Active Directory support on HPUX requires ldap_init" >&2;} + { (exit 1); exit 1; }; } + elif test x"$with_ads_support" = x"auto"; then +- { $as_echo "$as_me:$LINENO: WARNING: Disabling Active Directory support (requires ldap_init on HPUX)" >&5 +-$as_echo "$as_me: WARNING: Disabling Active Directory support (requires ldap_init on HPUX)" >&2;} ++ { echo "$as_me:$LINENO: WARNING: Disabling Active Directory support (requires ldap_init on HPUX)" >&5 ++echo "$as_me: WARNING: Disabling Active Directory support (requires ldap_init on HPUX)" >&2;} + with_ads_support=no + fi + fi +@@ -59073,10 +55740,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$LDAP_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for ldap_initialize" >&5 +-$as_echo_n "checking for ldap_initialize... " >&6; } ++ { echo "$as_me:$LINENO: checking for ldap_initialize" >&5 ++echo $ECHO_N "checking for ldap_initialize... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_ldap_initialize+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -59129,35 +55796,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_ldap_initialize=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_ldap_initialize=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_ldap_initialize" >&5 +-$as_echo "$ac_cv_func_ext_ldap_initialize" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_ldap_initialize" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_ldap_initialize" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_ldap_initialize = yes; then + cat >>confdefs.h <<_ACEOF +@@ -59169,12 +55832,12 @@ + + if test x"$ac_cv_func_ext_ldap_initialize" != x"yes"; then + if test x"$with_ads_support" = x"yes"; then +- { { $as_echo "$as_me:$LINENO: error: Active Directory support requires ldap_initialize" >&5 +-$as_echo "$as_me: error: Active Directory support requires ldap_initialize" >&2;} ++ { { echo "$as_me:$LINENO: error: Active Directory support requires ldap_initialize" >&5 ++echo "$as_me: error: Active Directory support requires ldap_initialize" >&2;} + { (exit 1); exit 1; }; } + elif test x"$with_ads_support" = x"auto"; then +- { $as_echo "$as_me:$LINENO: WARNING: Disabling Active Directory support (requires ldap_initialize)" >&5 +-$as_echo "$as_me: WARNING: Disabling Active Directory support (requires ldap_initialize)" >&2;} ++ { echo "$as_me:$LINENO: WARNING: Disabling Active Directory support (requires ldap_initialize)" >&5 ++echo "$as_me: WARNING: Disabling Active Directory support (requires ldap_initialize)" >&2;} + with_ads_support=no + fi + fi +@@ -59187,10 +55850,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$LDAP_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for ldap_add_result_entry" >&5 +-$as_echo_n "checking for ldap_add_result_entry... " >&6; } ++ { echo "$as_me:$LINENO: checking for ldap_add_result_entry" >&5 ++echo $ECHO_N "checking for ldap_add_result_entry... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_ldap_add_result_entry+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -59243,35 +55906,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_ldap_add_result_entry=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_ldap_add_result_entry=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_ldap_add_result_entry" >&5 +-$as_echo "$ac_cv_func_ext_ldap_add_result_entry" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_ldap_add_result_entry" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_ldap_add_result_entry" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_ldap_add_result_entry = yes; then + cat >>confdefs.h <<_ACEOF +@@ -59283,12 +55942,12 @@ + + if test x"$ac_cv_func_ext_ldap_add_result_entry" != x"yes"; then + if test x"$with_ads_support" = x"yes"; then +- { { $as_echo "$as_me:$LINENO: error: Active Directory support requires ldap_add_result_entry" >&5 +-$as_echo "$as_me: error: Active Directory support requires ldap_add_result_entry" >&2;} ++ { { echo "$as_me:$LINENO: error: Active Directory support requires ldap_add_result_entry" >&5 ++echo "$as_me: error: Active Directory support requires ldap_add_result_entry" >&2;} + { (exit 1); exit 1; }; } + elif test x"$with_ads_support" = x"auto"; then +- { $as_echo "$as_me:$LINENO: WARNING: Disabling Active Directory support (requires ldap_add_result_entry)" >&5 +-$as_echo "$as_me: WARNING: Disabling Active Directory support (requires ldap_add_result_entry)" >&2;} ++ { echo "$as_me:$LINENO: WARNING: Disabling Active Directory support (requires ldap_add_result_entry)" >&5 ++echo "$as_me: WARNING: Disabling Active Directory support (requires ldap_add_result_entry)" >&2;} + with_ads_support=no + fi + fi +@@ -59303,24 +55962,24 @@ + if test x$FOUND_KRB5 = x"no"; then + ################################################# + # check for location of Kerberos 5 install +- { $as_echo "$as_me:$LINENO: checking for kerberos 5 install path" >&5 +-$as_echo_n "checking for kerberos 5 install path... " >&6; } ++ { echo "$as_me:$LINENO: checking for kerberos 5 install path" >&5 ++echo $ECHO_N "checking for kerberos 5 install path... $ECHO_C" >&6; } + + # Check whether --with-krb5 was given. + if test "${with_krb5+set}" = set; then + withval=$with_krb5; case "$withval" in + no) +- { $as_echo "$as_me:$LINENO: result: no krb5-path given" >&5 +-$as_echo "no krb5-path given" >&6; } ++ { echo "$as_me:$LINENO: result: no krb5-path given" >&5 ++echo "${ECHO_T}no krb5-path given" >&6; } + ;; + yes) +- { $as_echo "$as_me:$LINENO: result: /usr" >&5 +-$as_echo "/usr" >&6; } ++ { echo "$as_me:$LINENO: result: /usr" >&5 ++echo "${ECHO_T}/usr" >&6; } + FOUND_KRB5=yes + ;; + *) +- { $as_echo "$as_me:$LINENO: result: $withval" >&5 +-$as_echo "$withval" >&6; } ++ { echo "$as_me:$LINENO: result: $withval" >&5 ++echo "${ECHO_T}$withval" >&6; } + KRB5_CFLAGS="-I$withval/include" + KRB5_CPPFLAGS="-I$withval/include" + KRB5_LDFLAGS="-L$withval/lib" +@@ -59331,8 +55990,8 @@ + ;; + esac + else +- { $as_echo "$as_me:$LINENO: result: no krb5-path given" >&5 +-$as_echo "no krb5-path given" >&6; } ++ { echo "$as_me:$LINENO: result: no krb5-path given" >&5 ++echo "${ECHO_T}no krb5-path given" >&6; } + + fi + +@@ -59342,10 +56001,10 @@ + # check for krb5-config from recent MIT and Heimdal kerberos 5 + # Extract the first word of "krb5-config", so it can be a program name with args. + set dummy krb5-config; ac_word=$2 +-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } + if test "${ac_cv_path_KRB5CONFIG+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + case $KRB5CONFIG in + [\\/]* | ?:[\\/]*) +@@ -59360,7 +56019,7 @@ + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_KRB5CONFIG="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -59372,16 +56031,16 @@ + fi + KRB5CONFIG=$ac_cv_path_KRB5CONFIG + if test -n "$KRB5CONFIG"; then +- { $as_echo "$as_me:$LINENO: result: $KRB5CONFIG" >&5 +-$as_echo "$KRB5CONFIG" >&6; } ++ { echo "$as_me:$LINENO: result: $KRB5CONFIG" >&5 ++echo "${ECHO_T}$KRB5CONFIG" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking for working krb5-config" >&5 +-$as_echo_n "checking for working krb5-config... " >&6; } ++ { echo "$as_me:$LINENO: checking for working krb5-config" >&5 ++echo $ECHO_N "checking for working krb5-config... $ECHO_C" >&6; } + if test -x "$KRB5CONFIG"; then + ac_save_CFLAGS=$CFLAGS + CFLAGS="";export CFLAGS +@@ -59394,71 +56053,71 @@ + CFLAGS=$ac_save_CFLAGS;export CFLAGS + LDFLAGS=$ac_save_LDFLAGS;export LDFLAGS + FOUND_KRB5=yes +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no. Fallback to previous krb5 detection strategy" >&5 +-$as_echo "no. Fallback to previous krb5 detection strategy" >&6; } ++ { echo "$as_me:$LINENO: result: no. Fallback to previous krb5 detection strategy" >&5 ++echo "${ECHO_T}no. Fallback to previous krb5 detection strategy" >&6; } + fi + + if test x$FOUND_KRB5 = x"no"; then + ################################################# + # see if this box has the SuSE location for the heimdal krb implementation +- { $as_echo "$as_me:$LINENO: checking for /usr/include/heimdal" >&5 +-$as_echo_n "checking for /usr/include/heimdal... " >&6; } ++ { echo "$as_me:$LINENO: checking for /usr/include/heimdal" >&5 ++echo $ECHO_N "checking for /usr/include/heimdal... $ECHO_C" >&6; } + if test -d /usr/include/heimdal; then + if test -f /usr/lib/heimdal/lib/libkrb5.a; then + KRB5_CFLAGS="-I/usr/include/heimdal" + KRB5_CPPFLAGS="-I/usr/include/heimdal" + KRB5_LDFLAGS="-L/usr/lib/heimdal/lib" + FOUND_KRB5=yes +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else + KRB5_CFLAGS="-I/usr/include/heimdal" + KRB5_CPPFLAGS="-I/usr/include/heimdal" + FOUND_KRB5=yes +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + fi + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + fi + + if test x$FOUND_KRB5 = x"no"; then + ################################################# + # see if this box has the RedHat location for kerberos +- { $as_echo "$as_me:$LINENO: checking for /usr/kerberos" >&5 +-$as_echo_n "checking for /usr/kerberos... " >&6; } ++ { echo "$as_me:$LINENO: checking for /usr/kerberos" >&5 ++echo $ECHO_N "checking for /usr/kerberos... $ECHO_C" >&6; } + if test -d /usr/kerberos -a -f /usr/kerberos/lib/libkrb5.a; then + KRB5_LDFLAGS="-L/usr/kerberos/lib" + KRB5_CFLAGS="-I/usr/kerberos/include" + KRB5_CPPFLAGS="-I/usr/kerberos/include" + FOUND_KRB5=yes +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + fi + + if test x$FOUND_KRB5 = x"no"; then + ################################################# + # see if this box has the OpenBSD location for heimdal krb5 +- { $as_echo "$as_me:$LINENO: checking for /usr/include/kerberosV" >&5 +-$as_echo_n "checking for /usr/include/kerberosV... " >&6; } ++ { echo "$as_me:$LINENO: checking for /usr/include/kerberosV" >&5 ++echo $ECHO_N "checking for /usr/include/kerberosV... $ECHO_C" >&6; } + if test -d /usr/include/kerberosV; then + KRB5_CPPFLAGS="-I/usr/include/kerberosV" + KRB5_LIBS="-lcrypto" + FOUND_KRB5=yes +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + fi + +@@ -59478,21 +56137,20 @@ + + for ac_header in krb5.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -59508,33 +56166,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -59548,52 +56205,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -59602,24 +56258,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -59633,12 +56286,12 @@ + # i.e with_ads_support = auto, otherwise die with an error. + + if test x"$with_ads_support" = x"yes"; then +- { { $as_echo "$as_me:$LINENO: error: Active Directory cannot be supported without krb5.h" >&5 +-$as_echo "$as_me: error: Active Directory cannot be supported without krb5.h" >&2;} ++ { { echo "$as_me:$LINENO: error: Active Directory cannot be supported without krb5.h" >&5 ++echo "$as_me: error: Active Directory cannot be supported without krb5.h" >&2;} + { (exit 1); exit 1; }; } + else +- { $as_echo "$as_me:$LINENO: WARNING: Active Directory cannot be supported without krb5.h" >&5 +-$as_echo "$as_me: WARNING: Active Directory cannot be supported without krb5.h" >&2;} ++ { echo "$as_me:$LINENO: WARNING: Active Directory cannot be supported without krb5.h" >&5 ++echo "$as_me: WARNING: Active Directory cannot be supported without krb5.h" >&2;} + fi + + # Turn off AD support and restore CFLAGS and LIBS variables +@@ -59652,21 +56305,20 @@ + + for ac_header in krb5/locate_plugin.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -59682,33 +56334,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -59722,52 +56373,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -59776,24 +56426,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -59821,21 +56468,20 @@ + + for ac_header in gssapi.h gssapi/gssapi_generic.h gssapi/gssapi.h com_err.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -59851,33 +56497,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -59891,52 +56536,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -59945,24 +56589,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -59981,10 +56622,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for _et_list in -lcom_err" >&5 +-$as_echo_n "checking for _et_list in -lcom_err... " >&6; } ++ { echo "$as_me:$LINENO: checking for _et_list in -lcom_err" >&5 ++echo $ECHO_N "checking for _et_list in -lcom_err... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_com_err__et_list+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -60014,38 +56655,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_com_err__et_list=yes; + ac_cv_lib_ext_com_err=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_com_err__et_list=no; + ac_cv_lib_ext_com_err=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_com_err__et_list" >&5 +-$as_echo "$ac_cv_lib_ext_com_err__et_list" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_com_err__et_list" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_com_err__et_list" >&6; } + if test $ac_cv_lib_ext_com_err__et_list = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE__ET_LIST 1 +@@ -60080,10 +56717,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for krb5_encrypt_data in -lk5crypto" >&5 +-$as_echo_n "checking for krb5_encrypt_data in -lk5crypto... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_encrypt_data in -lk5crypto" >&5 ++echo $ECHO_N "checking for krb5_encrypt_data in -lk5crypto... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_k5crypto_krb5_encrypt_data+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -60113,38 +56750,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_k5crypto_krb5_encrypt_data=yes; + ac_cv_lib_ext_k5crypto=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_k5crypto_krb5_encrypt_data=no; + ac_cv_lib_ext_k5crypto=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_k5crypto_krb5_encrypt_data" >&5 +-$as_echo "$ac_cv_lib_ext_k5crypto_krb5_encrypt_data" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_k5crypto_krb5_encrypt_data" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_k5crypto_krb5_encrypt_data" >&6; } + if test $ac_cv_lib_ext_k5crypto_krb5_encrypt_data = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_KRB5_ENCRYPT_DATA 1 +@@ -60181,10 +56814,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for des_set_key in -lcrypto" >&5 +-$as_echo_n "checking for des_set_key in -lcrypto... " >&6; } ++ { echo "$as_me:$LINENO: checking for des_set_key in -lcrypto" >&5 ++echo $ECHO_N "checking for des_set_key in -lcrypto... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_crypto_des_set_key+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -60214,38 +56847,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_crypto_des_set_key=yes; + ac_cv_lib_ext_crypto=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_crypto_des_set_key=no; + ac_cv_lib_ext_crypto=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_crypto_des_set_key" >&5 +-$as_echo "$ac_cv_lib_ext_crypto_des_set_key" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_crypto_des_set_key" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_crypto_des_set_key" >&6; } + if test $ac_cv_lib_ext_crypto_des_set_key = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_DES_SET_KEY 1 +@@ -60280,10 +56909,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for copy_Authenticator in -lasn1" >&5 +-$as_echo_n "checking for copy_Authenticator in -lasn1... " >&6; } ++ { echo "$as_me:$LINENO: checking for copy_Authenticator in -lasn1" >&5 ++echo $ECHO_N "checking for copy_Authenticator in -lasn1... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_asn1_copy_Authenticator+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -60313,38 +56942,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_asn1_copy_Authenticator=yes; + ac_cv_lib_ext_asn1=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_asn1_copy_Authenticator=no; + ac_cv_lib_ext_asn1=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_asn1_copy_Authenticator" >&5 +-$as_echo "$ac_cv_lib_ext_asn1_copy_Authenticator" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_asn1_copy_Authenticator" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_asn1_copy_Authenticator" >&6; } + if test $ac_cv_lib_ext_asn1_copy_Authenticator = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_COPY_AUTHENTICATOR 1 +@@ -60379,10 +57004,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for roken_getaddrinfo_hostspec in -lroken" >&5 +-$as_echo_n "checking for roken_getaddrinfo_hostspec in -lroken... " >&6; } ++ { echo "$as_me:$LINENO: checking for roken_getaddrinfo_hostspec in -lroken" >&5 ++echo $ECHO_N "checking for roken_getaddrinfo_hostspec in -lroken... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_roken_roken_getaddrinfo_hostspec+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -60412,38 +57037,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_roken_roken_getaddrinfo_hostspec=yes; + ac_cv_lib_ext_roken=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_roken_roken_getaddrinfo_hostspec=no; + ac_cv_lib_ext_roken=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_roken_roken_getaddrinfo_hostspec" >&5 +-$as_echo "$ac_cv_lib_ext_roken_roken_getaddrinfo_hostspec" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_roken_roken_getaddrinfo_hostspec" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_roken_roken_getaddrinfo_hostspec" >&6; } + if test $ac_cv_lib_ext_roken_roken_getaddrinfo_hostspec = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_ROKEN_GETADDRINFO_HOSTSPEC 1 +@@ -60480,10 +57101,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for gss_display_status in -lgssapi" >&5 +-$as_echo_n "checking for gss_display_status in -lgssapi... " >&6; } ++ { echo "$as_me:$LINENO: checking for gss_display_status in -lgssapi" >&5 ++echo $ECHO_N "checking for gss_display_status in -lgssapi... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_gssapi_gss_display_status+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -60513,38 +57134,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_gssapi_gss_display_status=yes; + ac_cv_lib_ext_gssapi=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_gssapi_gss_display_status=no; + ac_cv_lib_ext_gssapi=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_gssapi_gss_display_status" >&5 +-$as_echo "$ac_cv_lib_ext_gssapi_gss_display_status" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_gssapi_gss_display_status" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_gssapi_gss_display_status" >&6; } + if test $ac_cv_lib_ext_gssapi_gss_display_status = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_GSS_DISPLAY_STATUS 1 +@@ -60583,10 +57200,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for krb5_mk_req_extended in -lkrb5" >&5 +-$as_echo_n "checking for krb5_mk_req_extended in -lkrb5... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_mk_req_extended in -lkrb5" >&5 ++echo $ECHO_N "checking for krb5_mk_req_extended in -lkrb5... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_krb5_krb5_mk_req_extended+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -60616,38 +57233,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_krb5_krb5_mk_req_extended=yes; + ac_cv_lib_ext_krb5=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_krb5_krb5_mk_req_extended=no; + ac_cv_lib_ext_krb5=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_krb5_krb5_mk_req_extended" >&5 +-$as_echo "$ac_cv_lib_ext_krb5_krb5_mk_req_extended" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_krb5_krb5_mk_req_extended" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_krb5_krb5_mk_req_extended" >&6; } + if test $ac_cv_lib_ext_krb5_krb5_mk_req_extended = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_KRB5_MK_REQ_EXTENDED 1 +@@ -60682,10 +57295,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for krb5_kt_compare in -lkrb5" >&5 +-$as_echo_n "checking for krb5_kt_compare in -lkrb5... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_kt_compare in -lkrb5" >&5 ++echo $ECHO_N "checking for krb5_kt_compare in -lkrb5... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_krb5_krb5_kt_compare+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -60715,38 +57328,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_krb5_krb5_kt_compare=yes; + ac_cv_lib_ext_krb5=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_krb5_krb5_kt_compare=no; + ac_cv_lib_ext_krb5=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_krb5_krb5_kt_compare" >&5 +-$as_echo "$ac_cv_lib_ext_krb5_krb5_kt_compare" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_krb5_krb5_kt_compare" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_krb5_krb5_kt_compare" >&6; } + if test $ac_cv_lib_ext_krb5_krb5_kt_compare = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_KRB5_KT_COMPARE 1 +@@ -60785,10 +57394,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for gss_display_status in -lgssapi_krb5" >&5 +-$as_echo_n "checking for gss_display_status in -lgssapi_krb5... " >&6; } ++ { echo "$as_me:$LINENO: checking for gss_display_status in -lgssapi_krb5" >&5 ++echo $ECHO_N "checking for gss_display_status in -lgssapi_krb5... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_gssapi_krb5_gss_display_status+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -60818,38 +57427,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_gssapi_krb5_gss_display_status=yes; + ac_cv_lib_ext_gssapi_krb5=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_gssapi_krb5_gss_display_status=no; + ac_cv_lib_ext_gssapi_krb5=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_gssapi_krb5_gss_display_status" >&5 +-$as_echo "$ac_cv_lib_ext_gssapi_krb5_gss_display_status" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_gssapi_krb5_gss_display_status" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_gssapi_krb5_gss_display_status" >&6; } + if test $ac_cv_lib_ext_gssapi_krb5_gss_display_status = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_GSS_DISPLAY_STATUS 1 +@@ -60882,10 +57487,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_set_real_time" >&5 +-$as_echo_n "checking for krb5_set_real_time... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_set_real_time" >&5 ++echo $ECHO_N "checking for krb5_set_real_time... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_set_real_time+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -60938,35 +57543,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_set_real_time=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_set_real_time=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_set_real_time" >&5 +-$as_echo "$ac_cv_func_ext_krb5_set_real_time" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_set_real_time" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_set_real_time" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_set_real_time = yes; then + cat >>confdefs.h <<_ACEOF +@@ -60980,10 +57581,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_set_default_in_tkt_etypes" >&5 +-$as_echo_n "checking for krb5_set_default_in_tkt_etypes... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_set_default_in_tkt_etypes" >&5 ++echo $ECHO_N "checking for krb5_set_default_in_tkt_etypes... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_set_default_in_tkt_etypes+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -61036,35 +57637,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_set_default_in_tkt_etypes=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_set_default_in_tkt_etypes=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_set_default_in_tkt_etypes" >&5 +-$as_echo "$ac_cv_func_ext_krb5_set_default_in_tkt_etypes" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_set_default_in_tkt_etypes" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_set_default_in_tkt_etypes" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_set_default_in_tkt_etypes = yes; then + cat >>confdefs.h <<_ACEOF +@@ -61078,10 +57675,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_set_default_tgs_enctypes" >&5 +-$as_echo_n "checking for krb5_set_default_tgs_enctypes... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_set_default_tgs_enctypes" >&5 ++echo $ECHO_N "checking for krb5_set_default_tgs_enctypes... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_set_default_tgs_enctypes+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -61134,35 +57731,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_set_default_tgs_enctypes=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_set_default_tgs_enctypes=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_set_default_tgs_enctypes" >&5 +-$as_echo "$ac_cv_func_ext_krb5_set_default_tgs_enctypes" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_set_default_tgs_enctypes" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_set_default_tgs_enctypes" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_set_default_tgs_enctypes = yes; then + cat >>confdefs.h <<_ACEOF +@@ -61176,10 +57769,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_set_default_tgs_ktypes" >&5 +-$as_echo_n "checking for krb5_set_default_tgs_ktypes... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_set_default_tgs_ktypes" >&5 ++echo $ECHO_N "checking for krb5_set_default_tgs_ktypes... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_set_default_tgs_ktypes+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -61232,35 +57825,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_set_default_tgs_ktypes=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_set_default_tgs_ktypes=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_set_default_tgs_ktypes" >&5 +-$as_echo "$ac_cv_func_ext_krb5_set_default_tgs_ktypes" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_set_default_tgs_ktypes" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_set_default_tgs_ktypes" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_set_default_tgs_ktypes = yes; then + cat >>confdefs.h <<_ACEOF +@@ -61274,10 +57863,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_principal2salt" >&5 +-$as_echo_n "checking for krb5_principal2salt... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_principal2salt" >&5 ++echo $ECHO_N "checking for krb5_principal2salt... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_principal2salt+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -61330,35 +57919,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_principal2salt=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_principal2salt=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_principal2salt" >&5 +-$as_echo "$ac_cv_func_ext_krb5_principal2salt" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_principal2salt" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_principal2salt" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_principal2salt = yes; then + cat >>confdefs.h <<_ACEOF +@@ -61372,10 +57957,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_use_enctype" >&5 +-$as_echo_n "checking for krb5_use_enctype... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_use_enctype" >&5 ++echo $ECHO_N "checking for krb5_use_enctype... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_use_enctype+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -61428,35 +58013,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_use_enctype=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_use_enctype=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_use_enctype" >&5 +-$as_echo "$ac_cv_func_ext_krb5_use_enctype" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_use_enctype" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_use_enctype" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_use_enctype = yes; then + cat >>confdefs.h <<_ACEOF +@@ -61470,10 +58051,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_string_to_key" >&5 +-$as_echo_n "checking for krb5_string_to_key... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_string_to_key" >&5 ++echo $ECHO_N "checking for krb5_string_to_key... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_string_to_key+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -61526,35 +58107,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_string_to_key=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_string_to_key=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_string_to_key" >&5 +-$as_echo "$ac_cv_func_ext_krb5_string_to_key" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_string_to_key" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_string_to_key" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_string_to_key = yes; then + cat >>confdefs.h <<_ACEOF +@@ -61568,10 +58145,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_get_pw_salt" >&5 +-$as_echo_n "checking for krb5_get_pw_salt... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_get_pw_salt" >&5 ++echo $ECHO_N "checking for krb5_get_pw_salt... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_get_pw_salt+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -61624,35 +58201,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_get_pw_salt=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_get_pw_salt=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_get_pw_salt" >&5 +-$as_echo "$ac_cv_func_ext_krb5_get_pw_salt" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_get_pw_salt" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_get_pw_salt" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_get_pw_salt = yes; then + cat >>confdefs.h <<_ACEOF +@@ -61666,10 +58239,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_string_to_key_salt" >&5 +-$as_echo_n "checking for krb5_string_to_key_salt... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_string_to_key_salt" >&5 ++echo $ECHO_N "checking for krb5_string_to_key_salt... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_string_to_key_salt+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -61722,35 +58295,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_string_to_key_salt=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_string_to_key_salt=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_string_to_key_salt" >&5 +-$as_echo "$ac_cv_func_ext_krb5_string_to_key_salt" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_string_to_key_salt" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_string_to_key_salt" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_string_to_key_salt = yes; then + cat >>confdefs.h <<_ACEOF +@@ -61764,10 +58333,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_auth_con_setkey" >&5 +-$as_echo_n "checking for krb5_auth_con_setkey... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_auth_con_setkey" >&5 ++echo $ECHO_N "checking for krb5_auth_con_setkey... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_auth_con_setkey+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -61820,35 +58389,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_auth_con_setkey=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_auth_con_setkey=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_auth_con_setkey" >&5 +-$as_echo "$ac_cv_func_ext_krb5_auth_con_setkey" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_auth_con_setkey" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_auth_con_setkey" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_auth_con_setkey = yes; then + cat >>confdefs.h <<_ACEOF +@@ -61862,10 +58427,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_auth_con_setuseruserkey" >&5 +-$as_echo_n "checking for krb5_auth_con_setuseruserkey... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_auth_con_setuseruserkey" >&5 ++echo $ECHO_N "checking for krb5_auth_con_setuseruserkey... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_auth_con_setuseruserkey+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -61918,35 +58483,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_auth_con_setuseruserkey=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_auth_con_setuseruserkey=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_auth_con_setuseruserkey" >&5 +-$as_echo "$ac_cv_func_ext_krb5_auth_con_setuseruserkey" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_auth_con_setuseruserkey" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_auth_con_setuseruserkey" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_auth_con_setuseruserkey = yes; then + cat >>confdefs.h <<_ACEOF +@@ -61960,10 +58521,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_locate_kdc" >&5 +-$as_echo_n "checking for krb5_locate_kdc... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_locate_kdc" >&5 ++echo $ECHO_N "checking for krb5_locate_kdc... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_locate_kdc+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -62016,35 +58577,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_locate_kdc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_locate_kdc=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_locate_kdc" >&5 +-$as_echo "$ac_cv_func_ext_krb5_locate_kdc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_locate_kdc" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_locate_kdc" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_locate_kdc = yes; then + cat >>confdefs.h <<_ACEOF +@@ -62058,10 +58615,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_get_permitted_enctypes" >&5 +-$as_echo_n "checking for krb5_get_permitted_enctypes... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_get_permitted_enctypes" >&5 ++echo $ECHO_N "checking for krb5_get_permitted_enctypes... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_get_permitted_enctypes+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -62114,35 +58671,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_get_permitted_enctypes=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_get_permitted_enctypes=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_get_permitted_enctypes" >&5 +-$as_echo "$ac_cv_func_ext_krb5_get_permitted_enctypes" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_get_permitted_enctypes" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_get_permitted_enctypes" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_get_permitted_enctypes = yes; then + cat >>confdefs.h <<_ACEOF +@@ -62156,10 +58709,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_get_default_in_tkt_etypes" >&5 +-$as_echo_n "checking for krb5_get_default_in_tkt_etypes... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_get_default_in_tkt_etypes" >&5 ++echo $ECHO_N "checking for krb5_get_default_in_tkt_etypes... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_get_default_in_tkt_etypes+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -62212,35 +58765,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_get_default_in_tkt_etypes=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_get_default_in_tkt_etypes=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_get_default_in_tkt_etypes" >&5 +-$as_echo "$ac_cv_func_ext_krb5_get_default_in_tkt_etypes" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_get_default_in_tkt_etypes" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_get_default_in_tkt_etypes" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_get_default_in_tkt_etypes = yes; then + cat >>confdefs.h <<_ACEOF +@@ -62254,10 +58803,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_free_data_contents" >&5 +-$as_echo_n "checking for krb5_free_data_contents... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_free_data_contents" >&5 ++echo $ECHO_N "checking for krb5_free_data_contents... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_free_data_contents+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -62310,35 +58859,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_free_data_contents=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_free_data_contents=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_free_data_contents" >&5 +-$as_echo "$ac_cv_func_ext_krb5_free_data_contents" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_free_data_contents" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_free_data_contents" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_free_data_contents = yes; then + cat >>confdefs.h <<_ACEOF +@@ -62352,10 +58897,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_principal_get_comp_string" >&5 +-$as_echo_n "checking for krb5_principal_get_comp_string... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_principal_get_comp_string" >&5 ++echo $ECHO_N "checking for krb5_principal_get_comp_string... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_principal_get_comp_string+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -62408,35 +58953,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_principal_get_comp_string=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_principal_get_comp_string=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_principal_get_comp_string" >&5 +-$as_echo "$ac_cv_func_ext_krb5_principal_get_comp_string" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_principal_get_comp_string" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_principal_get_comp_string" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_principal_get_comp_string = yes; then + cat >>confdefs.h <<_ACEOF +@@ -62450,10 +58991,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_free_unparsed_name" >&5 +-$as_echo_n "checking for krb5_free_unparsed_name... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_free_unparsed_name" >&5 ++echo $ECHO_N "checking for krb5_free_unparsed_name... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_free_unparsed_name+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -62506,35 +59047,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_free_unparsed_name=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_free_unparsed_name=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_free_unparsed_name" >&5 +-$as_echo "$ac_cv_func_ext_krb5_free_unparsed_name" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_free_unparsed_name" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_free_unparsed_name" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_free_unparsed_name = yes; then + cat >>confdefs.h <<_ACEOF +@@ -62548,10 +59085,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_free_keytab_entry_contents" >&5 +-$as_echo_n "checking for krb5_free_keytab_entry_contents... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_free_keytab_entry_contents" >&5 ++echo $ECHO_N "checking for krb5_free_keytab_entry_contents... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_free_keytab_entry_contents+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -62604,35 +59141,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_free_keytab_entry_contents=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_free_keytab_entry_contents=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_free_keytab_entry_contents" >&5 +-$as_echo "$ac_cv_func_ext_krb5_free_keytab_entry_contents" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_free_keytab_entry_contents" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_free_keytab_entry_contents" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_free_keytab_entry_contents = yes; then + cat >>confdefs.h <<_ACEOF +@@ -62646,10 +59179,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_kt_free_entry" >&5 +-$as_echo_n "checking for krb5_kt_free_entry... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_kt_free_entry" >&5 ++echo $ECHO_N "checking for krb5_kt_free_entry... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_kt_free_entry+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -62702,35 +59235,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_kt_free_entry=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_kt_free_entry=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_kt_free_entry" >&5 +-$as_echo "$ac_cv_func_ext_krb5_kt_free_entry" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_kt_free_entry" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_kt_free_entry" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_kt_free_entry = yes; then + cat >>confdefs.h <<_ACEOF +@@ -62744,10 +59273,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_krbhst_init" >&5 +-$as_echo_n "checking for krb5_krbhst_init... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_krbhst_init" >&5 ++echo $ECHO_N "checking for krb5_krbhst_init... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_krbhst_init+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -62800,35 +59329,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_krbhst_init=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_krbhst_init=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_krbhst_init" >&5 +-$as_echo "$ac_cv_func_ext_krb5_krbhst_init" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_krbhst_init" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_krbhst_init" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_krbhst_init = yes; then + cat >>confdefs.h <<_ACEOF +@@ -62842,10 +59367,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_krbhst_get_addrinfo" >&5 +-$as_echo_n "checking for krb5_krbhst_get_addrinfo... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_krbhst_get_addrinfo" >&5 ++echo $ECHO_N "checking for krb5_krbhst_get_addrinfo... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_krbhst_get_addrinfo+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -62898,35 +59423,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_krbhst_get_addrinfo=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_krbhst_get_addrinfo=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_krbhst_get_addrinfo" >&5 +-$as_echo "$ac_cv_func_ext_krb5_krbhst_get_addrinfo" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_krbhst_get_addrinfo" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_krbhst_get_addrinfo" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_krbhst_get_addrinfo = yes; then + cat >>confdefs.h <<_ACEOF +@@ -62940,10 +59461,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_c_enctype_compare" >&5 +-$as_echo_n "checking for krb5_c_enctype_compare... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_c_enctype_compare" >&5 ++echo $ECHO_N "checking for krb5_c_enctype_compare... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_c_enctype_compare+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -62996,35 +59517,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_c_enctype_compare=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_c_enctype_compare=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_c_enctype_compare" >&5 +-$as_echo "$ac_cv_func_ext_krb5_c_enctype_compare" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_c_enctype_compare" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_c_enctype_compare" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_c_enctype_compare = yes; then + cat >>confdefs.h <<_ACEOF +@@ -63038,10 +59555,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_enctypes_compatible_keys" >&5 +-$as_echo_n "checking for krb5_enctypes_compatible_keys... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_enctypes_compatible_keys" >&5 ++echo $ECHO_N "checking for krb5_enctypes_compatible_keys... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_enctypes_compatible_keys+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -63094,35 +59611,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_enctypes_compatible_keys=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_enctypes_compatible_keys=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_enctypes_compatible_keys" >&5 +-$as_echo "$ac_cv_func_ext_krb5_enctypes_compatible_keys" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_enctypes_compatible_keys" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_enctypes_compatible_keys" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_enctypes_compatible_keys = yes; then + cat >>confdefs.h <<_ACEOF +@@ -63136,10 +59649,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_crypto_init" >&5 +-$as_echo_n "checking for krb5_crypto_init... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_crypto_init" >&5 ++echo $ECHO_N "checking for krb5_crypto_init... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_crypto_init+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -63192,35 +59705,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_crypto_init=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_crypto_init=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_crypto_init" >&5 +-$as_echo "$ac_cv_func_ext_krb5_crypto_init" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_crypto_init" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_crypto_init" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_crypto_init = yes; then + cat >>confdefs.h <<_ACEOF +@@ -63234,10 +59743,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_crypto_destroy" >&5 +-$as_echo_n "checking for krb5_crypto_destroy... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_crypto_destroy" >&5 ++echo $ECHO_N "checking for krb5_crypto_destroy... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_crypto_destroy+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -63290,35 +59799,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_crypto_destroy=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_crypto_destroy=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_crypto_destroy" >&5 +-$as_echo "$ac_cv_func_ext_krb5_crypto_destroy" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_crypto_destroy" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_crypto_destroy" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_crypto_destroy = yes; then + cat >>confdefs.h <<_ACEOF +@@ -63332,10 +59837,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_decode_ap_req" >&5 +-$as_echo_n "checking for krb5_decode_ap_req... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_decode_ap_req" >&5 ++echo $ECHO_N "checking for krb5_decode_ap_req... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_decode_ap_req+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -63388,35 +59893,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_decode_ap_req=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_decode_ap_req=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_decode_ap_req" >&5 +-$as_echo "$ac_cv_func_ext_krb5_decode_ap_req" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_decode_ap_req" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_decode_ap_req" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_decode_ap_req = yes; then + cat >>confdefs.h <<_ACEOF +@@ -63430,10 +59931,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for free_AP_REQ" >&5 +-$as_echo_n "checking for free_AP_REQ... " >&6; } ++ { echo "$as_me:$LINENO: checking for free_AP_REQ" >&5 ++echo $ECHO_N "checking for free_AP_REQ... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_free_AP_REQ+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -63486,35 +59987,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_free_AP_REQ=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_free_AP_REQ=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_free_AP_REQ" >&5 +-$as_echo "$ac_cv_func_ext_free_AP_REQ" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_free_AP_REQ" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_free_AP_REQ" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_free_AP_REQ = yes; then + cat >>confdefs.h <<_ACEOF +@@ -63528,10 +60025,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_verify_checksum" >&5 +-$as_echo_n "checking for krb5_verify_checksum... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_verify_checksum" >&5 ++echo $ECHO_N "checking for krb5_verify_checksum... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_verify_checksum+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -63584,35 +60081,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_verify_checksum=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_verify_checksum=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_verify_checksum" >&5 +-$as_echo "$ac_cv_func_ext_krb5_verify_checksum" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_verify_checksum" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_verify_checksum" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_verify_checksum = yes; then + cat >>confdefs.h <<_ACEOF +@@ -63626,10 +60119,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_c_verify_checksum" >&5 +-$as_echo_n "checking for krb5_c_verify_checksum... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_c_verify_checksum" >&5 ++echo $ECHO_N "checking for krb5_c_verify_checksum... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_c_verify_checksum+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -63682,35 +60175,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_c_verify_checksum=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_c_verify_checksum=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_c_verify_checksum" >&5 +-$as_echo "$ac_cv_func_ext_krb5_c_verify_checksum" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_c_verify_checksum" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_c_verify_checksum" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_c_verify_checksum = yes; then + cat >>confdefs.h <<_ACEOF +@@ -63724,10 +60213,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_principal_compare_any_realm" >&5 +-$as_echo_n "checking for krb5_principal_compare_any_realm... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_principal_compare_any_realm" >&5 ++echo $ECHO_N "checking for krb5_principal_compare_any_realm... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_principal_compare_any_realm+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -63780,35 +60269,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_principal_compare_any_realm=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_principal_compare_any_realm=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_principal_compare_any_realm" >&5 +-$as_echo "$ac_cv_func_ext_krb5_principal_compare_any_realm" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_principal_compare_any_realm" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_principal_compare_any_realm" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_principal_compare_any_realm = yes; then + cat >>confdefs.h <<_ACEOF +@@ -63822,10 +60307,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_parse_name_norealm" >&5 +-$as_echo_n "checking for krb5_parse_name_norealm... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_parse_name_norealm" >&5 ++echo $ECHO_N "checking for krb5_parse_name_norealm... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_parse_name_norealm+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -63878,35 +60363,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_parse_name_norealm=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_parse_name_norealm=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_parse_name_norealm" >&5 +-$as_echo "$ac_cv_func_ext_krb5_parse_name_norealm" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_parse_name_norealm" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_parse_name_norealm" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_parse_name_norealm = yes; then + cat >>confdefs.h <<_ACEOF +@@ -63920,10 +60401,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_princ_size" >&5 +-$as_echo_n "checking for krb5_princ_size... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_princ_size" >&5 ++echo $ECHO_N "checking for krb5_princ_size... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_princ_size+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -63976,35 +60457,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_princ_size=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_princ_size=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_princ_size" >&5 +-$as_echo "$ac_cv_func_ext_krb5_princ_size" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_princ_size" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_princ_size" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_princ_size = yes; then + cat >>confdefs.h <<_ACEOF +@@ -64018,10 +60495,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_get_init_creds_opt_set_pac_request" >&5 +-$as_echo_n "checking for krb5_get_init_creds_opt_set_pac_request... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_get_init_creds_opt_set_pac_request" >&5 ++echo $ECHO_N "checking for krb5_get_init_creds_opt_set_pac_request... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_get_init_creds_opt_set_pac_request+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -64074,35 +60551,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_get_init_creds_opt_set_pac_request=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_get_init_creds_opt_set_pac_request=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_get_init_creds_opt_set_pac_request" >&5 +-$as_echo "$ac_cv_func_ext_krb5_get_init_creds_opt_set_pac_request" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_get_init_creds_opt_set_pac_request" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_get_init_creds_opt_set_pac_request" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_get_init_creds_opt_set_pac_request = yes; then + cat >>confdefs.h <<_ACEOF +@@ -64116,10 +60589,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_get_renewed_creds" >&5 +-$as_echo_n "checking for krb5_get_renewed_creds... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_get_renewed_creds" >&5 ++echo $ECHO_N "checking for krb5_get_renewed_creds... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_get_renewed_creds+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -64172,35 +60645,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_get_renewed_creds=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_get_renewed_creds=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_get_renewed_creds" >&5 +-$as_echo "$ac_cv_func_ext_krb5_get_renewed_creds" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_get_renewed_creds" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_get_renewed_creds" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_get_renewed_creds = yes; then + cat >>confdefs.h <<_ACEOF +@@ -64214,10 +60683,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_get_kdc_cred" >&5 +-$as_echo_n "checking for krb5_get_kdc_cred... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_get_kdc_cred" >&5 ++echo $ECHO_N "checking for krb5_get_kdc_cred... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_get_kdc_cred+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -64270,35 +60739,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_get_kdc_cred=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_get_kdc_cred=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_get_kdc_cred" >&5 +-$as_echo "$ac_cv_func_ext_krb5_get_kdc_cred" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_get_kdc_cred" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_get_kdc_cred" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_get_kdc_cred = yes; then + cat >>confdefs.h <<_ACEOF +@@ -64312,10 +60777,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_free_error_contents" >&5 +-$as_echo_n "checking for krb5_free_error_contents... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_free_error_contents" >&5 ++echo $ECHO_N "checking for krb5_free_error_contents... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_free_error_contents+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -64368,35 +60833,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_free_error_contents=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_free_error_contents=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_free_error_contents" >&5 +-$as_echo "$ac_cv_func_ext_krb5_free_error_contents" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_free_error_contents" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_free_error_contents" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_free_error_contents = yes; then + cat >>confdefs.h <<_ACEOF +@@ -64410,10 +60871,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for initialize_krb5_error_table" >&5 +-$as_echo_n "checking for initialize_krb5_error_table... " >&6; } ++ { echo "$as_me:$LINENO: checking for initialize_krb5_error_table" >&5 ++echo $ECHO_N "checking for initialize_krb5_error_table... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_initialize_krb5_error_table+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -64466,35 +60927,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_initialize_krb5_error_table=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_initialize_krb5_error_table=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_initialize_krb5_error_table" >&5 +-$as_echo "$ac_cv_func_ext_initialize_krb5_error_table" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_initialize_krb5_error_table" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_initialize_krb5_error_table" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_initialize_krb5_error_table = yes; then + cat >>confdefs.h <<_ACEOF +@@ -64508,10 +60965,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_get_init_creds_opt_alloc" >&5 +-$as_echo_n "checking for krb5_get_init_creds_opt_alloc... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_get_init_creds_opt_alloc" >&5 ++echo $ECHO_N "checking for krb5_get_init_creds_opt_alloc... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_get_init_creds_opt_alloc+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -64564,35 +61021,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_get_init_creds_opt_alloc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_get_init_creds_opt_alloc=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_get_init_creds_opt_alloc" >&5 +-$as_echo "$ac_cv_func_ext_krb5_get_init_creds_opt_alloc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_get_init_creds_opt_alloc" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_get_init_creds_opt_alloc" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_get_init_creds_opt_alloc = yes; then + cat >>confdefs.h <<_ACEOF +@@ -64606,10 +61059,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_get_init_creds_opt_free" >&5 +-$as_echo_n "checking for krb5_get_init_creds_opt_free... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_get_init_creds_opt_free" >&5 ++echo $ECHO_N "checking for krb5_get_init_creds_opt_free... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_get_init_creds_opt_free+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -64662,35 +61115,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_get_init_creds_opt_free=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_get_init_creds_opt_free=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_get_init_creds_opt_free" >&5 +-$as_echo "$ac_cv_func_ext_krb5_get_init_creds_opt_free" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_get_init_creds_opt_free" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_get_init_creds_opt_free" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_get_init_creds_opt_free = yes; then + cat >>confdefs.h <<_ACEOF +@@ -64704,10 +61153,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_get_init_creds_opt_get_error" >&5 +-$as_echo_n "checking for krb5_get_init_creds_opt_get_error... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_get_init_creds_opt_get_error" >&5 ++echo $ECHO_N "checking for krb5_get_init_creds_opt_get_error... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_get_init_creds_opt_get_error+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -64760,35 +61209,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_get_init_creds_opt_get_error=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_get_init_creds_opt_get_error=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_get_init_creds_opt_get_error" >&5 +-$as_echo "$ac_cv_func_ext_krb5_get_init_creds_opt_get_error" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_get_init_creds_opt_get_error" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_get_init_creds_opt_get_error" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_get_init_creds_opt_get_error = yes; then + cat >>confdefs.h <<_ACEOF +@@ -64802,10 +61247,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_enctype_to_string" >&5 +-$as_echo_n "checking for krb5_enctype_to_string... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_enctype_to_string" >&5 ++echo $ECHO_N "checking for krb5_enctype_to_string... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_enctype_to_string+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -64858,35 +61303,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_enctype_to_string=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_enctype_to_string=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_enctype_to_string" >&5 +-$as_echo "$ac_cv_func_ext_krb5_enctype_to_string" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_enctype_to_string" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_enctype_to_string" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_enctype_to_string = yes; then + cat >>confdefs.h <<_ACEOF +@@ -64900,10 +61341,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_fwd_tgt_creds" >&5 +-$as_echo_n "checking for krb5_fwd_tgt_creds... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_fwd_tgt_creds" >&5 ++echo $ECHO_N "checking for krb5_fwd_tgt_creds... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_fwd_tgt_creds+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -64956,35 +61397,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_fwd_tgt_creds=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_fwd_tgt_creds=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_fwd_tgt_creds" >&5 +-$as_echo "$ac_cv_func_ext_krb5_fwd_tgt_creds" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_fwd_tgt_creds" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_fwd_tgt_creds" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_fwd_tgt_creds = yes; then + cat >>confdefs.h <<_ACEOF +@@ -64998,10 +61435,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$KRB5_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for krb5_auth_con_set_req_cksumtype" >&5 +-$as_echo_n "checking for krb5_auth_con_set_req_cksumtype... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_auth_con_set_req_cksumtype" >&5 ++echo $ECHO_N "checking for krb5_auth_con_set_req_cksumtype... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_krb5_auth_con_set_req_cksumtype+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -65054,35 +61491,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_krb5_auth_con_set_req_cksumtype=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_krb5_auth_con_set_req_cksumtype=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_auth_con_set_req_cksumtype" >&5 +-$as_echo "$ac_cv_func_ext_krb5_auth_con_set_req_cksumtype" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_krb5_auth_con_set_req_cksumtype" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_krb5_auth_con_set_req_cksumtype" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_krb5_auth_con_set_req_cksumtype = yes; then + cat >>confdefs.h <<_ACEOF +@@ -65094,10 +61527,10 @@ + + LIBS="$KRB5_LIBS $LIBS" + +- { $as_echo "$as_me:$LINENO: checking whether krb5_ticket contains kvno and enctype" >&5 +-$as_echo_n "checking whether krb5_ticket contains kvno and enctype... " >&6; } ++ { echo "$as_me:$LINENO: checking whether krb5_ticket contains kvno and enctype" >&5 ++echo $ECHO_N "checking whether krb5_ticket contains kvno and enctype... $ECHO_C" >&6; } + if test "${smb_krb5_cv_ticket_has_keyinfo+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -65130,21 +61563,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + smb_krb5_cv_ticket_has_keyinfo=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + smb_krb5_cv_ticket_has_keyinfo=no +@@ -65153,8 +61585,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $smb_krb5_cv_ticket_has_keyinfo" >&5 +-$as_echo "$smb_krb5_cv_ticket_has_keyinfo" >&6; } ++{ echo "$as_me:$LINENO: result: $smb_krb5_cv_ticket_has_keyinfo" >&5 ++echo "${ECHO_T}$smb_krb5_cv_ticket_has_keyinfo" >&6; } + + if test x"$smb_krb5_cv_ticket_has_keyinfo" = x"yes" ; then + +@@ -65164,10 +61596,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking whether krb5_get_init_creds_opt_free takes a context argument" >&5 +-$as_echo_n "checking whether krb5_get_init_creds_opt_free takes a context argument... " >&6; } ++ { echo "$as_me:$LINENO: checking whether krb5_get_init_creds_opt_free takes a context argument" >&5 ++echo $ECHO_N "checking whether krb5_get_init_creds_opt_free takes a context argument... $ECHO_C" >&6; } + if test "${smb_krb5_cv_creds_opt_free_context+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -65196,21 +61628,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + smb_krb5_cv_creds_opt_free_context=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + smb_krb5_cv_creds_opt_free_context=no +@@ -65220,8 +61651,8 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $smb_krb5_cv_creds_opt_free_context" >&5 +-$as_echo "$smb_krb5_cv_creds_opt_free_context" >&6; } ++{ echo "$as_me:$LINENO: result: $smb_krb5_cv_creds_opt_free_context" >&5 ++echo "${ECHO_T}$smb_krb5_cv_creds_opt_free_context" >&6; } + + if test x"$smb_krb5_cv_creds_opt_free_context" = x"yes" ; then + +@@ -65231,10 +61662,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking whether krb5_verify_checksum takes 7 arguments" >&5 +-$as_echo_n "checking whether krb5_verify_checksum takes 7 arguments... " >&6; } ++ { echo "$as_me:$LINENO: checking whether krb5_verify_checksum takes 7 arguments" >&5 ++echo $ECHO_N "checking whether krb5_verify_checksum takes 7 arguments... $ECHO_C" >&6; } + if test "${smb_krb5_cv_verify_checksum+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -65259,21 +61690,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + smb_krb5_cv_verify_checksum=7 + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + smb_krb5_cv_verify_checksum=6 +@@ -65282,18 +61712,18 @@ + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $smb_krb5_cv_verify_checksum" >&5 +-$as_echo "$smb_krb5_cv_verify_checksum" >&6; } ++{ echo "$as_me:$LINENO: result: $smb_krb5_cv_verify_checksum" >&5 ++echo "${ECHO_T}$smb_krb5_cv_verify_checksum" >&6; } + + cat >>confdefs.h <<_ACEOF + #define KRB5_VERIFY_CHECKSUM_ARGS $smb_krb5_cv_verify_checksum + _ACEOF + + +- { $as_echo "$as_me:$LINENO: checking for checksum in krb5_checksum" >&5 +-$as_echo_n "checking for checksum in krb5_checksum... " >&6; } ++ { echo "$as_me:$LINENO: checking for checksum in krb5_checksum" >&5 ++echo $ECHO_N "checking for checksum in krb5_checksum... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_CHECKSUM_IN_KRB5_CHECKSUM+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -65317,21 +61747,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_CHECKSUM_IN_KRB5_CHECKSUM=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_CHECKSUM_IN_KRB5_CHECKSUM=no +@@ -65339,8 +61768,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_CHECKSUM_IN_KRB5_CHECKSUM" >&5 +-$as_echo "$samba_cv_HAVE_CHECKSUM_IN_KRB5_CHECKSUM" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_CHECKSUM_IN_KRB5_CHECKSUM" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_CHECKSUM_IN_KRB5_CHECKSUM" >&6; } + + if test x"$samba_cv_HAVE_CHECKSUM_IN_KRB5_CHECKSUM" = x"yes"; then + +@@ -65350,10 +61779,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for etype in EncryptedData" >&5 +-$as_echo_n "checking for etype in EncryptedData... " >&6; } ++ { echo "$as_me:$LINENO: checking for etype in EncryptedData" >&5 ++echo $ECHO_N "checking for etype in EncryptedData... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_ETYPE_IN_ENCRYPTEDDATA+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -65377,21 +61806,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_ETYPE_IN_ENCRYPTEDDATA=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_ETYPE_IN_ENCRYPTEDDATA=no +@@ -65399,8 +61827,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_ETYPE_IN_ENCRYPTEDDATA" >&5 +-$as_echo "$samba_cv_HAVE_ETYPE_IN_ENCRYPTEDDATA" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_ETYPE_IN_ENCRYPTEDDATA" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_ETYPE_IN_ENCRYPTEDDATA" >&6; } + + if test x"$samba_cv_HAVE_ETYPE_IN_ENCRYPTEDDATA" = x"yes"; then + +@@ -65410,10 +61838,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for ticket pointer in krb5_ap_req" >&5 +-$as_echo_n "checking for ticket pointer in krb5_ap_req... " >&6; } ++ { echo "$as_me:$LINENO: checking for ticket pointer in krb5_ap_req" >&5 ++echo $ECHO_N "checking for ticket pointer in krb5_ap_req... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_TICKET_POINTER_IN_KRB5_AP_REQ+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -65437,21 +61865,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_TICKET_POINTER_IN_KRB5_AP_REQ=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_TICKET_POINTER_IN_KRB5_AP_REQ=no +@@ -65459,8 +61886,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_TICKET_POINTER_IN_KRB5_AP_REQ" >&5 +-$as_echo "$samba_cv_HAVE_TICKET_POINTER_IN_KRB5_AP_REQ" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_TICKET_POINTER_IN_KRB5_AP_REQ" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_TICKET_POINTER_IN_KRB5_AP_REQ" >&6; } + + if test x"$samba_cv_HAVE_TICKET_POINTER_IN_KRB5_AP_REQ" = x"yes"; then + +@@ -65470,10 +61897,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for e_data pointer in krb5_error" >&5 +-$as_echo_n "checking for e_data pointer in krb5_error... " >&6; } ++ { echo "$as_me:$LINENO: checking for e_data pointer in krb5_error" >&5 ++echo $ECHO_N "checking for e_data pointer in krb5_error... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_E_DATA_POINTER_IN_KRB5_ERROR+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -65497,21 +61924,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_E_DATA_POINTER_IN_KRB5_ERROR=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_E_DATA_POINTER_IN_KRB5_ERROR=no +@@ -65519,8 +61945,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_E_DATA_POINTER_IN_KRB5_ERROR" >&5 +-$as_echo "$samba_cv_HAVE_E_DATA_POINTER_IN_KRB5_ERROR" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_E_DATA_POINTER_IN_KRB5_ERROR" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_E_DATA_POINTER_IN_KRB5_ERROR" >&6; } + + if test x"$samba_cv_HAVE_E_DATA_POINTER_IN_KRB5_ERROR" = x"yes"; then + +@@ -65530,10 +61956,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for krb5_crypto type" >&5 +-$as_echo_n "checking for krb5_crypto type... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_crypto type" >&5 ++echo $ECHO_N "checking for krb5_crypto type... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_KRB5_CRYPTO+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -65557,21 +61983,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_KRB5_CRYPTO=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_KRB5_CRYPTO=no +@@ -65579,8 +62004,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_CRYPTO" >&5 +-$as_echo "$samba_cv_HAVE_KRB5_CRYPTO" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_CRYPTO" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_KRB5_CRYPTO" >&6; } + + if test x"$samba_cv_HAVE_KRB5_CRYPTO" = x"yes"; then + +@@ -65590,10 +62015,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for krb5_encrypt_block type" >&5 +-$as_echo_n "checking for krb5_encrypt_block type... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_encrypt_block type" >&5 ++echo $ECHO_N "checking for krb5_encrypt_block type... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_KRB5_ENCRYPT_BLOCK+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -65617,21 +62042,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_KRB5_ENCRYPT_BLOCK=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_KRB5_ENCRYPT_BLOCK=no +@@ -65639,8 +62063,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_ENCRYPT_BLOCK" >&5 +-$as_echo "$samba_cv_HAVE_KRB5_ENCRYPT_BLOCK" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_ENCRYPT_BLOCK" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_KRB5_ENCRYPT_BLOCK" >&6; } + + if test x"$samba_cv_HAVE_KRB5_ENCRYPT_BLOCK" = x"yes"; then + +@@ -65650,10 +62074,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for addrtype in krb5_address" >&5 +-$as_echo_n "checking for addrtype in krb5_address... " >&6; } ++ { echo "$as_me:$LINENO: checking for addrtype in krb5_address" >&5 ++echo $ECHO_N "checking for addrtype in krb5_address... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_ADDRTYPE_IN_KRB5_ADDRESS+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -65677,21 +62101,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_ADDRTYPE_IN_KRB5_ADDRESS=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_ADDRTYPE_IN_KRB5_ADDRESS=no +@@ -65699,8 +62122,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_ADDRTYPE_IN_KRB5_ADDRESS" >&5 +-$as_echo "$samba_cv_HAVE_ADDRTYPE_IN_KRB5_ADDRESS" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_ADDRTYPE_IN_KRB5_ADDRESS" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_ADDRTYPE_IN_KRB5_ADDRESS" >&6; } + + if test x"$samba_cv_HAVE_ADDRTYPE_IN_KRB5_ADDRESS" = x"yes"; then + +@@ -65710,10 +62133,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for addr_type in krb5_address" >&5 +-$as_echo_n "checking for addr_type in krb5_address... " >&6; } ++ { echo "$as_me:$LINENO: checking for addr_type in krb5_address" >&5 ++echo $ECHO_N "checking for addr_type in krb5_address... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_ADDR_TYPE_IN_KRB5_ADDRESS+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -65737,21 +62160,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_ADDR_TYPE_IN_KRB5_ADDRESS=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_ADDR_TYPE_IN_KRB5_ADDRESS=no +@@ -65759,8 +62181,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_ADDR_TYPE_IN_KRB5_ADDRESS" >&5 +-$as_echo "$samba_cv_HAVE_ADDR_TYPE_IN_KRB5_ADDRESS" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_ADDR_TYPE_IN_KRB5_ADDRESS" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_ADDR_TYPE_IN_KRB5_ADDRESS" >&6; } + + if test x"$samba_cv_HAVE_ADDR_TYPE_IN_KRB5_ADDRESS" = x"yes"; then + +@@ -65770,10 +62192,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for enc_part2 in krb5_ticket" >&5 +-$as_echo_n "checking for enc_part2 in krb5_ticket... " >&6; } ++ { echo "$as_me:$LINENO: checking for enc_part2 in krb5_ticket" >&5 ++echo $ECHO_N "checking for enc_part2 in krb5_ticket... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_KRB5_TKT_ENC_PART2+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -65796,21 +62218,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_KRB5_TKT_ENC_PART2=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_KRB5_TKT_ENC_PART2=no +@@ -65818,8 +62239,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_TKT_ENC_PART2" >&5 +-$as_echo "$samba_cv_HAVE_KRB5_TKT_ENC_PART2" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_TKT_ENC_PART2" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_KRB5_TKT_ENC_PART2" >&6; } + + if test x"$samba_cv_HAVE_KRB5_TKT_ENC_PART2" = x"yes"; then + +@@ -65829,10 +62250,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for keyblock in krb5_creds" >&5 +-$as_echo_n "checking for keyblock in krb5_creds... " >&6; } ++ { echo "$as_me:$LINENO: checking for keyblock in krb5_creds" >&5 ++echo $ECHO_N "checking for keyblock in krb5_creds... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_KRB5_KEYBLOCK_IN_CREDS+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -65856,21 +62277,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_KRB5_KEYBLOCK_IN_CREDS=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_KRB5_KEYBLOCK_IN_CREDS=no +@@ -65878,8 +62298,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_KEYBLOCK_IN_CREDS" >&5 +-$as_echo "$samba_cv_HAVE_KRB5_KEYBLOCK_IN_CREDS" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_KEYBLOCK_IN_CREDS" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_KRB5_KEYBLOCK_IN_CREDS" >&6; } + + if test x"$samba_cv_HAVE_KRB5_KEYBLOCK_IN_CREDS" = x"yes"; then + +@@ -65889,10 +62309,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for session in krb5_creds" >&5 +-$as_echo_n "checking for session in krb5_creds... " >&6; } ++ { echo "$as_me:$LINENO: checking for session in krb5_creds" >&5 ++echo $ECHO_N "checking for session in krb5_creds... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_KRB5_SESSION_IN_CREDS+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -65916,21 +62336,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_KRB5_SESSION_IN_CREDS=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_KRB5_SESSION_IN_CREDS=no +@@ -65938,8 +62357,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_SESSION_IN_CREDS" >&5 +-$as_echo "$samba_cv_HAVE_KRB5_SESSION_IN_CREDS" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_SESSION_IN_CREDS" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_KRB5_SESSION_IN_CREDS" >&6; } + + if test x"$samba_cv_HAVE_KRB5_SESSION_IN_CREDS" = x"yes"; then + +@@ -65949,10 +62368,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for keyvalue in krb5_keyblock" >&5 +-$as_echo_n "checking for keyvalue in krb5_keyblock... " >&6; } ++ { echo "$as_me:$LINENO: checking for keyvalue in krb5_keyblock" >&5 ++echo $ECHO_N "checking for keyvalue in krb5_keyblock... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_KRB5_KEYBLOCK_KEYVALUE+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -65976,21 +62395,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_KRB5_KEYBLOCK_KEYVALUE=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_KRB5_KEYBLOCK_KEYVALUE=no +@@ -65998,8 +62416,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_KEYBLOCK_KEYVALUE" >&5 +-$as_echo "$samba_cv_HAVE_KRB5_KEYBLOCK_KEYVALUE" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_KEYBLOCK_KEYVALUE" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_KRB5_KEYBLOCK_KEYVALUE" >&6; } + + if test x"$samba_cv_HAVE_KRB5_KEYBLOCK_KEYVALUE" = x"yes"; then + +@@ -66009,10 +62427,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for ENCTYPE_ARCFOUR_HMAC_MD5" >&5 +-$as_echo_n "checking for ENCTYPE_ARCFOUR_HMAC_MD5... " >&6; } ++ { echo "$as_me:$LINENO: checking for ENCTYPE_ARCFOUR_HMAC_MD5" >&5 ++echo $ECHO_N "checking for ENCTYPE_ARCFOUR_HMAC_MD5... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -66036,21 +62454,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5=no +@@ -66058,12 +62475,12 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5" >&5 +-$as_echo "$samba_cv_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5" >&6; } +- { $as_echo "$as_me:$LINENO: checking for KEYTYPE_ARCFOUR_56" >&5 +-$as_echo_n "checking for KEYTYPE_ARCFOUR_56... " >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5" >&6; } ++ { echo "$as_me:$LINENO: checking for KEYTYPE_ARCFOUR_56" >&5 ++echo $ECHO_N "checking for KEYTYPE_ARCFOUR_56... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_KEYTYPE_ARCFOUR_56+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -66087,21 +62504,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_KEYTYPE_ARCFOUR_56=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_KEYTYPE_ARCFOUR_56=no +@@ -66109,8 +62525,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_KEYTYPE_ARCFOUR_56" >&5 +-$as_echo "$samba_cv_HAVE_KEYTYPE_ARCFOUR_56" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_KEYTYPE_ARCFOUR_56" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_KEYTYPE_ARCFOUR_56" >&6; } + # Heimdals with KEYTYPE_ARCFOUR but not KEYTYPE_ARCFOUR_56 are broken + # w.r.t. arcfour and windows, so we must not enable it here + if test x"$samba_cv_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5" = x"yes" -a\ +@@ -66122,10 +62538,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for AP_OPTS_USE_SUBKEY" >&5 +-$as_echo_n "checking for AP_OPTS_USE_SUBKEY... " >&6; } ++ { echo "$as_me:$LINENO: checking for AP_OPTS_USE_SUBKEY" >&5 ++echo $ECHO_N "checking for AP_OPTS_USE_SUBKEY... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_AP_OPTS_USE_SUBKEY+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -66149,21 +62565,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_AP_OPTS_USE_SUBKEY=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_AP_OPTS_USE_SUBKEY=no +@@ -66171,8 +62586,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_AP_OPTS_USE_SUBKEY" >&5 +-$as_echo "$samba_cv_HAVE_AP_OPTS_USE_SUBKEY" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_AP_OPTS_USE_SUBKEY" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_AP_OPTS_USE_SUBKEY" >&6; } + + if test x"$samba_cv_HAVE_AP_OPTS_USE_SUBKEY" = x"yes"; then + +@@ -66182,10 +62597,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for KV5M_KEYTAB" >&5 +-$as_echo_n "checking for KV5M_KEYTAB... " >&6; } ++ { echo "$as_me:$LINENO: checking for KV5M_KEYTAB" >&5 ++echo $ECHO_N "checking for KV5M_KEYTAB... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_KV5M_KEYTAB+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -66209,21 +62624,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_KV5M_KEYTAB=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_KV5M_KEYTAB=no +@@ -66231,8 +62645,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_KV5M_KEYTAB" >&5 +-$as_echo "$samba_cv_HAVE_KV5M_KEYTAB" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_KV5M_KEYTAB" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_KV5M_KEYTAB" >&6; } + + if test x"$samba_cv_HAVE_KV5M_KEYTAB" = x"yes"; then + +@@ -66242,10 +62656,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for KRB5_KU_OTHER_CKSUM" >&5 +-$as_echo_n "checking for KRB5_KU_OTHER_CKSUM... " >&6; } ++ { echo "$as_me:$LINENO: checking for KRB5_KU_OTHER_CKSUM" >&5 ++echo $ECHO_N "checking for KRB5_KU_OTHER_CKSUM... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_KRB5_KU_OTHER_CKSUM+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -66269,21 +62683,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_KRB5_KU_OTHER_CKSUM=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_KRB5_KU_OTHER_CKSUM=no +@@ -66291,8 +62704,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_KU_OTHER_CKSUM" >&5 +-$as_echo "$samba_cv_HAVE_KRB5_KU_OTHER_CKSUM" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_KU_OTHER_CKSUM" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_KRB5_KU_OTHER_CKSUM" >&6; } + + if test x"$samba_cv_HAVE_KRB5_KU_OTHER_CKSUM" = x"yes"; then + +@@ -66302,10 +62715,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for KRB5_KEYUSAGE_APP_DATA_CKSUM" >&5 +-$as_echo_n "checking for KRB5_KEYUSAGE_APP_DATA_CKSUM... " >&6; } ++ { echo "$as_me:$LINENO: checking for KRB5_KEYUSAGE_APP_DATA_CKSUM" >&5 ++echo $ECHO_N "checking for KRB5_KEYUSAGE_APP_DATA_CKSUM... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_KRB5_KEYUSAGE_APP_DATA_CKSUM+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -66329,21 +62742,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_KRB5_KEYUSAGE_APP_DATA_CKSUM=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_KRB5_KEYUSAGE_APP_DATA_CKSUM=no +@@ -66351,8 +62763,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_KEYUSAGE_APP_DATA_CKSUM" >&5 +-$as_echo "$samba_cv_HAVE_KRB5_KEYUSAGE_APP_DATA_CKSUM" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_KEYUSAGE_APP_DATA_CKSUM" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_KRB5_KEYUSAGE_APP_DATA_CKSUM" >&6; } + + if test x"$samba_cv_HAVE_KRB5_KEYUSAGE_APP_DATA_CKSUM" = x"yes"; then + +@@ -66362,10 +62774,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for the krb5_princ_component macro" >&5 +-$as_echo_n "checking for the krb5_princ_component macro... " >&6; } ++ { echo "$as_me:$LINENO: checking for the krb5_princ_component macro" >&5 ++echo $ECHO_N "checking for the krb5_princ_component macro... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_KRB5_PRINC_COMPONENT+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -66389,35 +62801,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_KRB5_PRINC_COMPONENT=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_KRB5_PRINC_COMPONENT=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_PRINC_COMPONENT" >&5 +-$as_echo "$samba_cv_HAVE_KRB5_PRINC_COMPONENT" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_PRINC_COMPONENT" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_KRB5_PRINC_COMPONENT" >&6; } + + if test x"$samba_cv_HAVE_KRB5_PRINC_COMPONENT" = x"yes"; then + +@@ -66427,10 +62835,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for key in krb5_keytab_entry" >&5 +-$as_echo_n "checking for key in krb5_keytab_entry... " >&6; } ++ { echo "$as_me:$LINENO: checking for key in krb5_keytab_entry" >&5 ++echo $ECHO_N "checking for key in krb5_keytab_entry... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEY+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -66454,21 +62862,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEY=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEY=no +@@ -66476,8 +62883,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEY" >&5 +-$as_echo "$samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEY" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEY" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEY" >&6; } + + if test x"$samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEY" = x"yes"; then + +@@ -66487,10 +62894,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for keyblock in krb5_keytab_entry" >&5 +-$as_echo_n "checking for keyblock in krb5_keytab_entry... " >&6; } ++ { echo "$as_me:$LINENO: checking for keyblock in krb5_keytab_entry" >&5 ++echo $ECHO_N "checking for keyblock in krb5_keytab_entry... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -66514,21 +62921,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK=no +@@ -66536,8 +62942,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK" >&5 +-$as_echo "$samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK" >&6; } + + if test x"$samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK" = x"yes"; then + +@@ -66547,10 +62953,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for magic in krb5_address" >&5 +-$as_echo_n "checking for magic in krb5_address... " >&6; } ++ { echo "$as_me:$LINENO: checking for magic in krb5_address" >&5 ++echo $ECHO_N "checking for magic in krb5_address... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_MAGIC_IN_KRB5_ADDRESS+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -66574,21 +62980,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_MAGIC_IN_KRB5_ADDRESS=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_MAGIC_IN_KRB5_ADDRESS=no +@@ -66596,8 +63001,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_MAGIC_IN_KRB5_ADDRESS" >&5 +-$as_echo "$samba_cv_HAVE_MAGIC_IN_KRB5_ADDRESS" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_MAGIC_IN_KRB5_ADDRESS" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_MAGIC_IN_KRB5_ADDRESS" >&6; } + + if test x"$samba_cv_HAVE_MAGIC_IN_KRB5_ADDRESS" = x"yes"; then + +@@ -66607,20 +63012,18 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for WRFILE: keytab support" >&5 +-$as_echo_n "checking for WRFILE: keytab support... " >&6; } ++ { echo "$as_me:$LINENO: checking for WRFILE: keytab support" >&5 ++echo $ECHO_N "checking for WRFILE: keytab support... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_WRFILE_KEYTAB+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot run test program while cross compiling ++ { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot run test program while cross compiling ++echo "$as_me: error: cannot run test program while cross compiling + See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++ { (exit 1); exit 1; }; } + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -66645,39 +63048,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_WRFILE_KEYTAB=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_WRFILE_KEYTAB=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_WRFILE_KEYTAB" >&5 +-$as_echo "$samba_cv_HAVE_WRFILE_KEYTAB" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_WRFILE_KEYTAB" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_WRFILE_KEYTAB" >&6; } + + if test x"$samba_cv_HAVE_WRFILE_KEYTAB" = x"yes"; then + +@@ -66687,10 +63087,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for krb5_princ_realm returns krb5_realm or krb5_data" >&5 +-$as_echo_n "checking for krb5_princ_realm returns krb5_realm or krb5_data... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_princ_realm returns krb5_realm or krb5_data" >&5 ++echo $ECHO_N "checking for krb5_princ_realm returns krb5_realm or krb5_data... $ECHO_C" >&6; } + if test "${samba_cv_KRB5_PRINC_REALM_RETURNS_REALM+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -66717,21 +63117,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_KRB5_PRINC_REALM_RETURNS_REALM=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_KRB5_PRINC_REALM_RETURNS_REALM=no +@@ -66739,8 +63138,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_KRB5_PRINC_REALM_RETURNS_REALM" >&5 +-$as_echo "$samba_cv_KRB5_PRINC_REALM_RETURNS_REALM" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_KRB5_PRINC_REALM_RETURNS_REALM" >&5 ++echo "${ECHO_T}$samba_cv_KRB5_PRINC_REALM_RETURNS_REALM" >&6; } + + if test x"$samba_cv_KRB5_PRINC_REALM_RETURNS_REALM" = x"yes"; then + +@@ -66750,10 +63149,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for krb5_addresses type" >&5 +-$as_echo_n "checking for krb5_addresses type... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_addresses type" >&5 ++echo $ECHO_N "checking for krb5_addresses type... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_KRB5_ADDRESSES+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -66777,21 +63176,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_KRB5_ADDRESSES=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_KRB5_ADDRESSES=no +@@ -66799,8 +63197,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_ADDRESSES" >&5 +-$as_echo "$samba_cv_HAVE_KRB5_ADDRESSES" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_ADDRESSES" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_KRB5_ADDRESSES" >&6; } + + if test x"$samba_cv_HAVE_KRB5_ADDRESSES" = x"yes"; then + +@@ -66810,10 +63208,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking whether krb5_mk_error takes 3 arguments MIT or 9 Heimdal" >&5 +-$as_echo_n "checking whether krb5_mk_error takes 3 arguments MIT or 9 Heimdal... " >&6; } ++ { echo "$as_me:$LINENO: checking whether krb5_mk_error takes 3 arguments MIT or 9 Heimdal" >&5 ++echo $ECHO_N "checking whether krb5_mk_error takes 3 arguments MIT or 9 Heimdal... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_SHORT_KRB5_MK_ERROR_INTERFACE+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -66838,21 +63236,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_SHORT_KRB5_MK_ERROR_INTERFACE=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_SHORT_KRB5_MK_ERROR_INTERFACE=no +@@ -66860,8 +63257,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_SHORT_KRB5_MK_ERROR_INTERFACE" >&5 +-$as_echo "$samba_cv_HAVE_SHORT_KRB5_MK_ERROR_INTERFACE" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_SHORT_KRB5_MK_ERROR_INTERFACE" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_SHORT_KRB5_MK_ERROR_INTERFACE" >&6; } + + if test x"$samba_cv_HAVE_SHORT_KRB5_MK_ERROR_INTERFACE" = x"yes"; then + +@@ -66872,10 +63269,10 @@ + fi + + if test x"$ac_cv_func_ext_krb5_enctype_to_string" = x"yes"; then +- { $as_echo "$as_me:$LINENO: checking for krb5_error_code krb5_enctype_to_string(krb5_context context, krb5_enctype enctype, char **str)" >&5 +-$as_echo_n "checking for krb5_error_code krb5_enctype_to_string(krb5_context context, krb5_enctype enctype, char **str)... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_error_code krb5_enctype_to_string(krb5_context context, krb5_enctype enctype, char **str)" >&5 ++echo $ECHO_N "checking for krb5_error_code krb5_enctype_to_string(krb5_context context, krb5_enctype enctype, char **str)... $ECHO_C" >&6; } + if test "${smb_krb5_cv_enctype_to_string_takes_krb5_context_arg+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + +@@ -66889,13 +63286,11 @@ + LDFLAGS="$LDFLAGS"; + export LDFLAGS; + if test "$cross_compiling" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot run test program while cross compiling ++ { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot run test program while cross compiling ++echo "$as_me: error: cannot run test program while cross compiling + See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++ { (exit 1); exit 1; }; } + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -66921,32 +63316,29 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + smb_krb5_cv_enctype_to_string_takes_krb5_context_arg=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + smb_krb5_cv_enctype_to_string_takes_krb5_context_arg=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + +@@ -66962,8 +63354,8 @@ + export LDFLAGS; + + fi +-{ $as_echo "$as_me:$LINENO: result: $smb_krb5_cv_enctype_to_string_takes_krb5_context_arg" >&5 +-$as_echo "$smb_krb5_cv_enctype_to_string_takes_krb5_context_arg" >&6; } ++{ echo "$as_me:$LINENO: result: $smb_krb5_cv_enctype_to_string_takes_krb5_context_arg" >&5 ++echo "${ECHO_T}$smb_krb5_cv_enctype_to_string_takes_krb5_context_arg" >&6; } + + if test x"$smb_krb5_cv_enctype_to_string_takes_krb5_context_arg" = x"yes"; then + +@@ -66973,10 +63365,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for krb5_error_code krb5_enctype_to_string(krb5_enctype enctype, char *str, size_t len)" >&5 +-$as_echo_n "checking for krb5_error_code krb5_enctype_to_string(krb5_enctype enctype, char *str, size_t len)... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_error_code krb5_enctype_to_string(krb5_enctype enctype, char *str, size_t len)" >&5 ++echo $ECHO_N "checking for krb5_error_code krb5_enctype_to_string(krb5_enctype enctype, char *str, size_t len)... $ECHO_C" >&6; } + if test "${smb_krb5_cv_enctype_to_string_takes_size_t_arg+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + +@@ -66990,13 +63382,11 @@ + LDFLAGS="$LDFLAGS"; + export LDFLAGS; + if test "$cross_compiling" = yes; then +- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-{ { $as_echo "$as_me:$LINENO: error: cannot run test program while cross compiling ++ { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling + See \`config.log' for more details." >&5 +-$as_echo "$as_me: error: cannot run test program while cross compiling ++echo "$as_me: error: cannot run test program while cross compiling + See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; }; } ++ { (exit 1); exit 1; }; } + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -67019,32 +63409,29 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + smb_krb5_cv_enctype_to_string_takes_size_t_arg=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + smb_krb5_cv_enctype_to_string_takes_size_t_arg=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + +@@ -67060,8 +63447,8 @@ + export LDFLAGS; + + fi +-{ $as_echo "$as_me:$LINENO: result: $smb_krb5_cv_enctype_to_string_takes_size_t_arg" >&5 +-$as_echo "$smb_krb5_cv_enctype_to_string_takes_size_t_arg" >&6; } ++{ echo "$as_me:$LINENO: result: $smb_krb5_cv_enctype_to_string_takes_size_t_arg" >&5 ++echo "${ECHO_T}$smb_krb5_cv_enctype_to_string_takes_size_t_arg" >&6; } + + if test x"$smb_krb5_cv_enctype_to_string_takes_size_t_arg" = x"yes"; then + +@@ -67072,10 +63459,10 @@ + fi + fi + +- { $as_echo "$as_me:$LINENO: checking for krb5_principal_get_realm" >&5 +-$as_echo_n "checking for krb5_principal_get_realm... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_principal_get_realm" >&5 ++echo $ECHO_N "checking for krb5_principal_get_realm... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_KRB5_PRINCIPAL_GET_REALM+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -67099,35 +63486,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_KRB5_PRINCIPAL_GET_REALM=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_KRB5_PRINCIPAL_GET_REALM=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_PRINCIPAL_GET_REALM" >&5 +-$as_echo "$samba_cv_HAVE_KRB5_PRINCIPAL_GET_REALM" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_PRINCIPAL_GET_REALM" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_KRB5_PRINCIPAL_GET_REALM" >&6; } + + if test x"$samba_cv_HAVE_KRB5_PRINCIPAL_GET_REALM" = x"yes"; then + +@@ -67137,10 +63520,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for krb5_princ_realm" >&5 +-$as_echo_n "checking for krb5_princ_realm... " >&6; } ++ { echo "$as_me:$LINENO: checking for krb5_princ_realm" >&5 ++echo $ECHO_N "checking for krb5_princ_realm... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_KRB5_PRINC_REALM+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -67164,35 +63547,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_KRB5_PRINC_REALM=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_KRB5_PRINC_REALM=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_PRINC_REALM" >&5 +-$as_echo "$samba_cv_HAVE_KRB5_PRINC_REALM" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_KRB5_PRINC_REALM" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_KRB5_PRINC_REALM" >&6; } + + if test x"$samba_cv_HAVE_KRB5_PRINC_REALM" = x"yes"; then + +@@ -67210,40 +63589,40 @@ + # + # + if test x"$ac_cv_lib_ext_krb5_krb5_mk_req_extended" != x"yes"; then +- { $as_echo "$as_me:$LINENO: WARNING: krb5_mk_req_extended not found in -lkrb5" >&5 +-$as_echo "$as_me: WARNING: krb5_mk_req_extended not found in -lkrb5" >&2;} ++ { echo "$as_me:$LINENO: WARNING: krb5_mk_req_extended not found in -lkrb5" >&5 ++echo "$as_me: WARNING: krb5_mk_req_extended not found in -lkrb5" >&2;} + use_ads=no + fi + + if test x"$ac_cv_func_ext_krb5_principal2salt" != x"yes" -a \ + x"$ac_cv_func_ext_krb5_get_pw_salt" != x"yes" + then +- { $as_echo "$as_me:$LINENO: WARNING: no CREATE_KEY_FUNCTIONS detected" >&5 +-$as_echo "$as_me: WARNING: no CREATE_KEY_FUNCTIONS detected" >&2;} ++ { echo "$as_me:$LINENO: WARNING: no CREATE_KEY_FUNCTIONS detected" >&5 ++echo "$as_me: WARNING: no CREATE_KEY_FUNCTIONS detected" >&2;} + use_ads=no + fi + + if test x"$ac_cv_func_ext_krb5_get_permitted_enctypes" != x"yes" -a \ + x"$ac_cv_func_ext_krb5_get_default_in_tkt_etypes" != x"yes" + then +- { $as_echo "$as_me:$LINENO: WARNING: no GET_ENCTYPES_FUNCTIONS detected" >&5 +-$as_echo "$as_me: WARNING: no GET_ENCTYPES_FUNCTIONS detected" >&2;} ++ { echo "$as_me:$LINENO: WARNING: no GET_ENCTYPES_FUNCTIONS detected" >&5 ++echo "$as_me: WARNING: no GET_ENCTYPES_FUNCTIONS detected" >&2;} + use_ads=no + fi + + if test x"$ac_cv_func_ext_krb5_kt_free_entry" != x"yes" -a \ + x"$ac_cv_func_ext_krb5_free_keytab_entry_contents" != x"yes" + then +- { $as_echo "$as_me:$LINENO: WARNING: no KT_FREE_FUNCTION detected" >&5 +-$as_echo "$as_me: WARNING: no KT_FREE_FUNCTION detected" >&2;} ++ { echo "$as_me:$LINENO: WARNING: no KT_FREE_FUNCTION detected" >&5 ++echo "$as_me: WARNING: no KT_FREE_FUNCTION detected" >&2;} + use_ads=no + fi + + if test x"$ac_cv_func_ext_krb5_c_verify_checksum" != x"yes" -a \ + x"$ac_cv_func_ext_krb5_verify_checksum" != x"yes" + then +- { $as_echo "$as_me:$LINENO: WARNING: no KRB5_VERIFY_CHECKSUM_FUNCTION detected" >&5 +-$as_echo "$as_me: WARNING: no KRB5_VERIFY_CHECKSUM_FUNCTION detected" >&2;} ++ { echo "$as_me:$LINENO: WARNING: no KRB5_VERIFY_CHECKSUM_FUNCTION detected" >&5 ++echo "$as_me: WARNING: no KRB5_VERIFY_CHECKSUM_FUNCTION detected" >&2;} + use_ads=no + fi + +@@ -67254,15 +63633,15 @@ + + if test x"$ac_cv_func_ext_free_AP_REQ" != x"yes" + then +- { $as_echo "$as_me:$LINENO: WARNING: no KRB5_AP_REQ_FREE_FUNCTION detected" >&5 +-$as_echo "$as_me: WARNING: no KRB5_AP_REQ_FREE_FUNCTION detected" >&2;} ++ { echo "$as_me:$LINENO: WARNING: no KRB5_AP_REQ_FREE_FUNCTION detected" >&5 ++echo "$as_me: WARNING: no KRB5_AP_REQ_FREE_FUNCTION detected" >&2;} + use_ads=no + fi + + if test x"$ac_cv_func_ext_krb5_decode_ap_req" != x"yes" + then +- { $as_echo "$as_me:$LINENO: WARNING: no KRB5_AP_REQ_DECODING_FUNCTION detected" >&5 +-$as_echo "$as_me: WARNING: no KRB5_AP_REQ_DECODING_FUNCTION detected" >&2;} ++ { echo "$as_me:$LINENO: WARNING: no KRB5_AP_REQ_DECODING_FUNCTION detected" >&5 ++echo "$as_me: WARNING: no KRB5_AP_REQ_DECODING_FUNCTION detected" >&2;} + use_ads=no + fi + +@@ -67288,12 +63667,12 @@ + fi + else + if test x"$with_ads_support" = x"yes"; then +- { { $as_echo "$as_me:$LINENO: error: krb5 libs don't have all features required for Active Directory support" >&5 +-$as_echo "$as_me: error: krb5 libs don't have all features required for Active Directory support" >&2;} ++ { { echo "$as_me:$LINENO: error: krb5 libs don't have all features required for Active Directory support" >&5 ++echo "$as_me: error: krb5 libs don't have all features required for Active Directory support" >&2;} + { (exit 1); exit 1; }; } + else +- { $as_echo "$as_me:$LINENO: WARNING: krb5 libs don't have all features required for Active Directory support" >&5 +-$as_echo "$as_me: WARNING: krb5 libs don't have all features required for Active Directory support" >&2;} ++ { echo "$as_me:$LINENO: WARNING: krb5 libs don't have all features required for Active Directory support" >&5 ++echo "$as_me: WARNING: krb5 libs don't have all features required for Active Directory support" >&2;} + fi + + grep -v '#define HAVE_KRB5_H ' confdefs.h |grep -v '#define HAVE_KRB5_H$'>confdefs.h.tmp +@@ -67318,10 +63697,10 @@ + KRB5_LIBS="" + with_ads_support=no + fi +- { $as_echo "$as_me:$LINENO: checking whether Active Directory and krb5 support is used" >&5 +-$as_echo_n "checking whether Active Directory and krb5 support is used... " >&6; } +- { $as_echo "$as_me:$LINENO: result: $use_ads" >&5 +-$as_echo "$use_ads" >&6; } ++ { echo "$as_me:$LINENO: checking whether Active Directory and krb5 support is used" >&5 ++echo $ECHO_N "checking whether Active Directory and krb5 support is used... $ECHO_C" >&6; } ++ { echo "$as_me:$LINENO: result: $use_ads" >&5 ++echo "${ECHO_T}$use_ads" >&6; } + + LIBS="$ac_save_LIBS" + fi +@@ -67335,10 +63714,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for nscd_flush_cache in -lnscd" >&5 +-$as_echo_n "checking for nscd_flush_cache in -lnscd... " >&6; } ++ { echo "$as_me:$LINENO: checking for nscd_flush_cache in -lnscd" >&5 ++echo $ECHO_N "checking for nscd_flush_cache in -lnscd... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_nscd_nscd_flush_cache+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -67368,38 +63747,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_nscd_nscd_flush_cache=yes; + ac_cv_lib_ext_nscd=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_nscd_nscd_flush_cache=no; + ac_cv_lib_ext_nscd=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_nscd_nscd_flush_cache" >&5 +-$as_echo "$ac_cv_lib_ext_nscd_nscd_flush_cache" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_nscd_nscd_flush_cache" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_nscd_nscd_flush_cache" >&6; } + if test $ac_cv_lib_ext_nscd_nscd_flush_cache = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_NSCD_FLUSH_CACHE 1 +@@ -67432,8 +63807,8 @@ + # Compile with DNS Updates support? + + with_dnsupdate_support=no +-{ $as_echo "$as_me:$LINENO: checking whether to enable DNS Updates support" >&5 +-$as_echo_n "checking whether to enable DNS Updates support... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to enable DNS Updates support" >&5 ++echo $ECHO_N "checking whether to enable DNS Updates support... $ECHO_C" >&6; } + + + # Check whether --with-dnsupdate was given. +@@ -67446,8 +63821,8 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: result: $with_dnsupdate_support" >&5 +-$as_echo "$with_dnsupdate_support" >&6; } ++{ echo "$as_me:$LINENO: result: $with_dnsupdate_support" >&5 ++echo "${ECHO_T}$with_dnsupdate_support" >&6; } + + if test x"$with_dnsupdate_support" != x"no"; then + +@@ -67463,21 +63838,20 @@ + + for ac_header in uuid/uuid.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -67493,33 +63867,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -67533,52 +63906,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -67587,24 +63959,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -67614,12 +63983,12 @@ + + if test x"$ac_cv_header_uuid_uuid_h" != x"yes"; then + if test x"$with_dnsupdate_support" = x"yes"; then +- { { $as_echo "$as_me:$LINENO: error: uuid.h is needed to enable DNS Updates support" >&5 +-$as_echo "$as_me: error: uuid.h is needed to enable DNS Updates support" >&2;} ++ { { echo "$as_me:$LINENO: error: uuid.h is needed to enable DNS Updates support" >&5 ++echo "$as_me: error: uuid.h is needed to enable DNS Updates support" >&2;} + { (exit 1); exit 1; }; } + else +- { $as_echo "$as_me:$LINENO: WARNING: uuid.h is needed to enable DNS Updates support" >&5 +-$as_echo "$as_me: WARNING: uuid.h is needed to enable DNS Updates support" >&2;} ++ { echo "$as_me:$LINENO: WARNING: uuid.h is needed to enable DNS Updates support" >&5 ++echo "$as_me: WARNING: uuid.h is needed to enable DNS Updates support" >&2;} + fi + with_dnsupdate_support=no + fi +@@ -67637,11 +64006,11 @@ + + for ac_func in uuid_generate + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -67694,42 +64063,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + # uuid_generate was found in libc or existing $LIBS +@@ -67761,12 +64123,12 @@ + + + if test x"$with_dnsupdate_support" = x"yes"; then +- { { $as_echo "$as_me:$LINENO: error: libuuid is needed to enable DNS Updates support" >&5 +-$as_echo "$as_me: error: libuuid is needed to enable DNS Updates support" >&2;} ++ { { echo "$as_me:$LINENO: error: libuuid is needed to enable DNS Updates support" >&5 ++echo "$as_me: error: libuuid is needed to enable DNS Updates support" >&2;} + { (exit 1); exit 1; }; } + else +- { $as_echo "$as_me:$LINENO: WARNING: libuuid is needed to enable DNS Updates support" >&5 +-$as_echo "$as_me: WARNING: libuuid is needed to enable DNS Updates support" >&2;} ++ { echo "$as_me:$LINENO: WARNING: libuuid is needed to enable DNS Updates support" >&5 ++echo "$as_me: WARNING: libuuid is needed to enable DNS Updates support" >&2;} + fi + with_dnsupdate_support=no + +@@ -67774,10 +64136,10 @@ + ;; + *) + # uuid_generate was not found, try adding libuuid +- { $as_echo "$as_me:$LINENO: checking for uuid_generate in -luuid" >&5 +-$as_echo_n "checking for uuid_generate in -luuid... " >&6; } ++ { echo "$as_me:$LINENO: checking for uuid_generate in -luuid" >&5 ++echo $ECHO_N "checking for uuid_generate in -luuid... $ECHO_C" >&6; } + if test "${ac_cv_lib_uuid_uuid_generate+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-luuid $LIBS" +@@ -67809,37 +64171,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_uuid_uuid_generate=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_uuid_uuid_generate=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_uuid_uuid_generate" >&5 +-$as_echo "$ac_cv_lib_uuid_uuid_generate" >&6; } +-if test "x$ac_cv_lib_uuid_uuid_generate" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_uuid_uuid_generate" >&5 ++echo "${ECHO_T}$ac_cv_lib_uuid_uuid_generate" >&6; } ++if test $ac_cv_lib_uuid_uuid_generate = yes; then + + LIBS="-luuid $LIBS" + +@@ -67867,12 +64225,12 @@ + + + if test x"$with_dnsupdate_support" = x"yes"; then +- { { $as_echo "$as_me:$LINENO: error: libuuid is needed to enable DNS Updates support" >&5 +-$as_echo "$as_me: error: libuuid is needed to enable DNS Updates support" >&2;} ++ { { echo "$as_me:$LINENO: error: libuuid is needed to enable DNS Updates support" >&5 ++echo "$as_me: error: libuuid is needed to enable DNS Updates support" >&2;} + { (exit 1); exit 1; }; } + else +- { $as_echo "$as_me:$LINENO: WARNING: libuuid is needed to enable DNS Updates support" >&5 +-$as_echo "$as_me: WARNING: libuuid is needed to enable DNS Updates support" >&2;} ++ { echo "$as_me:$LINENO: WARNING: libuuid is needed to enable DNS Updates support" >&5 ++echo "$as_me: WARNING: libuuid is needed to enable DNS Updates support" >&2;} + fi + with_dnsupdate_support=no + +@@ -67891,15 +64249,15 @@ + + ################################################# + # check for automount support +-{ $as_echo "$as_me:$LINENO: checking whether to use automount" >&5 +-$as_echo_n "checking whether to use automount... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to use automount" >&5 ++echo $ECHO_N "checking whether to use automount... $ECHO_C" >&6; } + + # Check whether --with-automount was given. + if test "${with_automount+set}" = set; then + withval=$with_automount; case "$withval" in + yes) +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define WITH_AUTOMOUNT 1 +@@ -67907,13 +64265,13 @@ + + ;; + *) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + ;; + esac + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + fi + +@@ -67923,21 +64281,21 @@ + CIFSMOUNT_PROGS="" + INSTALL_CIFSMOUNT="" + UNINSTALL_CIFSMOUNT="" +-{ $as_echo "$as_me:$LINENO: checking whether to build mount.cifs and umount.cifs" >&5 +-$as_echo_n "checking whether to build mount.cifs and umount.cifs... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to build mount.cifs and umount.cifs" >&5 ++echo $ECHO_N "checking whether to build mount.cifs and umount.cifs... $ECHO_C" >&6; } + + # Check whether --with-cifsmount was given. + if test "${with_cifsmount+set}" = set; then + withval=$with_cifsmount; case "$withval" in + no) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + ;; + *) + case "$host_os" in + *linux*) +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define WITH_CIFSMOUNT 1 +@@ -67948,8 +64306,8 @@ + UNINSTALL_CIFSMOUNT="uninstallcifsmount" + ;; + *) +- { { $as_echo "$as_me:$LINENO: error: not on a linux system!" >&5 +-$as_echo "$as_me: error: not on a linux system!" >&2;} ++ { { echo "$as_me:$LINENO: error: not on a linux system!" >&5 ++echo "$as_me: error: not on a linux system!" >&2;} + { (exit 1); exit 1; }; } + ;; + esac +@@ -67958,8 +64316,8 @@ + else + case "$host_os" in + *linux*) +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define WITH_CIFSMOUNT 1 +@@ -67970,8 +64328,8 @@ + UNINSTALL_CIFSMOUNT="uninstallcifsmount" + ;; + *) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + ;; + esac + +@@ -67983,21 +64341,20 @@ + + for ac_header in keyutils.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -68013,33 +64370,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -68053,52 +64409,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -68107,24 +64462,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + HAVE_KEYUTILS_H=1 + else +@@ -68136,30 +64488,30 @@ + CIFSUPCALL_PROGS="" + INSTALL_CIFSUPCALL="" + UNINSTALL_CIFSUPCALL="" +-{ $as_echo "$as_me:$LINENO: checking whether to build cifs.upcall" >&5 +-$as_echo_n "checking whether to build cifs.upcall... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to build cifs.upcall" >&5 ++echo $ECHO_N "checking whether to build cifs.upcall... $ECHO_C" >&6; } + + # Check whether --with-cifsupcall was given. + if test "${with_cifsupcall+set}" = set; then + withval=$with_cifsupcall; case "$withval" in + no) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + ;; + *) + case "$host_os" in + *linux*) + if test x"$use_ads" != x"yes"; then +- { { $as_echo "$as_me:$LINENO: error: ADS support should be enabled for building cifs.upcall" >&5 +-$as_echo "$as_me: error: ADS support should be enabled for building cifs.upcall" >&2;} ++ { { echo "$as_me:$LINENO: error: ADS support should be enabled for building cifs.upcall" >&5 ++echo "$as_me: error: ADS support should be enabled for building cifs.upcall" >&2;} + { (exit 1); exit 1; }; } + elif test x"$HAVE_KEYUTILS_H" != "x1"; then +- { { $as_echo "$as_me:$LINENO: error: keyutils package is required for cifs.upcall" >&5 +-$as_echo "$as_me: error: keyutils package is required for cifs.upcall" >&2;} ++ { { echo "$as_me:$LINENO: error: keyutils package is required for cifs.upcall" >&5 ++echo "$as_me: error: keyutils package is required for cifs.upcall" >&2;} + { (exit 1); exit 1; }; } + else +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define WITH_CIFSUPCALL 1 +@@ -68171,8 +64523,8 @@ + fi + ;; + *) +- { { $as_echo "$as_me:$LINENO: error: not on a linux system!" >&5 +-$as_echo "$as_me: error: not on a linux system!" >&2;} ++ { { echo "$as_me:$LINENO: error: not on a linux system!" >&5 ++echo "$as_me: error: not on a linux system!" >&2;} + { (exit 1); exit 1; }; } + ;; + esac +@@ -68182,14 +64534,14 @@ + case "$host_os" in + *linux*) + if test x"$use_ads" != x"yes"; then +- { $as_echo "$as_me:$LINENO: WARNING: ADS support should be enabled for building cifs.upcall" >&5 +-$as_echo "$as_me: WARNING: ADS support should be enabled for building cifs.upcall" >&2;} ++ { echo "$as_me:$LINENO: WARNING: ADS support should be enabled for building cifs.upcall" >&5 ++echo "$as_me: WARNING: ADS support should be enabled for building cifs.upcall" >&2;} + elif test x"$HAVE_KEYUTILS_H" != "x1"; then +- { $as_echo "$as_me:$LINENO: WARNING: keyutils package is required for cifs.upcall" >&5 +-$as_echo "$as_me: WARNING: keyutils package is required for cifs.upcall" >&2;} ++ { echo "$as_me:$LINENO: WARNING: keyutils package is required for cifs.upcall" >&5 ++echo "$as_me: WARNING: keyutils package is required for cifs.upcall" >&2;} + else +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define WITH_CIFSUPCALL 1 +@@ -68201,8 +64553,8 @@ + fi + ;; + *) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + ;; + esac + +@@ -68218,8 +64570,8 @@ + + with_pam_for_crypt=no + try_pam=no +-{ $as_echo "$as_me:$LINENO: checking whether to try PAM support" >&5 +-$as_echo_n "checking whether to try PAM support... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to try PAM support" >&5 ++echo $ECHO_N "checking whether to try PAM support... $ECHO_C" >&6; } + + # Check whether --with-pam was given. + if test "${with_pam+set}" = set; then +@@ -68231,8 +64583,8 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: result: $try_pam" >&5 +-$as_echo "$try_pam" >&6; } ++{ echo "$as_me:$LINENO: result: $try_pam" >&5 ++echo "${ECHO_T}$try_pam" >&6; } + + use_pam=no + create_pam_modules=no +@@ -68246,21 +64598,20 @@ + + for ac_header in security/pam_appl.h pam/pam_appl.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -68276,33 +64627,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -68316,52 +64666,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -68370,24 +64719,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -68397,8 +64743,8 @@ + if test x"$ac_cv_header_security_pam_appl_h" != x"yes" -a \ + x"$ac_cv_header_pam_pam_appl_h" != x"yes"; then + if test x"${try_pam}" = x"yes";then +- { { $as_echo "$as_me:$LINENO: error: --with-pam=yes but pam_appl.h not found" >&5 +-$as_echo "$as_me: error: --with-pam=yes but pam_appl.h not found" >&2;} ++ { { echo "$as_me:$LINENO: error: --with-pam=yes but pam_appl.h not found" >&5 ++echo "$as_me: error: --with-pam=yes but pam_appl.h not found" >&2;} + { (exit 1); exit 1; }; } + fi + use_pam=no +@@ -68414,10 +64760,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for pam_get_data in -lpam" >&5 +-$as_echo_n "checking for pam_get_data in -lpam... " >&6; } ++ { echo "$as_me:$LINENO: checking for pam_get_data in -lpam" >&5 ++echo $ECHO_N "checking for pam_get_data in -lpam... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_pam_pam_get_data+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -68447,38 +64793,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_pam_pam_get_data=yes; + ac_cv_lib_ext_pam=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_pam_pam_get_data=no; + ac_cv_lib_ext_pam=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_pam_pam_get_data" >&5 +-$as_echo "$ac_cv_lib_ext_pam_pam_get_data" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_pam_pam_get_data" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_pam_pam_get_data" >&6; } + if test $ac_cv_lib_ext_pam_pam_get_data = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_PAM_GET_DATA 1 +@@ -68506,8 +64848,8 @@ + + if test x"$ac_cv_lib_ext_pam_pam_get_data" != x"yes"; then + if test x"${try_pam}" = x"yes";then +- { { $as_echo "$as_me:$LINENO: error: --with-pam=yes but libpam not found" >&5 +-$as_echo "$as_me: error: --with-pam=yes but libpam not found" >&2;} ++ { { echo "$as_me:$LINENO: error: --with-pam=yes but libpam not found" >&5 ++echo "$as_me: error: --with-pam=yes but libpam not found" >&2;} + { (exit 1); exit 1; }; } + fi + use_pam=no +@@ -68518,11 +64860,11 @@ + + for ac_header in security/pam_modules.h pam/pam_modules.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -68547,21 +64889,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + eval "$as_ac_Header=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_Header=no" +@@ -68569,15 +64910,12 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -68587,8 +64925,8 @@ + if test x"$ac_cv_header_security_pam_modules_h" = x"no" -a \ + x"$ac_cv_header_pam_pam_modules_h" = x"no" ; then + if test x"${try_pam}" = x"yes";then +- { { $as_echo "$as_me:$LINENO: error: --with-pam=yes but pam_modules.h not found" >&5 +-$as_echo "$as_me: error: --with-pam=yes but pam_modules.h not found" >&2;} ++ { { echo "$as_me:$LINENO: error: --with-pam=yes but pam_modules.h not found" >&5 ++echo "$as_me: error: --with-pam=yes but pam_modules.h not found" >&2;} + { (exit 1); exit 1; }; } + fi + create_pam_modules=no +@@ -68620,21 +64958,20 @@ + + for ac_header in security/pam_ext.h security/_pam_macros.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -68650,33 +64987,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -68690,52 +65026,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -68744,24 +65079,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -68772,21 +65104,20 @@ + + for ac_header in pam/pam_ext.h pam/_pam_macros.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -68802,33 +65133,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -68842,52 +65172,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -68896,24 +65225,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -68925,10 +65251,10 @@ + + ac_check_func_ext_save_LIBS=$LIBS + LIBS="$PAM_LIBS $LIBS" +- { $as_echo "$as_me:$LINENO: checking for pam_vsyslog" >&5 +-$as_echo_n "checking for pam_vsyslog... " >&6; } ++ { echo "$as_me:$LINENO: checking for pam_vsyslog" >&5 ++echo $ECHO_N "checking for pam_vsyslog... $ECHO_C" >&6; } + if test "${ac_cv_func_ext_pam_vsyslog+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -68981,35 +65307,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_ext_pam_vsyslog=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_ext_pam_vsyslog=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_ext_pam_vsyslog" >&5 +-$as_echo "$ac_cv_func_ext_pam_vsyslog" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_ext_pam_vsyslog" >&5 ++echo "${ECHO_T}$ac_cv_func_ext_pam_vsyslog" >&6; } + LIBS=$ac_check_func_ext_save_LIBS + if test $ac_cv_func_ext_pam_vsyslog = yes; then + cat >>confdefs.h <<_ACEOF +@@ -69019,19 +65341,19 @@ + fi + + else +- { $as_echo "$as_me:$LINENO: WARNING: PAM support detected but PAM MODULES support is missing" >&5 +-$as_echo "$as_me: WARNING: PAM support detected but PAM MODULES support is missing" >&2;} ++ { echo "$as_me:$LINENO: WARNING: PAM support detected but PAM MODULES support is missing" >&5 ++echo "$as_me: WARNING: PAM support detected but PAM MODULES support is missing" >&2;} + fi + fi +- { $as_echo "$as_me:$LINENO: checking whether to use PAM support" >&5 +-$as_echo_n "checking whether to use PAM support... " >&6; } +- { $as_echo "$as_me:$LINENO: result: $use_pam" >&5 +-$as_echo "$use_pam" >&6; } +- +- { $as_echo "$as_me:$LINENO: checking whether to have PAM MODULES support" >&5 +-$as_echo_n "checking whether to have PAM MODULES support... " >&6; } +- { $as_echo "$as_me:$LINENO: result: $create_pam_modules" >&5 +-$as_echo "$create_pam_modules" >&6; } ++ { echo "$as_me:$LINENO: checking whether to use PAM support" >&5 ++echo $ECHO_N "checking whether to use PAM support... $ECHO_C" >&6; } ++ { echo "$as_me:$LINENO: result: $use_pam" >&5 ++echo "${ECHO_T}$use_pam" >&6; } ++ ++ { echo "$as_me:$LINENO: checking whether to have PAM MODULES support" >&5 ++echo $ECHO_N "checking whether to have PAM MODULES support... $ECHO_C" >&6; } ++ { echo "$as_me:$LINENO: result: $create_pam_modules" >&5 ++echo "${ECHO_T}$create_pam_modules" >&6; } + fi # try_pam != no + + ################################################# +@@ -69039,25 +65361,25 @@ + PAM_MODULES="" + INSTALL_PAM_MODULES="" + UNINSTALL_PAM_MODULES="" +-{ $as_echo "$as_me:$LINENO: checking whether to use pam_smbpass" >&5 +-$as_echo_n "checking whether to use pam_smbpass... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to use pam_smbpass" >&5 ++echo $ECHO_N "checking whether to use pam_smbpass... $ECHO_C" >&6; } + + # Check whether --with-pam_smbpass was given. + if test "${with_pam_smbpass+set}" = set; then + withval=$with_pam_smbpass; case "$withval" in + yes) +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + # Conditions under which pam_smbpass should not be built. + + if test x"$BLDSHARED" != x"true"; then +- { { $as_echo "$as_me:$LINENO: error: No support for shared modules" >&5 +-$as_echo "$as_me: error: No support for shared modules" >&2;} ++ { { echo "$as_me:$LINENO: error: No support for shared modules" >&5 ++echo "$as_me: error: No support for shared modules" >&2;} + { (exit 1); exit 1; }; } + elif test x"$create_pam_modules" != x"yes"; then +- { { $as_echo "$as_me:$LINENO: error: No support for PAM MODULES" >&5 +-$as_echo "$as_me: error: No support for PAM MODULES" >&2;} ++ { { echo "$as_me:$LINENO: error: No support for PAM MODULES" >&5 ++echo "$as_me: error: No support for PAM MODULES" >&2;} + { (exit 1); exit 1; }; } + else + PAM_MODULES="pam_smbpass" +@@ -69066,13 +65388,13 @@ + fi + ;; + *) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + ;; + esac + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + fi + +@@ -69080,10 +65402,10 @@ + + ############################################### + # test for where we get crypt() from +-{ $as_echo "$as_me:$LINENO: checking for library containing crypt" >&5 +-$as_echo_n "checking for library containing crypt... " >&6; } ++{ echo "$as_me:$LINENO: checking for library containing crypt" >&5 ++echo $ECHO_N "checking for library containing crypt... $ECHO_C" >&6; } + if test "${ac_cv_search_crypt+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_func_search_save_LIBS=$LIBS + cat >conftest.$ac_ext <<_ACEOF +@@ -69121,30 +65443,26 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_search_crypt=$ac_res + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext + if test "${ac_cv_search_crypt+set}" = set; then +@@ -69159,8 +65477,8 @@ + rm conftest.$ac_ext + LIBS=$ac_func_search_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_search_crypt" >&5 +-$as_echo "$ac_cv_search_crypt" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_search_crypt" >&5 ++echo "${ECHO_T}$ac_cv_search_crypt" >&6; } + ac_res=$ac_cv_search_crypt + if test "$ac_res" != no; then + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" +@@ -69180,10 +65498,10 @@ + ## $with_pam_for_crypt variable as above --jerry + ## + if test $with_pam_for_crypt = no; then +-{ $as_echo "$as_me:$LINENO: checking for a crypt that needs truncated salt" >&5 +-$as_echo_n "checking for a crypt that needs truncated salt... " >&6; } ++{ echo "$as_me:$LINENO: checking for a crypt that needs truncated salt" >&5 ++echo $ECHO_N "checking for a crypt that needs truncated salt... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_TRUNCATED_SALT+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + crypt_LIBS="$LIBS" +@@ -69205,40 +65523,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_TRUNCATED_SALT=no + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_TRUNCATED_SALT=yes + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + LIBS="$crypt_LIBS" + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_TRUNCATED_SALT" >&5 +-$as_echo "$samba_cv_HAVE_TRUNCATED_SALT" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_TRUNCATED_SALT" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_TRUNCATED_SALT" >&6; } + if test x"$samba_cv_HAVE_TRUNCATED_SALT" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -69250,15 +65565,15 @@ + + ################################################# + # check for a NISPLUS_HOME support +-{ $as_echo "$as_me:$LINENO: checking whether to use NISPLUS_HOME" >&5 +-$as_echo_n "checking whether to use NISPLUS_HOME... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to use NISPLUS_HOME" >&5 ++echo $ECHO_N "checking whether to use NISPLUS_HOME... $ECHO_C" >&6; } + + # Check whether --with-nisplus-home was given. + if test "${with_nisplus_home+set}" = set; then + withval=$with_nisplus_home; case "$withval" in + yes) +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define WITH_NISPLUS_HOME 1 +@@ -69266,28 +65581,28 @@ + + ;; + *) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + ;; + esac + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + fi + + + ################################################# + # check for syslog logging +-{ $as_echo "$as_me:$LINENO: checking whether to use syslog logging" >&5 +-$as_echo_n "checking whether to use syslog logging... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to use syslog logging" >&5 ++echo $ECHO_N "checking whether to use syslog logging... $ECHO_C" >&6; } + + # Check whether --with-syslog was given. + if test "${with_syslog+set}" = set; then + withval=$with_syslog; case "$withval" in + yes) +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define WITH_SYSLOG 1 +@@ -69295,28 +65610,28 @@ + + ;; + *) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + ;; + esac + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + fi + + + ################################################# + # check for custom syslog facility +-{ $as_echo "$as_me:$LINENO: checking whether to use a custom syslog facility" >&5 +-$as_echo_n "checking whether to use a custom syslog facility... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to use a custom syslog facility" >&5 ++echo $ECHO_N "checking whether to use a custom syslog facility... $ECHO_C" >&6; } + + # Check whether --with-syslog-facility was given. + if test "${with_syslog_facility+set}" = set; then + withval=$with_syslog_facility; + if test "$withval" = "no" ; then +- { { $as_echo "$as_me:$LINENO: error: argument to --with-syslog-facility must be a string" >&5 +-$as_echo "$as_me: error: argument to --with-syslog-facility must be a string" >&2;} ++ { { echo "$as_me:$LINENO: error: argument to --with-syslog-facility must be a string" >&5 ++echo "$as_me: error: argument to --with-syslog-facility must be a string" >&2;} + { (exit 1); exit 1; }; } + else + if test "$withval" != "yes" ; then +@@ -69342,15 +65657,15 @@ + samba_cv_TRY_SYS_QUOTAS=auto + samba_cv_SYSQUOTA_FOUND=no + +-{ $as_echo "$as_me:$LINENO: checking whether to try disk-quotas support" >&5 +-$as_echo_n "checking whether to try disk-quotas support... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to try disk-quotas support" >&5 ++echo $ECHO_N "checking whether to try disk-quotas support... $ECHO_C" >&6; } + + # Check whether --with-quotas was given. + if test "${with_quotas+set}" = set; then + withval=$with_quotas; case "$withval" in + yes) +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + samba_cv_WITH_QUOTAS=yes + samba_cv_TRY_QUOTAS=yes + samba_cv_RUN_QUOTA_TESTS=yes +@@ -69358,8 +65673,8 @@ + samba_cv_TRY_SYS_QUOTAS=auto + ;; + auto) +- { $as_echo "$as_me:$LINENO: result: auto" >&5 +-$as_echo "auto" >&6; } ++ { echo "$as_me:$LINENO: result: auto" >&5 ++echo "${ECHO_T}auto" >&6; } + samba_cv_WITH_QUOTAS=auto + samba_cv_TRY_QUOTAS=auto + samba_cv_RUN_QUOTA_TESTS=auto +@@ -69367,75 +65682,75 @@ + samba_cv_TRY_SYS_QUOTAS=auto + ;; + no) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + samba_cv_WITH_QUOTAS=no + samba_cv_TRY_QUOTAS=no + samba_cv_RUN_QUOTA_TESTS=no + ;; + *) +- { $as_echo "$as_me:$LINENO: result: ${samba_cv_TRY_QUOTAS}" >&5 +-$as_echo "${samba_cv_TRY_QUOTAS}" >&6; } ++ { echo "$as_me:$LINENO: result: ${samba_cv_TRY_QUOTAS}" >&5 ++echo "${ECHO_T}${samba_cv_TRY_QUOTAS}" >&6; } + ;; + esac + else +- { $as_echo "$as_me:$LINENO: result: ${samba_cv_TRY_QUOTAS}" >&5 +-$as_echo "${samba_cv_TRY_QUOTAS}" >&6; } ++ { echo "$as_me:$LINENO: result: ${samba_cv_TRY_QUOTAS}" >&5 ++echo "${ECHO_T}${samba_cv_TRY_QUOTAS}" >&6; } + + fi + + +-{ $as_echo "$as_me:$LINENO: checking whether to try the new lib/sysquotas.c interface" >&5 +-$as_echo_n "checking whether to try the new lib/sysquotas.c interface... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to try the new lib/sysquotas.c interface" >&5 ++echo $ECHO_N "checking whether to try the new lib/sysquotas.c interface... $ECHO_C" >&6; } + + # Check whether --with-sys-quotas was given. + if test "${with_sys_quotas+set}" = set; then + withval=$with_sys_quotas; case "$withval" in + yes) +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + samba_cv_WITH_SYS_QUOTAS=yes + samba_cv_TRY_SYS_QUOTAS=yes + samba_cv_RUN_QUOTA_TESTS=yes + ;; + auto) +- { $as_echo "$as_me:$LINENO: result: auto" >&5 +-$as_echo "auto" >&6; } ++ { echo "$as_me:$LINENO: result: auto" >&5 ++echo "${ECHO_T}auto" >&6; } + samba_cv_WITH_SYS_QUOTAS=auto + samba_cv_TRY_SYS_QUOTAS=auto + samba_cv_RUN_QUOTA_TESTS=auto + ;; + no) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + samba_cv_WITH_SYS_QUOTAS=no + samba_cv_TRY_SYS_QUOTAS=no + ;; + *) +- { $as_echo "$as_me:$LINENO: result: ${samba_cv_TRY_SYS_QUOTAS}" >&5 +-$as_echo "${samba_cv_TRY_SYS_QUOTAS}" >&6; } ++ { echo "$as_me:$LINENO: result: ${samba_cv_TRY_SYS_QUOTAS}" >&5 ++echo "${ECHO_T}${samba_cv_TRY_SYS_QUOTAS}" >&6; } + ;; + esac + else +- { $as_echo "$as_me:$LINENO: result: ${samba_cv_TRY_SYS_QUOTAS}" >&5 +-$as_echo "${samba_cv_TRY_SYS_QUOTAS}" >&6; } ++ { echo "$as_me:$LINENO: result: ${samba_cv_TRY_SYS_QUOTAS}" >&5 ++echo "${ECHO_T}${samba_cv_TRY_SYS_QUOTAS}" >&6; } + + fi + + + if test x"$samba_cv_TRY_SYS_QUOTAS" = x"auto"; then +-{ $as_echo "$as_me:$LINENO: checking whether to try the lib/sysquotas.c interface on ${host_os}" >&5 +-$as_echo_n "checking whether to try the lib/sysquotas.c interface on ${host_os}... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to try the lib/sysquotas.c interface on ${host_os}" >&5 ++echo $ECHO_N "checking whether to try the lib/sysquotas.c interface on ${host_os}... $ECHO_C" >&6; } + case "$host_os" in + *linux*) +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + samba_cv_TRY_SYS_QUOTAS=yes + samba_cv_RUN_QUOTA_TESTS=yes + ;; + *) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + samba_cv_TRY_SYS_QUOTAS=no + ;; + esac +@@ -69455,10 +65770,10 @@ + _ACEOF + + samba_cv_sysquotas_file="lib/sysquotas_linux.c" +- { $as_echo "$as_me:$LINENO: checking whether to use the lib/sysquotas_linux.c builtin support" >&5 +-$as_echo_n "checking whether to use the lib/sysquotas_linux.c builtin support... " >&6; } +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: checking whether to use the lib/sysquotas_linux.c builtin support" >&5 ++echo $ECHO_N "checking whether to use the lib/sysquotas_linux.c builtin support... $ECHO_C" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + + cat >>confdefs.h <<\_ACEOF +@@ -69466,10 +65781,10 @@ + _ACEOF + + samba_cv_found_xfs_header=yes +- { $as_echo "$as_me:$LINENO: checking whether to use the lib/sysquotas_xfs.c builtin support" >&5 +-$as_echo_n "checking whether to use the lib/sysquotas_xfs.c builtin support... " >&6; } +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: checking whether to use the lib/sysquotas_xfs.c builtin support" >&5 ++echo $ECHO_N "checking whether to use the lib/sysquotas_xfs.c builtin support... $ECHO_C" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + ;; + *solaris*) + # need to set this define when using static linking (BUG 1473) +@@ -69481,17 +65796,17 @@ + + # some broken header files need this + if test "${ac_cv_header_asm_types_h+set}" = set; then +- { $as_echo "$as_me:$LINENO: checking for asm/types.h" >&5 +-$as_echo_n "checking for asm/types.h... " >&6; } ++ { echo "$as_me:$LINENO: checking for asm/types.h" >&5 ++echo $ECHO_N "checking for asm/types.h... $ECHO_C" >&6; } + if test "${ac_cv_header_asm_types_h+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_asm_types_h" >&5 +-$as_echo "$ac_cv_header_asm_types_h" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_header_asm_types_h" >&5 ++echo "${ECHO_T}$ac_cv_header_asm_types_h" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking asm/types.h usability" >&5 +-$as_echo_n "checking asm/types.h usability... " >&6; } ++{ echo "$as_me:$LINENO: checking asm/types.h usability" >&5 ++echo $ECHO_N "checking asm/types.h usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -69507,33 +65822,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking asm/types.h presence" >&5 +-$as_echo_n "checking asm/types.h presence... " >&6; } ++{ echo "$as_me:$LINENO: checking asm/types.h presence" >&5 ++echo $ECHO_N "checking asm/types.h presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -69547,52 +65861,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: asm/types.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: asm/types.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: asm/types.h: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: asm/types.h: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: asm/types.h: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: asm/types.h: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: asm/types.h: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: asm/types.h: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: asm/types.h: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: asm/types.h: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: asm/types.h: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: asm/types.h: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: asm/types.h: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: asm/types.h: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: asm/types.h: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: asm/types.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: asm/types.h: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: asm/types.h: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: asm/types.h: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: asm/types.h: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: asm/types.h: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: asm/types.h: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: asm/types.h: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: asm/types.h: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: asm/types.h: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: asm/types.h: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: asm/types.h: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: asm/types.h: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: asm/types.h: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: asm/types.h: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: asm/types.h: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: asm/types.h: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -69601,18 +65914,18 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for asm/types.h" >&5 +-$as_echo_n "checking for asm/types.h... " >&6; } ++{ echo "$as_me:$LINENO: checking for asm/types.h" >&5 ++echo $ECHO_N "checking for asm/types.h... $ECHO_C" >&6; } + if test "${ac_cv_header_asm_types_h+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_cv_header_asm_types_h=$ac_header_preproc + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_asm_types_h" >&5 +-$as_echo "$ac_cv_header_asm_types_h" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_header_asm_types_h" >&5 ++echo "${ECHO_T}$ac_cv_header_asm_types_h" >&6; } + + fi +-if test "x$ac_cv_header_asm_types_h" = x""yes; then ++if test $ac_cv_header_asm_types_h = yes; then + + + cat >>confdefs.h <<\_ACEOF +@@ -69632,21 +65945,20 @@ + + for ac_header in sys/fs/vx_quota.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -69662,33 +65974,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -69702,52 +66013,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -69756,24 +66066,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -69785,21 +66092,20 @@ + + for ac_header in linux/dqblk_xfs.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -69815,33 +66121,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -69855,52 +66160,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -69909,24 +66213,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -69938,21 +66239,20 @@ + + for ac_header in sys/quota.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -69968,33 +66268,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -70008,52 +66307,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -70062,24 +66360,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -70089,10 +66384,10 @@ + + if test x"$samba_cv_found_xfs_header" != x"yes"; then + # if we have xfs quota support (IRIX) we should use it +-{ $as_echo "$as_me:$LINENO: checking for XFS QUOTA in " >&5 +-$as_echo_n "checking for XFS QUOTA in ... " >&6; } ++{ echo "$as_me:$LINENO: checking for XFS QUOTA in " >&5 ++echo $ECHO_N "checking for XFS QUOTA in ... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_SYS_QUOTA_XFS+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -70125,21 +66420,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_SYS_QUOTA_XFS=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_SYS_QUOTA_XFS=no +@@ -70147,18 +66441,18 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_SYS_QUOTA_XFS" >&5 +-$as_echo "$samba_cv_HAVE_SYS_QUOTA_XFS" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_SYS_QUOTA_XFS" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_SYS_QUOTA_XFS" >&6; } + if test "$samba_cv_HAVE_SYS_QUOTA_XFS"x = "yes"x; then + samba_cv_found_xfs_header=yes + fi + fi + + # if we have struct dqblk .dqb_fsoftlimit instead of .dqb_isoftlimit on IRIX +-{ $as_echo "$as_me:$LINENO: checking if struct dqblk has .dqb_fsoftlimit" >&5 +-$as_echo_n "checking if struct dqblk has .dqb_fsoftlimit... " >&6; } ++{ echo "$as_me:$LINENO: checking if struct dqblk has .dqb_fsoftlimit" >&5 ++echo $ECHO_N "checking if struct dqblk has .dqb_fsoftlimit... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_DQB_FSOFTLIMIT+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -70189,21 +66483,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_DQB_FSOFTLIMIT=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_DQB_FSOFTLIMIT=no +@@ -70211,8 +66504,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_DQB_FSOFTLIMIT" >&5 +-$as_echo "$samba_cv_HAVE_DQB_FSOFTLIMIT" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_DQB_FSOFTLIMIT" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_DQB_FSOFTLIMIT" >&6; } + if test "$samba_cv_HAVE_DQB_FSOFTLIMIT"x = "yes"x; then + + cat >>confdefs.h <<\_ACEOF +@@ -70225,10 +66518,10 @@ + # look for a working quota system + + if test x"$samba_cv_SYSQUOTA_FOUND" != x"yes"; then +-{ $as_echo "$as_me:$LINENO: checking for long quotactl(int cmd, char *special, qid_t id, caddr_t addr)" >&5 +-$as_echo_n "checking for long quotactl(int cmd, char *special, qid_t id, caddr_t addr)... " >&6; } ++{ echo "$as_me:$LINENO: checking for long quotactl(int cmd, char *special, qid_t id, caddr_t addr)" >&5 ++echo $ECHO_N "checking for long quotactl(int cmd, char *special, qid_t id, caddr_t addr)... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_QUOTACTL_4A+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + +@@ -70262,32 +66555,29 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_QUOTACTL_4A=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_QUOTACTL_4A=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + +@@ -70303,8 +66593,8 @@ + export LDFLAGS; + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_QUOTACTL_4A" >&5 +-$as_echo "$samba_cv_HAVE_QUOTACTL_4A" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_QUOTACTL_4A" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_QUOTACTL_4A" >&6; } + if test x"$samba_cv_HAVE_QUOTACTL_4A" = x"yes"; then + samba_cv_SYSQUOTA_FOUND=yes; + +@@ -70317,10 +66607,10 @@ + fi + + if test x"$samba_cv_SYSQUOTA_FOUND" != x"yes"; then +-{ $as_echo "$as_me:$LINENO: checking for int quotactl(const char *path, int cmd, int id, char *addr)" >&5 +-$as_echo_n "checking for int quotactl(const char *path, int cmd, int id, char *addr)... " >&6; } ++{ echo "$as_me:$LINENO: checking for int quotactl(const char *path, int cmd, int id, char *addr)" >&5 ++echo $ECHO_N "checking for int quotactl(const char *path, int cmd, int id, char *addr)... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_QUOTACTL_4B+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + +@@ -70354,32 +66644,29 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_QUOTACTL_4B=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_QUOTACTL_4B=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + +@@ -70395,8 +66682,8 @@ + export LDFLAGS; + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_QUOTACTL_4B" >&5 +-$as_echo "$samba_cv_HAVE_QUOTACTL_4B" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_QUOTACTL_4B" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_QUOTACTL_4B" >&6; } + if test x"$samba_cv_HAVE_QUOTACTL_4B" = x"yes"; then + echo "int quotactl(const char *path, int cmd, int id, char *addr) is not reworked for the new sys_quota api" + samba_cv_SYSQUOTA_FOUND=yes; +@@ -70410,10 +66697,10 @@ + fi + + if test x"$samba_cv_SYSQUOTA_FOUND" != x"yes"; then +-{ $as_echo "$as_me:$LINENO: checking for CRAY int quotactl (char *spec, int request, char *arg)" >&5 +-$as_echo_n "checking for CRAY int quotactl (char *spec, int request, char *arg)... " >&6; } ++{ echo "$as_me:$LINENO: checking for CRAY int quotactl (char *spec, int request, char *arg)" >&5 ++echo $ECHO_N "checking for CRAY int quotactl (char *spec, int request, char *arg)... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_QUOTACTL_3+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + +@@ -70447,32 +66734,29 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + samba_cv_HAVE_QUOTACTL_3=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + samba_cv_HAVE_QUOTACTL_3=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + +@@ -70488,8 +66772,8 @@ + export LDFLAGS; + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_QUOTACTL_3" >&5 +-$as_echo "$samba_cv_HAVE_QUOTACTL_3" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_QUOTACTL_3" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_QUOTACTL_3" >&6; } + if test x"$samba_cv_HAVE_QUOTACTL_3" = x"yes"; then + echo "CRAY int quotactl (char *spec, int request, char *arg) is NOT reworked for the sys_quota api" + samba_cv_SYSQUOTA_FOUND=yes; +@@ -70507,21 +66791,20 @@ + + for ac_header in mntent.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -70537,33 +66820,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -70577,52 +66859,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -70631,24 +66912,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -70662,11 +66940,11 @@ + + for ac_func in setmntent getmntent endmntent + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -70719,42 +66997,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -70766,21 +67037,20 @@ + + for ac_header in devnm.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -70796,33 +67066,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -70836,52 +67105,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -70890,24 +67158,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -70919,11 +67184,11 @@ + + for ac_func in devnm + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -70976,42 +67241,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -71034,10 +67292,10 @@ + fi + + if test x"$samba_cv_SYSQUOTA_FOUND" != x"no"; then +-{ $as_echo "$as_me:$LINENO: checking whether the sys_quota interface works" >&5 +-$as_echo_n "checking whether the sys_quota interface works... " >&6; } ++{ echo "$as_me:$LINENO: checking whether the sys_quota interface works" >&5 ++echo $ECHO_N "checking whether the sys_quota interface works... $ECHO_C" >&6; } + if test "${samba_cv_SYSQUOTA_WORKS+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + SAVE_CPPFLAGS="$CPPFLAGS" +@@ -71070,21 +67328,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_SYSQUOTA_WORKS=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_SYSQUOTA_WORKS=no +@@ -71094,11 +67351,11 @@ + CPPFLAGS="$SAVE_CPPFLAGS" + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_SYSQUOTA_WORKS" >&5 +-$as_echo "$samba_cv_SYSQUOTA_WORKS" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_SYSQUOTA_WORKS" >&5 ++echo "${ECHO_T}$samba_cv_SYSQUOTA_WORKS" >&6; } + if test x"$samba_cv_SYSQUOTA_WORKS" = x"yes"; then +-{ $as_echo "$as_me:$LINENO: checking whether to use the new lib/sysquotas.c interface" >&5 +-$as_echo_n "checking whether to use the new lib/sysquotas.c interface... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to use the new lib/sysquotas.c interface" >&5 ++echo $ECHO_N "checking whether to use the new lib/sysquotas.c interface... $ECHO_C" >&6; } + if test x"$samba_cv_TRY_SYS_QUOTAS" != x"no"; then + + cat >>confdefs.h <<\_ACEOF +@@ -71111,20 +67368,20 @@ + _ACEOF + + samba_cv_WE_USE_SYS_QUOTAS=yes +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + fi + fi + + if test x"$samba_cv_SYSQUOTA_FOUND" != x"no" -a x"$samba_cv_found_xfs_header" = x"yes"; then +-{ $as_echo "$as_me:$LINENO: checking whether the sys_quota interface works with XFS" >&5 +-$as_echo_n "checking whether the sys_quota interface works with XFS... " >&6; } ++{ echo "$as_me:$LINENO: checking whether the sys_quota interface works with XFS" >&5 ++echo $ECHO_N "checking whether the sys_quota interface works with XFS... $ECHO_C" >&6; } + if test "${samba_cv_SYSQUOTA_WORKS_XFS+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + SAVE_CPPFLAGS="$CPPFLAGS" +@@ -71157,21 +67414,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_SYSQUOTA_WORKS_XFS=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_SYSQUOTA_WORKS_XFS=no +@@ -71181,8 +67437,8 @@ + CPPFLAGS="$SAVE_CPPFLAGS" + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_SYSQUOTA_WORKS_XFS" >&5 +-$as_echo "$samba_cv_SYSQUOTA_WORKS_XFS" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_SYSQUOTA_WORKS_XFS" >&5 ++echo "${ECHO_T}$samba_cv_SYSQUOTA_WORKS_XFS" >&6; } + if test x"$samba_cv_SYSQUOTA_WORKS_XFS" = x"yes"; then + if test x"$samba_cv_WE_USE_SYS_QUOTAS" = x"yes"; then + +@@ -71194,10 +67450,10 @@ + fi + fi + +-{ $as_echo "$as_me:$LINENO: checking whether the old quota support works" >&5 +-$as_echo_n "checking whether the old quota support works... " >&6; } ++{ echo "$as_me:$LINENO: checking whether the old quota support works" >&5 ++echo $ECHO_N "checking whether the old quota support works... $ECHO_C" >&6; } + if test "${samba_cv_QUOTA_WORKS+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + SAVE_CPPFLAGS="$CPPFLAGS" +@@ -71228,21 +67484,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_QUOTA_WORKS=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_QUOTA_WORKS=no +@@ -71252,11 +67507,11 @@ + CPPFLAGS="$SAVE_CPPFLAGS" + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_QUOTA_WORKS" >&5 +-$as_echo "$samba_cv_QUOTA_WORKS" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_QUOTA_WORKS" >&5 ++echo "${ECHO_T}$samba_cv_QUOTA_WORKS" >&6; } + if test x"$samba_cv_QUOTA_WORKS" = x"yes"; then +-{ $as_echo "$as_me:$LINENO: checking whether to use the old quota support" >&5 +-$as_echo_n "checking whether to use the old quota support... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to use the old quota support" >&5 ++echo $ECHO_N "checking whether to use the old quota support... $ECHO_C" >&6; } + if test x"$samba_cv_WE_USE_SYS_QUOTAS" != x"yes"; then + if test x"$samba_cv_TRY_QUOTAS" != x"no"; then + +@@ -71264,15 +67519,15 @@ + #define WITH_QUOTAS 1 + _ACEOF + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + fi + +@@ -71283,8 +67538,8 @@ + ################################################# + # check for experimental utmp accounting + +-{ $as_echo "$as_me:$LINENO: checking whether to support utmp accounting" >&5 +-$as_echo_n "checking whether to support utmp accounting... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to support utmp accounting" >&5 ++echo $ECHO_N "checking whether to support utmp accounting... $ECHO_C" >&6; } + WITH_UTMP=yes + + # Check whether --with-utmp was given. +@@ -71311,16 +67566,16 @@ + # Display test results + + if test x"$WITH_UTMP" = x"yes"; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define WITH_UTMP 1 + _ACEOF + + else +- { $as_echo "$as_me:$LINENO: result: no$utmp_no_reason" >&5 +-$as_echo "no$utmp_no_reason" >&6; } ++ { echo "$as_me:$LINENO: result: no$utmp_no_reason" >&5 ++echo "${ECHO_T}no$utmp_no_reason" >&6; } + fi + + INSTALLLIBCMD_SH=: +@@ -71345,8 +67600,8 @@ + USESHARED=false + + +-{ $as_echo "$as_me:$LINENO: checking whether to use shared libraries internally" >&5 +-$as_echo_n "checking whether to use shared libraries internally... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to use shared libraries internally" >&5 ++echo $ECHO_N "checking whether to use shared libraries internally... $ECHO_C" >&6; } + # Check whether --enable-shared-libs was given. + if test "${enable_shared_libs+set}" = set; then + enableval=$enable_shared_libs; enable_shared_libs=$enableval +@@ -71359,12 +67614,12 @@ + USESHARED=$BLDSHARED + fi + +-{ $as_echo "$as_me:$LINENO: result: $USESHARED" >&5 +-$as_echo "$USESHARED" >&6; } ++{ echo "$as_me:$LINENO: result: $USESHARED" >&5 ++echo "${ECHO_T}$USESHARED" >&6; } + + if test x"$enable_shared_libs" = x"yes" -a x"$BLDSHARED" != x"true" ; then +- { $as_echo "$as_me:$LINENO: WARNING: --enable-shared-libs: no support for shared libraries" >&5 +-$as_echo "$as_me: WARNING: --enable-shared-libs: no support for shared libraries" >&2;} ++ { echo "$as_me:$LINENO: WARNING: --enable-shared-libs: no support for shared libraries" >&5 ++echo "$as_me: WARNING: --enable-shared-libs: no support for shared libraries" >&2;} + fi + + ################################################# +@@ -71428,7 +67683,8 @@ + LIBTALLOC_STATIC_TARGET=bin/libtalloc.a + LIBTALLOC_SHARED= + LIBTALLOC_STATIC= +-LIBTALLOC_LIBS= ++LIBTALLOC_LIBS=-ltalloc ++LIBTALLOC_TARGET= + INSTALL_LIBTALLOC= + UNINSTALL_LIBTALLOC= + +@@ -71443,8 +67699,9 @@ + + + +-{ $as_echo "$as_me:$LINENO: checking whether to build the libtalloc shared library" >&5 +-$as_echo_n "checking whether to build the libtalloc shared library... " >&6; } ++ ++{ echo "$as_me:$LINENO: checking whether to build the libtalloc shared library" >&5 ++echo $ECHO_N "checking whether to build the libtalloc shared library... $ECHO_C" >&6; } + + + # Check whether --with-libtalloc was given. +@@ -71452,8 +67709,8 @@ + withval=$with_libtalloc; + case "$withval" in + no) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + build_lib=no + ;; + *) +@@ -71477,22 +67734,24 @@ + UNINSTALL_LIBTALLOC=uninstalllibtalloc + if eval $BLDSHARED = true; then + LIBTALLOC_SHARED=$LIBTALLOC_SHARED_TARGET +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ LIBTALLOC_TARGET=$LIBTALLOC_SHARED_TARGET ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + if test x"$USESHARED" != x"true" -o x"$LINK_LIBTALLOC" = "xSTATIC" ; then + enable_static=yes +- else +- LIBTALLOC_LIBS=-ltalloc ++ LIBTALLOC_TARGET=$LIBTALLOC_STATIC_TARGET ++ LIBTALLOC_LIBS=$LIBTALLOC_STATIC_TARGET + fi + else + enable_static=yes +- { $as_echo "$as_me:$LINENO: result: no shared library support -- will supply static library" >&5 +-$as_echo "no shared library support -- will supply static library" >&6; } ++ LIBTALLOC_TARGET=$LIBTALLOC_STATIC_TARGET ++ { echo "$as_me:$LINENO: result: no shared library support -- will supply static library" >&5 ++echo "${ECHO_T}no shared library support -- will supply static library" >&6; } + fi + else + enable_static=yes +- { $as_echo "$as_me:$LINENO: result: shared library not selected" >&5 +-$as_echo "shared library not selected" >&6; } ++ { echo "$as_me:$LINENO: result: shared library not selected" >&5 ++echo "${ECHO_T}shared library not selected" >&6; } + fi + if test $enable_static = yes; then + LIBTALLOC_STATIC=\$\(LIBTALLOC_OBJ0\) +@@ -71512,7 +67771,8 @@ + LIBTDB_STATIC_TARGET=bin/libtdb.a + LIBTDB_SHARED= + LIBTDB_STATIC= +-LIBTDB_LIBS= ++LIBTDB_LIBS=-ltdb ++LIBTDB_TARGET= + INSTALL_LIBTDB= + UNINSTALL_LIBTDB= + +@@ -71527,8 +67787,9 @@ + + + +-{ $as_echo "$as_me:$LINENO: checking whether to build the libtdb shared library" >&5 +-$as_echo_n "checking whether to build the libtdb shared library... " >&6; } ++ ++{ echo "$as_me:$LINENO: checking whether to build the libtdb shared library" >&5 ++echo $ECHO_N "checking whether to build the libtdb shared library... $ECHO_C" >&6; } + + + # Check whether --with-libtdb was given. +@@ -71536,8 +67797,8 @@ + withval=$with_libtdb; + case "$withval" in + no) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + build_lib=no + ;; + *) +@@ -71561,22 +67822,24 @@ + UNINSTALL_LIBTDB=uninstalllibtdb + if eval $BLDSHARED = true; then + LIBTDB_SHARED=$LIBTDB_SHARED_TARGET +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ LIBTDB_TARGET=$LIBTDB_SHARED_TARGET ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + if test x"$USESHARED" != x"true" -o x"$LINK_LIBTDB" = "xSTATIC" ; then + enable_static=yes +- else +- LIBTDB_LIBS=-ltdb ++ LIBTDB_TARGET=$LIBTDB_STATIC_TARGET ++ LIBTDB_LIBS=$LIBTDB_STATIC_TARGET + fi + else + enable_static=yes +- { $as_echo "$as_me:$LINENO: result: no shared library support -- will supply static library" >&5 +-$as_echo "no shared library support -- will supply static library" >&6; } ++ LIBTDB_TARGET=$LIBTDB_STATIC_TARGET ++ { echo "$as_me:$LINENO: result: no shared library support -- will supply static library" >&5 ++echo "${ECHO_T}no shared library support -- will supply static library" >&6; } + fi + else + enable_static=yes +- { $as_echo "$as_me:$LINENO: result: shared library not selected" >&5 +-$as_echo "shared library not selected" >&6; } ++ { echo "$as_me:$LINENO: result: shared library not selected" >&5 ++echo "${ECHO_T}shared library not selected" >&6; } + fi + if test $enable_static = yes; then + LIBTDB_STATIC=\$\(LIBTDB_OBJ0\) +@@ -71596,7 +67859,8 @@ + LIBNETAPI_STATIC_TARGET=bin/libnetapi.a + LIBNETAPI_SHARED= + LIBNETAPI_STATIC= +-LIBNETAPI_LIBS= ++LIBNETAPI_LIBS=-lnetapi ++LIBNETAPI_TARGET= + INSTALL_LIBNETAPI= + UNINSTALL_LIBNETAPI= + +@@ -71611,8 +67875,9 @@ + + + +-{ $as_echo "$as_me:$LINENO: checking whether to build the libnetapi shared library" >&5 +-$as_echo_n "checking whether to build the libnetapi shared library... " >&6; } ++ ++{ echo "$as_me:$LINENO: checking whether to build the libnetapi shared library" >&5 ++echo $ECHO_N "checking whether to build the libnetapi shared library... $ECHO_C" >&6; } + + + # Check whether --with-libnetapi was given. +@@ -71620,8 +67885,8 @@ + withval=$with_libnetapi; + case "$withval" in + no) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + build_lib=no + ;; + *) +@@ -71645,22 +67910,24 @@ + UNINSTALL_LIBNETAPI=uninstalllibnetapi + if eval $BLDSHARED = true; then + LIBNETAPI_SHARED=$LIBNETAPI_SHARED_TARGET +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ LIBNETAPI_TARGET=$LIBNETAPI_SHARED_TARGET ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + if test x"$USESHARED" != x"true" -o x"$LINK_LIBNETAPI" = "xSTATIC" ; then + enable_static=yes +- else +- LIBNETAPI_LIBS=-lnetapi ++ LIBNETAPI_TARGET=$LIBNETAPI_STATIC_TARGET ++ LIBNETAPI_LIBS=$LIBNETAPI_STATIC_TARGET + fi + else + enable_static=yes +- { $as_echo "$as_me:$LINENO: result: no shared library support -- will supply static library" >&5 +-$as_echo "no shared library support -- will supply static library" >&6; } ++ LIBNETAPI_TARGET=$LIBNETAPI_STATIC_TARGET ++ { echo "$as_me:$LINENO: result: no shared library support -- will supply static library" >&5 ++echo "${ECHO_T}no shared library support -- will supply static library" >&6; } + fi + else + enable_static=yes +- { $as_echo "$as_me:$LINENO: result: shared library not selected" >&5 +-$as_echo "shared library not selected" >&6; } ++ { echo "$as_me:$LINENO: result: shared library not selected" >&5 ++echo "${ECHO_T}shared library not selected" >&6; } + fi + if test $enable_static = yes; then + LIBNETAPI_STATIC=\$\(LIBNETAPI_OBJ0\) +@@ -71680,7 +67947,8 @@ + LIBSMBCLIENT_STATIC_TARGET=bin/libsmbclient.a + LIBSMBCLIENT_SHARED= + LIBSMBCLIENT_STATIC= +-LIBSMBCLIENT_LIBS= ++LIBSMBCLIENT_LIBS=-lsmbclient ++LIBSMBCLIENT_TARGET= + INSTALL_LIBSMBCLIENT= + UNINSTALL_LIBSMBCLIENT= + +@@ -71695,8 +67963,9 @@ + + + +-{ $as_echo "$as_me:$LINENO: checking whether to build the libsmbclient shared library" >&5 +-$as_echo_n "checking whether to build the libsmbclient shared library... " >&6; } ++ ++{ echo "$as_me:$LINENO: checking whether to build the libsmbclient shared library" >&5 ++echo $ECHO_N "checking whether to build the libsmbclient shared library... $ECHO_C" >&6; } + + + # Check whether --with-libsmbclient was given. +@@ -71704,8 +67973,8 @@ + withval=$with_libsmbclient; + case "$withval" in + no) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + build_lib=no + ;; + *) +@@ -71729,22 +67998,24 @@ + UNINSTALL_LIBSMBCLIENT=uninstalllibsmbclient + if eval $BLDSHARED = true; then + LIBSMBCLIENT_SHARED=$LIBSMBCLIENT_SHARED_TARGET +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ LIBSMBCLIENT_TARGET=$LIBSMBCLIENT_SHARED_TARGET ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + if test x"$USESHARED" != x"true" -o x"$LINK_LIBSMBCLIENT" = "xSTATIC" ; then + enable_static=yes +- else +- LIBSMBCLIENT_LIBS=-lsmbclient ++ LIBSMBCLIENT_TARGET=$LIBSMBCLIENT_STATIC_TARGET ++ LIBSMBCLIENT_LIBS=$LIBSMBCLIENT_STATIC_TARGET + fi + else + enable_static=yes +- { $as_echo "$as_me:$LINENO: result: no shared library support -- will supply static library" >&5 +-$as_echo "no shared library support -- will supply static library" >&6; } ++ LIBSMBCLIENT_TARGET=$LIBSMBCLIENT_STATIC_TARGET ++ { echo "$as_me:$LINENO: result: no shared library support -- will supply static library" >&5 ++echo "${ECHO_T}no shared library support -- will supply static library" >&6; } + fi + else + enable_static=yes +- { $as_echo "$as_me:$LINENO: result: shared library not selected" >&5 +-$as_echo "shared library not selected" >&6; } ++ { echo "$as_me:$LINENO: result: shared library not selected" >&5 ++echo "${ECHO_T}shared library not selected" >&6; } + fi + if test $enable_static = yes; then + LIBSMBCLIENT_STATIC=\$\(LIBSMBCLIENT_OBJ0\) +@@ -71764,7 +68035,8 @@ + LIBSMBSHAREMODES_STATIC_TARGET=bin/libsmbsharemodes.a + LIBSMBSHAREMODES_SHARED= + LIBSMBSHAREMODES_STATIC= +-LIBSMBSHAREMODES_LIBS= ++LIBSMBSHAREMODES_LIBS=-lsmbsharemodes ++LIBSMBSHAREMODES_TARGET= + INSTALL_LIBSMBSHAREMODES= + UNINSTALL_LIBSMBSHAREMODES= + +@@ -71779,8 +68051,9 @@ + + + +-{ $as_echo "$as_me:$LINENO: checking whether to build the libsmbsharemodes shared library" >&5 +-$as_echo_n "checking whether to build the libsmbsharemodes shared library... " >&6; } ++ ++{ echo "$as_me:$LINENO: checking whether to build the libsmbsharemodes shared library" >&5 ++echo $ECHO_N "checking whether to build the libsmbsharemodes shared library... $ECHO_C" >&6; } + + + # Check whether --with-libsmbsharemodes was given. +@@ -71788,8 +68061,8 @@ + withval=$with_libsmbsharemodes; + case "$withval" in + no) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + build_lib=no + ;; + *) +@@ -71813,22 +68086,24 @@ + UNINSTALL_LIBSMBSHAREMODES=uninstalllibsmbsharemodes + if eval $BLDSHARED = true; then + LIBSMBSHAREMODES_SHARED=$LIBSMBSHAREMODES_SHARED_TARGET +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ LIBSMBSHAREMODES_TARGET=$LIBSMBSHAREMODES_SHARED_TARGET ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + if test x"$USESHARED" != x"true" -o x"$LINK_LIBSMBSHAREMODES" = "xSTATIC" ; then + enable_static=yes +- else +- LIBSMBSHAREMODES_LIBS=-lsmbsharemodes ++ LIBSMBSHAREMODES_TARGET=$LIBSMBSHAREMODES_STATIC_TARGET ++ LIBSMBSHAREMODES_LIBS=$LIBSMBSHAREMODES_STATIC_TARGET + fi + else + enable_static=yes +- { $as_echo "$as_me:$LINENO: result: no shared library support -- will supply static library" >&5 +-$as_echo "no shared library support -- will supply static library" >&6; } ++ LIBSMBSHAREMODES_TARGET=$LIBSMBSHAREMODES_STATIC_TARGET ++ { echo "$as_me:$LINENO: result: no shared library support -- will supply static library" >&5 ++echo "${ECHO_T}no shared library support -- will supply static library" >&6; } + fi + else + enable_static=yes +- { $as_echo "$as_me:$LINENO: result: shared library not selected" >&5 +-$as_echo "shared library not selected" >&6; } ++ { echo "$as_me:$LINENO: result: shared library not selected" >&5 ++echo "${ECHO_T}shared library not selected" >&6; } + fi + if test $enable_static = yes; then + LIBSMBSHAREMODES_STATIC=\$\(LIBSMBSHAREMODES_OBJ0\) +@@ -71848,7 +68123,8 @@ + LIBADDNS_STATIC_TARGET=bin/libaddns.a + LIBADDNS_SHARED= + LIBADDNS_STATIC= +-LIBADDNS_LIBS= ++LIBADDNS_LIBS=-laddns ++LIBADDNS_TARGET= + INSTALL_LIBADDNS= + UNINSTALL_LIBADDNS= + +@@ -71863,8 +68139,9 @@ + + + +-{ $as_echo "$as_me:$LINENO: checking whether to build the libaddns shared library" >&5 +-$as_echo_n "checking whether to build the libaddns shared library... " >&6; } ++ ++{ echo "$as_me:$LINENO: checking whether to build the libaddns shared library" >&5 ++echo $ECHO_N "checking whether to build the libaddns shared library... $ECHO_C" >&6; } + + + # Check whether --with-libaddns was given. +@@ -71875,8 +68152,8 @@ + build_lib=yes + ;; + *) +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + build_lib=no + ;; + esac +@@ -71884,8 +68161,8 @@ + else + + # if unspecified, default is not to build +-{ $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++{ echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + build_lib=no + + +@@ -71899,22 +68176,24 @@ + UNINSTALL_LIBADDNS=uninstalllibaddns + if eval $BLDSHARED = true; then + LIBADDNS_SHARED=$LIBADDNS_SHARED_TARGET +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ LIBADDNS_TARGET=$LIBADDNS_SHARED_TARGET ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + if test x"$USESHARED" != x"true" -o x"$LINK_LIBADDNS" = "xSTATIC" ; then + enable_static=yes +- else +- LIBADDNS_LIBS=-laddns ++ LIBADDNS_TARGET=$LIBADDNS_STATIC_TARGET ++ LIBADDNS_LIBS=$LIBADDNS_STATIC_TARGET + fi + else + enable_static=yes +- { $as_echo "$as_me:$LINENO: result: no shared library support -- will supply static library" >&5 +-$as_echo "no shared library support -- will supply static library" >&6; } ++ LIBADDNS_TARGET=$LIBADDNS_STATIC_TARGET ++ { echo "$as_me:$LINENO: result: no shared library support -- will supply static library" >&5 ++echo "${ECHO_T}no shared library support -- will supply static library" >&6; } + fi + else + enable_static=yes +- { $as_echo "$as_me:$LINENO: result: shared library not selected" >&5 +-$as_echo "shared library not selected" >&6; } ++ { echo "$as_me:$LINENO: result: shared library not selected" >&5 ++echo "${ECHO_T}shared library not selected" >&6; } + fi + if test $enable_static = yes; then + LIBADDNS_STATIC=\$\(LIBADDNS_OBJ0\) +@@ -71930,17 +68209,17 @@ + + ################################################# + # these tests are taken from the GNU fileutils package +-{ $as_echo "$as_me:$LINENO: checking how to get filesystem space usage..." >&5 +-$as_echo "$as_me: checking how to get filesystem space usage..." >&6;} ++{ echo "$as_me:$LINENO: checking how to get filesystem space usage..." >&5 ++echo "$as_me: checking how to get filesystem space usage..." >&6;} + space=no + + # Test for statvfs64. + if test $space = no; then + # SVR4 +- { $as_echo "$as_me:$LINENO: checking statvfs64 function (SVR4)" >&5 +-$as_echo_n "checking statvfs64 function (SVR4)... " >&6; } ++ { echo "$as_me:$LINENO: checking statvfs64 function (SVR4)" >&5 ++echo $ECHO_N "checking statvfs64 function (SVR4)... $ECHO_C" >&6; } + if test "${fu_cv_sys_stat_statvfs64+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + fu_cv_sys_stat_statvfs64=cross +@@ -71969,39 +68248,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + fu_cv_sys_stat_statvfs64=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + fu_cv_sys_stat_statvfs64=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ $as_echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statvfs64" >&5 +-$as_echo "$fu_cv_sys_stat_statvfs64" >&6; } ++{ echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statvfs64" >&5 ++echo "${ECHO_T}$fu_cv_sys_stat_statvfs64" >&6; } + if test $fu_cv_sys_stat_statvfs64 = yes; then + space=yes + +@@ -72020,10 +68296,10 @@ + # is what it gets when this test fails. + if test $space = no; then + # SVR4 +- { $as_echo "$as_me:$LINENO: checking statvfs function (SVR4)" >&5 +-$as_echo_n "checking statvfs function (SVR4)... " >&6; } ++ { echo "$as_me:$LINENO: checking statvfs function (SVR4)" >&5 ++echo $ECHO_N "checking statvfs function (SVR4)... $ECHO_C" >&6; } + if test "${fu_cv_sys_stat_statvfs+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -72047,35 +68323,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + fu_cv_sys_stat_statvfs=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + fu_cv_sys_stat_statvfs=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statvfs" >&5 +-$as_echo "$fu_cv_sys_stat_statvfs" >&6; } ++{ echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statvfs" >&5 ++echo "${ECHO_T}$fu_cv_sys_stat_statvfs" >&6; } + if test $fu_cv_sys_stat_statvfs = yes; then + space=yes + +@@ -72089,10 +68361,10 @@ + # smbd/statvfs.c assumes that statvfs.f_fsid is an integer. + # This is not the case on ancient Linux systems. + +-{ $as_echo "$as_me:$LINENO: checking that statvfs.f_fsid is an integer" >&5 +-$as_echo_n "checking that statvfs.f_fsid is an integer... " >&6; } ++{ echo "$as_me:$LINENO: checking that statvfs.f_fsid is an integer" >&5 ++echo $ECHO_N "checking that statvfs.f_fsid is an integer... $ECHO_C" >&6; } + if test "${samba_cv_fsid_int+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -72117,21 +68389,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_fsid_int=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_fsid_int=no +@@ -72139,8 +68410,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_fsid_int" >&5 +-$as_echo "$samba_cv_fsid_int" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_fsid_int" >&5 ++echo "${ECHO_T}$samba_cv_fsid_int" >&6; } + if test x"$samba_cv_fsid_int" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -72151,10 +68422,10 @@ + + # fsusage.c assumes that statvfs has an f_frsize entry. Some weird + # systems use f_bsize. +-{ $as_echo "$as_me:$LINENO: checking that statvfs.f_frsize works" >&5 +-$as_echo_n "checking that statvfs.f_frsize works... " >&6; } ++{ echo "$as_me:$LINENO: checking that statvfs.f_frsize works" >&5 ++echo $ECHO_N "checking that statvfs.f_frsize works... $ECHO_C" >&6; } + if test "${samba_cv_frsize+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -72179,21 +68450,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_frsize=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_frsize=no +@@ -72201,8 +68471,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_frsize" >&5 +-$as_echo "$samba_cv_frsize" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_frsize" >&5 ++echo "${ECHO_T}$samba_cv_frsize" >&6; } + if test x"$samba_cv_frsize" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -72213,10 +68483,10 @@ + + if test $space = no; then + # DEC Alpha running OSF/1 +- { $as_echo "$as_me:$LINENO: checking for 3-argument statfs function (DEC OSF/1)" >&5 +-$as_echo_n "checking for 3-argument statfs function (DEC OSF/1)... " >&6; } ++ { echo "$as_me:$LINENO: checking for 3-argument statfs function (DEC OSF/1)" >&5 ++echo $ECHO_N "checking for 3-argument statfs function (DEC OSF/1)... $ECHO_C" >&6; } + if test "${fu_cv_sys_stat_statfs3_osf1+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + fu_cv_sys_stat_statfs3_osf1=no +@@ -72244,40 +68514,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + fu_cv_sys_stat_statfs3_osf1=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + fu_cv_sys_stat_statfs3_osf1=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi + +- { $as_echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statfs3_osf1" >&5 +-$as_echo "$fu_cv_sys_stat_statfs3_osf1" >&6; } ++ { echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statfs3_osf1" >&5 ++echo "${ECHO_T}$fu_cv_sys_stat_statfs3_osf1" >&6; } + if test $fu_cv_sys_stat_statfs3_osf1 = yes; then + space=yes + +@@ -72290,10 +68557,10 @@ + + if test $space = no; then + # AIX +- { $as_echo "$as_me:$LINENO: checking for two-argument statfs with statfs.bsize member (AIX, 4.3BSD)" >&5 +-$as_echo_n "checking for two-argument statfs with statfs.bsize member (AIX, 4.3BSD)... " >&6; } ++ { echo "$as_me:$LINENO: checking for two-argument statfs with statfs.bsize member (AIX, 4.3BSD)" >&5 ++echo $ECHO_N "checking for two-argument statfs with statfs.bsize member (AIX, 4.3BSD)... $ECHO_C" >&6; } + if test "${fu_cv_sys_stat_statfs2_bsize+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + fu_cv_sys_stat_statfs2_bsize=no +@@ -72327,40 +68594,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + fu_cv_sys_stat_statfs2_bsize=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + fu_cv_sys_stat_statfs2_bsize=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi + +- { $as_echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statfs2_bsize" >&5 +-$as_echo "$fu_cv_sys_stat_statfs2_bsize" >&6; } ++ { echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statfs2_bsize" >&5 ++echo "${ECHO_T}$fu_cv_sys_stat_statfs2_bsize" >&6; } + if test $fu_cv_sys_stat_statfs2_bsize = yes; then + space=yes + +@@ -72373,10 +68637,10 @@ + + if test $space = no; then + # SVR3 +- { $as_echo "$as_me:$LINENO: checking for four-argument statfs (AIX-3.2.5, SVR3)" >&5 +-$as_echo_n "checking for four-argument statfs (AIX-3.2.5, SVR3)... " >&6; } ++ { echo "$as_me:$LINENO: checking for four-argument statfs (AIX-3.2.5, SVR3)" >&5 ++echo $ECHO_N "checking for four-argument statfs (AIX-3.2.5, SVR3)... $ECHO_C" >&6; } + if test "${fu_cv_sys_stat_statfs4+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + fu_cv_sys_stat_statfs4=no +@@ -72401,40 +68665,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + fu_cv_sys_stat_statfs4=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + fu_cv_sys_stat_statfs4=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi + +- { $as_echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statfs4" >&5 +-$as_echo "$fu_cv_sys_stat_statfs4" >&6; } ++ { echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statfs4" >&5 ++echo "${ECHO_T}$fu_cv_sys_stat_statfs4" >&6; } + if test $fu_cv_sys_stat_statfs4 = yes; then + space=yes + +@@ -72447,10 +68708,10 @@ + + if test $space = no; then + # 4.4BSD and NetBSD +- { $as_echo "$as_me:$LINENO: checking for two-argument statfs with statfs.fsize member (4.4BSD and NetBSD)" >&5 +-$as_echo_n "checking for two-argument statfs with statfs.fsize member (4.4BSD and NetBSD)... " >&6; } ++ { echo "$as_me:$LINENO: checking for two-argument statfs with statfs.fsize member (4.4BSD and NetBSD)" >&5 ++echo $ECHO_N "checking for two-argument statfs with statfs.fsize member (4.4BSD and NetBSD)... $ECHO_C" >&6; } + if test "${fu_cv_sys_stat_statfs2_fsize+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + fu_cv_sys_stat_statfs2_fsize=no +@@ -72481,40 +68742,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + fu_cv_sys_stat_statfs2_fsize=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + fu_cv_sys_stat_statfs2_fsize=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi + +- { $as_echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statfs2_fsize" >&5 +-$as_echo "$fu_cv_sys_stat_statfs2_fsize" >&6; } ++ { echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statfs2_fsize" >&5 ++echo "${ECHO_T}$fu_cv_sys_stat_statfs2_fsize" >&6; } + if test $fu_cv_sys_stat_statfs2_fsize = yes; then + space=yes + +@@ -72527,10 +68785,10 @@ + + if test $space = no; then + # Ultrix +- { $as_echo "$as_me:$LINENO: checking for two-argument statfs with struct fs_data (Ultrix)" >&5 +-$as_echo_n "checking for two-argument statfs with struct fs_data (Ultrix)... " >&6; } ++ { echo "$as_me:$LINENO: checking for two-argument statfs with struct fs_data (Ultrix)" >&5 ++echo $ECHO_N "checking for two-argument statfs with struct fs_data (Ultrix)... $ECHO_C" >&6; } + if test "${fu_cv_sys_stat_fs_data+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + if test "$cross_compiling" = yes; then + fu_cv_sys_stat_fs_data=no +@@ -72565,40 +68823,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + fu_cv_sys_stat_fs_data=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + fu_cv_sys_stat_fs_data=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi + +- { $as_echo "$as_me:$LINENO: result: $fu_cv_sys_stat_fs_data" >&5 +-$as_echo "$fu_cv_sys_stat_fs_data" >&6; } ++ { echo "$as_me:$LINENO: result: $fu_cv_sys_stat_fs_data" >&5 ++echo "${ECHO_T}$fu_cv_sys_stat_fs_data" >&6; } + if test $fu_cv_sys_stat_fs_data = yes; then + space=yes + +@@ -72617,8 +68872,8 @@ + # If we don't have all of these then disable large + # file support. + # +-{ $as_echo "$as_me:$LINENO: checking if large file support can be enabled" >&5 +-$as_echo_n "checking if large file support can be enabled... " >&6; } ++{ echo "$as_me:$LINENO: checking if large file support can be enabled" >&5 ++echo $ECHO_N "checking if large file support can be enabled... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -72646,21 +68901,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_EXPLICIT_LARGEFILE_SUPPORT=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_EXPLICIT_LARGEFILE_SUPPORT=no +@@ -72674,14 +68928,14 @@ + _ACEOF + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_EXPLICIT_LARGEFILE_SUPPORT" >&5 +-$as_echo "$samba_cv_HAVE_EXPLICIT_LARGEFILE_SUPPORT" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_EXPLICIT_LARGEFILE_SUPPORT" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_EXPLICIT_LARGEFILE_SUPPORT" >&6; } + + ################################################# + # check for cluster extensions + +-{ $as_echo "$as_me:$LINENO: checking whether to include cluster support" >&5 +-$as_echo_n "checking whether to include cluster support... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to include cluster support" >&5 ++echo $ECHO_N "checking whether to include cluster support... $ECHO_C" >&6; } + + # Check whether --with-cluster-support was given. + if test "${with_cluster_support+set}" = set; then +@@ -72694,19 +68948,19 @@ + #define CLUSTER_SUPPORT 1 + _ACEOF + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + + ################################################# + # check for ACL support + +-{ $as_echo "$as_me:$LINENO: checking whether to support ACLs" >&5 +-$as_echo_n "checking whether to support ACLs... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to support ACLs" >&5 ++echo $ECHO_N "checking whether to support ACLs... $ECHO_C" >&6; } + + # Check whether --with-acl-support was given. + if test "${with_acl_support+set}" = set; then +@@ -72722,24 +68976,24 @@ + with_acl_support="auto" + fi + +-{ $as_echo "$as_me:$LINENO: result: $with_acl_support" >&5 +-$as_echo "$with_acl_support" >&6; } ++{ echo "$as_me:$LINENO: result: $with_acl_support" >&5 ++echo "${ECHO_T}$with_acl_support" >&6; } + + if test x"$with_acl_support" = x"no"; then +- { $as_echo "$as_me:$LINENO: result: Disabling ACL support" >&5 +-$as_echo "Disabling ACL support" >&6; } ++ { echo "$as_me:$LINENO: result: Disabling ACL support" >&5 ++echo "${ECHO_T}Disabling ACL support" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define HAVE_NO_ACLS 1 + _ACEOF + + else +- { $as_echo "$as_me:$LINENO: checking whether ACL support is available:" >&5 +-$as_echo "$as_me: checking whether ACL support is available:" >&6;} ++ { echo "$as_me:$LINENO: checking whether ACL support is available:" >&5 ++echo "$as_me: checking whether ACL support is available:" >&6;} + case "$host_os" in + *sysv5*) +- { $as_echo "$as_me:$LINENO: Using UnixWare ACLs" >&5 +-$as_echo "$as_me: Using UnixWare ACLs" >&6;} ++ { echo "$as_me:$LINENO: Using UnixWare ACLs" >&5 ++echo "$as_me: Using UnixWare ACLs" >&6;} + + cat >>confdefs.h <<\_ACEOF + #define HAVE_UNIXWARE_ACLS 1 +@@ -72748,8 +69002,8 @@ + default_static_modules="$default_static_modules vfs_solarisacl" + ;; + *solaris*) +- { $as_echo "$as_me:$LINENO: Using solaris ACLs" >&5 +-$as_echo "$as_me: Using solaris ACLs" >&6;} ++ { echo "$as_me:$LINENO: Using solaris ACLs" >&5 ++echo "$as_me: Using solaris ACLs" >&6;} + + cat >>confdefs.h <<\_ACEOF + #define HAVE_SOLARIS_ACLS 1 +@@ -72759,8 +69013,8 @@ + default_static_modules="$default_static_modules vfs_solarisacl" + ;; + *hpux*) +- { $as_echo "$as_me:$LINENO: Using HPUX ACLs" >&5 +-$as_echo "$as_me: Using HPUX ACLs" >&6;} ++ { echo "$as_me:$LINENO: Using HPUX ACLs" >&5 ++echo "$as_me: Using HPUX ACLs" >&6;} + + cat >>confdefs.h <<\_ACEOF + #define HAVE_HPUX_ACLS 1 +@@ -72769,8 +69023,8 @@ + default_static_modules="$default_static_modules vfs_hpuxacl" + ;; + *irix*) +- { $as_echo "$as_me:$LINENO: Using IRIX ACLs" >&5 +-$as_echo "$as_me: Using IRIX ACLs" >&6;} ++ { echo "$as_me:$LINENO: Using IRIX ACLs" >&5 ++echo "$as_me: Using IRIX ACLs" >&6;} + + cat >>confdefs.h <<\_ACEOF + #define HAVE_IRIX_ACLS 1 +@@ -72779,8 +69033,8 @@ + default_static_modules="$default_static_modules vfs_irixacl" + ;; + *aix*) +- { $as_echo "$as_me:$LINENO: Using AIX ACLs" >&5 +-$as_echo "$as_me: Using AIX ACLs" >&6;} ++ { echo "$as_me:$LINENO: Using AIX ACLs" >&5 ++echo "$as_me: Using AIX ACLs" >&6;} + + cat >>confdefs.h <<\_ACEOF + #define HAVE_AIX_ACLS 1 +@@ -72789,8 +69043,8 @@ + default_static_modules="$default_static_modules vfs_aixacl" + ;; + *osf*) +- { $as_echo "$as_me:$LINENO: Using Tru64 ACLs" >&5 +-$as_echo "$as_me: Using Tru64 ACLs" >&6;} ++ { echo "$as_me:$LINENO: Using Tru64 ACLs" >&5 ++echo "$as_me: Using Tru64 ACLs" >&6;} + + cat >>confdefs.h <<\_ACEOF + #define HAVE_TRU64_ACLS 1 +@@ -72800,8 +69054,8 @@ + default_static_modules="$default_static_modules vfs_tru64acl" + ;; + *darwin*) +- { $as_echo "$as_me:$LINENO: ACLs on Darwin currently not supported" >&5 +-$as_echo "$as_me: ACLs on Darwin currently not supported" >&6;} ++ { echo "$as_me:$LINENO: ACLs on Darwin currently not supported" >&5 ++echo "$as_me: ACLs on Darwin currently not supported" >&6;} + + cat >>confdefs.h <<\_ACEOF + #define HAVE_NO_ACLS 1 +@@ -72809,10 +69063,10 @@ + + ;; + *) +- { $as_echo "$as_me:$LINENO: checking for acl_get_file in -lacl" >&5 +-$as_echo_n "checking for acl_get_file in -lacl... " >&6; } ++ { echo "$as_me:$LINENO: checking for acl_get_file in -lacl" >&5 ++echo $ECHO_N "checking for acl_get_file in -lacl... $ECHO_C" >&6; } + if test "${ac_cv_lib_acl_acl_get_file+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lacl $LIBS" +@@ -72844,46 +69098,42 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_acl_acl_get_file=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_acl_acl_get_file=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_acl_acl_get_file" >&5 +-$as_echo "$ac_cv_lib_acl_acl_get_file" >&6; } +-if test "x$ac_cv_lib_acl_acl_get_file" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_acl_acl_get_file" >&5 ++echo "${ECHO_T}$ac_cv_lib_acl_acl_get_file" >&6; } ++if test $ac_cv_lib_acl_acl_get_file = yes; then + ACL_LIBS="$ACL_LIBS -lacl" + fi + + case "$host_os" in + *linux*) +- { $as_echo "$as_me:$LINENO: checking for getxattr in -lattr" >&5 +-$as_echo_n "checking for getxattr in -lattr... " >&6; } ++ { echo "$as_me:$LINENO: checking for getxattr in -lattr" >&5 ++echo $ECHO_N "checking for getxattr in -lattr... $ECHO_C" >&6; } + if test "${ac_cv_lib_attr_getxattr+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lattr $LIBS" +@@ -72915,46 +69165,42 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_attr_getxattr=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_attr_getxattr=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_attr_getxattr" >&5 +-$as_echo "$ac_cv_lib_attr_getxattr" >&6; } +-if test "x$ac_cv_lib_attr_getxattr" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_attr_getxattr" >&5 ++echo "${ECHO_T}$ac_cv_lib_attr_getxattr" >&6; } ++if test $ac_cv_lib_attr_getxattr = yes; then + ACL_LIBS="$ACL_LIBS -lattr" + fi + + ;; + esac +- { $as_echo "$as_me:$LINENO: checking for POSIX ACL support" >&5 +-$as_echo_n "checking for POSIX ACL support... " >&6; } ++ { echo "$as_me:$LINENO: checking for POSIX ACL support" >&5 ++echo $ECHO_N "checking for POSIX ACL support... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_POSIX_ACLS+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + acl_LIBS=$LIBS +@@ -72988,49 +69234,45 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_POSIX_ACLS=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_POSIX_ACLS=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$acl_LIBS + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_POSIX_ACLS" >&5 +-$as_echo "$samba_cv_HAVE_POSIX_ACLS" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_POSIX_ACLS" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_POSIX_ACLS" >&6; } + if test x"$samba_cv_HAVE_POSIX_ACLS" = x"yes"; then +- { $as_echo "$as_me:$LINENO: Using posix ACLs" >&5 +-$as_echo "$as_me: Using posix ACLs" >&6;} ++ { echo "$as_me:$LINENO: Using posix ACLs" >&5 ++echo "$as_me: Using posix ACLs" >&6;} + + cat >>confdefs.h <<\_ACEOF + #define HAVE_POSIX_ACLS 1 + _ACEOF + +- { $as_echo "$as_me:$LINENO: checking for acl_get_perm_np" >&5 +-$as_echo_n "checking for acl_get_perm_np... " >&6; } ++ { echo "$as_me:$LINENO: checking for acl_get_perm_np" >&5 ++echo $ECHO_N "checking for acl_get_perm_np... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_ACL_GET_PERM_NP+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + acl_LIBS=$LIBS +@@ -73063,37 +69305,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_ACL_GET_PERM_NP=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_ACL_GET_PERM_NP=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$acl_LIBS + + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_ACL_GET_PERM_NP" >&5 +-$as_echo "$samba_cv_HAVE_ACL_GET_PERM_NP" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_ACL_GET_PERM_NP" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_ACL_GET_PERM_NP" >&6; } + if test x"$samba_cv_HAVE_ACL_GET_PERM_NP" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -73103,8 +69341,8 @@ + fi + default_static_modules="$default_static_modules vfs_posixacl" + else +- { $as_echo "$as_me:$LINENO: ACL support is not avaliable" >&5 +-$as_echo "$as_me: ACL support is not avaliable" >&6;} ++ { echo "$as_me:$LINENO: ACL support is not avaliable" >&5 ++echo "$as_me: ACL support is not avaliable" >&6;} + + cat >>confdefs.h <<\_ACEOF + #define HAVE_NO_ACLS 1 +@@ -73120,23 +69358,23 @@ + ################################################# + # check for AIO support + +-{ $as_echo "$as_me:$LINENO: checking whether to support asynchronous io" >&5 +-$as_echo_n "checking whether to support asynchronous io... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to support asynchronous io" >&5 ++echo $ECHO_N "checking whether to support asynchronous io... $ECHO_C" >&6; } + + # Check whether --with-aio-support was given. + if test "${with_aio_support+set}" = set; then + withval=$with_aio_support; case "$withval" in + yes) + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + case "$host_os" in + *) + AIO_LIBS=$LIBS +- { $as_echo "$as_me:$LINENO: checking for aio_read in -lrt" >&5 +-$as_echo_n "checking for aio_read in -lrt... " >&6; } ++ { echo "$as_me:$LINENO: checking for aio_read in -lrt" >&5 ++echo $ECHO_N "checking for aio_read in -lrt... $ECHO_C" >&6; } + if test "${ac_cv_lib_rt_aio_read+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lrt $LIBS" +@@ -73168,44 +69406,40 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_rt_aio_read=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_rt_aio_read=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_rt_aio_read" >&5 +-$as_echo "$ac_cv_lib_rt_aio_read" >&6; } +-if test "x$ac_cv_lib_rt_aio_read" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_rt_aio_read" >&5 ++echo "${ECHO_T}$ac_cv_lib_rt_aio_read" >&6; } ++if test $ac_cv_lib_rt_aio_read = yes; then + AIO_LIBS="$LIBS -lrt" + fi + +- { $as_echo "$as_me:$LINENO: checking for aio_read in -laio" >&5 +-$as_echo_n "checking for aio_read in -laio... " >&6; } ++ { echo "$as_me:$LINENO: checking for aio_read in -laio" >&5 ++echo $ECHO_N "checking for aio_read in -laio... $ECHO_C" >&6; } + if test "${ac_cv_lib_aio_aio_read+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-laio $LIBS" +@@ -73237,44 +69471,40 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_aio_aio_read=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_aio_aio_read=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_aio_aio_read" >&5 +-$as_echo "$ac_cv_lib_aio_aio_read" >&6; } +-if test "x$ac_cv_lib_aio_aio_read" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_aio_aio_read" >&5 ++echo "${ECHO_T}$ac_cv_lib_aio_aio_read" >&6; } ++if test $ac_cv_lib_aio_aio_read = yes; then + AIO_LIBS="$LIBS -laio" + fi + +- { $as_echo "$as_me:$LINENO: checking for asynchronous io support" >&5 +-$as_echo_n "checking for asynchronous io support... " >&6; } ++ { echo "$as_me:$LINENO: checking for asynchronous io support" >&5 ++echo $ECHO_N "checking for asynchronous io support... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_AIO+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + aio_LIBS=$LIBS +@@ -73301,40 +69531,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_AIO=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_AIO=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$aio_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_AIO" >&5 +-$as_echo "$samba_cv_HAVE_AIO" >&6; } +- { $as_echo "$as_me:$LINENO: checking for 64-bit asynchronous io support" >&5 +-$as_echo_n "checking for 64-bit asynchronous io support... " >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_AIO" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_AIO" >&6; } ++ { echo "$as_me:$LINENO: checking for 64-bit asynchronous io support" >&5 ++echo $ECHO_N "checking for 64-bit asynchronous io support... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_AIO64+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + aio_LIBS=$LIBS +@@ -73361,36 +69587,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_AIO64=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_AIO64=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$aio_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_AIO64" >&5 +-$as_echo "$samba_cv_HAVE_AIO64" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_AIO64" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_AIO64" >&6; } + if test x"$samba_cv_HAVE_AIO64" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -73413,8 +69635,8 @@ + fi + + if test x"$samba_cv_HAVE_AIO" = x"yes"; then +- { $as_echo "$as_me:$LINENO: checking for aio_read" >&5 +-$as_echo_n "checking for aio_read... " >&6; } ++ { echo "$as_me:$LINENO: checking for aio_read" >&5 ++echo $ECHO_N "checking for aio_read... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + #include + int main() { struct aiocb a; return aio_read(&a); } +@@ -73425,41 +69647,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_AIO_READ 1 + _ACEOF +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +- { $as_echo "$as_me:$LINENO: checking for aio_write" >&5 +-$as_echo_n "checking for aio_write... " >&6; } ++ { echo "$as_me:$LINENO: checking for aio_write" >&5 ++echo $ECHO_N "checking for aio_write... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + #include + int main() { struct aiocb a; return aio_write(&a); } +@@ -73470,41 +69688,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_AIO_WRITE 1 + _ACEOF +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +- { $as_echo "$as_me:$LINENO: checking for aio_fsync" >&5 +-$as_echo_n "checking for aio_fsync... " >&6; } ++ { echo "$as_me:$LINENO: checking for aio_fsync" >&5 ++echo $ECHO_N "checking for aio_fsync... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + #include + int main() { struct aiocb a; return aio_fsync(1, &a); } +@@ -73515,41 +69729,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_AIO_FSYNC 1 + _ACEOF +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +- { $as_echo "$as_me:$LINENO: checking for aio_return" >&5 +-$as_echo_n "checking for aio_return... " >&6; } ++ { echo "$as_me:$LINENO: checking for aio_return" >&5 ++echo $ECHO_N "checking for aio_return... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + #include + int main() { struct aiocb a; return aio_return(&a); } +@@ -73560,41 +69770,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_AIO_RETURN 1 + _ACEOF +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +- { $as_echo "$as_me:$LINENO: checking for aio_error" >&5 +-$as_echo_n "checking for aio_error... " >&6; } ++ { echo "$as_me:$LINENO: checking for aio_error" >&5 ++echo $ECHO_N "checking for aio_error... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + #include + int main() { struct aiocb a; return aio_error(&a); } +@@ -73605,41 +69811,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_AIO_ERROR 1 + _ACEOF +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +- { $as_echo "$as_me:$LINENO: checking for aio_cancel" >&5 +-$as_echo_n "checking for aio_cancel... " >&6; } ++ { echo "$as_me:$LINENO: checking for aio_cancel" >&5 ++echo $ECHO_N "checking for aio_cancel... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + #include + int main() { struct aiocb a; return aio_cancel(1, &a); } +@@ -73650,41 +69852,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_AIO_CANCEL 1 + _ACEOF +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +- { $as_echo "$as_me:$LINENO: checking for aio_suspend" >&5 +-$as_echo_n "checking for aio_suspend... " >&6; } ++ { echo "$as_me:$LINENO: checking for aio_suspend" >&5 ++echo $ECHO_N "checking for aio_suspend... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + #include + int main() { struct aiocb a; return aio_suspend(&a, 1, NULL); } +@@ -73695,43 +69893,39 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_AIO_SUSPEND 1 + _ACEOF +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi + + if test x"$samba_cv_HAVE_AIO64" = x"yes"; then +- { $as_echo "$as_me:$LINENO: checking for aio_read64" >&5 +-$as_echo_n "checking for aio_read64... " >&6; } ++ { echo "$as_me:$LINENO: checking for aio_read64" >&5 ++echo $ECHO_N "checking for aio_read64... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + #include + int main() { struct aiocb a; return aio_read64(&a); } +@@ -73742,41 +69936,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_AIO_READ64 1 + _ACEOF +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +- { $as_echo "$as_me:$LINENO: checking for aio_write64" >&5 +-$as_echo_n "checking for aio_write64... " >&6; } ++ { echo "$as_me:$LINENO: checking for aio_write64" >&5 ++echo $ECHO_N "checking for aio_write64... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + #include + int main() { struct aiocb a; return aio_write64(&a); } +@@ -73787,41 +69977,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_AIO_WRITE64 1 + _ACEOF +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +- { $as_echo "$as_me:$LINENO: checking for aio_fsync64" >&5 +-$as_echo_n "checking for aio_fsync64... " >&6; } ++ { echo "$as_me:$LINENO: checking for aio_fsync64" >&5 ++echo $ECHO_N "checking for aio_fsync64... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + #include + int main() { struct aiocb a; return aio_fsync64(1, &a); } +@@ -73832,41 +70018,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_AIO_FSYNC64 1 + _ACEOF +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +- { $as_echo "$as_me:$LINENO: checking for aio_return64" >&5 +-$as_echo_n "checking for aio_return64... " >&6; } ++ { echo "$as_me:$LINENO: checking for aio_return64" >&5 ++echo $ECHO_N "checking for aio_return64... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + #include + int main() { struct aiocb a; return aio_return64(&a); } +@@ -73877,41 +70059,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_AIO_RETURN64 1 + _ACEOF +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +- { $as_echo "$as_me:$LINENO: checking for aio_error64" >&5 +-$as_echo_n "checking for aio_error64... " >&6; } ++ { echo "$as_me:$LINENO: checking for aio_error64" >&5 ++echo $ECHO_N "checking for aio_error64... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + #include + int main() { struct aiocb a; return aio_error64(&a); } +@@ -73922,41 +70100,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_AIO_ERROR64 1 + _ACEOF +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +- { $as_echo "$as_me:$LINENO: checking for aio_cancel64" >&5 +-$as_echo_n "checking for aio_cancel64... " >&6; } ++ { echo "$as_me:$LINENO: checking for aio_cancel64" >&5 ++echo $ECHO_N "checking for aio_cancel64... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + #include + int main() { struct aiocb a; return aio_cancel64(1, &a); } +@@ -73967,41 +70141,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_AIO_CANCEL64 1 + _ACEOF +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +- { $as_echo "$as_me:$LINENO: checking for aio_suspend64" >&5 +-$as_echo_n "checking for aio_suspend64... " >&6; } ++ { echo "$as_me:$LINENO: checking for aio_suspend64" >&5 ++echo $ECHO_N "checking for aio_suspend64... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + #include + int main() { struct aiocb a; return aio_suspend64(&a, 1, NULL); } +@@ -74012,36 +70182,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_AIO_SUSPEND64 1 + _ACEOF +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +@@ -74049,8 +70215,8 @@ + esac + ;; + *) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define HAVE_NO_AIO 1 +@@ -74064,8 +70230,8 @@ + #define HAVE_NO_AIO 1 + _ACEOF + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + fi + +@@ -74081,23 +70247,23 @@ + # check for sendfile support + + with_sendfile_support=yes +-{ $as_echo "$as_me:$LINENO: checking whether to check to support sendfile" >&5 +-$as_echo_n "checking whether to check to support sendfile... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to check to support sendfile" >&5 ++echo $ECHO_N "checking whether to check to support sendfile... $ECHO_C" >&6; } + + # Check whether --with-sendfile-support was given. + if test "${with_sendfile_support+set}" = set; then + withval=$with_sendfile_support; case "$withval" in + yes) + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; }; + + case "$host_os" in +- *linux*) +- { $as_echo "$as_me:$LINENO: checking for linux sendfile64 support" >&5 +-$as_echo_n "checking for linux sendfile64 support... " >&6; } ++ linux*-gnu* | gnu* | k*bsd*-gnu) ++ { echo "$as_me:$LINENO: checking for linux sendfile64 support" >&5 ++echo $ECHO_N "checking for linux sendfile64 support... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_SENDFILE64+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -74126,40 +70292,36 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_SENDFILE64=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_SENDFILE64=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_SENDFILE64" >&5 +-$as_echo "$samba_cv_HAVE_SENDFILE64" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_SENDFILE64" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_SENDFILE64" >&6; } + +- { $as_echo "$as_me:$LINENO: checking for linux sendfile support" >&5 +-$as_echo_n "checking for linux sendfile support... " >&6; } ++ { echo "$as_me:$LINENO: checking for linux sendfile support" >&5 ++echo $ECHO_N "checking for linux sendfile support... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_SENDFILE+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -74188,41 +70350,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_SENDFILE=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_SENDFILE=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_SENDFILE" >&5 +-$as_echo "$samba_cv_HAVE_SENDFILE" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_SENDFILE" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_SENDFILE" >&6; } + + # Try and cope with broken Linux sendfile.... +- { $as_echo "$as_me:$LINENO: checking for broken linux sendfile support" >&5 +-$as_echo_n "checking for broken linux sendfile support... " >&6; } ++ { echo "$as_me:$LINENO: checking for broken linux sendfile support" >&5 ++echo $ECHO_N "checking for broken linux sendfile support... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_BROKEN_LINUX_SENDFILE+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -74255,35 +70413,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_BROKEN_LINUX_SENDFILE=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_BROKEN_LINUX_SENDFILE=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_BROKEN_LINUX_SENDFILE" >&5 +-$as_echo "$samba_cv_HAVE_BROKEN_LINUX_SENDFILE" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_BROKEN_LINUX_SENDFILE" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_BROKEN_LINUX_SENDFILE" >&6; } + + if test x"$samba_cv_HAVE_SENDFILE64" = x"yes"; then + +@@ -74329,16 +70483,16 @@ + _ACEOF + + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; }; + fi + + ;; + *freebsd* | *dragonfly* ) +- { $as_echo "$as_me:$LINENO: checking for freebsd sendfile support" >&5 +-$as_echo_n "checking for freebsd sendfile support... " >&6; } ++ { echo "$as_me:$LINENO: checking for freebsd sendfile support" >&5 ++echo $ECHO_N "checking for freebsd sendfile support... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_SENDFILE+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -74378,35 +70532,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_SENDFILE=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_SENDFILE=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_SENDFILE" >&5 +-$as_echo "$samba_cv_HAVE_SENDFILE" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_SENDFILE" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_SENDFILE" >&6; } + + if test x"$samba_cv_HAVE_SENDFILE" = x"yes"; then + +@@ -74425,16 +70575,16 @@ + _ACEOF + + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; }; + fi + ;; + + *hpux*) +- { $as_echo "$as_me:$LINENO: checking for hpux sendfile64 support" >&5 +-$as_echo_n "checking for hpux sendfile64 support... " >&6; } ++ { echo "$as_me:$LINENO: checking for hpux sendfile64 support" >&5 ++echo $ECHO_N "checking for hpux sendfile64 support... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_SENDFILE64+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -74471,35 +70621,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_SENDFILE64=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_SENDFILE64=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_SENDFILE64" >&5 +-$as_echo "$samba_cv_HAVE_SENDFILE64" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_SENDFILE64" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_SENDFILE64" >&6; } + if test x"$samba_cv_HAVE_SENDFILE64" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -74517,14 +70663,14 @@ + _ACEOF + + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; }; + fi + +- { $as_echo "$as_me:$LINENO: checking for hpux sendfile support" >&5 +-$as_echo_n "checking for hpux sendfile support... " >&6; } ++ { echo "$as_me:$LINENO: checking for hpux sendfile support" >&5 ++echo $ECHO_N "checking for hpux sendfile support... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_SENDFILE+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -74561,35 +70707,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_SENDFILE=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_SENDFILE=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_SENDFILE" >&5 +-$as_echo "$samba_cv_HAVE_SENDFILE" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_SENDFILE" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_SENDFILE" >&6; } + if test x"$samba_cv_HAVE_SENDFILE" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -74607,17 +70749,17 @@ + _ACEOF + + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; }; + fi + ;; + + *solaris*) + +-{ $as_echo "$as_me:$LINENO: checking for sendfilev in -lsendfile" >&5 +-$as_echo_n "checking for sendfilev in -lsendfile... " >&6; } ++{ echo "$as_me:$LINENO: checking for sendfilev in -lsendfile" >&5 ++echo $ECHO_N "checking for sendfilev in -lsendfile... $ECHO_C" >&6; } + if test "${ac_cv_lib_sendfile_sendfilev+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lsendfile $LIBS" +@@ -74649,37 +70791,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_sendfile_sendfilev=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_sendfile_sendfilev=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_sendfile_sendfilev" >&5 +-$as_echo "$ac_cv_lib_sendfile_sendfilev" >&6; } +-if test "x$ac_cv_lib_sendfile_sendfilev" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_sendfile_sendfilev" >&5 ++echo "${ECHO_T}$ac_cv_lib_sendfile_sendfilev" >&6; } ++if test $ac_cv_lib_sendfile_sendfilev = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_LIBSENDFILE 1 + _ACEOF +@@ -74688,10 +70826,10 @@ + + fi + +- { $as_echo "$as_me:$LINENO: checking for solaris sendfilev64 support" >&5 +-$as_echo_n "checking for solaris sendfilev64 support... " >&6; } ++ { echo "$as_me:$LINENO: checking for solaris sendfilev64 support" >&5 ++echo $ECHO_N "checking for solaris sendfilev64 support... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_SENDFILEV64+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -74735,35 +70873,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_SENDFILEV64=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_SENDFILEV64=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_SENDFILEV64" >&5 +-$as_echo "$samba_cv_HAVE_SENDFILEV64" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_SENDFILEV64" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_SENDFILEV64" >&6; } + + if test x"$samba_cv_HAVE_SENDFILEV64" = x"yes"; then + +@@ -74782,14 +70916,14 @@ + _ACEOF + + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; }; + fi + +- { $as_echo "$as_me:$LINENO: checking for solaris sendfilev support" >&5 +-$as_echo_n "checking for solaris sendfilev support... " >&6; } ++ { echo "$as_me:$LINENO: checking for solaris sendfilev support" >&5 ++echo $ECHO_N "checking for solaris sendfilev support... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_SENDFILEV+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -74833,35 +70967,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_SENDFILEV=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_SENDFILEV=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_SENDFILEV" >&5 +-$as_echo "$samba_cv_HAVE_SENDFILEV" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_SENDFILEV" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_SENDFILEV" >&6; } + + if test x"$samba_cv_HAVE_SENDFILEV" = x"yes"; then + +@@ -74880,15 +71010,15 @@ + _ACEOF + + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; }; + fi + ;; + *aix*) +- { $as_echo "$as_me:$LINENO: checking for AIX send_file support" >&5 +-$as_echo_n "checking for AIX send_file support... " >&6; } ++ { echo "$as_me:$LINENO: checking for AIX send_file support" >&5 ++echo $ECHO_N "checking for AIX send_file support... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_SENDFILE+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -74929,35 +71059,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_SENDFILE=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_SENDFILE=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_SENDFILE" >&5 +-$as_echo "$samba_cv_HAVE_SENDFILE" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_SENDFILE" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_SENDFILE" >&6; } + if test x"$samba_cv_HAVE_SENDFILE" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -74975,8 +71101,8 @@ + _ACEOF + + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; }; + fi + ;; + *) +@@ -74984,13 +71110,13 @@ + esac + ;; + *) +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + ;; + esac + else +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + fi + +@@ -74998,10 +71124,10 @@ + ############################################ + # See if we have the Linux readahead syscall. + +-{ $as_echo "$as_me:$LINENO: checking for Linux readahead" >&5 +-$as_echo_n "checking for Linux readahead... " >&6; } ++{ echo "$as_me:$LINENO: checking for Linux readahead" >&5 ++echo $ECHO_N "checking for Linux readahead... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_LINUX_READAHEAD+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -75029,35 +71155,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_LINUX_READAHEAD=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_LINUX_READAHEAD=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_LINUX_READAHEAD" >&5 +-$as_echo "$samba_cv_HAVE_LINUX_READAHEAD" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_LINUX_READAHEAD" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_LINUX_READAHEAD" >&6; } + + if test x"$samba_cv_HAVE_LINUX_READAHEAD" = x"yes"; then + +@@ -75068,10 +71190,10 @@ + fi + + +- { $as_echo "$as_me:$LINENO: checking for readahead declaration" >&5 +-$as_echo_n "checking for readahead declaration... " >&6; } ++ { echo "$as_me:$LINENO: checking for readahead declaration" >&5 ++echo $ECHO_N "checking for readahead declaration... $ECHO_C" >&6; } + if test "${ac_cv_have_readahead_decl+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -75095,21 +71217,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_have_readahead_decl=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_have_readahead_decl=no +@@ -75117,8 +71238,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_readahead_decl" >&5 +-$as_echo "$ac_cv_have_readahead_decl" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_have_readahead_decl" >&5 ++echo "${ECHO_T}$ac_cv_have_readahead_decl" >&6; } + if test x"$ac_cv_have_readahead_decl" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -75131,10 +71252,10 @@ + ############################################ + # See if we have the posix_fadvise syscall. + +-{ $as_echo "$as_me:$LINENO: checking for posix_fadvise" >&5 +-$as_echo_n "checking for posix_fadvise... " >&6; } ++{ echo "$as_me:$LINENO: checking for posix_fadvise" >&5 ++echo $ECHO_N "checking for posix_fadvise... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_POSIX_FADVISE+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -75162,35 +71283,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_POSIX_FADVISE=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_POSIX_FADVISE=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_POSIX_FADVISE" >&5 +-$as_echo "$samba_cv_HAVE_POSIX_FADVISE" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_POSIX_FADVISE" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_POSIX_FADVISE" >&6; } + + if test x"$samba_cv_HAVE_POSIX_FADVISE" = x"yes"; then + +@@ -75203,10 +71320,10 @@ + ############################################ + # See if we have the Linux splice syscall. + +-{ $as_echo "$as_me:$LINENO: checking for Linux splice" >&5 +-$as_echo_n "checking for Linux splice... " >&6; } ++{ echo "$as_me:$LINENO: checking for Linux splice" >&5 ++echo $ECHO_N "checking for Linux splice... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_LINUX_SPLICE+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -75234,35 +71351,31 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + samba_cv_HAVE_LINUX_SPLICE=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_LINUX_SPLICE=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_LINUX_SPLICE" >&5 +-$as_echo "$samba_cv_HAVE_LINUX_SPLICE" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_LINUX_SPLICE" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_LINUX_SPLICE" >&6; } + + if test x"$samba_cv_HAVE_LINUX_SPLICE" = x"yes"; then + +@@ -75273,10 +71386,10 @@ + fi + + +- { $as_echo "$as_me:$LINENO: checking for splice declaration" >&5 +-$as_echo_n "checking for splice declaration... " >&6; } ++ { echo "$as_me:$LINENO: checking for splice declaration" >&5 ++echo $ECHO_N "checking for splice declaration... $ECHO_C" >&6; } + if test "${ac_cv_have_splice_decl+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -75300,21 +71413,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_have_splice_decl=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_have_splice_decl=no +@@ -75322,8 +71434,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_have_splice_decl" >&5 +-$as_echo "$ac_cv_have_splice_decl" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_have_splice_decl" >&5 ++echo "${ECHO_T}$ac_cv_have_splice_decl" >&6; } + if test x"$ac_cv_have_splice_decl" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -75338,8 +71450,8 @@ + # Check whether winbind is supported on this platform. If so we need to + # build and install client programs, sbin programs and shared libraries + +-{ $as_echo "$as_me:$LINENO: checking whether to build winbind" >&5 +-$as_echo_n "checking whether to build winbind... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to build winbind" >&5 ++echo $ECHO_N "checking whether to build winbind... $ECHO_C" >&6; } + + # Initially, the value of $host_os decides whether winbind is supported + +@@ -75355,11 +71467,11 @@ + WINBIND_NSS_PTHREAD="" + + case "$host_os" in +- *linux*) ++ linux*-gnu* | gnu* | k*bsd*-gnu) + NSSSONAMEVERSIONSUFFIX=".2" + WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_linux.o" + ;; +- *freebsd[5-9]*) ++ freebsd5*|*freebsd[6-9]*) + # FreeBSD winbind client is implemented as a wrapper around + # the Linux version. + NSSSONAMEVERSIONSUFFIX=".1" +@@ -75474,8 +71586,8 @@ + fi + + if test x"$HAVE_WINBIND" = x"yes"; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define WITH_WINBIND 1 +@@ -75490,14 +71602,14 @@ + UNINSTALL_PAM_MODULES="uninstallpammodules" + fi + else +- { $as_echo "$as_me:$LINENO: result: no$winbind_no_reason" >&5 +-$as_echo "no$winbind_no_reason" >&6; } ++ { echo "$as_me:$LINENO: result: no$winbind_no_reason" >&5 ++echo "${ECHO_T}no$winbind_no_reason" >&6; } + fi + +-{ $as_echo "$as_me:$LINENO: checking for pthread_mutex_lock in -lpthread" >&5 +-$as_echo_n "checking for pthread_mutex_lock in -lpthread... " >&6; } ++{ echo "$as_me:$LINENO: checking for pthread_mutex_lock in -lpthread" >&5 ++echo $ECHO_N "checking for pthread_mutex_lock in -lpthread... $ECHO_C" >&6; } + if test "${ac_cv_lib_pthread_pthread_mutex_lock+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lpthread $LIBS" +@@ -75529,37 +71641,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_pthread_pthread_mutex_lock=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_pthread_pthread_mutex_lock=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_pthread_pthread_mutex_lock" >&5 +-$as_echo "$ac_cv_lib_pthread_pthread_mutex_lock" >&6; } +-if test "x$ac_cv_lib_pthread_pthread_mutex_lock" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_pthread_pthread_mutex_lock" >&5 ++echo "${ECHO_T}$ac_cv_lib_pthread_pthread_mutex_lock" >&6; } ++if test $ac_cv_lib_pthread_pthread_mutex_lock = yes; then + WINBIND_NSS_PTHREAD="-lpthread" + + cat >>confdefs.h <<\_ACEOF +@@ -75581,10 +71689,10 @@ + + + # Solaris 10 does have new member in nss_XbyY_key +-{ $as_echo "$as_me:$LINENO: checking for union nss_XbyY_key.ipnode.af_family" >&5 +-$as_echo_n "checking for union nss_XbyY_key.ipnode.af_family... " >&6; } ++{ echo "$as_me:$LINENO: checking for union nss_XbyY_key.ipnode.af_family" >&5 ++echo $ECHO_N "checking for union nss_XbyY_key.ipnode.af_family... $ECHO_C" >&6; } + if test "${ac_cv_member_union_nss_XbyY_key_ipnode_af_family+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -75610,21 +71718,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_union_nss_XbyY_key_ipnode_af_family=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -75651,21 +71758,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_union_nss_XbyY_key_ipnode_af_family=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_union_nss_XbyY_key_ipnode_af_family=no +@@ -75676,9 +71782,9 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_union_nss_XbyY_key_ipnode_af_family" >&5 +-$as_echo "$ac_cv_member_union_nss_XbyY_key_ipnode_af_family" >&6; } +-if test "x$ac_cv_member_union_nss_XbyY_key_ipnode_af_family" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_member_union_nss_XbyY_key_ipnode_af_family" >&5 ++echo "${ECHO_T}$ac_cv_member_union_nss_XbyY_key_ipnode_af_family" >&6; } ++if test $ac_cv_member_union_nss_XbyY_key_ipnode_af_family = yes; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_NSS_XBYY_KEY_IPNODE 1 +@@ -75690,10 +71796,10 @@ + # Solaris has some extra fields in struct passwd that need to be + # initialised otherwise nscd crashes. + +-{ $as_echo "$as_me:$LINENO: checking for struct passwd.pw_comment" >&5 +-$as_echo_n "checking for struct passwd.pw_comment... " >&6; } ++{ echo "$as_me:$LINENO: checking for struct passwd.pw_comment" >&5 ++echo $ECHO_N "checking for struct passwd.pw_comment... $ECHO_C" >&6; } + if test "${ac_cv_member_struct_passwd_pw_comment+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -75719,21 +71825,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_passwd_pw_comment=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -75760,21 +71865,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_passwd_pw_comment=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_passwd_pw_comment=no +@@ -75785,9 +71889,9 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_passwd_pw_comment" >&5 +-$as_echo "$ac_cv_member_struct_passwd_pw_comment" >&6; } +-if test "x$ac_cv_member_struct_passwd_pw_comment" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_passwd_pw_comment" >&5 ++echo "${ECHO_T}$ac_cv_member_struct_passwd_pw_comment" >&6; } ++if test $ac_cv_member_struct_passwd_pw_comment = yes; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_PASSWD_PW_COMMENT 1 +@@ -75796,10 +71900,10 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking for struct passwd.pw_age" >&5 +-$as_echo_n "checking for struct passwd.pw_age... " >&6; } ++{ echo "$as_me:$LINENO: checking for struct passwd.pw_age" >&5 ++echo $ECHO_N "checking for struct passwd.pw_age... $ECHO_C" >&6; } + if test "${ac_cv_member_struct_passwd_pw_age+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -75825,21 +71929,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_passwd_pw_age=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -75866,21 +71969,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_passwd_pw_age=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_passwd_pw_age=no +@@ -75891,9 +71993,9 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_passwd_pw_age" >&5 +-$as_echo "$ac_cv_member_struct_passwd_pw_age" >&6; } +-if test "x$ac_cv_member_struct_passwd_pw_age" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_passwd_pw_age" >&5 ++echo "${ECHO_T}$ac_cv_member_struct_passwd_pw_age" >&6; } ++if test $ac_cv_member_struct_passwd_pw_age = yes; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_PASSWD_PW_AGE 1 +@@ -75904,10 +72006,10 @@ + + # AIX 4.3.x and 5.1 do not have as many members in + # struct secmethod_table as AIX 5.2 +-{ $as_echo "$as_me:$LINENO: checking for struct secmethod_table.method_attrlist" >&5 +-$as_echo_n "checking for struct secmethod_table.method_attrlist... " >&6; } ++{ echo "$as_me:$LINENO: checking for struct secmethod_table.method_attrlist" >&5 ++echo $ECHO_N "checking for struct secmethod_table.method_attrlist... $ECHO_C" >&6; } + if test "${ac_cv_member_struct_secmethod_table_method_attrlist+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -75933,21 +72035,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_secmethod_table_method_attrlist=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -75974,21 +72075,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_secmethod_table_method_attrlist=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_secmethod_table_method_attrlist=no +@@ -75999,9 +72099,9 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_secmethod_table_method_attrlist" >&5 +-$as_echo "$ac_cv_member_struct_secmethod_table_method_attrlist" >&6; } +-if test "x$ac_cv_member_struct_secmethod_table_method_attrlist" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_secmethod_table_method_attrlist" >&5 ++echo "${ECHO_T}$ac_cv_member_struct_secmethod_table_method_attrlist" >&6; } ++if test $ac_cv_member_struct_secmethod_table_method_attrlist = yes; then + + cat >>confdefs.h <<_ACEOF + #define HAVE_STRUCT_SECMETHOD_TABLE_METHOD_ATTRLIST 1 +@@ -76010,10 +72110,10 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking for struct secmethod_table.method_version" >&5 +-$as_echo_n "checking for struct secmethod_table.method_version... " >&6; } ++{ echo "$as_me:$LINENO: checking for struct secmethod_table.method_version" >&5 ++echo $ECHO_N "checking for struct secmethod_table.method_version... $ECHO_C" >&6; } + if test "${ac_cv_member_struct_secmethod_table_method_version+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -76039,21 +72139,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_secmethod_table_method_version=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -76080,21 +72179,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_secmethod_table_method_version=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_secmethod_table_method_version=no +@@ -76105,9 +72203,9 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_secmethod_table_method_version" >&5 +-$as_echo "$ac_cv_member_struct_secmethod_table_method_version" >&6; } +-if test "x$ac_cv_member_struct_secmethod_table_method_version" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_secmethod_table_method_version" >&5 ++echo "${ECHO_T}$ac_cv_member_struct_secmethod_table_method_version" >&6; } ++if test $ac_cv_member_struct_secmethod_table_method_version = yes; then + + cat >>confdefs.h <<_ACEOF + #define HAVE_STRUCT_SECMETHOD_TABLE_METHOD_VERSION 1 +@@ -76117,10 +72215,10 @@ + fi + + +-{ $as_echo "$as_me:$LINENO: checking for SO_PEERCRED" >&5 +-$as_echo_n "checking for SO_PEERCRED... " >&6; } ++{ echo "$as_me:$LINENO: checking for SO_PEERCRED" >&5 ++echo $ECHO_N "checking for SO_PEERCRED... $ECHO_C" >&6; } + if test "${samba_cv_HAVE_PEERCRED+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + cat >conftest.$ac_ext <<_ACEOF +@@ -76148,21 +72246,20 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + samba_cv_HAVE_PEERCRED=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + samba_cv_HAVE_PEERCRED=no +@@ -76170,8 +72267,8 @@ + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $samba_cv_HAVE_PEERCRED" >&5 +-$as_echo "$samba_cv_HAVE_PEERCRED" >&6; } ++{ echo "$as_me:$LINENO: result: $samba_cv_HAVE_PEERCRED" >&5 ++echo "${ECHO_T}$samba_cv_HAVE_PEERCRED" >&6; } + if test x"$samba_cv_HAVE_PEERCRED" = x"yes"; then + + cat >>confdefs.h <<\_ACEOF +@@ -76199,10 +72296,10 @@ + fi + + if test x"$INCLUDED_POPT" != x"yes"; then +- { $as_echo "$as_me:$LINENO: checking for poptGetContext in -lpopt" >&5 +-$as_echo_n "checking for poptGetContext in -lpopt... " >&6; } ++ { echo "$as_me:$LINENO: checking for poptGetContext in -lpopt" >&5 ++echo $ECHO_N "checking for poptGetContext in -lpopt... $ECHO_C" >&6; } + if test "${ac_cv_lib_popt_poptGetContext+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lpopt $LIBS" +@@ -76234,37 +72331,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_popt_poptGetContext=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_popt_poptGetContext=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_popt_poptGetContext" >&5 +-$as_echo "$ac_cv_lib_popt_poptGetContext" >&6; } +-if test "x$ac_cv_lib_popt_poptGetContext" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_popt_poptGetContext" >&5 ++echo "${ECHO_T}$ac_cv_lib_popt_poptGetContext" >&6; } ++if test $ac_cv_lib_popt_poptGetContext = yes; then + INCLUDED_POPT=no + else + INCLUDED_POPT=yes +@@ -76272,17 +72365,17 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking whether to use included popt" >&5 +-$as_echo_n "checking whether to use included popt... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to use included popt" >&5 ++echo $ECHO_N "checking whether to use included popt... $ECHO_C" >&6; } + if test x"$INCLUDED_POPT" = x"yes"; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + BUILD_POPT='$(POPT_OBJ)' + POPTLIBS='$(POPT_OBJ)' + FLAGS1="-I\$(srcdir)/popt" + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + BUILD_POPT="" + POPTLIBS="-lpopt" + fi +@@ -76306,21 +72399,20 @@ + + for ac_header in dns_sd.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -76336,33 +72428,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -76376,52 +72467,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -76430,24 +72520,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -76463,11 +72550,11 @@ + + for ac_func in DNSServiceRegister + do +-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 +-$as_echo_n "checking for $ac_func... " >&6; } ++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ echo "$as_me:$LINENO: checking for $ac_func" >&5 ++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -76520,42 +72607,35 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } +-as_val=`eval 'as_val=${'$as_ac_var'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++ac_res=`eval echo '${'$as_ac_var'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } ++if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -76570,10 +72650,10 @@ + + + +- { $as_echo "$as_me:$LINENO: checking for DNSServiceRegister in -ldns_sd" >&5 +-$as_echo_n "checking for DNSServiceRegister in -ldns_sd... " >&6; } ++ { echo "$as_me:$LINENO: checking for DNSServiceRegister in -ldns_sd" >&5 ++echo $ECHO_N "checking for DNSServiceRegister in -ldns_sd... $ECHO_C" >&6; } + if test "${ac_cv_lib_ext_dns_sd_DNSServiceRegister+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -76603,38 +72683,34 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ext_dns_sd_DNSServiceRegister=yes; + ac_cv_lib_ext_dns_sd=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ext_dns_sd_DNSServiceRegister=no; + ac_cv_lib_ext_dns_sd=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ext_dns_sd_DNSServiceRegister" >&5 +-$as_echo "$ac_cv_lib_ext_dns_sd_DNSServiceRegister" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ext_dns_sd_DNSServiceRegister" >&5 ++echo "${ECHO_T}$ac_cv_lib_ext_dns_sd_DNSServiceRegister" >&6; } + if test $ac_cv_lib_ext_dns_sd_DNSServiceRegister = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_DNSSERVICEREGISTER 1 +@@ -76673,8 +72749,8 @@ + + else + if test x"$enable_dnssd" = x"yes"; then +- { { $as_echo "$as_me:$LINENO: error: DNS service discovery support not available" >&5 +-$as_echo "$as_me: error: DNS service discovery support not available" >&2;} ++ { { echo "$as_me:$LINENO: error: DNS service discovery support not available" >&5 ++echo "$as_me: error: DNS service discovery support not available" >&2;} + { (exit 1); exit 1; }; } + fi + fi +@@ -76699,10 +72775,10 @@ + fi + + if test x"$INCLUDED_INIPARSER" != x"yes"; then +- { $as_echo "$as_me:$LINENO: checking for iniparser_load in -liniparser" >&5 +-$as_echo_n "checking for iniparser_load in -liniparser... " >&6; } ++ { echo "$as_me:$LINENO: checking for iniparser_load in -liniparser" >&5 ++echo $ECHO_N "checking for iniparser_load in -liniparser... $ECHO_C" >&6; } + if test "${ac_cv_lib_iniparser_iniparser_load+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-liniparser $LIBS" +@@ -76734,37 +72810,33 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_iniparser_iniparser_load=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_iniparser_iniparser_load=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_iniparser_iniparser_load" >&5 +-$as_echo "$ac_cv_lib_iniparser_iniparser_load" >&6; } +-if test "x$ac_cv_lib_iniparser_iniparser_load" = x""yes; then ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_iniparser_iniparser_load" >&5 ++echo "${ECHO_T}$ac_cv_lib_iniparser_iniparser_load" >&6; } ++if test $ac_cv_lib_iniparser_iniparser_load = yes; then + INCLUDED_INIPARSER=no + else + INCLUDED_INIPARSER=yes +@@ -76772,17 +72844,17 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: checking whether to use included iniparser" >&5 +-$as_echo_n "checking whether to use included iniparser... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to use included iniparser" >&5 ++echo $ECHO_N "checking whether to use included iniparser... $ECHO_C" >&6; } + if test x"$INCLUDED_INIPARSER" = x"yes"; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + BUILD_INIPARSER='$(INIPARSER_OBJ)' + INIPARSERLIBS="" + FLAGS1="$FLAGS1 -I\$(srcdir)/iniparser/src" + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + BUILD_INIPARSER="" + INIPARSERLIBS="-liniparser" + fi +@@ -76794,10 +72866,10 @@ + + # Checks for the vfs_fileid module + # Start +-{ $as_echo "$as_me:$LINENO: checking for getmntent" >&5 +-$as_echo_n "checking for getmntent... " >&6; } ++{ echo "$as_me:$LINENO: checking for getmntent" >&5 ++echo $ECHO_N "checking for getmntent... $ECHO_C" >&6; } + if test "${ac_cv_func_getmntent+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -76850,55 +72922,50 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_getmntent=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_getmntent=no + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_getmntent" >&5 +-$as_echo "$ac_cv_func_getmntent" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_cv_func_getmntent" >&5 ++echo "${ECHO_T}$ac_cv_func_getmntent" >&6; } + + + + for ac_header in sys/statfs.h + do +-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++ { echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + else + # Is the header compilable? +-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-$as_echo_n "checking $ac_header usability... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -76914,33 +72981,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-$as_echo "$ac_header_compiler" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++echo "${ECHO_T}$ac_header_compiler" >&6; } + + # Is the header present? +-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-$as_echo_n "checking $ac_header presence... " >&6; } ++{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -76954,52 +73020,51 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-$as_echo "$ac_header_preproc" >&6; } ++{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++echo "${ECHO_T}$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------- ## + ## Report this to samba-technical@samba.org ## +@@ -77008,24 +73073,21 @@ + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 +-$as_echo_n "checking for $ac_header... " >&6; } ++{ echo "$as_me:$LINENO: checking for $ac_header" >&5 ++echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 +-$as_echo "$ac_res" >&6; } ++ac_res=`eval echo '${'$as_ac_Header'}'` ++ { echo "$as_me:$LINENO: result: $ac_res" >&5 ++echo "${ECHO_T}$ac_res" >&6; } + + fi +-as_val=`eval 'as_val=${'$as_ac_Header'} +- $as_echo "$as_val"'` +- if test "x$as_val" = x""yes; then ++if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -77033,10 +73095,10 @@ + done + + +-{ $as_echo "$as_me:$LINENO: checking vfs_fileid: checking for statfs() and struct statfs.f_fsid)" >&5 +-$as_echo_n "checking vfs_fileid: checking for statfs() and struct statfs.f_fsid)... " >&6; } ++{ echo "$as_me:$LINENO: checking vfs_fileid: checking for statfs() and struct statfs.f_fsid)" >&5 ++echo $ECHO_N "checking vfs_fileid: checking for statfs() and struct statfs.f_fsid)... $ECHO_C" >&6; } + if test "${vfsfileid_cv_statfs+set}" = set; then +- $as_echo_n "(cached) " >&6 ++ echo $ECHO_N "(cached) $ECHO_C" >&6 + else + + if test "$cross_compiling" = yes; then +@@ -77064,32 +73126,29 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + vfsfileid_cv_statfs=yes + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + vfsfileid_cv_statfs=no + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + +@@ -77097,8 +73156,8 @@ + + fi + +-{ $as_echo "$as_me:$LINENO: result: $vfsfileid_cv_statfs" >&5 +-$as_echo "$vfsfileid_cv_statfs" >&6; } ++{ echo "$as_me:$LINENO: result: $vfsfileid_cv_statfs" >&5 ++echo "${ECHO_T}$vfsfileid_cv_statfs" >&6; } + + if test x"$ac_cv_func_getmntent" = x"yes" -a \ + x"$vfsfileid_cv_statfs" = x"yes"; then +@@ -77155,8 +73214,8 @@ + + + +- { $as_echo "$as_me:$LINENO: checking how to build pdb_ldap" >&5 +-$as_echo_n "checking how to build pdb_ldap... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build pdb_ldap" >&5 ++echo $ECHO_N "checking how to build pdb_ldap... $ECHO_C" >&6; } + if test "$MODULE_pdb_ldap"; then + DEST=$MODULE_pdb_ldap + elif test "$MODULE_pdb" -a "$MODULE_DEFAULT_pdb_ldap"; then +@@ -77172,8 +73231,8 @@ + _ACEOF + + PDB_MODULES="$PDB_MODULES "bin/ldapsam.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules pdb_ldap" + elif test x"$DEST" = xSTATIC; then +@@ -77183,17 +73242,17 @@ + PDB_STATIC="$PDB_STATIC passdb/pdb_ldap.o passdb/pdb_nds.o" + + PASSDB_LIBS="$PASSDB_LIBS $LDAP_LIBS" +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules pdb_ldap" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build pdb_smbpasswd" >&5 +-$as_echo_n "checking how to build pdb_smbpasswd... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build pdb_smbpasswd" >&5 ++echo $ECHO_N "checking how to build pdb_smbpasswd... $ECHO_C" >&6; } + if test "$MODULE_pdb_smbpasswd"; then + DEST=$MODULE_pdb_smbpasswd + elif test "$MODULE_pdb" -a "$MODULE_DEFAULT_pdb_smbpasswd"; then +@@ -77209,8 +73268,8 @@ + _ACEOF + + PDB_MODULES="$PDB_MODULES "bin/smbpasswd.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules pdb_smbpasswd" + elif test x"$DEST" = xSTATIC; then +@@ -77220,17 +73279,17 @@ + PDB_STATIC="$PDB_STATIC passdb/pdb_smbpasswd.o" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules pdb_smbpasswd" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build pdb_tdbsam" >&5 +-$as_echo_n "checking how to build pdb_tdbsam... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build pdb_tdbsam" >&5 ++echo $ECHO_N "checking how to build pdb_tdbsam... $ECHO_C" >&6; } + if test "$MODULE_pdb_tdbsam"; then + DEST=$MODULE_pdb_tdbsam + elif test "$MODULE_pdb" -a "$MODULE_DEFAULT_pdb_tdbsam"; then +@@ -77246,8 +73305,8 @@ + _ACEOF + + PDB_MODULES="$PDB_MODULES "bin/tdbsam.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules pdb_tdbsam" + elif test x"$DEST" = xSTATIC; then +@@ -77257,12 +73316,12 @@ + PDB_STATIC="$PDB_STATIC passdb/pdb_tdb.o" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules pdb_tdbsam" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +@@ -77283,8 +73342,8 @@ + + + +- { $as_echo "$as_me:$LINENO: checking how to build rpc_lsarpc" >&5 +-$as_echo_n "checking how to build rpc_lsarpc... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build rpc_lsarpc" >&5 ++echo $ECHO_N "checking how to build rpc_lsarpc... $ECHO_C" >&6; } + if test "$MODULE_rpc_lsarpc"; then + DEST=$MODULE_rpc_lsarpc + elif test "$MODULE_rpc" -a "$MODULE_DEFAULT_rpc_lsarpc"; then +@@ -77300,8 +73359,8 @@ + _ACEOF + + RPC_MODULES="$RPC_MODULES "bin/librpc_lsarpc.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules rpc_lsarpc" + elif test x"$DEST" = xSTATIC; then +@@ -77311,17 +73370,17 @@ + RPC_STATIC="$RPC_STATIC \$(RPC_LSA_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules rpc_lsarpc" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build rpc_winreg" >&5 +-$as_echo_n "checking how to build rpc_winreg... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build rpc_winreg" >&5 ++echo $ECHO_N "checking how to build rpc_winreg... $ECHO_C" >&6; } + if test "$MODULE_rpc_winreg"; then + DEST=$MODULE_rpc_winreg + elif test "$MODULE_rpc" -a "$MODULE_DEFAULT_rpc_winreg"; then +@@ -77337,8 +73396,8 @@ + _ACEOF + + RPC_MODULES="$RPC_MODULES "bin/librpc_winreg.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules rpc_winreg" + elif test x"$DEST" = xSTATIC; then +@@ -77348,17 +73407,17 @@ + RPC_STATIC="$RPC_STATIC \$(RPC_REG_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules rpc_winreg" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build rpc_initshutdown" >&5 +-$as_echo_n "checking how to build rpc_initshutdown... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build rpc_initshutdown" >&5 ++echo $ECHO_N "checking how to build rpc_initshutdown... $ECHO_C" >&6; } + if test "$MODULE_rpc_initshutdown"; then + DEST=$MODULE_rpc_initshutdown + elif test "$MODULE_rpc" -a "$MODULE_DEFAULT_rpc_initshutdown"; then +@@ -77374,8 +73433,8 @@ + _ACEOF + + RPC_MODULES="$RPC_MODULES "bin/librpc_initshutdown.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules rpc_initshutdown" + elif test x"$DEST" = xSTATIC; then +@@ -77385,17 +73444,17 @@ + RPC_STATIC="$RPC_STATIC \$(RPC_INITSHUTDOWN_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules rpc_initshutdown" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build rpc_dssetup" >&5 +-$as_echo_n "checking how to build rpc_dssetup... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build rpc_dssetup" >&5 ++echo $ECHO_N "checking how to build rpc_dssetup... $ECHO_C" >&6; } + if test "$MODULE_rpc_dssetup"; then + DEST=$MODULE_rpc_dssetup + elif test "$MODULE_rpc" -a "$MODULE_DEFAULT_rpc_dssetup"; then +@@ -77411,8 +73470,8 @@ + _ACEOF + + RPC_MODULES="$RPC_MODULES "bin/librpc_dssetup.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules rpc_dssetup" + elif test x"$DEST" = xSTATIC; then +@@ -77422,17 +73481,17 @@ + RPC_STATIC="$RPC_STATIC \$(RPC_DSSETUP_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules rpc_dssetup" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build rpc_wkssvc" >&5 +-$as_echo_n "checking how to build rpc_wkssvc... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build rpc_wkssvc" >&5 ++echo $ECHO_N "checking how to build rpc_wkssvc... $ECHO_C" >&6; } + if test "$MODULE_rpc_wkssvc"; then + DEST=$MODULE_rpc_wkssvc + elif test "$MODULE_rpc" -a "$MODULE_DEFAULT_rpc_wkssvc"; then +@@ -77448,8 +73507,8 @@ + _ACEOF + + RPC_MODULES="$RPC_MODULES "bin/librpc_wkssvc.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules rpc_wkssvc" + elif test x"$DEST" = xSTATIC; then +@@ -77459,17 +73518,17 @@ + RPC_STATIC="$RPC_STATIC \$(RPC_WKS_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules rpc_wkssvc" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build rpc_svcctl2" >&5 +-$as_echo_n "checking how to build rpc_svcctl2... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build rpc_svcctl2" >&5 ++echo $ECHO_N "checking how to build rpc_svcctl2... $ECHO_C" >&6; } + if test "$MODULE_rpc_svcctl2"; then + DEST=$MODULE_rpc_svcctl2 + elif test "$MODULE_rpc" -a "$MODULE_DEFAULT_rpc_svcctl2"; then +@@ -77485,8 +73544,8 @@ + _ACEOF + + RPC_MODULES="$RPC_MODULES "bin/librpc_svcctl2.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules rpc_svcctl2" + elif test x"$DEST" = xSTATIC; then +@@ -77496,17 +73555,17 @@ + RPC_STATIC="$RPC_STATIC \$(RPC_SVCCTL_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules rpc_svcctl2" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build rpc_ntsvcs2" >&5 +-$as_echo_n "checking how to build rpc_ntsvcs2... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build rpc_ntsvcs2" >&5 ++echo $ECHO_N "checking how to build rpc_ntsvcs2... $ECHO_C" >&6; } + if test "$MODULE_rpc_ntsvcs2"; then + DEST=$MODULE_rpc_ntsvcs2 + elif test "$MODULE_rpc" -a "$MODULE_DEFAULT_rpc_ntsvcs2"; then +@@ -77522,8 +73581,8 @@ + _ACEOF + + RPC_MODULES="$RPC_MODULES "bin/librpc_ntsvcs2.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules rpc_ntsvcs2" + elif test x"$DEST" = xSTATIC; then +@@ -77533,17 +73592,17 @@ + RPC_STATIC="$RPC_STATIC \$(RPC_NTSVCS_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules rpc_ntsvcs2" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build rpc_netlogon" >&5 +-$as_echo_n "checking how to build rpc_netlogon... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build rpc_netlogon" >&5 ++echo $ECHO_N "checking how to build rpc_netlogon... $ECHO_C" >&6; } + if test "$MODULE_rpc_netlogon"; then + DEST=$MODULE_rpc_netlogon + elif test "$MODULE_rpc" -a "$MODULE_DEFAULT_rpc_netlogon"; then +@@ -77559,8 +73618,8 @@ + _ACEOF + + RPC_MODULES="$RPC_MODULES "bin/librpc_NETLOGON.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules rpc_netlogon" + elif test x"$DEST" = xSTATIC; then +@@ -77570,17 +73629,17 @@ + RPC_STATIC="$RPC_STATIC \$(RPC_NETLOG_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules rpc_netlogon" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build rpc_netdfs" >&5 +-$as_echo_n "checking how to build rpc_netdfs... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build rpc_netdfs" >&5 ++echo $ECHO_N "checking how to build rpc_netdfs... $ECHO_C" >&6; } + if test "$MODULE_rpc_netdfs"; then + DEST=$MODULE_rpc_netdfs + elif test "$MODULE_rpc" -a "$MODULE_DEFAULT_rpc_netdfs"; then +@@ -77596,8 +73655,8 @@ + _ACEOF + + RPC_MODULES="$RPC_MODULES "bin/librpc_netdfs.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules rpc_netdfs" + elif test x"$DEST" = xSTATIC; then +@@ -77607,17 +73666,17 @@ + RPC_STATIC="$RPC_STATIC \$(RPC_DFS_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules rpc_netdfs" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build rpc_srvsvc" >&5 +-$as_echo_n "checking how to build rpc_srvsvc... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build rpc_srvsvc" >&5 ++echo $ECHO_N "checking how to build rpc_srvsvc... $ECHO_C" >&6; } + if test "$MODULE_rpc_srvsvc"; then + DEST=$MODULE_rpc_srvsvc + elif test "$MODULE_rpc" -a "$MODULE_DEFAULT_rpc_srvsvc"; then +@@ -77633,8 +73692,8 @@ + _ACEOF + + RPC_MODULES="$RPC_MODULES "bin/librpc_svcsvc.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules rpc_srvsvc" + elif test x"$DEST" = xSTATIC; then +@@ -77644,17 +73703,17 @@ + RPC_STATIC="$RPC_STATIC \$(RPC_SVC_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules rpc_srvsvc" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build rpc_spoolss" >&5 +-$as_echo_n "checking how to build rpc_spoolss... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build rpc_spoolss" >&5 ++echo $ECHO_N "checking how to build rpc_spoolss... $ECHO_C" >&6; } + if test "$MODULE_rpc_spoolss"; then + DEST=$MODULE_rpc_spoolss + elif test "$MODULE_rpc" -a "$MODULE_DEFAULT_rpc_spoolss"; then +@@ -77670,8 +73729,8 @@ + _ACEOF + + RPC_MODULES="$RPC_MODULES "bin/librpc_spoolss.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules rpc_spoolss" + elif test x"$DEST" = xSTATIC; then +@@ -77681,17 +73740,17 @@ + RPC_STATIC="$RPC_STATIC \$(RPC_SPOOLSS_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules rpc_spoolss" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build rpc_eventlog2" >&5 +-$as_echo_n "checking how to build rpc_eventlog2... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build rpc_eventlog2" >&5 ++echo $ECHO_N "checking how to build rpc_eventlog2... $ECHO_C" >&6; } + if test "$MODULE_rpc_eventlog2"; then + DEST=$MODULE_rpc_eventlog2 + elif test "$MODULE_rpc" -a "$MODULE_DEFAULT_rpc_eventlog2"; then +@@ -77707,8 +73766,8 @@ + _ACEOF + + RPC_MODULES="$RPC_MODULES "bin/librpc_eventlog2.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules rpc_eventlog2" + elif test x"$DEST" = xSTATIC; then +@@ -77718,17 +73777,17 @@ + RPC_STATIC="$RPC_STATIC \$(RPC_EVENTLOG_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules rpc_eventlog2" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build rpc_samr" >&5 +-$as_echo_n "checking how to build rpc_samr... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build rpc_samr" >&5 ++echo $ECHO_N "checking how to build rpc_samr... $ECHO_C" >&6; } + if test "$MODULE_rpc_samr"; then + DEST=$MODULE_rpc_samr + elif test "$MODULE_rpc" -a "$MODULE_DEFAULT_rpc_samr"; then +@@ -77744,8 +73803,8 @@ + _ACEOF + + RPC_MODULES="$RPC_MODULES "bin/librpc_samr.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules rpc_samr" + elif test x"$DEST" = xSTATIC; then +@@ -77755,17 +73814,17 @@ + RPC_STATIC="$RPC_STATIC \$(RPC_SAMR_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules rpc_samr" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build rpc_rpcecho" >&5 +-$as_echo_n "checking how to build rpc_rpcecho... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build rpc_rpcecho" >&5 ++echo $ECHO_N "checking how to build rpc_rpcecho... $ECHO_C" >&6; } + if test "$MODULE_rpc_rpcecho"; then + DEST=$MODULE_rpc_rpcecho + elif test "$MODULE_rpc" -a "$MODULE_DEFAULT_rpc_rpcecho"; then +@@ -77781,8 +73840,8 @@ + _ACEOF + + RPC_MODULES="$RPC_MODULES "bin/librpc_rpcecho.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules rpc_rpcecho" + elif test x"$DEST" = xSTATIC; then +@@ -77792,12 +73851,12 @@ + RPC_STATIC="$RPC_STATIC \$(RPC_ECHO_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules rpc_rpcecho" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +@@ -77817,8 +73876,8 @@ + + + +- { $as_echo "$as_me:$LINENO: checking how to build idmap_ldap" >&5 +-$as_echo_n "checking how to build idmap_ldap... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build idmap_ldap" >&5 ++echo $ECHO_N "checking how to build idmap_ldap... $ECHO_C" >&6; } + if test "$MODULE_idmap_ldap"; then + DEST=$MODULE_idmap_ldap + elif test "$MODULE_idmap" -a "$MODULE_DEFAULT_idmap_ldap"; then +@@ -77834,8 +73893,8 @@ + _ACEOF + + IDMAP_MODULES="$IDMAP_MODULES "bin/ldap.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules idmap_ldap" + elif test x"$DEST" = xSTATIC; then +@@ -77845,17 +73904,17 @@ + IDMAP_STATIC="$IDMAP_STATIC winbindd/idmap_ldap.o" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules idmap_ldap" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build idmap_tdb" >&5 +-$as_echo_n "checking how to build idmap_tdb... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build idmap_tdb" >&5 ++echo $ECHO_N "checking how to build idmap_tdb... $ECHO_C" >&6; } + if test "$MODULE_idmap_tdb"; then + DEST=$MODULE_idmap_tdb + elif test "$MODULE_idmap" -a "$MODULE_DEFAULT_idmap_tdb"; then +@@ -77871,8 +73930,8 @@ + _ACEOF + + IDMAP_MODULES="$IDMAP_MODULES "bin/tdb.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules idmap_tdb" + elif test x"$DEST" = xSTATIC; then +@@ -77882,17 +73941,17 @@ + IDMAP_STATIC="$IDMAP_STATIC winbindd/idmap_tdb.o" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules idmap_tdb" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build idmap_tdb2" >&5 +-$as_echo_n "checking how to build idmap_tdb2... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build idmap_tdb2" >&5 ++echo $ECHO_N "checking how to build idmap_tdb2... $ECHO_C" >&6; } + if test "$MODULE_idmap_tdb2"; then + DEST=$MODULE_idmap_tdb2 + elif test "$MODULE_idmap" -a "$MODULE_DEFAULT_idmap_tdb2"; then +@@ -77908,8 +73967,8 @@ + _ACEOF + + IDMAP_MODULES="$IDMAP_MODULES "bin/tdb2.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules idmap_tdb2" + elif test x"$DEST" = xSTATIC; then +@@ -77919,17 +73978,17 @@ + IDMAP_STATIC="$IDMAP_STATIC winbindd/idmap_tdb2.o" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules idmap_tdb2" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build idmap_passdb" >&5 +-$as_echo_n "checking how to build idmap_passdb... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build idmap_passdb" >&5 ++echo $ECHO_N "checking how to build idmap_passdb... $ECHO_C" >&6; } + if test "$MODULE_idmap_passdb"; then + DEST=$MODULE_idmap_passdb + elif test "$MODULE_idmap" -a "$MODULE_DEFAULT_idmap_passdb"; then +@@ -77945,8 +74004,8 @@ + _ACEOF + + IDMAP_MODULES="$IDMAP_MODULES "bin/passdb.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules idmap_passdb" + elif test x"$DEST" = xSTATIC; then +@@ -77956,17 +74015,17 @@ + IDMAP_STATIC="$IDMAP_STATIC winbindd/idmap_passdb.o" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules idmap_passdb" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build idmap_nss" >&5 +-$as_echo_n "checking how to build idmap_nss... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build idmap_nss" >&5 ++echo $ECHO_N "checking how to build idmap_nss... $ECHO_C" >&6; } + if test "$MODULE_idmap_nss"; then + DEST=$MODULE_idmap_nss + elif test "$MODULE_idmap" -a "$MODULE_DEFAULT_idmap_nss"; then +@@ -77982,8 +74041,8 @@ + _ACEOF + + IDMAP_MODULES="$IDMAP_MODULES "bin/nss.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules idmap_nss" + elif test x"$DEST" = xSTATIC; then +@@ -77993,17 +74052,17 @@ + IDMAP_STATIC="$IDMAP_STATIC winbindd/idmap_nss.o" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules idmap_nss" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build idmap_rid" >&5 +-$as_echo_n "checking how to build idmap_rid... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build idmap_rid" >&5 ++echo $ECHO_N "checking how to build idmap_rid... $ECHO_C" >&6; } + if test "$MODULE_idmap_rid"; then + DEST=$MODULE_idmap_rid + elif test "$MODULE_idmap" -a "$MODULE_DEFAULT_idmap_rid"; then +@@ -78019,8 +74078,8 @@ + _ACEOF + + IDMAP_MODULES="$IDMAP_MODULES "bin/rid.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules idmap_rid" + elif test x"$DEST" = xSTATIC; then +@@ -78030,17 +74089,17 @@ + IDMAP_STATIC="$IDMAP_STATIC winbindd/idmap_rid.o" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules idmap_rid" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build idmap_ad" >&5 +-$as_echo_n "checking how to build idmap_ad... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build idmap_ad" >&5 ++echo $ECHO_N "checking how to build idmap_ad... $ECHO_C" >&6; } + if test "$MODULE_idmap_ad"; then + DEST=$MODULE_idmap_ad + elif test "$MODULE_idmap" -a "$MODULE_DEFAULT_idmap_ad"; then +@@ -78056,8 +74115,8 @@ + _ACEOF + + IDMAP_MODULES="$IDMAP_MODULES "bin/ad.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules idmap_ad" + elif test x"$DEST" = xSTATIC; then +@@ -78067,17 +74126,17 @@ + IDMAP_STATIC="$IDMAP_STATIC winbindd/idmap_ad.o" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules idmap_ad" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build idmap_hash" >&5 +-$as_echo_n "checking how to build idmap_hash... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build idmap_hash" >&5 ++echo $ECHO_N "checking how to build idmap_hash... $ECHO_C" >&6; } + if test "$MODULE_idmap_hash"; then + DEST=$MODULE_idmap_hash + elif test "$MODULE_idmap" -a "$MODULE_DEFAULT_idmap_hash"; then +@@ -78093,8 +74152,8 @@ + _ACEOF + + IDMAP_MODULES="$IDMAP_MODULES "bin/hash.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules idmap_hash" + elif test x"$DEST" = xSTATIC; then +@@ -78104,17 +74163,17 @@ + IDMAP_STATIC="$IDMAP_STATIC \$(IDMAP_HASH_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules idmap_hash" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build idmap_adex" >&5 +-$as_echo_n "checking how to build idmap_adex... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build idmap_adex" >&5 ++echo $ECHO_N "checking how to build idmap_adex... $ECHO_C" >&6; } + if test "$MODULE_idmap_adex"; then + DEST=$MODULE_idmap_adex + elif test "$MODULE_idmap" -a "$MODULE_DEFAULT_idmap_adex"; then +@@ -78130,8 +74189,8 @@ + _ACEOF + + IDMAP_MODULES="$IDMAP_MODULES "bin/adex.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules idmap_adex" + elif test x"$DEST" = xSTATIC; then +@@ -78141,12 +74200,12 @@ + IDMAP_STATIC="$IDMAP_STATIC \$(IDMAP_ADEX_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules idmap_adex" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +@@ -78166,8 +74225,8 @@ + + + +- { $as_echo "$as_me:$LINENO: checking how to build nss_info_template" >&5 +-$as_echo_n "checking how to build nss_info_template... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build nss_info_template" >&5 ++echo $ECHO_N "checking how to build nss_info_template... $ECHO_C" >&6; } + if test "$MODULE_nss_info_template"; then + DEST=$MODULE_nss_info_template + elif test "$MODULE_nss_info" -a "$MODULE_DEFAULT_nss_info_template"; then +@@ -78183,8 +74242,8 @@ + _ACEOF + + NSS_INFO_MODULES="$NSS_INFO_MODULES "bin/template.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules nss_info_template" + elif test x"$DEST" = xSTATIC; then +@@ -78194,12 +74253,12 @@ + NSS_INFO_STATIC="$NSS_INFO_STATIC winbindd/nss_info_template.o" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules nss_info_template" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +@@ -78219,8 +74278,8 @@ + + + +- { $as_echo "$as_me:$LINENO: checking how to build charset_weird" >&5 +-$as_echo_n "checking how to build charset_weird... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build charset_weird" >&5 ++echo $ECHO_N "checking how to build charset_weird... $ECHO_C" >&6; } + if test "$MODULE_charset_weird"; then + DEST=$MODULE_charset_weird + elif test "$MODULE_charset" -a "$MODULE_DEFAULT_charset_weird"; then +@@ -78236,8 +74295,8 @@ + _ACEOF + + CHARSET_MODULES="$CHARSET_MODULES "bin/weird.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules charset_weird" + elif test x"$DEST" = xSTATIC; then +@@ -78247,17 +74306,17 @@ + CHARSET_STATIC="$CHARSET_STATIC modules/weird.o" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules charset_weird" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build charset_CP850" >&5 +-$as_echo_n "checking how to build charset_CP850... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build charset_CP850" >&5 ++echo $ECHO_N "checking how to build charset_CP850... $ECHO_C" >&6; } + if test "$MODULE_charset_CP850"; then + DEST=$MODULE_charset_CP850 + elif test "$MODULE_charset" -a "$MODULE_DEFAULT_charset_CP850"; then +@@ -78273,8 +74332,8 @@ + _ACEOF + + CHARSET_MODULES="$CHARSET_MODULES "bin/CP850.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules charset_CP850" + elif test x"$DEST" = xSTATIC; then +@@ -78284,17 +74343,17 @@ + CHARSET_STATIC="$CHARSET_STATIC modules/CP850.o" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules charset_CP850" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build charset_CP437" >&5 +-$as_echo_n "checking how to build charset_CP437... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build charset_CP437" >&5 ++echo $ECHO_N "checking how to build charset_CP437... $ECHO_C" >&6; } + if test "$MODULE_charset_CP437"; then + DEST=$MODULE_charset_CP437 + elif test "$MODULE_charset" -a "$MODULE_DEFAULT_charset_CP437"; then +@@ -78310,8 +74369,8 @@ + _ACEOF + + CHARSET_MODULES="$CHARSET_MODULES "bin/CP437.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules charset_CP437" + elif test x"$DEST" = xSTATIC; then +@@ -78321,17 +74380,17 @@ + CHARSET_STATIC="$CHARSET_STATIC modules/CP437.o" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules charset_CP437" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build charset_macosxfs" >&5 +-$as_echo_n "checking how to build charset_macosxfs... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build charset_macosxfs" >&5 ++echo $ECHO_N "checking how to build charset_macosxfs... $ECHO_C" >&6; } + if test "$MODULE_charset_macosxfs"; then + DEST=$MODULE_charset_macosxfs + elif test "$MODULE_charset" -a "$MODULE_DEFAULT_charset_macosxfs"; then +@@ -78347,8 +74406,8 @@ + _ACEOF + + CHARSET_MODULES="$CHARSET_MODULES "bin/macosxfs.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules charset_macosxfs" + elif test x"$DEST" = xSTATIC; then +@@ -78358,12 +74417,12 @@ + CHARSET_STATIC="$CHARSET_STATIC modules/charset_macosxfs.o" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules charset_macosxfs" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +@@ -78383,8 +74442,8 @@ + + + +- { $as_echo "$as_me:$LINENO: checking how to build auth_sam" >&5 +-$as_echo_n "checking how to build auth_sam... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build auth_sam" >&5 ++echo $ECHO_N "checking how to build auth_sam... $ECHO_C" >&6; } + if test "$MODULE_auth_sam"; then + DEST=$MODULE_auth_sam + elif test "$MODULE_auth" -a "$MODULE_DEFAULT_auth_sam"; then +@@ -78400,8 +74459,8 @@ + _ACEOF + + AUTH_MODULES="$AUTH_MODULES "bin/sam.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules auth_sam" + elif test x"$DEST" = xSTATIC; then +@@ -78411,17 +74470,17 @@ + AUTH_STATIC="$AUTH_STATIC \$(AUTH_SAM_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules auth_sam" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build auth_unix" >&5 +-$as_echo_n "checking how to build auth_unix... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build auth_unix" >&5 ++echo $ECHO_N "checking how to build auth_unix... $ECHO_C" >&6; } + if test "$MODULE_auth_unix"; then + DEST=$MODULE_auth_unix + elif test "$MODULE_auth" -a "$MODULE_DEFAULT_auth_unix"; then +@@ -78437,8 +74496,8 @@ + _ACEOF + + AUTH_MODULES="$AUTH_MODULES "bin/unix.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules auth_unix" + elif test x"$DEST" = xSTATIC; then +@@ -78448,17 +74507,17 @@ + AUTH_STATIC="$AUTH_STATIC \$(AUTH_UNIX_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules auth_unix" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build auth_winbind" >&5 +-$as_echo_n "checking how to build auth_winbind... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build auth_winbind" >&5 ++echo $ECHO_N "checking how to build auth_winbind... $ECHO_C" >&6; } + if test "$MODULE_auth_winbind"; then + DEST=$MODULE_auth_winbind + elif test "$MODULE_auth" -a "$MODULE_DEFAULT_auth_winbind"; then +@@ -78474,8 +74533,8 @@ + _ACEOF + + AUTH_MODULES="$AUTH_MODULES "bin/winbind.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules auth_winbind" + elif test x"$DEST" = xSTATIC; then +@@ -78485,17 +74544,17 @@ + AUTH_STATIC="$AUTH_STATIC \$(AUTH_WINBIND_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules auth_winbind" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build auth_server" >&5 +-$as_echo_n "checking how to build auth_server... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build auth_server" >&5 ++echo $ECHO_N "checking how to build auth_server... $ECHO_C" >&6; } + if test "$MODULE_auth_server"; then + DEST=$MODULE_auth_server + elif test "$MODULE_auth" -a "$MODULE_DEFAULT_auth_server"; then +@@ -78511,8 +74570,8 @@ + _ACEOF + + AUTH_MODULES="$AUTH_MODULES "bin/smbserver.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules auth_server" + elif test x"$DEST" = xSTATIC; then +@@ -78522,17 +74581,17 @@ + AUTH_STATIC="$AUTH_STATIC \$(AUTH_SERVER_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules auth_server" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build auth_domain" >&5 +-$as_echo_n "checking how to build auth_domain... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build auth_domain" >&5 ++echo $ECHO_N "checking how to build auth_domain... $ECHO_C" >&6; } + if test "$MODULE_auth_domain"; then + DEST=$MODULE_auth_domain + elif test "$MODULE_auth" -a "$MODULE_DEFAULT_auth_domain"; then +@@ -78548,8 +74607,8 @@ + _ACEOF + + AUTH_MODULES="$AUTH_MODULES "bin/domain.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules auth_domain" + elif test x"$DEST" = xSTATIC; then +@@ -78559,17 +74618,17 @@ + AUTH_STATIC="$AUTH_STATIC \$(AUTH_DOMAIN_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules auth_domain" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build auth_builtin" >&5 +-$as_echo_n "checking how to build auth_builtin... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build auth_builtin" >&5 ++echo $ECHO_N "checking how to build auth_builtin... $ECHO_C" >&6; } + if test "$MODULE_auth_builtin"; then + DEST=$MODULE_auth_builtin + elif test "$MODULE_auth" -a "$MODULE_DEFAULT_auth_builtin"; then +@@ -78585,8 +74644,8 @@ + _ACEOF + + AUTH_MODULES="$AUTH_MODULES "bin/builtin.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules auth_builtin" + elif test x"$DEST" = xSTATIC; then +@@ -78596,17 +74655,17 @@ + AUTH_STATIC="$AUTH_STATIC \$(AUTH_BUILTIN_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules auth_builtin" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build auth_script" >&5 +-$as_echo_n "checking how to build auth_script... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build auth_script" >&5 ++echo $ECHO_N "checking how to build auth_script... $ECHO_C" >&6; } + if test "$MODULE_auth_script"; then + DEST=$MODULE_auth_script + elif test "$MODULE_auth" -a "$MODULE_DEFAULT_auth_script"; then +@@ -78622,8 +74681,8 @@ + _ACEOF + + AUTH_MODULES="$AUTH_MODULES "bin/script.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules auth_script" + elif test x"$DEST" = xSTATIC; then +@@ -78633,12 +74692,12 @@ + AUTH_STATIC="$AUTH_STATIC \$(AUTH_SCRIPT_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules auth_script" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +@@ -78658,8 +74717,8 @@ + + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_default" >&5 +-$as_echo_n "checking how to build vfs_default... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_default" >&5 ++echo $ECHO_N "checking how to build vfs_default... $ECHO_C" >&6; } + if test "$MODULE_vfs_default"; then + DEST=$MODULE_vfs_default + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_default"; then +@@ -78675,8 +74734,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/default.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_default" + elif test x"$DEST" = xSTATIC; then +@@ -78686,17 +74745,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_DEFAULT_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_default" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_recycle" >&5 +-$as_echo_n "checking how to build vfs_recycle... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_recycle" >&5 ++echo $ECHO_N "checking how to build vfs_recycle... $ECHO_C" >&6; } + if test "$MODULE_vfs_recycle"; then + DEST=$MODULE_vfs_recycle + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_recycle"; then +@@ -78712,8 +74771,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/recycle.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_recycle" + elif test x"$DEST" = xSTATIC; then +@@ -78723,17 +74782,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_RECYCLE_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_recycle" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_audit" >&5 +-$as_echo_n "checking how to build vfs_audit... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_audit" >&5 ++echo $ECHO_N "checking how to build vfs_audit... $ECHO_C" >&6; } + if test "$MODULE_vfs_audit"; then + DEST=$MODULE_vfs_audit + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_audit"; then +@@ -78749,8 +74808,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/audit.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_audit" + elif test x"$DEST" = xSTATIC; then +@@ -78760,17 +74819,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_AUDIT_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_audit" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_extd_audit" >&5 +-$as_echo_n "checking how to build vfs_extd_audit... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_extd_audit" >&5 ++echo $ECHO_N "checking how to build vfs_extd_audit... $ECHO_C" >&6; } + if test "$MODULE_vfs_extd_audit"; then + DEST=$MODULE_vfs_extd_audit + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_extd_audit"; then +@@ -78786,8 +74845,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/extd_audit.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_extd_audit" + elif test x"$DEST" = xSTATIC; then +@@ -78797,17 +74856,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_EXTD_AUDIT_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_extd_audit" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_full_audit" >&5 +-$as_echo_n "checking how to build vfs_full_audit... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_full_audit" >&5 ++echo $ECHO_N "checking how to build vfs_full_audit... $ECHO_C" >&6; } + if test "$MODULE_vfs_full_audit"; then + DEST=$MODULE_vfs_full_audit + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_full_audit"; then +@@ -78823,8 +74882,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/full_audit.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_full_audit" + elif test x"$DEST" = xSTATIC; then +@@ -78834,17 +74893,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_FULL_AUDIT_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_full_audit" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_netatalk" >&5 +-$as_echo_n "checking how to build vfs_netatalk... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_netatalk" >&5 ++echo $ECHO_N "checking how to build vfs_netatalk... $ECHO_C" >&6; } + if test "$MODULE_vfs_netatalk"; then + DEST=$MODULE_vfs_netatalk + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_netatalk"; then +@@ -78860,8 +74919,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/netatalk.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_netatalk" + elif test x"$DEST" = xSTATIC; then +@@ -78871,17 +74930,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_NETATALK_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_netatalk" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_fake_perms" >&5 +-$as_echo_n "checking how to build vfs_fake_perms... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_fake_perms" >&5 ++echo $ECHO_N "checking how to build vfs_fake_perms... $ECHO_C" >&6; } + if test "$MODULE_vfs_fake_perms"; then + DEST=$MODULE_vfs_fake_perms + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_fake_perms"; then +@@ -78897,8 +74956,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/fake_perms.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_fake_perms" + elif test x"$DEST" = xSTATIC; then +@@ -78908,17 +74967,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_FAKE_PERMS_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_fake_perms" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_default_quota" >&5 +-$as_echo_n "checking how to build vfs_default_quota... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_default_quota" >&5 ++echo $ECHO_N "checking how to build vfs_default_quota... $ECHO_C" >&6; } + if test "$MODULE_vfs_default_quota"; then + DEST=$MODULE_vfs_default_quota + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_default_quota"; then +@@ -78934,8 +74993,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/default_quota.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_default_quota" + elif test x"$DEST" = xSTATIC; then +@@ -78945,17 +75004,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_DEFAULT_QUOTA_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_default_quota" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_readonly" >&5 +-$as_echo_n "checking how to build vfs_readonly... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_readonly" >&5 ++echo $ECHO_N "checking how to build vfs_readonly... $ECHO_C" >&6; } + if test "$MODULE_vfs_readonly"; then + DEST=$MODULE_vfs_readonly + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_readonly"; then +@@ -78971,8 +75030,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/readonly.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_readonly" + elif test x"$DEST" = xSTATIC; then +@@ -78982,17 +75041,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_READONLY_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_readonly" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_cap" >&5 +-$as_echo_n "checking how to build vfs_cap... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_cap" >&5 ++echo $ECHO_N "checking how to build vfs_cap... $ECHO_C" >&6; } + if test "$MODULE_vfs_cap"; then + DEST=$MODULE_vfs_cap + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_cap"; then +@@ -79008,8 +75067,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/cap.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_cap" + elif test x"$DEST" = xSTATIC; then +@@ -79019,17 +75078,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_CAP_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_cap" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_expand_msdfs" >&5 +-$as_echo_n "checking how to build vfs_expand_msdfs... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_expand_msdfs" >&5 ++echo $ECHO_N "checking how to build vfs_expand_msdfs... $ECHO_C" >&6; } + if test "$MODULE_vfs_expand_msdfs"; then + DEST=$MODULE_vfs_expand_msdfs + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_expand_msdfs"; then +@@ -79045,8 +75104,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/expand_msdfs.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_expand_msdfs" + elif test x"$DEST" = xSTATIC; then +@@ -79056,17 +75115,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_EXPAND_MSDFS_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_expand_msdfs" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_shadow_copy" >&5 +-$as_echo_n "checking how to build vfs_shadow_copy... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_shadow_copy" >&5 ++echo $ECHO_N "checking how to build vfs_shadow_copy... $ECHO_C" >&6; } + if test "$MODULE_vfs_shadow_copy"; then + DEST=$MODULE_vfs_shadow_copy + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_shadow_copy"; then +@@ -79082,8 +75141,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/shadow_copy.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_shadow_copy" + elif test x"$DEST" = xSTATIC; then +@@ -79093,17 +75152,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_SHADOW_COPY_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_shadow_copy" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_shadow_copy2" >&5 +-$as_echo_n "checking how to build vfs_shadow_copy2... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_shadow_copy2" >&5 ++echo $ECHO_N "checking how to build vfs_shadow_copy2... $ECHO_C" >&6; } + if test "$MODULE_vfs_shadow_copy2"; then + DEST=$MODULE_vfs_shadow_copy2 + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_shadow_copy2"; then +@@ -79119,8 +75178,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/shadow_copy2.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_shadow_copy2" + elif test x"$DEST" = xSTATIC; then +@@ -79130,17 +75189,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_SHADOW_COPY2_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_shadow_copy2" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_afsacl" >&5 +-$as_echo_n "checking how to build vfs_afsacl... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_afsacl" >&5 ++echo $ECHO_N "checking how to build vfs_afsacl... $ECHO_C" >&6; } + if test "$MODULE_vfs_afsacl"; then + DEST=$MODULE_vfs_afsacl + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_afsacl"; then +@@ -79156,8 +75215,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/afsacl.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_afsacl" + elif test x"$DEST" = xSTATIC; then +@@ -79167,17 +75226,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_AFSACL_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_afsacl" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_xattr_tdb" >&5 +-$as_echo_n "checking how to build vfs_xattr_tdb... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_xattr_tdb" >&5 ++echo $ECHO_N "checking how to build vfs_xattr_tdb... $ECHO_C" >&6; } + if test "$MODULE_vfs_xattr_tdb"; then + DEST=$MODULE_vfs_xattr_tdb + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_xattr_tdb"; then +@@ -79193,8 +75252,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/xattr_tdb.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_xattr_tdb" + elif test x"$DEST" = xSTATIC; then +@@ -79204,17 +75263,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_XATTR_TDB_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_xattr_tdb" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_posixacl" >&5 +-$as_echo_n "checking how to build vfs_posixacl... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_posixacl" >&5 ++echo $ECHO_N "checking how to build vfs_posixacl... $ECHO_C" >&6; } + if test "$MODULE_vfs_posixacl"; then + DEST=$MODULE_vfs_posixacl + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_posixacl"; then +@@ -79230,8 +75289,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/posixacl.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_posixacl" + elif test x"$DEST" = xSTATIC; then +@@ -79241,17 +75300,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_POSIXACL_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_posixacl" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_aixacl" >&5 +-$as_echo_n "checking how to build vfs_aixacl... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_aixacl" >&5 ++echo $ECHO_N "checking how to build vfs_aixacl... $ECHO_C" >&6; } + if test "$MODULE_vfs_aixacl"; then + DEST=$MODULE_vfs_aixacl + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_aixacl"; then +@@ -79267,8 +75326,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/aixacl.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_aixacl" + elif test x"$DEST" = xSTATIC; then +@@ -79278,17 +75337,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_AIXACL_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_aixacl" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_aixacl2" >&5 +-$as_echo_n "checking how to build vfs_aixacl2... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_aixacl2" >&5 ++echo $ECHO_N "checking how to build vfs_aixacl2... $ECHO_C" >&6; } + if test "$MODULE_vfs_aixacl2"; then + DEST=$MODULE_vfs_aixacl2 + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_aixacl2"; then +@@ -79304,8 +75363,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/aixacl2.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_aixacl2" + elif test x"$DEST" = xSTATIC; then +@@ -79315,17 +75374,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_AIXACL2_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_aixacl2" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_solarisacl" >&5 +-$as_echo_n "checking how to build vfs_solarisacl... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_solarisacl" >&5 ++echo $ECHO_N "checking how to build vfs_solarisacl... $ECHO_C" >&6; } + if test "$MODULE_vfs_solarisacl"; then + DEST=$MODULE_vfs_solarisacl + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_solarisacl"; then +@@ -79341,8 +75400,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/solarisacl.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_solarisacl" + elif test x"$DEST" = xSTATIC; then +@@ -79352,17 +75411,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_SOLARISACL_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_solarisacl" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_irixacl" >&5 +-$as_echo_n "checking how to build vfs_irixacl... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_irixacl" >&5 ++echo $ECHO_N "checking how to build vfs_irixacl... $ECHO_C" >&6; } + if test "$MODULE_vfs_irixacl"; then + DEST=$MODULE_vfs_irixacl + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_irixacl"; then +@@ -79378,8 +75437,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/irixacl.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_irixacl" + elif test x"$DEST" = xSTATIC; then +@@ -79389,17 +75448,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_IRIXACL_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_irixacl" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_hpuxacl" >&5 +-$as_echo_n "checking how to build vfs_hpuxacl... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_hpuxacl" >&5 ++echo $ECHO_N "checking how to build vfs_hpuxacl... $ECHO_C" >&6; } + if test "$MODULE_vfs_hpuxacl"; then + DEST=$MODULE_vfs_hpuxacl + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_hpuxacl"; then +@@ -79415,8 +75474,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/hpuxacl.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_hpuxacl" + elif test x"$DEST" = xSTATIC; then +@@ -79426,17 +75485,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_HPUXACL_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_hpuxacl" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_tru64acl" >&5 +-$as_echo_n "checking how to build vfs_tru64acl... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_tru64acl" >&5 ++echo $ECHO_N "checking how to build vfs_tru64acl... $ECHO_C" >&6; } + if test "$MODULE_vfs_tru64acl"; then + DEST=$MODULE_vfs_tru64acl + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_tru64acl"; then +@@ -79452,8 +75511,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/tru64acl.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_tru64acl" + elif test x"$DEST" = xSTATIC; then +@@ -79463,17 +75522,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_TRU64ACL_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_tru64acl" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_catia" >&5 +-$as_echo_n "checking how to build vfs_catia... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_catia" >&5 ++echo $ECHO_N "checking how to build vfs_catia... $ECHO_C" >&6; } + if test "$MODULE_vfs_catia"; then + DEST=$MODULE_vfs_catia + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_catia"; then +@@ -79489,8 +75548,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/catia.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_catia" + elif test x"$DEST" = xSTATIC; then +@@ -79500,17 +75559,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_CATIA_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_catia" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_streams_xattr" >&5 +-$as_echo_n "checking how to build vfs_streams_xattr... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_streams_xattr" >&5 ++echo $ECHO_N "checking how to build vfs_streams_xattr... $ECHO_C" >&6; } + if test "$MODULE_vfs_streams_xattr"; then + DEST=$MODULE_vfs_streams_xattr + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_streams_xattr"; then +@@ -79526,8 +75585,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/streams_xattr.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_streams_xattr" + elif test x"$DEST" = xSTATIC; then +@@ -79537,17 +75596,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_STREAMS_XATTR_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_streams_xattr" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_streams_depot" >&5 +-$as_echo_n "checking how to build vfs_streams_depot... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_streams_depot" >&5 ++echo $ECHO_N "checking how to build vfs_streams_depot... $ECHO_C" >&6; } + if test "$MODULE_vfs_streams_depot"; then + DEST=$MODULE_vfs_streams_depot + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_streams_depot"; then +@@ -79563,8 +75622,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/streams_depot.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_streams_depot" + elif test x"$DEST" = xSTATIC; then +@@ -79574,17 +75633,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_STREAMS_DEPOT_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_streams_depot" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_cacheprime" >&5 +-$as_echo_n "checking how to build vfs_cacheprime... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_cacheprime" >&5 ++echo $ECHO_N "checking how to build vfs_cacheprime... $ECHO_C" >&6; } + if test "$MODULE_vfs_cacheprime"; then + DEST=$MODULE_vfs_cacheprime + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_cacheprime"; then +@@ -79600,8 +75659,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/cacheprime.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_cacheprime" + elif test x"$DEST" = xSTATIC; then +@@ -79611,17 +75670,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_CACHEPRIME_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_cacheprime" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_prealloc" >&5 +-$as_echo_n "checking how to build vfs_prealloc... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_prealloc" >&5 ++echo $ECHO_N "checking how to build vfs_prealloc... $ECHO_C" >&6; } + if test "$MODULE_vfs_prealloc"; then + DEST=$MODULE_vfs_prealloc + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_prealloc"; then +@@ -79637,8 +75696,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/prealloc.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_prealloc" + elif test x"$DEST" = xSTATIC; then +@@ -79648,17 +75707,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_PREALLOC_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_prealloc" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_commit" >&5 +-$as_echo_n "checking how to build vfs_commit... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_commit" >&5 ++echo $ECHO_N "checking how to build vfs_commit... $ECHO_C" >&6; } + if test "$MODULE_vfs_commit"; then + DEST=$MODULE_vfs_commit + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_commit"; then +@@ -79674,8 +75733,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/commit.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_commit" + elif test x"$DEST" = xSTATIC; then +@@ -79685,17 +75744,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_COMMIT_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_commit" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_gpfs" >&5 +-$as_echo_n "checking how to build vfs_gpfs... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_gpfs" >&5 ++echo $ECHO_N "checking how to build vfs_gpfs... $ECHO_C" >&6; } + if test "$MODULE_vfs_gpfs"; then + DEST=$MODULE_vfs_gpfs + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_gpfs"; then +@@ -79711,8 +75770,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/gpfs.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_gpfs" + elif test x"$DEST" = xSTATIC; then +@@ -79722,17 +75781,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_GPFS_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_gpfs" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_readahead" >&5 +-$as_echo_n "checking how to build vfs_readahead... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_readahead" >&5 ++echo $ECHO_N "checking how to build vfs_readahead... $ECHO_C" >&6; } + if test "$MODULE_vfs_readahead"; then + DEST=$MODULE_vfs_readahead + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_readahead"; then +@@ -79748,8 +75807,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/readahead.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_readahead" + elif test x"$DEST" = xSTATIC; then +@@ -79759,17 +75818,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_READAHEAD_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_readahead" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_tsmsm" >&5 +-$as_echo_n "checking how to build vfs_tsmsm... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_tsmsm" >&5 ++echo $ECHO_N "checking how to build vfs_tsmsm... $ECHO_C" >&6; } + if test "$MODULE_vfs_tsmsm"; then + DEST=$MODULE_vfs_tsmsm + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_tsmsm"; then +@@ -79785,8 +75844,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/tsmsm.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_tsmsm" + elif test x"$DEST" = xSTATIC; then +@@ -79796,17 +75855,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_TSMSM_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_tsmsm" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_fileid" >&5 +-$as_echo_n "checking how to build vfs_fileid... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_fileid" >&5 ++echo $ECHO_N "checking how to build vfs_fileid... $ECHO_C" >&6; } + if test "$MODULE_vfs_fileid"; then + DEST=$MODULE_vfs_fileid + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_fileid"; then +@@ -79822,8 +75881,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/fileid.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_fileid" + elif test x"$DEST" = xSTATIC; then +@@ -79833,17 +75892,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_FILEID_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_fileid" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_aio_fork" >&5 +-$as_echo_n "checking how to build vfs_aio_fork... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_aio_fork" >&5 ++echo $ECHO_N "checking how to build vfs_aio_fork... $ECHO_C" >&6; } + if test "$MODULE_vfs_aio_fork"; then + DEST=$MODULE_vfs_aio_fork + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_aio_fork"; then +@@ -79859,8 +75918,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/aio_fork.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_aio_fork" + elif test x"$DEST" = xSTATIC; then +@@ -79870,17 +75929,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_AIO_FORK_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_aio_fork" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_syncops" >&5 +-$as_echo_n "checking how to build vfs_syncops... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_syncops" >&5 ++echo $ECHO_N "checking how to build vfs_syncops... $ECHO_C" >&6; } + if test "$MODULE_vfs_syncops"; then + DEST=$MODULE_vfs_syncops + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_syncops"; then +@@ -79896,8 +75955,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/syncops.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_syncops" + elif test x"$DEST" = xSTATIC; then +@@ -79907,17 +75966,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_SYNCOPS_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_syncops" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_zfsacl" >&5 +-$as_echo_n "checking how to build vfs_zfsacl... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_zfsacl" >&5 ++echo $ECHO_N "checking how to build vfs_zfsacl... $ECHO_C" >&6; } + if test "$MODULE_vfs_zfsacl"; then + DEST=$MODULE_vfs_zfsacl + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_zfsacl"; then +@@ -79933,8 +75992,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/zfsacl.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_zfsacl" + elif test x"$DEST" = xSTATIC; then +@@ -79944,17 +76003,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_ZFSACL_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_zfsacl" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_notify_fam" >&5 +-$as_echo_n "checking how to build vfs_notify_fam... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_notify_fam" >&5 ++echo $ECHO_N "checking how to build vfs_notify_fam... $ECHO_C" >&6; } + if test "$MODULE_vfs_notify_fam"; then + DEST=$MODULE_vfs_notify_fam + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_notify_fam"; then +@@ -79970,8 +76029,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/notify_fam.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_notify_fam" + elif test x"$DEST" = xSTATIC; then +@@ -79981,17 +76040,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_NOTIFY_FAM_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_notify_fam" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_acl_xattr" >&5 +-$as_echo_n "checking how to build vfs_acl_xattr... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_acl_xattr" >&5 ++echo $ECHO_N "checking how to build vfs_acl_xattr... $ECHO_C" >&6; } + if test "$MODULE_vfs_acl_xattr"; then + DEST=$MODULE_vfs_acl_xattr + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_acl_xattr"; then +@@ -80007,8 +76066,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/acl_xattr.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_acl_xattr" + elif test x"$DEST" = xSTATIC; then +@@ -80018,17 +76077,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_ACL_XATTR_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_acl_xattr" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_acl_tdb" >&5 +-$as_echo_n "checking how to build vfs_acl_tdb... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_acl_tdb" >&5 ++echo $ECHO_N "checking how to build vfs_acl_tdb... $ECHO_C" >&6; } + if test "$MODULE_vfs_acl_tdb"; then + DEST=$MODULE_vfs_acl_tdb + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_acl_tdb"; then +@@ -80044,8 +76103,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/acl_tdb.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_acl_tdb" + elif test x"$DEST" = xSTATIC; then +@@ -80055,17 +76114,17 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_ACL_TDB_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_acl_tdb" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build vfs_smb_traffic_analyzer" >&5 +-$as_echo_n "checking how to build vfs_smb_traffic_analyzer... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build vfs_smb_traffic_analyzer" >&5 ++echo $ECHO_N "checking how to build vfs_smb_traffic_analyzer... $ECHO_C" >&6; } + if test "$MODULE_vfs_smb_traffic_analyzer"; then + DEST=$MODULE_vfs_smb_traffic_analyzer + elif test "$MODULE_vfs" -a "$MODULE_DEFAULT_vfs_smb_traffic_analyzer"; then +@@ -80081,8 +76140,8 @@ + _ACEOF + + VFS_MODULES="$VFS_MODULES "bin/smb_traffic_analyzer.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules vfs_smb_traffic_analyzer" + elif test x"$DEST" = xSTATIC; then +@@ -80092,12 +76151,12 @@ + VFS_STATIC="$VFS_STATIC \$(VFS_SMB_TRAFFIC_ANALYZER_OBJ)" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules vfs_smb_traffic_analyzer" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +@@ -80119,8 +76178,8 @@ + + + +- { $as_echo "$as_me:$LINENO: checking how to build gpext_registry" >&5 +-$as_echo_n "checking how to build gpext_registry... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build gpext_registry" >&5 ++echo $ECHO_N "checking how to build gpext_registry... $ECHO_C" >&6; } + if test "$MODULE_gpext_registry"; then + DEST=$MODULE_gpext_registry + elif test "$MODULE_gpext" -a "$MODULE_DEFAULT_gpext_registry"; then +@@ -80136,8 +76195,8 @@ + _ACEOF + + GPEXT_MODULES="$GPEXT_MODULES "bin/registry.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules gpext_registry" + elif test x"$DEST" = xSTATIC; then +@@ -80147,17 +76206,17 @@ + GPEXT_STATIC="$GPEXT_STATIC libgpo/gpext/registry.o" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules gpext_registry" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build gpext_scripts" >&5 +-$as_echo_n "checking how to build gpext_scripts... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build gpext_scripts" >&5 ++echo $ECHO_N "checking how to build gpext_scripts... $ECHO_C" >&6; } + if test "$MODULE_gpext_scripts"; then + DEST=$MODULE_gpext_scripts + elif test "$MODULE_gpext" -a "$MODULE_DEFAULT_gpext_scripts"; then +@@ -80173,8 +76232,8 @@ + _ACEOF + + GPEXT_MODULES="$GPEXT_MODULES "bin/scripts.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules gpext_scripts" + elif test x"$DEST" = xSTATIC; then +@@ -80184,17 +76243,17 @@ + GPEXT_STATIC="$GPEXT_STATIC libgpo/gpext/scripts.o" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules gpext_scripts" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +- { $as_echo "$as_me:$LINENO: checking how to build gpext_security" >&5 +-$as_echo_n "checking how to build gpext_security... " >&6; } ++ { echo "$as_me:$LINENO: checking how to build gpext_security" >&5 ++echo $ECHO_N "checking how to build gpext_security... $ECHO_C" >&6; } + if test "$MODULE_gpext_security"; then + DEST=$MODULE_gpext_security + elif test "$MODULE_gpext" -a "$MODULE_DEFAULT_gpext_security"; then +@@ -80210,8 +76269,8 @@ + _ACEOF + + GPEXT_MODULES="$GPEXT_MODULES "bin/security.$SHLIBEXT"" +- { $as_echo "$as_me:$LINENO: result: shared" >&5 +-$as_echo "shared" >&6; } ++ { echo "$as_me:$LINENO: result: shared" >&5 ++echo "${ECHO_T}shared" >&6; } + + string_shared_modules="$string_shared_modules gpext_security" + elif test x"$DEST" = xSTATIC; then +@@ -80221,12 +76280,12 @@ + GPEXT_STATIC="$GPEXT_STATIC libgpo/gpext/security.o" + + +- { $as_echo "$as_me:$LINENO: result: static" >&5 +-$as_echo "static" >&6; } ++ { echo "$as_me:$LINENO: result: static" >&5 ++echo "${ECHO_T}static" >&6; } + else + string_ignored_modules="$string_ignored_modules gpext_security" +- { $as_echo "$as_me:$LINENO: result: not" >&5 +-$as_echo "not" >&6; } ++ { echo "$as_me:$LINENO: result: not" >&5 ++echo "${ECHO_T}not" >&6; } + fi + + +@@ -80261,19 +76320,19 @@ + ################################################# + # If run from the build farm, enable NASTY hacks + ################################################# +-{ $as_echo "$as_me:$LINENO: checking whether to enable build farm hacks" >&5 +-$as_echo_n "checking whether to enable build farm hacks... " >&6; } ++{ echo "$as_me:$LINENO: checking whether to enable build farm hacks" >&5 ++echo $ECHO_N "checking whether to enable build farm hacks... $ECHO_C" >&6; } + if test x"$RUN_FROM_BUILD_FARM" = x"yes"; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + cat >>confdefs.h <<\_ACEOF + #define ENABLE_BUILD_FARM_HACKS 1 + _ACEOF + + else +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + fi + + ################################################# +@@ -80289,12 +76348,12 @@ + rt_signal_lease_works=yes + rt_signal_aio_works=yes + +- { $as_echo "$as_me:$LINENO: checking if sigaction works with realtime signals" >&5 +-$as_echo_n "checking if sigaction works with realtime signals... " >&6; } ++ { echo "$as_me:$LINENO: checking if sigaction works with realtime signals" >&5 ++echo $ECHO_N "checking if sigaction works with realtime signals... $ECHO_C" >&6; } + if test "$cross_compiling" = yes; then + +- { $as_echo "$as_me:$LINENO: result: cross" >&5 +-$as_echo "cross" >&6; } ++ { echo "$as_me:$LINENO: result: cross" >&5 ++echo "${ECHO_T}cross" >&6; } + + # cross compiling, I hope you know what you are doing + true +@@ -80367,30 +76426,28 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + + # no RT_SIGNAL bug, we are golden + +- { $as_echo "$as_me:$LINENO: checking if libpthread is linked" >&5 +-$as_echo_n "checking if libpthread is linked... " >&6; } ++ { echo "$as_me:$LINENO: checking if libpthread is linked" >&5 ++echo $ECHO_N "checking if libpthread is linked... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -80412,41 +76469,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + +- { $as_echo "$as_me:$LINENO: WARNING: using libpthreads - this may degrade performance" >&5 +-$as_echo "$as_me: WARNING: using libpthreads - this may degrade performance" >&2;} ++ { echo "$as_me:$LINENO: WARNING: using libpthreads - this may degrade performance" >&5 ++echo "$as_me: WARNING: using libpthreads - this may degrade performance" >&2;} + + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +@@ -80454,14 +76507,14 @@ + + + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + case "$ac_status" in + 1|11|101|111) rt_signal_lease_ok=no ;; + esac +@@ -80474,8 +76527,8 @@ + + # no RT_SIGNAL bug, we are golden + +- { $as_echo "$as_me:$LINENO: checking if libpthread is linked" >&5 +-$as_echo_n "checking if libpthread is linked... " >&6; } ++ { echo "$as_me:$LINENO: checking if libpthread is linked" >&5 ++echo $ECHO_N "checking if libpthread is linked... $ECHO_C" >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -80497,41 +76550,37 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && { +- test "$cross_compiling" = yes || +- $as_test_x conftest$ac_exeext +- }; then ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + +- { $as_echo "$as_me:$LINENO: WARNING: using libpthreads - this may degrade performance" >&5 +-$as_echo "$as_me: WARNING: using libpthreads - this may degrade performance" >&2;} ++ { echo "$as_me:$LINENO: WARNING: using libpthreads - this may degrade performance" >&5 ++echo "$as_me: WARNING: using libpthreads - this may degrade performance" >&2;} + + + else +- $as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; } ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } + + + fi + +-rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + +@@ -80539,7 +76588,6 @@ + + + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + +@@ -80657,37 +76705,37 @@ + ################################################# + # Display summary of libraries detected + +-{ $as_echo "$as_me:$LINENO: result: Using libraries:" >&5 +-$as_echo "Using libraries:" >&6; } +-{ $as_echo "$as_me:$LINENO: result: LIBS = $LIBS" >&5 +-$as_echo " LIBS = $LIBS" >&6; } ++{ echo "$as_me:$LINENO: result: Using libraries:" >&5 ++echo "${ECHO_T}Using libraries:" >&6; } ++{ echo "$as_me:$LINENO: result: LIBS = $LIBS" >&5 ++echo "${ECHO_T} LIBS = $LIBS" >&6; } + if test x"$with_ads_support" != x"no"; then +- { $as_echo "$as_me:$LINENO: result: KRB5_LIBS = $KRB5_LIBS" >&5 +-$as_echo " KRB5_LIBS = $KRB5_LIBS" >&6; } ++ { echo "$as_me:$LINENO: result: KRB5_LIBS = $KRB5_LIBS" >&5 ++echo "${ECHO_T} KRB5_LIBS = $KRB5_LIBS" >&6; } + fi + if test x"$with_ldap_support" != x"no"; then +- { $as_echo "$as_me:$LINENO: result: LDAP_LIBS = $LDAP_LIBS" >&5 +-$as_echo " LDAP_LIBS = $LDAP_LIBS" >&6; } ++ { echo "$as_me:$LINENO: result: LDAP_LIBS = $LDAP_LIBS" >&5 ++echo "${ECHO_T} LDAP_LIBS = $LDAP_LIBS" >&6; } + fi + if test x"$with_dnsupdate_support" != x"no"; then +- { $as_echo "$as_me:$LINENO: result: UUID_LIBS = $UUID_LIBS" >&5 +-$as_echo " UUID_LIBS = $UUID_LIBS" >&6; } ++ { echo "$as_me:$LINENO: result: UUID_LIBS = $UUID_LIBS" >&5 ++echo "${ECHO_T} UUID_LIBS = $UUID_LIBS" >&6; } + fi + if test x"$have_dnssd_support" != x"no"; then +- { $as_echo "$as_me:$LINENO: result: DNSSD_LIBS = $DNSSD_LIBS" >&5 +-$as_echo " DNSSD_LIBS = $DNSSD_LIBS" >&6; } ++ { echo "$as_me:$LINENO: result: DNSSD_LIBS = $DNSSD_LIBS" >&5 ++echo "${ECHO_T} DNSSD_LIBS = $DNSSD_LIBS" >&6; } + fi +-{ $as_echo "$as_me:$LINENO: result: AUTH_LIBS = $AUTH_LIBS" >&5 +-$as_echo " AUTH_LIBS = $AUTH_LIBS" >&6; } ++{ echo "$as_me:$LINENO: result: AUTH_LIBS = $AUTH_LIBS" >&5 ++echo "${ECHO_T} AUTH_LIBS = $AUTH_LIBS" >&6; } + + ################################################# + # final configure stuff + +-{ $as_echo "$as_me:$LINENO: checking configure summary" >&5 +-$as_echo_n "checking configure summary... " >&6; } ++{ echo "$as_me:$LINENO: checking configure summary" >&5 ++echo $ECHO_N "checking configure summary... $ECHO_C" >&6; } + if test "$cross_compiling" = yes; then +- { $as_echo "$as_me:$LINENO: WARNING: cannot run when cross-compiling" >&5 +-$as_echo "$as_me: WARNING: cannot run when cross-compiling" >&2;} ++ { echo "$as_me:$LINENO: WARNING: cannot run when cross-compiling" >&5 ++echo "$as_me: WARNING: cannot run when cross-compiling" >&2;} + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -80703,35 +76751,32 @@ + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; } ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } + else +- $as_echo "$as_me: program exited with status $ac_status" >&5 +-$as_echo "$as_me: failed program was:" >&5 ++ echo "$as_me: program exited with status $ac_status" >&5 ++echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) +-{ { $as_echo "$as_me:$LINENO: error: summary failure. Aborting config" >&5 +-$as_echo "$as_me: error: summary failure. Aborting config" >&2;} ++{ { echo "$as_me:$LINENO: error: summary failure. Aborting config" >&5 ++echo "$as_me: error: summary failure. Aborting config" >&2;} + { (exit 1); exit 1; }; }; exit 1; + fi +-rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + +@@ -80776,12 +76821,11 @@ + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( +- *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5 +-$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; ++ *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 ++echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( +- BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) $as_unset $ac_var ;; + esac ;; + esac +@@ -80814,12 +76858,12 @@ + if diff "$cache_file" confcache >/dev/null 2>&1; then :; else + if test -w "$cache_file"; then + test "x$cache_file" != "x/dev/null" && +- { $as_echo "$as_me:$LINENO: updating cache $cache_file" >&5 +-$as_echo "$as_me: updating cache $cache_file" >&6;} ++ { echo "$as_me:$LINENO: updating cache $cache_file" >&5 ++echo "$as_me: updating cache $cache_file" >&6;} + cat confcache >$cache_file + else +- { $as_echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 +-$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} ++ { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 ++echo "$as_me: not updating unwritable cache $cache_file" >&6;} + fi + fi + rm -f confcache +@@ -80835,7 +76879,7 @@ + for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue + # 1. Remove the extension, and $U if already installed. + ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' +- ac_i=`$as_echo "$ac_i" | sed "$ac_script"` ++ ac_i=`echo "$ac_i" | sed "$ac_script"` + # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR + # will be set to the directory where LIBOBJS objects are built. + ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" +@@ -80847,15 +76891,12 @@ + + + +- +- + : ${CONFIG_STATUS=./config.status} +-ac_write_fail=0 + ac_clean_files_save=$ac_clean_files + ac_clean_files="$ac_clean_files $CONFIG_STATUS" +-{ $as_echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 +-$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} +-cat >$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ++{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 ++echo "$as_me: creating $CONFIG_STATUS" >&6;} ++cat >$CONFIG_STATUS <<_ACEOF + #! $SHELL + # Generated by $as_me. + # Run this file to recreate the current configuration. +@@ -80868,7 +76909,7 @@ + SHELL=\${CONFIG_SHELL-$SHELL} + _ACEOF + +-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ++cat >>$CONFIG_STATUS <<\_ACEOF + ## --------------------- ## + ## M4sh Initialization. ## + ## --------------------- ## +@@ -80878,7 +76919,7 @@ + if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: +- # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which ++ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +@@ -80900,45 +76941,17 @@ + as_cr_digits='0123456789' + as_cr_alnum=$as_cr_Letters$as_cr_digits + +-as_nl=' +-' +-export as_nl +-# Printing a long string crashes Solaris 7 /usr/bin/printf. +-as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +-if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then +- as_echo='printf %s\n' +- as_echo_n='printf %s' +-else +- if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then +- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' +- as_echo_n='/usr/ucb/echo -n' +- else +- as_echo_body='eval expr "X$1" : "X\\(.*\\)"' +- as_echo_n_body='eval +- arg=$1; +- case $arg in +- *"$as_nl"*) +- expr "X$arg" : "X\\(.*\\)$as_nl"; +- arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; +- esac; +- expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" +- ' +- export as_echo_n_body +- as_echo_n='sh -c $as_echo_n_body as_echo' +- fi +- export as_echo_body +- as_echo='sh -c $as_echo_body as_echo' +-fi +- + # The user is always right. + if test "${PATH_SEPARATOR+set}" != set; then +- PATH_SEPARATOR=: +- (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { +- (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || +- PATH_SEPARATOR=';' +- } ++ echo "#! /bin/sh" >conf$$.sh ++ echo "exit 0" >>conf$$.sh ++ chmod +x conf$$.sh ++ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then ++ PATH_SEPARATOR=';' ++ else ++ PATH_SEPARATOR=: ++ fi ++ rm -f conf$$.sh + fi + + # Support unset when possible. +@@ -80954,6 +76967,8 @@ + # there to prevent editors from complaining about space-tab. + # (If _AS_PATH_WALK were called with IFS unset, it would disable word + # splitting by setting IFS to empty value.) ++as_nl=' ++' + IFS=" "" $as_nl" + + # Find who we are. Look in the path if we contain no directory separator. +@@ -80976,7 +76991,7 @@ + as_myself=$0 + fi + if test ! -f "$as_myself"; then +- $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 ++ echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + { (exit 1); exit 1; } + fi + +@@ -80989,10 +77004,17 @@ + PS4='+ ' + + # NLS nuisances. +-LC_ALL=C +-export LC_ALL +-LANGUAGE=C +-export LANGUAGE ++for as_var in \ ++ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ ++ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ ++ LC_TELEPHONE LC_TIME ++do ++ if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then ++ eval $as_var=C; export $as_var ++ else ++ ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++ fi ++done + + # Required to use basename. + if expr a : '\(a\)' >/dev/null 2>&1 && +@@ -81014,7 +77036,7 @@ + $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +-$as_echo X/"$0" | ++echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q +@@ -81065,7 +77087,7 @@ + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || +- { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 ++ { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 + { (exit 1); exit 1; }; } + + # Don't try to exec as it changes $[0], causing all sort of problems +@@ -81093,6 +77115,7 @@ + *) + ECHO_N='-n';; + esac ++ + if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +@@ -81105,22 +77128,19 @@ + rm -f conf$$.dir/conf$$.file + else + rm -f conf$$.dir +- mkdir conf$$.dir 2>/dev/null ++ mkdir conf$$.dir + fi +-if (echo >conf$$.file) 2>/dev/null; then +- if ln -s conf$$.file conf$$ 2>/dev/null; then +- as_ln_s='ln -s' +- # ... but there are two gotchas: +- # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. +- # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. +- # In both cases, we have to default to `cp -p'. +- ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || +- as_ln_s='cp -p' +- elif ln conf$$.file conf$$ 2>/dev/null; then +- as_ln_s=ln +- else ++echo >conf$$.file ++if ln -s conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s='ln -s' ++ # ... but there are two gotchas: ++ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. ++ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. ++ # In both cases, we have to default to `cp -p'. ++ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' +- fi ++elif ln conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s=ln + else + as_ln_s='cp -p' + fi +@@ -81145,10 +77165,10 @@ + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then +- test -d "$1/."; ++ test -d "$1/."; + else + case $1 in +- -*)set "./$1";; ++ -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in + ???[sx]*):;;*)false;;esac;fi +@@ -81171,7 +77191,7 @@ + # values after options handling. + ac_log=" + This file was extended by Samba $as_me 3, which was +-generated by GNU Autoconf 2.63. Invocation command line was ++generated by GNU Autoconf 2.61. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS +@@ -81184,16 +77204,7 @@ + + _ACEOF + +-case $ac_config_files in *" +-"*) set x $ac_config_files; shift; ac_config_files=$*;; +-esac +- +-case $ac_config_headers in *" +-"*) set x $ac_config_headers; shift; ac_config_headers=$*;; +-esac +- +- +-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ++cat >>$CONFIG_STATUS <<_ACEOF + # Files that config.status was made for. + config_files="$ac_config_files" + config_headers="$ac_config_headers" +@@ -81201,23 +77212,22 @@ + + _ACEOF + +-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ++cat >>$CONFIG_STATUS <<\_ACEOF + ac_cs_usage="\ + \`$as_me' instantiates files from templates according to the + current configuration. + +-Usage: $0 [OPTION]... [FILE]... ++Usage: $0 [OPTIONS] [FILE]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit +- -q, --quiet, --silent +- do not print progress messages ++ -q, --quiet do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions +- --file=FILE[:TEMPLATE] +- instantiate the configuration file FILE +- --header=FILE[:TEMPLATE] +- instantiate the configuration header FILE ++ --file=FILE[:TEMPLATE] ++ instantiate the configuration file FILE ++ --header=FILE[:TEMPLATE] ++ instantiate the configuration header FILE + + Configuration files: + $config_files +@@ -81231,25 +77241,24 @@ + Report bugs to ." + + _ACEOF +-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ++cat >>$CONFIG_STATUS <<_ACEOF + ac_cs_version="\\ + Samba config.status 3 +-configured by $0, generated by GNU Autoconf 2.63, +- with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" ++configured by $0, generated by GNU Autoconf 2.61, ++ with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" + +-Copyright (C) 2008 Free Software Foundation, Inc. ++Copyright (C) 2006 Free Software Foundation, Inc. + This config.status script is free software; the Free Software Foundation + gives unlimited permission to copy, distribute and modify it." + + ac_pwd='$ac_pwd' + srcdir='$srcdir' + INSTALL='$INSTALL' +-AWK='$AWK' +-test -n "\$AWK" || AWK=awk + _ACEOF + +-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +-# The default lists apply if the user does not specify any file. ++cat >>$CONFIG_STATUS <<\_ACEOF ++# If no file are specified by the user, then we need to provide default ++# value. By we need to know if files were specified by the user. + ac_need_defaults=: + while test $# != 0 + do +@@ -81271,36 +77280,30 @@ + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) +- $as_echo "$ac_cs_version"; exit ;; ++ echo "$ac_cs_version"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift +- case $ac_optarg in +- *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; +- esac +- CONFIG_FILES="$CONFIG_FILES '$ac_optarg'" ++ CONFIG_FILES="$CONFIG_FILES $ac_optarg" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift +- case $ac_optarg in +- *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; +- esac +- CONFIG_HEADERS="$CONFIG_HEADERS '$ac_optarg'" ++ CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header +- { $as_echo "$as_me: error: ambiguous option: $1 ++ { echo "$as_me: error: ambiguous option: $1 + Try \`$0 --help' for more information." >&2 + { (exit 1); exit 1; }; };; + --help | --hel | -h ) +- $as_echo "$ac_cs_usage"; exit ;; ++ echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. +- -*) { $as_echo "$as_me: error: unrecognized option: $1 ++ -*) { echo "$as_me: error: unrecognized option: $1 + Try \`$0 --help' for more information." >&2 + { (exit 1); exit 1; }; } ;; + +@@ -81319,29 +77322,27 @@ + fi + + _ACEOF +-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ++cat >>$CONFIG_STATUS <<_ACEOF + if \$ac_cs_recheck; then +- set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion +- shift +- \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 +- CONFIG_SHELL='$SHELL' ++ echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 ++ CONFIG_SHELL=$SHELL + export CONFIG_SHELL +- exec "\$@" ++ exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion + fi + + _ACEOF +-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ++cat >>$CONFIG_STATUS <<\_ACEOF + exec 5>>config.log + { + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX + ## Running $as_me. ## + _ASBOX +- $as_echo "$ac_log" ++ echo "$ac_log" + } >&5 + + _ACEOF +-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ++cat >>$CONFIG_STATUS <<_ACEOF + # + # INIT-COMMANDS + # +@@ -81352,7 +77353,7 @@ + + _ACEOF + +-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ++cat >>$CONFIG_STATUS <<\_ACEOF + + # Handling of arguments. + for ac_config_target in $ac_config_targets +@@ -81377,8 +77378,8 @@ + "pkgconfig/smbsharemodes.pc") CONFIG_FILES="$CONFIG_FILES pkgconfig/smbsharemodes.pc" ;; + "../examples/libsmbclient/Makefile.internal") CONFIG_FILES="$CONFIG_FILES ../examples/libsmbclient/Makefile.internal" ;; + +- *) { { $as_echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 +-$as_echo "$as_me: error: invalid argument: $ac_config_target" >&2;} ++ *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 ++echo "$as_me: error: invalid argument: $ac_config_target" >&2;} + { (exit 1); exit 1; }; };; + esac + done +@@ -81419,144 +77420,405 @@ + (umask 077 && mkdir "$tmp") + } || + { +- $as_echo "$as_me: cannot create a temporary directory in ." >&2 ++ echo "$me: cannot create a temporary directory in ." >&2 + { (exit 1); exit 1; } + } + +-# Set up the scripts for CONFIG_FILES section. +-# No need to generate them if there are no CONFIG_FILES. +-# This happens for instance with `./config.status config.h'. ++# ++# Set up the sed scripts for CONFIG_FILES section. ++# ++ ++# No need to generate the scripts if there are no CONFIG_FILES. ++# This happens for instance when ./config.status config.h + if test -n "$CONFIG_FILES"; then + ++_ACEOF ++ + +-ac_cr=' ' +-ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` +-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then +- ac_cs_awk_cr='\\r' +-else +- ac_cs_awk_cr=$ac_cr ++ ++ac_delim='%!_!# ' ++for ac_last_try in false false false false false :; do ++ cat >conf$$subs.sed <<_ACEOF ++SHELL!$SHELL$ac_delim ++PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim ++PACKAGE_NAME!$PACKAGE_NAME$ac_delim ++PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim ++PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim ++PACKAGE_STRING!$PACKAGE_STRING$ac_delim ++PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim ++exec_prefix!$exec_prefix$ac_delim ++prefix!$prefix$ac_delim ++program_transform_name!$program_transform_name$ac_delim ++bindir!$bindir$ac_delim ++sbindir!$sbindir$ac_delim ++libexecdir!$libexecdir$ac_delim ++datarootdir!$datarootdir$ac_delim ++datadir!$datadir$ac_delim ++sysconfdir!$sysconfdir$ac_delim ++sharedstatedir!$sharedstatedir$ac_delim ++localstatedir!$localstatedir$ac_delim ++includedir!$includedir$ac_delim ++oldincludedir!$oldincludedir$ac_delim ++docdir!$docdir$ac_delim ++infodir!$infodir$ac_delim ++htmldir!$htmldir$ac_delim ++dvidir!$dvidir$ac_delim ++pdfdir!$pdfdir$ac_delim ++psdir!$psdir$ac_delim ++libdir!$libdir$ac_delim ++localedir!$localedir$ac_delim ++mandir!$mandir$ac_delim ++DEFS!$DEFS$ac_delim ++ECHO_C!$ECHO_C$ac_delim ++ECHO_N!$ECHO_N$ac_delim ++ECHO_T!$ECHO_T$ac_delim ++LIBS!$LIBS$ac_delim ++build_alias!$build_alias$ac_delim ++host_alias!$host_alias$ac_delim ++target_alias!$target_alias$ac_delim ++builddir!$builddir$ac_delim ++libreplacedir!$libreplacedir$ac_delim ++LIBREPLACEOBJ!$LIBREPLACEOBJ$ac_delim ++build!$build$ac_delim ++build_cpu!$build_cpu$ac_delim ++build_vendor!$build_vendor$ac_delim ++build_os!$build_os$ac_delim ++host!$host$ac_delim ++host_cpu!$host_cpu$ac_delim ++host_vendor!$host_vendor$ac_delim ++host_os!$host_os$ac_delim ++target!$target$ac_delim ++target_cpu!$target_cpu$ac_delim ++target_vendor!$target_vendor$ac_delim ++target_os!$target_os$ac_delim ++configdir!$configdir$ac_delim ++lockdir!$lockdir$ac_delim ++piddir!$piddir$ac_delim ++logfilebase!$logfilebase$ac_delim ++ctdbdir!$ctdbdir$ac_delim ++privatedir!$privatedir$ac_delim ++swatdir!$swatdir$ac_delim ++codepagedir!$codepagedir$ac_delim ++statedir!$statedir$ac_delim ++cachedir!$cachedir$ac_delim ++rootsbindir!$rootsbindir$ac_delim ++pammodulesdir!$pammodulesdir$ac_delim ++modulesdir!$modulesdir$ac_delim ++selftest_prefix!$selftest_prefix$ac_delim ++smbtorture4_path!$smbtorture4_path$ac_delim ++CC!$CC$ac_delim ++CFLAGS!$CFLAGS$ac_delim ++LDFLAGS!$LDFLAGS$ac_delim ++CPPFLAGS!$CPPFLAGS$ac_delim ++ac_ct_CC!$ac_ct_CC$ac_delim ++EXEEXT!$EXEEXT$ac_delim ++OBJEXT!$OBJEXT$ac_delim ++CPP!$CPP$ac_delim ++GREP!$GREP$ac_delim ++EGREP!$EGREP$ac_delim ++INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim ++INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim ++INSTALL_DATA!$INSTALL_DATA$ac_delim ++libreplace_cv_immediate_structures!$libreplace_cv_immediate_structures$ac_delim ++tallocdir!$tallocdir$ac_delim ++TALLOC_OBJ!$TALLOC_OBJ$ac_delim ++TALLOC_CFLAGS!$TALLOC_CFLAGS$ac_delim ++TALLOC_LIBS!$TALLOC_LIBS$ac_delim ++TALLOC_OBJS!$TALLOC_OBJS$ac_delim ++tdbdir!$tdbdir$ac_delim ++TDB_CFLAGS!$TDB_CFLAGS$ac_delim ++TDB_OBJ!$TDB_OBJ$ac_delim ++TDB_OBJS!$TDB_OBJS$ac_delim ++SAMBA_CPPFLAGS!$SAMBA_CPPFLAGS$ac_delim ++LDSHFLAGS!$LDSHFLAGS$ac_delim ++SONAMEFLAG!$SONAMEFLAG$ac_delim ++SHLD!$SHLD$ac_delim ++MODULE_EXPORTS!$MODULE_EXPORTS$ac_delim ++DSO_EXPORTS!$DSO_EXPORTS$ac_delim ++HOST_OS!$HOST_OS$ac_delim ++_ACEOF ++ ++ if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then ++ break ++ elif $ac_last_try; then ++ { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 ++echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} ++ { (exit 1); exit 1; }; } ++ else ++ ac_delim="$ac_delim!$ac_delim _$ac_delim!! " ++ fi ++done ++ ++ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` ++if test -n "$ac_eof"; then ++ ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` ++ ac_eof=`expr $ac_eof + 1` + fi + +-echo 'BEGIN {' >"$tmp/subs1.awk" && ++cat >>$CONFIG_STATUS <<_ACEOF ++cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof ++/@[a-zA-Z_][a-zA-Z_0-9]*@/!b ++_ACEOF ++sed ' ++s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g ++s/^/s,@/; s/!/@,|#_!!_#|/ ++:n ++t n ++s/'"$ac_delim"'$/,g/; t ++s/$/\\/; p ++N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n ++' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF ++CEOF$ac_eof + _ACEOF + + +-{ +- echo "cat >conf$$subs.awk <<_ACEOF" && +- echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && +- echo "_ACEOF" +-} >conf$$subs.sh || +- { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +-$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} +- { (exit 1); exit 1; }; } +-ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` + ac_delim='%!_!# ' + for ac_last_try in false false false false false :; do +- . ./conf$$subs.sh || +- { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +-$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} +- { (exit 1); exit 1; }; } ++ cat >conf$$subs.sed <<_ACEOF ++PICFLAG!$PICFLAG$ac_delim ++PIE_CFLAGS!$PIE_CFLAGS$ac_delim ++PIE_LDFLAGS!$PIE_LDFLAGS$ac_delim ++RELRO_LDFLAGS!$RELRO_LDFLAGS$ac_delim ++SHLIBEXT!$SHLIBEXT$ac_delim ++INSTALLLIBCMD_SH!$INSTALLLIBCMD_SH$ac_delim ++INSTALLLIBCMD_A!$INSTALLLIBCMD_A$ac_delim ++UNINSTALLLIBCMD_SH!$UNINSTALLLIBCMD_SH$ac_delim ++UNINSTALLLIBCMD_A!$UNINSTALLLIBCMD_A$ac_delim ++INSTALL_LIBWBCLIENT!$INSTALL_LIBWBCLIENT$ac_delim ++UNINSTALL_LIBWBCLIENT!$UNINSTALL_LIBWBCLIENT$ac_delim ++LIBWBCLIENT_SHARED_TARGET!$LIBWBCLIENT_SHARED_TARGET$ac_delim ++LIBWBCLIENT_SHARED!$LIBWBCLIENT_SHARED$ac_delim ++LIBWBCLIENT_STATIC_TARGET!$LIBWBCLIENT_STATIC_TARGET$ac_delim ++LIBWBCLIENT_STATIC!$LIBWBCLIENT_STATIC$ac_delim ++LIBWBCLIENT_SOVER!$LIBWBCLIENT_SOVER$ac_delim ++LIBWBCLIENT!$LIBWBCLIENT$ac_delim ++WINBIND_LIBS!$WINBIND_LIBS$ac_delim ++LIBSAMBAUTIL_SHARED!$LIBSAMBAUTIL_SHARED$ac_delim ++PRINT_LIBS!$PRINT_LIBS$ac_delim ++AUTH_LIBS!$AUTH_LIBS$ac_delim ++ACL_LIBS!$ACL_LIBS$ac_delim ++PASSDB_LIBS!$PASSDB_LIBS$ac_delim ++IDMAP_LIBS!$IDMAP_LIBS$ac_delim ++KRB5_LIBS!$KRB5_LIBS$ac_delim ++UUID_LIBS!$UUID_LIBS$ac_delim ++LDAP_LIBS!$LDAP_LIBS$ac_delim ++GPEXT_LIBS!$GPEXT_LIBS$ac_delim ++PAM_MODULES!$PAM_MODULES$ac_delim ++INSTALL_PAM_MODULES!$INSTALL_PAM_MODULES$ac_delim ++UNINSTALL_PAM_MODULES!$UNINSTALL_PAM_MODULES$ac_delim ++NSS_MODULES!$NSS_MODULES$ac_delim ++EXTRA_BIN_PROGS!$EXTRA_BIN_PROGS$ac_delim ++CIFSMOUNT_PROGS!$CIFSMOUNT_PROGS$ac_delim ++INSTALL_CIFSMOUNT!$INSTALL_CIFSMOUNT$ac_delim ++UNINSTALL_CIFSMOUNT!$UNINSTALL_CIFSMOUNT$ac_delim ++CIFSUPCALL_PROGS!$CIFSUPCALL_PROGS$ac_delim ++INSTALL_CIFSUPCALL!$INSTALL_CIFSUPCALL$ac_delim ++UNINSTALL_CIFSUPCALL!$UNINSTALL_CIFSUPCALL$ac_delim ++EXTRA_SBIN_PROGS!$EXTRA_SBIN_PROGS$ac_delim ++EXTRA_ALL_TARGETS!$EXTRA_ALL_TARGETS$ac_delim ++CONFIG_LIBS!$CONFIG_LIBS$ac_delim ++NSCD_LIBS!$NSCD_LIBS$ac_delim ++DEFAULT_TEST_OPTIONS!$DEFAULT_TEST_OPTIONS$ac_delim ++HAVE_SOCKET_WRAPPER!$HAVE_SOCKET_WRAPPER$ac_delim ++SOCKET_WRAPPER_OBJS!$SOCKET_WRAPPER_OBJS$ac_delim ++HAVE_NSS_WRAPPER!$HAVE_NSS_WRAPPER$ac_delim ++NSS_WRAPPER_OBJS!$NSS_WRAPPER_OBJS$ac_delim ++SWAT_SBIN_TARGETS!$SWAT_SBIN_TARGETS$ac_delim ++SWAT_INSTALL_TARGETS!$SWAT_INSTALL_TARGETS$ac_delim ++AWK!$AWK$ac_delim ++PERL!$PERL$ac_delim ++AR!$AR$ac_delim ++BROKEN_CC!$BROKEN_CC$ac_delim ++PIDL_ARGS!$PIDL_ARGS$ac_delim ++DYNEXP!$DYNEXP$ac_delim ++LIBOBJS!$LIBOBJS$ac_delim ++LIBDL!$LIBDL$ac_delim ++LIBREPLACE_OBJS!$LIBREPLACE_OBJS$ac_delim ++CUPS_CONFIG!$CUPS_CONFIG$ac_delim ++TERMLIBS!$TERMLIBS$ac_delim ++TERMLDFLAGS!$TERMLDFLAGS$ac_delim ++LIBUNWIND_PTRACE!$LIBUNWIND_PTRACE$ac_delim ++SYMSEXT!$SYMSEXT$ac_delim ++ROFF!$ROFF$ac_delim ++LIB_PATH_VAR!$LIB_PATH_VAR$ac_delim ++SMB_FAM_LIBS!$SMB_FAM_LIBS$ac_delim ++FAKE_KASERVER_OBJ!$FAKE_KASERVER_OBJ$ac_delim ++SMBLDAP!$SMBLDAP$ac_delim ++SMBLDAPUTIL!$SMBLDAPUTIL$ac_delim ++LDBLDAP!$LDBLDAP$ac_delim ++KRB5CONFIG!$KRB5CONFIG$ac_delim ++USESHARED!$USESHARED$ac_delim ++LIBTALLOC_SHARED_TARGET!$LIBTALLOC_SHARED_TARGET$ac_delim ++LIBTALLOC_STATIC_TARGET!$LIBTALLOC_STATIC_TARGET$ac_delim ++LIBTALLOC_SHARED!$LIBTALLOC_SHARED$ac_delim ++LIBTALLOC_STATIC!$LIBTALLOC_STATIC$ac_delim ++LIBTALLOC_LIBS!$LIBTALLOC_LIBS$ac_delim ++LIBTALLOC_TARGET!$LIBTALLOC_TARGET$ac_delim ++INSTALL_LIBTALLOC!$INSTALL_LIBTALLOC$ac_delim ++UNINSTALL_LIBTALLOC!$UNINSTALL_LIBTALLOC$ac_delim ++LIBTALLOC_SOVER!$LIBTALLOC_SOVER$ac_delim ++LIBTDB_SHARED_TARGET!$LIBTDB_SHARED_TARGET$ac_delim ++LIBTDB_STATIC_TARGET!$LIBTDB_STATIC_TARGET$ac_delim ++LIBTDB_SHARED!$LIBTDB_SHARED$ac_delim ++LIBTDB_STATIC!$LIBTDB_STATIC$ac_delim ++LIBTDB_LIBS!$LIBTDB_LIBS$ac_delim ++LIBTDB_TARGET!$LIBTDB_TARGET$ac_delim ++INSTALL_LIBTDB!$INSTALL_LIBTDB$ac_delim ++UNINSTALL_LIBTDB!$UNINSTALL_LIBTDB$ac_delim ++LIBTDB_SOVER!$LIBTDB_SOVER$ac_delim ++LIBNETAPI_SHARED_TARGET!$LIBNETAPI_SHARED_TARGET$ac_delim ++LIBNETAPI_STATIC_TARGET!$LIBNETAPI_STATIC_TARGET$ac_delim ++LIBNETAPI_SHARED!$LIBNETAPI_SHARED$ac_delim ++LIBNETAPI_STATIC!$LIBNETAPI_STATIC$ac_delim ++LIBNETAPI_LIBS!$LIBNETAPI_LIBS$ac_delim ++LIBNETAPI_TARGET!$LIBNETAPI_TARGET$ac_delim ++_ACEOF + +- ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` +- if test $ac_delim_n = $ac_delim_num; then ++ if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then + break + elif $ac_last_try; then +- { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +-$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} ++ { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 ++echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} + { (exit 1); exit 1; }; } + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi + done +-rm -f conf$$subs.sh + +-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +-cat >>"\$tmp/subs1.awk" <<\\_ACAWK && +-_ACEOF +-sed -n ' +-h +-s/^/S["/; s/!.*/"]=/ +-p +-g +-s/^[^!]*!// +-:repl +-t repl +-s/'"$ac_delim"'$// +-t delim +-:nl +-h +-s/\(.\{148\}\).*/\1/ +-t more1 +-s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ +-p +-n +-b repl +-:more1 +-s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +-p +-g +-s/.\{148\}// +-t nl +-:delim +-h +-s/\(.\{148\}\).*/\1/ +-t more2 +-s/["\\]/\\&/g; s/^/"/; s/$/"/ +-p +-b +-:more2 +-s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +-p +-g +-s/.\{148\}// +-t delim +-' >$CONFIG_STATUS || ac_write_fail=1 +-rm -f conf$$subs.awk +-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +-_ACAWK +-cat >>"\$tmp/subs1.awk" <<_ACAWK && +- for (key in S) S_is_set[key] = 1 +- FS = "" ++ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` ++if test -n "$ac_eof"; then ++ ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` ++ ac_eof=`expr $ac_eof + 1` ++fi + +-} +-{ +- line = $ 0 +- nfields = split(line, field, "@") +- substed = 0 +- len = length(field[1]) +- for (i = 2; i < nfields; i++) { +- key = field[i] +- keylen = length(key) +- if (S_is_set[key]) { +- value = S[key] +- line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) +- len += length(value) + length(field[++i]) +- substed = 1 +- } else +- len += 1 + keylen +- } ++cat >>$CONFIG_STATUS <<_ACEOF ++cat >"\$tmp/subs-2.sed" <<\CEOF$ac_eof ++/@[a-zA-Z_][a-zA-Z_0-9]*@/!b ++_ACEOF ++sed ' ++s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g ++s/^/s,@/; s/!/@,|#_!!_#|/ ++:n ++t n ++s/'"$ac_delim"'$/,g/; t ++s/$/\\/; p ++N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n ++' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF ++CEOF$ac_eof ++_ACEOF + +- print line +-} + +-_ACAWK ++ac_delim='%!_!# ' ++for ac_last_try in false false false false false :; do ++ cat >conf$$subs.sed <<_ACEOF ++INSTALL_LIBNETAPI!$INSTALL_LIBNETAPI$ac_delim ++UNINSTALL_LIBNETAPI!$UNINSTALL_LIBNETAPI$ac_delim ++LIBNETAPI_SOVER!$LIBNETAPI_SOVER$ac_delim ++LIBSMBCLIENT_SHARED_TARGET!$LIBSMBCLIENT_SHARED_TARGET$ac_delim ++LIBSMBCLIENT_STATIC_TARGET!$LIBSMBCLIENT_STATIC_TARGET$ac_delim ++LIBSMBCLIENT_SHARED!$LIBSMBCLIENT_SHARED$ac_delim ++LIBSMBCLIENT_STATIC!$LIBSMBCLIENT_STATIC$ac_delim ++LIBSMBCLIENT_LIBS!$LIBSMBCLIENT_LIBS$ac_delim ++LIBSMBCLIENT_TARGET!$LIBSMBCLIENT_TARGET$ac_delim ++INSTALL_LIBSMBCLIENT!$INSTALL_LIBSMBCLIENT$ac_delim ++UNINSTALL_LIBSMBCLIENT!$UNINSTALL_LIBSMBCLIENT$ac_delim ++LIBSMBCLIENT_SOVER!$LIBSMBCLIENT_SOVER$ac_delim ++LIBSMBSHAREMODES_SHARED_TARGET!$LIBSMBSHAREMODES_SHARED_TARGET$ac_delim ++LIBSMBSHAREMODES_STATIC_TARGET!$LIBSMBSHAREMODES_STATIC_TARGET$ac_delim ++LIBSMBSHAREMODES_SHARED!$LIBSMBSHAREMODES_SHARED$ac_delim ++LIBSMBSHAREMODES_STATIC!$LIBSMBSHAREMODES_STATIC$ac_delim ++LIBSMBSHAREMODES_LIBS!$LIBSMBSHAREMODES_LIBS$ac_delim ++LIBSMBSHAREMODES_TARGET!$LIBSMBSHAREMODES_TARGET$ac_delim ++INSTALL_LIBSMBSHAREMODES!$INSTALL_LIBSMBSHAREMODES$ac_delim ++UNINSTALL_LIBSMBSHAREMODES!$UNINSTALL_LIBSMBSHAREMODES$ac_delim ++LIBSMBSHAREMODES_SOVER!$LIBSMBSHAREMODES_SOVER$ac_delim ++LIBADDNS_SHARED_TARGET!$LIBADDNS_SHARED_TARGET$ac_delim ++LIBADDNS_STATIC_TARGET!$LIBADDNS_STATIC_TARGET$ac_delim ++LIBADDNS_SHARED!$LIBADDNS_SHARED$ac_delim ++LIBADDNS_STATIC!$LIBADDNS_STATIC$ac_delim ++LIBADDNS_LIBS!$LIBADDNS_LIBS$ac_delim ++LIBADDNS_TARGET!$LIBADDNS_TARGET$ac_delim ++INSTALL_LIBADDNS!$INSTALL_LIBADDNS$ac_delim ++UNINSTALL_LIBADDNS!$UNINSTALL_LIBADDNS$ac_delim ++LIBADDNS_SOVER!$LIBADDNS_SOVER$ac_delim ++WINBIND_NSS_PTHREAD!$WINBIND_NSS_PTHREAD$ac_delim ++WINBIND_NSS!$WINBIND_NSS$ac_delim ++WINBIND_WINS_NSS!$WINBIND_WINS_NSS$ac_delim ++WINBIND_NSS_LDSHFLAGS!$WINBIND_NSS_LDSHFLAGS$ac_delim ++WINBIND_NSS_EXTRA_OBJS!$WINBIND_NSS_EXTRA_OBJS$ac_delim ++WINBIND_NSS_EXTRA_LIBS!$WINBIND_NSS_EXTRA_LIBS$ac_delim ++NSSSONAMEVERSIONSUFFIX!$NSSSONAMEVERSIONSUFFIX$ac_delim ++PAM_WINBIND_EXTRA_LIBS!$PAM_WINBIND_EXTRA_LIBS$ac_delim ++WINBIND_KRB5_LOCATOR!$WINBIND_KRB5_LOCATOR$ac_delim ++BUILD_POPT!$BUILD_POPT$ac_delim ++POPTLIBS!$POPTLIBS$ac_delim ++FLAGS1!$FLAGS1$ac_delim ++DNSSD_LIBS!$DNSSD_LIBS$ac_delim ++BUILD_INIPARSER!$BUILD_INIPARSER$ac_delim ++INIPARSERLIBS!$INIPARSERLIBS$ac_delim ++PDB_STATIC!$PDB_STATIC$ac_delim ++PDB_MODULES!$PDB_MODULES$ac_delim ++RPC_STATIC!$RPC_STATIC$ac_delim ++RPC_MODULES!$RPC_MODULES$ac_delim ++IDMAP_STATIC!$IDMAP_STATIC$ac_delim ++IDMAP_MODULES!$IDMAP_MODULES$ac_delim ++NSS_INFO_STATIC!$NSS_INFO_STATIC$ac_delim ++NSS_INFO_MODULES!$NSS_INFO_MODULES$ac_delim ++CHARSET_STATIC!$CHARSET_STATIC$ac_delim ++CHARSET_MODULES!$CHARSET_MODULES$ac_delim ++AUTH_STATIC!$AUTH_STATIC$ac_delim ++AUTH_MODULES!$AUTH_MODULES$ac_delim ++VFS_STATIC!$VFS_STATIC$ac_delim ++VFS_MODULES!$VFS_MODULES$ac_delim ++GPEXT_STATIC!$GPEXT_STATIC$ac_delim ++GPEXT_MODULES!$GPEXT_MODULES$ac_delim ++DEVELOPER_CFLAGS!$DEVELOPER_CFLAGS$ac_delim ++SMBD_LIBS!$SMBD_LIBS$ac_delim ++LTLIBOBJS!$LTLIBOBJS$ac_delim + _ACEOF +-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +-if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then +- sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" +-else +- cat +-fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ +- || { { $as_echo "$as_me:$LINENO: error: could not setup config files machinery" >&5 +-$as_echo "$as_me: error: could not setup config files machinery" >&2;} ++ ++ if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 64; then ++ break ++ elif $ac_last_try; then ++ { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 ++echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} + { (exit 1); exit 1; }; } ++ else ++ ac_delim="$ac_delim!$ac_delim _$ac_delim!! " ++ fi ++done ++ ++ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` ++if test -n "$ac_eof"; then ++ ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` ++ ac_eof=`expr $ac_eof + 1` ++fi ++ ++cat >>$CONFIG_STATUS <<_ACEOF ++cat >"\$tmp/subs-3.sed" <<\CEOF$ac_eof ++/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end ++_ACEOF ++sed ' ++s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g ++s/^/s,@/; s/!/@,|#_!!_#|/ ++:n ++t n ++s/'"$ac_delim"'$/,g/; t ++s/$/\\/; p ++N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n ++' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF ++:end ++s/|#_!!_#|//g ++CEOF$ac_eof + _ACEOF + ++ + # VPATH may cause trouble with some makes, so we remove $(srcdir), + # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and + # trailing colons and then remove the whole line if VPATH becomes empty +@@ -81572,133 +77834,19 @@ + }' + fi + +-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ++cat >>$CONFIG_STATUS <<\_ACEOF + fi # test -n "$CONFIG_FILES" + +-# Set up the scripts for CONFIG_HEADERS section. +-# No need to generate them if there are no CONFIG_HEADERS. +-# This happens for instance with `./config.status Makefile'. +-if test -n "$CONFIG_HEADERS"; then +-cat >"$tmp/defines.awk" <<\_ACAWK || +-BEGIN { +-_ACEOF +- +-# Transform confdefs.h into an awk script `defines.awk', embedded as +-# here-document in config.status, that substitutes the proper values into +-# config.h.in to produce config.h. +- +-# Create a delimiter string that does not exist in confdefs.h, to ease +-# handling of long lines. +-ac_delim='%!_!# ' +-for ac_last_try in false false :; do +- ac_t=`sed -n "/$ac_delim/p" confdefs.h` +- if test -z "$ac_t"; then +- break +- elif $ac_last_try; then +- { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_HEADERS" >&5 +-$as_echo "$as_me: error: could not make $CONFIG_HEADERS" >&2;} +- { (exit 1); exit 1; }; } +- else +- ac_delim="$ac_delim!$ac_delim _$ac_delim!! " +- fi +-done +- +-# For the awk script, D is an array of macro values keyed by name, +-# likewise P contains macro parameters if any. Preserve backslash +-# newline sequences. +- +-ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* +-sed -n ' +-s/.\{148\}/&'"$ac_delim"'/g +-t rset +-:rset +-s/^[ ]*#[ ]*define[ ][ ]*/ / +-t def +-d +-:def +-s/\\$// +-t bsnl +-s/["\\]/\\&/g +-s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +-D["\1"]=" \3"/p +-s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p +-d +-:bsnl +-s/["\\]/\\&/g +-s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +-D["\1"]=" \3\\\\\\n"\\/p +-t cont +-s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p +-t cont +-d +-:cont +-n +-s/.\{148\}/&'"$ac_delim"'/g +-t clear +-:clear +-s/\\$// +-t bsnlc +-s/["\\]/\\&/g; s/^/"/; s/$/"/p +-d +-:bsnlc +-s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p +-b cont +-' >$CONFIG_STATUS || ac_write_fail=1 +- +-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +- for (key in D) D_is_set[key] = 1 +- FS = "" +-} +-/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { +- line = \$ 0 +- split(line, arg, " ") +- if (arg[1] == "#") { +- defundef = arg[2] +- mac1 = arg[3] +- } else { +- defundef = substr(arg[1], 2) +- mac1 = arg[2] +- } +- split(mac1, mac2, "(") #) +- macro = mac2[1] +- prefix = substr(line, 1, index(line, defundef) - 1) +- if (D_is_set[macro]) { +- # Preserve the white space surrounding the "#". +- print prefix "define", macro P[macro] D[macro] +- next +- } else { +- # Replace #undef with comments. This is necessary, for example, +- # in the case of _POSIX_SOURCE, which is predefined and required +- # on some systems where configure will not decide to define it. +- if (defundef == "undef") { +- print "/*", prefix defundef, macro, "*/" +- next +- } +- } +-} +-{ print } +-_ACAWK +-_ACEOF +-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +- { { $as_echo "$as_me:$LINENO: error: could not setup config headers machinery" >&5 +-$as_echo "$as_me: error: could not setup config headers machinery" >&2;} +- { (exit 1); exit 1; }; } +-fi # test -n "$CONFIG_HEADERS" +- + +-eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" +-shift +-for ac_tag ++for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS + do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; +- :L* | :C*:*) { { $as_echo "$as_me:$LINENO: error: invalid tag $ac_tag" >&5 +-$as_echo "$as_me: error: invalid tag $ac_tag" >&2;} ++ :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 ++echo "$as_me: error: Invalid tag $ac_tag." >&2;} + { (exit 1); exit 1; }; };; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; +@@ -81727,38 +77875,26 @@ + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || +- { { $as_echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 +-$as_echo "$as_me: error: cannot find input file: $ac_f" >&2;} ++ { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 ++echo "$as_me: error: cannot find input file: $ac_f" >&2;} + { (exit 1); exit 1; }; };; + esac +- case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac +- ac_file_inputs="$ac_file_inputs '$ac_f'" ++ ac_file_inputs="$ac_file_inputs $ac_f" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ +- configure_input='Generated from '` +- $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' +- `' by configure.' ++ configure_input="Generated from "`IFS=: ++ echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" +- { $as_echo "$as_me:$LINENO: creating $ac_file" >&5 +-$as_echo "$as_me: creating $ac_file" >&6;} ++ { echo "$as_me:$LINENO: creating $ac_file" >&5 ++echo "$as_me: creating $ac_file" >&6;} + fi +- # Neutralize special characters interpreted by sed in replacement strings. +- case $configure_input in #( +- *\&* | *\|* | *\\* ) +- ac_sed_conf_input=`$as_echo "$configure_input" | +- sed 's/[\\\\&|]/\\\\&/g'`;; #( +- *) ac_sed_conf_input=$configure_input;; +- esac + + case $ac_tag in +- *:-:* | *:-) cat >"$tmp/stdin" \ +- || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 +-$as_echo "$as_me: error: could not create $ac_file" >&2;} +- { (exit 1); exit 1; }; } ;; ++ *:-:* | *:-) cat >"$tmp/stdin";; + esac + ;; + esac +@@ -81768,7 +77904,7 @@ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +-$as_echo X"$ac_file" | ++echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q +@@ -81794,7 +77930,7 @@ + as_dirs= + while :; do + case $as_dir in #( +- *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( ++ *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" +@@ -81803,7 +77939,7 @@ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +-$as_echo X"$as_dir" | ++echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q +@@ -81824,17 +77960,17 @@ + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" +- } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 +-$as_echo "$as_me: error: cannot create directory $as_dir" >&2;} ++ } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 ++echo "$as_me: error: cannot create directory $as_dir" >&2;} + { (exit 1); exit 1; }; }; } + ac_builddir=. + + case "$ac_dir" in + .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) +- ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` ++ ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` + # A ".." for each directory in $ac_dir_suffix. +- ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` ++ ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; +@@ -81874,13 +78010,12 @@ + esac + _ACEOF + +-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ++cat >>$CONFIG_STATUS <<\_ACEOF + # If the template does not know about datarootdir, expand it. + # FIXME: This hack should be removed a few years after 2.60. + ac_datarootdir_hack=; ac_datarootdir_seen= + +-ac_sed_dataroot=' +-/datarootdir/ { ++case `sed -n '/datarootdir/ { + p + q + } +@@ -81889,14 +78024,13 @@ + /@infodir@/p + /@localedir@/p + /@mandir@/p +-' +-case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in ++' $ac_file_inputs` in + *datarootdir*) ac_datarootdir_seen=yes;; + *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) +- { $as_echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +-$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} ++ { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 ++echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} + _ACEOF +-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ++cat >>$CONFIG_STATUS <<_ACEOF + ac_datarootdir_hack=' + s&@datadir@&$datadir&g + s&@docdir@&$docdir&g +@@ -81910,16 +78044,15 @@ + # Neutralize VPATH when `$srcdir' = `.'. + # Shell code in configure.ac might set extrasub. + # FIXME: do we really want to maintain this feature? +-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +-ac_sed_extra="$ac_vpsub ++cat >>$CONFIG_STATUS <<_ACEOF ++ sed "$ac_vpsub + $extrasub + _ACEOF +-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ++cat >>$CONFIG_STATUS <<\_ACEOF + :t + /@[a-zA-Z_][a-zA-Z_0-9]*@/!b +-s|@configure_input@|$ac_sed_conf_input|;t t ++s&@configure_input@&$configure_input&;t t + s&@top_builddir@&$ac_top_builddir_sub&;t t +-s&@top_build_prefix@&$ac_top_build_prefix&;t t + s&@srcdir@&$ac_srcdir&;t t + s&@abs_srcdir@&$ac_abs_srcdir&;t t + s&@top_srcdir@&$ac_top_srcdir&;t t +@@ -81929,62 +78062,123 @@ + s&@abs_top_builddir@&$ac_abs_top_builddir&;t t + s&@INSTALL@&$ac_INSTALL&;t t + $ac_datarootdir_hack +-" +-eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ +- || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 +-$as_echo "$as_me: error: could not create $ac_file" >&2;} +- { (exit 1); exit 1; }; } ++" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" | sed -f "$tmp/subs-3.sed" >$tmp/out + + test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && +- { $as_echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' ++ { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' + which seems to be undefined. Please make sure it is defined." >&5 +-$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' ++echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' + which seems to be undefined. Please make sure it is defined." >&2;} + + rm -f "$tmp/stdin" + case $ac_file in +- -) cat "$tmp/out" && rm -f "$tmp/out";; +- *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; +- esac \ +- || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 +-$as_echo "$as_me: error: could not create $ac_file" >&2;} +- { (exit 1); exit 1; }; } ++ -) cat "$tmp/out"; rm -f "$tmp/out";; ++ *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; ++ esac + ;; + :H) + # + # CONFIG_HEADER + # ++_ACEOF ++ ++# Transform confdefs.h into a sed script `conftest.defines', that ++# substitutes the proper values into config.h.in to produce config.h. ++rm -f conftest.defines conftest.tail ++# First, append a space to every undef/define line, to ease matching. ++echo 's/$/ /' >conftest.defines ++# Then, protect against being on the right side of a sed subst, or in ++# an unquoted here document, in config.status. If some macros were ++# called several times there might be several #defines for the same ++# symbol, which is useless. But do not sort them, since the last ++# AC_DEFINE must be honored. ++ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* ++# These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where ++# NAME is the cpp macro being defined, VALUE is the value it is being given. ++# PARAMS is the parameter list in the macro definition--in most cases, it's ++# just an empty string. ++ac_dA='s,^\\([ #]*\\)[^ ]*\\([ ]*' ++ac_dB='\\)[ (].*,\\1define\\2' ++ac_dC=' ' ++ac_dD=' ,' ++ ++uniq confdefs.h | ++ sed -n ' ++ t rset ++ :rset ++ s/^[ ]*#[ ]*define[ ][ ]*// ++ t ok ++ d ++ :ok ++ s/[\\&,]/\\&/g ++ s/^\('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p ++ s/^\('"$ac_word_re"'\)[ ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p ++ ' >>conftest.defines ++ ++# Remove the space that was appended to ease matching. ++# Then replace #undef with comments. This is necessary, for ++# example, in the case of _POSIX_SOURCE, which is predefined and required ++# on some systems where configure will not decide to define it. ++# (The regexp can be short, since the line contains either #define or #undef.) ++echo 's/ $// ++s,^[ #]*u.*,/* & */,' >>conftest.defines ++ ++# Break up conftest.defines: ++ac_max_sed_lines=50 ++ ++# First sed command is: sed -f defines.sed $ac_file_inputs >"$tmp/out1" ++# Second one is: sed -f defines.sed "$tmp/out1" >"$tmp/out2" ++# Third one will be: sed -f defines.sed "$tmp/out2" >"$tmp/out1" ++# et cetera. ++ac_in='$ac_file_inputs' ++ac_out='"$tmp/out1"' ++ac_nxt='"$tmp/out2"' ++ ++while : ++do ++ # Write a here document: ++ cat >>$CONFIG_STATUS <<_ACEOF ++ # First, check the format of the line: ++ cat >"\$tmp/defines.sed" <<\\CEOF ++/^[ ]*#[ ]*undef[ ][ ]*$ac_word_re[ ]*\$/b def ++/^[ ]*#[ ]*define[ ][ ]*$ac_word_re[( ]/b def ++b ++:def ++_ACEOF ++ sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS ++ echo 'CEOF ++ sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS ++ ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in ++ sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail ++ grep . conftest.tail >/dev/null || break ++ rm -f conftest.defines ++ mv conftest.tail conftest.defines ++done ++rm -f conftest.defines conftest.tail ++ ++echo "ac_result=$ac_in" >>$CONFIG_STATUS ++cat >>$CONFIG_STATUS <<\_ACEOF + if test x"$ac_file" != x-; then +- { +- $as_echo "/* $configure_input */" \ +- && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" +- } >"$tmp/config.h" \ +- || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 +-$as_echo "$as_me: error: could not create $ac_file" >&2;} +- { (exit 1); exit 1; }; } +- if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then +- { $as_echo "$as_me:$LINENO: $ac_file is unchanged" >&5 +-$as_echo "$as_me: $ac_file is unchanged" >&6;} ++ echo "/* $configure_input */" >"$tmp/config.h" ++ cat "$ac_result" >>"$tmp/config.h" ++ if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then ++ { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 ++echo "$as_me: $ac_file is unchanged" >&6;} + else +- rm -f "$ac_file" +- mv "$tmp/config.h" "$ac_file" \ +- || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 +-$as_echo "$as_me: error: could not create $ac_file" >&2;} +- { (exit 1); exit 1; }; } ++ rm -f $ac_file ++ mv "$tmp/config.h" $ac_file + fi + else +- $as_echo "/* $configure_input */" \ +- && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ +- || { { $as_echo "$as_me:$LINENO: error: could not create -" >&5 +-$as_echo "$as_me: error: could not create -" >&2;} +- { (exit 1); exit 1; }; } ++ echo "/* $configure_input */" ++ cat "$ac_result" + fi ++ rm -f "$tmp/out12" + ;; + +- :C) { $as_echo "$as_me:$LINENO: executing $ac_file commands" >&5 +-$as_echo "$as_me: executing $ac_file commands" >&6;} ++ :C) { echo "$as_me:$LINENO: executing $ac_file commands" >&5 ++echo "$as_me: executing $ac_file commands" >&6;} + ;; + esac + +@@ -82004,11 +78198,6 @@ + chmod +x $CONFIG_STATUS + ac_clean_files=$ac_clean_files_save + +-test $ac_write_fail = 0 || +- { { $as_echo "$as_me:$LINENO: error: write failure creating $CONFIG_STATUS" >&5 +-$as_echo "$as_me: error: write failure creating $CONFIG_STATUS" >&2;} +- { (exit 1); exit 1; }; } +- + + # configure is writing to config.log, and then calls config.status. + # config.status does its own redirection, appending to config.log. +@@ -82030,18 +78219,14 @@ + # would make configure fail if this is the last instruction. + $ac_cs_success || { (exit 1); exit 1; } + fi +-if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then +- { $as_echo "$as_me:$LINENO: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 +-$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} +-fi + + + ################################################# + # Print very concise instructions on building/use + if test "x$enable_dmalloc" = xyes + then +- { $as_echo "$as_me:$LINENO: result: Note: The dmalloc debug library will be included. To turn it on use" >&5 +-$as_echo "Note: The dmalloc debug library will be included. To turn it on use" >&6; } +- { $as_echo "$as_me:$LINENO: result: \$ eval \\`dmalloc samba\\`." >&5 +-$as_echo " \$ eval \\`dmalloc samba\\`." >&6; } ++ { echo "$as_me:$LINENO: result: Note: The dmalloc debug library will be included. To turn it on use" >&5 ++echo "${ECHO_T}Note: The dmalloc debug library will be included. To turn it on use" >&6; } ++ { echo "$as_me:$LINENO: result: \$ eval \\`dmalloc samba\\`." >&5 ++echo "${ECHO_T} \$ eval \\`dmalloc samba\\`." >&6; } + fi +Index: samba-3.3.0/source/include/config.h.in +=================================================================== +--- samba-3.3.0.orig/source/include/config.h.in ++++ samba-3.3.0/source/include/config.h.in +@@ -69,6 +69,9 @@ + /* Whether to use fully FHS-compatible paths */ + #undef FHS_COMPATIBLE + ++/* Whether to use fully FHS-compatible paths */ ++#undef FHS_COMPATIBLE ++ + /* Whether the host os is FreeBSD */ + #undef FREEBSD + --- samba-3.3.0.orig/debian/patches/smbclient-pager.patch +++ samba-3.3.0/debian/patches/smbclient-pager.patch @@ -0,0 +1,23 @@ +Goal: Use the pager alternative as pager is PAGER is undefined + +Fixes: #125603 + +Status wrt upstream: Debian specific + +Author: Steve Langasek + +Note: + +Index: samba-3.3.0rc2/source/include/local.h +=================================================================== +--- samba-3.3.0rc2.orig/source/include/local.h ++++ samba-3.3.0rc2/source/include/local.h +@@ -109,7 +109,7 @@ + /* the default pager to use for the client "more" command. Users can + override this with the PAGER environment variable */ + #ifndef PAGER +-#define PAGER "more" ++#define PAGER "/usr/bin/pager" + #endif + + /* the size of the uid cache used to reduce valid user checks */ --- samba-3.3.0.orig/debian/patches/adapt_machine_creation_script.patch +++ samba-3.3.0/debian/patches/adapt_machine_creation_script.patch @@ -0,0 +1,23 @@ +Goal: Adapt example script to Debian + +Fixes: #346234 + +Status wrt upstream: Debian specific + +Note: + +Index: samba-3.3.0/docs/manpages/smb.conf.5 +=================================================================== +--- samba-3.3.0.orig/docs/manpages/smb.conf.5 ++++ samba-3.3.0/docs/manpages/smb.conf.5 +@@ -1141,8 +1141,8 @@ + Default: + \fI\fIadd machine script\fR\fR\fI = \fR\fI\FC\F[]\fR\fI \fR + .sp +-Example: +-\fI\fIadd machine script\fR\fR\fI = \fR\fI\FC/usr/sbin/adduser \-n \-g machines \-c Machine \-d /var/lib/nobody \-s /bin/false %u\F[]\fR\fI \fR ++Example for Debian: ++\fI\fIadd machine script\fR\fR\fI = \fR\fI\FC/usr/sbin/adduser \-n \-g machines \-c Machine \-d /var/lib/samba \-s /bin/false %u\F[]\fR\fI \fR + .RE + + add port command (G) --- samba-3.3.0.orig/debian/patches/no-unnecessary-cups.patch +++ samba-3.3.0/debian/patches/no-unnecessary-cups.patch @@ -0,0 +1,22 @@ +Goal: Don't try to contact the CUPS server when we can reliably +determine that no printers are needed + +Fixes: bug #479512 + +Upstream status: submitted as bugzilla bug #5525 + +Index: samba-3.3.0rc2/source/smbd/server.c +=================================================================== +--- samba-3.3.0rc2.orig/source/smbd/server.c ++++ samba-3.3.0rc2/source/smbd/server.c +@@ -806,6 +806,10 @@ + int pnum = lp_servicenumber(PRINTERS_NAME); + const char *pname; + ++ if (!lp_load_printers() ++ && (lp_auto_services() == NULL || !strcmp(lp_auto_services(),""))) ++ return; ++ + pcap_cache_reload(); + + /* remove stale printers */ --- samba-3.3.0.orig/debian/patches/README_nosmbldap-tools.patch +++ samba-3.3.0/debian/patches/README_nosmbldap-tools.patch @@ -0,0 +1,22 @@ +Goal: Amend the LDAP/README example as smbldap-tools are packaged separately + +Fixes: #341934 + +Status wrt upstream: Debian specific + +Note: + +Index: samba-3.3.0rc2/examples/LDAP/README +=================================================================== +--- samba-3.3.0rc2.orig/examples/LDAP/README ++++ samba-3.3.0rc2/examples/LDAP/README +@@ -69,6 +69,9 @@ + The smbldap-tools package can be downloaded individually from + https://gna.org/projects/smbldap-tools/ + ++On Debian systems, the smbldap-tools exists as a separate package ++and is not included in LDAP examples. ++ + !== + !== end of README + !== --- samba-3.3.0.orig/debian/po/dz.po +++ samba-3.3.0/debian/po/dz.po @@ -0,0 +1,299 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba_po.pot\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-13 02:22+0530\n" +"Last-Translator: translator \n" +"Language-Team: dzongkha \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2;plural=(n!=1);\n" +"X-Poedit-Language: dzongkha\n" +"X-Poedit-Country: bhutan\n" +"X-Poedit-SourceCharset: utf-8\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"ཌི་ཨེཅ་སི་པི་ནང་ལས་ ཌབ་ལུ་ཨའི་ཨེན་ཨེསི་སྒྲིག་སྟངས་ཚུ་ལག་ལེན་འདབ་ནི་ལུ་ smb.conf ལེགས་བཅོས་འབད་ནི་" +"ཨིན་ན་?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"ག་དེམ་ཅིག་འབད་ à½à¾±à½¼à½‘་ཀྱི་གློག་རིག་གིས་ཡོངས་འབྲེལ་གུའི་ཌི་ཨེཅ་སི་པི་སར་བར་ནང་ལས་ ཨའི་པི་à½à¼‹à½–ྱང་བརྡ་དོན་" +"འà½à½¼à½–་པ་ཅིན་ ཌི་ཨེཅ་སི་པི་སར་བར་གིས་ཡང་ ཡོངས་འབྲེལ་གུ་ཡོད་པའི་ ཌབ་ལུ་ཨའི་ཨེན་ཨེསི་སར་བརསི་ " +"(\"NetBIOS name servers\")གི་སà¾à½¼à½¢à¼‹à½£à½¦à¼‹à½–རྡ་དོན་བྱིན་འོང་༠འདི་གི་དོན་ལུ་ à½à¾±à½¼à½‘་རའི་ smb.conf " +"ཡིག་སྣོད་བསྒྱུར་བཅོས་འབད་དགོཔ་ཨིན་ དེ་འབད་བ་ཅིན་ བྱིན་ཡོད་པའི་ཌི་ཨེཅ་སི་པི་ ཌབ་ལུ་ཨའི་ཨེན་ཨེསི་སྒྲིག་" +"སྟངས་འདི་ རང་བཞིན་གྱིས་ /etc/samba/dhcp.conf ནང་ལས་ལྷག་འོང་à¼" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"ཌི་ཨེཅ་སི་པི་༣-ཞབས་à½à½¼à½‚་སྤྱོད་མི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ à½à¾±à½‘་རྣམ་འདི་གི་ཕན་à½à½¼à½‚ས་ལུ་གཞི་བཙུགས་འབད་དགོཔ་ཨིནà¼" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "smb.conf འདི་རང་བཞིན་གྱིས་རིམ་སྒྲིག་འབད་ནི་ཨིན་ན?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"སམ་བ་གི་རིམ་སྒྲིག་གཞན་མི་ཚུ་ འདྲི་བ་དང་འབྲེལà½à¼‹à½£à½¦à¼‹ /etc/samba/smb.conf ནང་ཚད་བཟུང་ལུ་ཕན་" +"གནོད་འབྱུངམ་ཨིན་ འདི་ཡང་སམ་བ་ལས་རིམ་ (nmbd and smbd)ཚུ་རིམ་སྒྲིག་འབད་ནི་ལུ་དགོ་པའི་ཡིག་སྣོད་" +"ཨིན༠à½à¾±à½¼à½‘་ཀྱི་ད་ལྟོའི་ smb.conf ནང་ལུ་ 'include'གྲལ་à½à½²à½‚་ ཡངན་ འཕར་ཚད་འགྱོ་མི་གྲལ་à½à½²à½‚་སྣ་མང་གི་" +"གདམ་à½à¼‹à½šà½´à¼‹à½¡à½¼à½‘པ་ཨིན་ དེ་གིས་ རང་བཞིན་ཅན་གྱི་རིམ་སྒྲིག་ལས་སྦྱོར་འདི་ མགུ་འà½à½¼à½˜à¼‹à½–ཅུགཔ་ཨིནམ་དང་ ལོག་སྟེ་ལཱ་" +"འབད་ནིའི་དོན་ལུ་ ལག་པའི་à½à½¼à½‚་ལས་ à½à¾±à½¼à½‘་རའི་smb.conf ཞུན་དག་འབད་དགོཔ་ཨིན༠" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"à½à¾±à½¼à½‘་ཀྱིས་ གདམ་à½à¼‹à½ à½‘ི་མ་གདམ་པ་ཅིན་ རིམ་སྒྲིག་གི་འགྱུར་བ་གང་རུང་ཅིག་ à½à¾±à½¼à½‘་རང་གིས་ལེགས་སà¾à¾±à½¼à½„་འà½à½–་དགོཔ་" +"དང་ དུས་མཚམས་རིམ་སྒྲིག་གོང་སྤེལ་གྱི་à½à½ºà¼‹à½•à½“་འà½à½¼à½–་མི་ཚུགསà¼" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "ལཱ་གི་སྡེ་ཚན་/ཌོ་མེན་མིང་:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"ཞབས་à½à½¼à½‚་སྤྱོད་མི་གིས་འདྲི་དཔྱད་འབདà½à¼‹à½‘་ དེ་ནང་ལུ་སར་བར་འབྱུང་ནི་ཨིན་པའི་ལཱ་གི་སྡེ་ཚན་འདི་གསལ་བཀོད་" +"འབད་གནང་༠ཚད་བཟུང་འདི་གིས་ སྲུང་སà¾à¾±à½¼à½–་=ཌཱ་མཱེན་སྒྲིག་སྟངས་དང་གཅིག་à½à½¢à¼‹à½£à½‚་ལེན་འà½à½–་ཡོད་པའི་ཌཱ་མཱེན་མིང་" +"ཡང་ ཚད་འཛིན་འབདà½à¼‹à½¨à½²à½“མ་དྲན་དགོ" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "ཆོག་ཡིག་གསང་བཟོ་ལགལེན་འà½à½–་ནི་ཨིན་ན?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"à½à½²à½“་ཌཱསི་ཞབས་à½à½¼à½‚་སྤྱོད་མི་མང་ཤོས་ཅིག་གིས་ གསང་བཟོས་ཆོག་ཡིག་ལག་ལེན་གྱི་à½à½¼à½‚་ལས་ ཨེསི་ཨེམ་བི་སར་བརསི་" +"དང་གཅིག་à½à½¢à¼‹à½–རྒྱུད་འབྲེལ་འà½à½–་ཨིན༠à½à¾±à½¼à½‘་ཀྱིས་ ཚིག་ཡིག་ཆོག་ཡིག་གསལ་à½à½¼à½‚་à½à½¼à¼‹à½…ིག་ལག་ལེན་འà½à½–་དགོ་མནོ་བ་" +"ཅིན་ à½à¾±à½¼à½‘་རའི་à½à½²à½“་ཌཱསི་à½à½¼à¼‹à½–ཀོད་ནང་ལུ་ཚད་བཟུང་ཅིག་བསྒྱུར་བཅོས་འབད་དགོ" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"གདམ་à½à¼‹à½£à¾•à½¼à½‚ས་ཅན་བཟོ་མི་འདི་གིས་ གནམ་མེད་ས་མེད་འོས་སྦྱོར་འབད་ནི་ཨིན༠དེ་འབད་ནི་ཨིན་པ་ཅིན་ à½à¾±à½¼à½‘་ལུ་" +"ནུས་ལྡན་གྱི་/etc/samba/smbpasswd ཡིག་སྣོད་ཅིག་དགོཔ་དང་ འ་ནི་འདི་à½à¾±à½¼à½‘་ཀྱིས་ smbpasswd བརྡ་བཀོད་" +"ལག་ལེན་གྱི་à½à½¼à½‚་ལས་ ལག་ལེན་པ་རེ་བཞིན་གྱི་དོན་ལས་ དེ་ནང་ལུ་ཆོག་ཡིག་གཞི་སྒྲིག་འབད༠" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "" +"སམ་བ་ཆོག་ཡིག་གནད་སྡུད་གཞི་རྟེན་ /var/lib/samba/passdb.tdb གསར་བསà¾à¾²à½´à½“་འབད་ནི་ཨིན་ན་?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"à½à½²à½“་ཌཱསི་གི་à½à½¼à½“་རིམ་མང་ཤོས་ཅིག་ནང་ སྔོན་སྒྲིག་དང་བཅས་མà½à½´à½“་འགྱུར་ཅན་ཨིན་དགོ་པ་ཅིན་ གསང་བཟོས་ཆོག་ཡིག་" +"ལག་ལེན་འà½à½–་ནི་ལུ་ སམ་བ་གིས་རིམ་སྒྲིག་འབད་དགོཔ་ཨིན༠/etc/passwdལས་སོ་སོར་འཕྱལ་ཡོད་པའི་ཡིག་སྣོད་" +"ཅིག་གསོག་འཇོག་འབད་ནིའི་དོན་ལས་འདི་ལུ་ ལག་ལེན་པའི་ཆོག་ཡིག་དགོཔ་ཨིན༠འ་ནི་ཡིག་སྣོད་འདི་ རང་བཞིན་གྱིས་" +"འབད་གསར་བསà¾à¾²à½´à½“་འབད་ཚུགས་ དེ་འབདà½à¼‹à½‘་ ཆོག་ཡིག་ཚུ་ smbpasswd གཡོག་བཀོལ་à½à½¼à½‚་ལུ་ ལག་à½à½¼à½‚་ལས་à½à¼‹" +"སà¾à½¼à½„་བརà¾à¾±à½–་དགོཔ་དང་ མ་འོངས་པ་ལུ་འདི་ དུས་མà½à½´à½“་བཟོ་སྟེ་བཞག་དགོ" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"à½à¾±à½¼à½‘་ཀྱིས་གསར་བསà¾à¾²à½´à½“་མ་འབད་བ་ཅིན་ ཚིག་ཡིག་རà¾à¾±à½„་པོའི་ཆོག་ཡིག་ལག་ལེན་འà½à½–་ནི་ལུ་ སམ་བ་(དང་ à½à¾±à½¼à½‘་རའི་" +"ཞབས་à½à½¼à½‚་སྤྱོད་མིའི་མ་འཕྲུལ་)འདི་ ལོག་རིམ་སྒྲིག་འབད་དགོ" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"à½à¼‹à½‚སལ་མà½à¾±à½ºà½“་ནིའི་དོན་ལུ་ སམ་བ་-ཌོཀ་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ནང་ལས་ /usr/share/doc/samba-doc/htmldocs/" +"ENCRYPTION.html ལུ་ལྟà¼" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "ཌེ་མཱོནསི་" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "à½à¾±à½¼à½‘་ཀྱིས་ སམ་བ་འདི་ག་དེ་སྦེ་གཡོག་བཀོལ་དགོ་མནོà½à¼‹à½¦à¾¨à½¼?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"སམ་བ་ཌེ་མཱོན་smbdའདི་ སྤྱིར་བà½à½„་ཌེ་མཱོན་སྦེ་ ཡང་ན་ inetdནང་ལས་ གཡོག་བཀོལ་ཚུགས༠ཌེ་མཱོན་སྦེ་གཡོག་" +"བཀོལ་མི་འདི་ འོས་སྦྱོར་འབད་ཡོད་པའི་རྩར་ལེན་ཨིནà¼" + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "སམ་བ་གི་རིམ་སྒྲིག་གཞན་མི་ཚུ་ འདྲི་བ་དང་འབྲེལà½à¼‹à½£à½¦à¼‹ /etc/samba/smb.conf ནང་ཚད་བཟུང་ལུ་ཕན་" +#~ "གནོད་འབྱུངམ་ཨིན་ འདི་ཡང་སམ་བ་ལས་རིམ་ (nmbd and smbd)ཚུ་རིམ་སྒྲིག་འབད་ནི་ལུ་དགོ་པའི་ཡིག་སྣོད་" +#~ "ཨིན༠à½à¾±à½¼à½‘་ཀྱི་ད་ལྟོའི་ smb.conf ནང་ལུ་ 'include'གྲལ་à½à½²à½‚་ ཡངན་ འཕར་ཚད་འགྱོ་མི་གྲལ་à½à½²à½‚་སྣ་མང་" +#~ "གི་གདམ་à½à¼‹à½šà½´à¼‹à½¡à½¼à½‘པ་ཨིན་ དེ་གིས་ རང་བཞིན་ཅན་གྱི་རིམ་སྒྲིག་ལས་སྦྱོར་འདི་ མགུ་འà½à½¼à½˜à¼‹à½–ཅུགཔ་ཨིནམ་དང་ " +#~ "ལོག་སྟེ་ལཱ་འབད་ནིའི་དོན་ལུ་ ལག་པའི་à½à½¼à½‚་ལས་ à½à¾±à½¼à½‘་རའི་smb.conf ཞུན་དག་འབད་དགོཔ་ཨིན༠" + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "ཞབས་à½à½¼à½‚་སྤྱོད་མི་གིས་འདྲི་དཔྱད་འབདà½à¼‹à½‘་ དེ་ནང་ལུ་སར་བར་འབྱུང་ནི་ཨིན་པའི་ལཱ་གི་སྡེ་ཚན་འདི་གསལ་" +#~ "བཀོད་འབད་གནང་༠ཚད་བཟུང་འདི་གིས་ སྲུང་སà¾à¾±à½¼à½–་=ཌཱ་མཱེན་སྒྲིག་སྟངས་དང་གཅིག་à½à½¢à¼‹à½£à½‚་ལེན་འà½à½–་ཡོད་པའི་" +#~ "ཌཱ་མཱེན་མིང་ཡང་ ཚད་འཛིན་འབདà½à¼‹à½¨à½²à½“མ་དྲན་དགོ" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "à½à½²à½“་ཌཱསི་ཞབས་à½à½¼à½‚་སྤྱོད་མི་མང་ཤོས་ཅིག་གིས་ གསང་བཟོས་ཆོག་ཡིག་ལག་ལེན་གྱི་à½à½¼à½‚་ལས་ ཨེསི་ཨེམ་བི་སར་" +#~ "བརསི་དང་གཅིག་à½à½¢à¼‹à½–རྒྱུད་འབྲེལ་འà½à½–་ཨིན༠à½à¾±à½¼à½‘་ཀྱིས་ ཚིག་ཡིག་ཆོག་ཡིག་གསལ་à½à½¼à½‚་à½à½¼à¼‹à½…ིག་ལག་ལེན་འà½à½–་དགོ་" +#~ "མནོ་བ་ཅིན་ à½à¾±à½¼à½‘་རའི་à½à½²à½“་ཌཱསི་à½à½¼à¼‹à½–ཀོད་ནང་ལུ་ཚད་བཟུང་ཅིག་བསྒྱུར་བཅོས་འབད་དགོ" + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "གདམ་à½à¼‹à½£à¾•à½¼à½‚ས་ཅན་བཟོ་མི་འདི་གིས་ གནམ་མེད་ས་མེད་འོས་སྦྱོར་འབད་ནི་ཨིན༠དེ་འབད་ནི་ཨིན་པ་ཅིན་ à½à¾±à½¼à½‘་" +#~ "ལུ་ནུས་ལྡན་གྱི་/etc/samba/smbpasswd ཡིག་སྣོད་ཅིག་དགོཔ་དང་ འ་ནི་འདི་à½à¾±à½¼à½‘་ཀྱིས་ smbpasswd " +#~ "བརྡ་བཀོད་ལག་ལེན་གྱི་à½à½¼à½‚་ལས་ ལག་ལེན་པ་རེ་བཞིན་གྱི་དོན་ལས་ དེ་ནང་ལུ་ཆོག་ཡིག་གཞི་སྒྲིག་འབད༠" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "à½à¼‹à½‚སལ་མà½à¾±à½ºà½“་ནིའི་དོན་ལུ་ སམ་བ་-ཌོཀ་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ནང་ལས་ /usr/share/doc/samba-doc/" +#~ "htmldocs/ENCRYPTION.html ལུ་ལྟà¼" + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "རྒྱུན་à½à½‚་ passdb རྒྱབ་མà½à½ à¼‹à½ à½‘ི་ རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½˜à¼‹à½ à½–ད་བས་" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "འà½à½¼à½“་རིམ་ ༣.༠.༢༣ གྱིས་འགོ་བཙུགས་à½à½ºà¼‹ སམ་བ་གིས་ད་ལས་ཕར་ \"passdb backend\" ཚད་བཟུང་" +#~ "ནང་ རྒྱུན་à½à½‚་སྣ་མང་རྒྱབ་མà½à½ à¼‹à½šà½´à¼‹à½£à½´à¼‹ རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½˜à½²à¼‹à½ à½–དà½à¼‹à½¨à½²à½“༠དེ་ཡང་ à½à¾±à½¼à½‘་ཀྱི་ smb.conf ཡིག་སྣོད་" +#~ "ནང་ རྒྱབ་མà½à½ à½²à¼‹à½à½¼à¼‹à½¡à½²à½‚་ཅིག་ཆ་སྟེ་ passdb རྒྱབ་མà½à½ à¼‹à½šà½‘་བཟུང་དང་ལྡནམ་སྦེ་འབྱུངམ་ཨིན༠སམ་བའི་འà½à½¼à½“་" +#~ "རིམ་གསརཔ་འདི་ à½à¾±à½¼à½‘་ཀྱིས་ དེ་ནོར་བཅོས་མ་འབད་ཚུན་ཚོད་ ལཱ་མི་འབདà¼" + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr " /etc/samba/smbpasswdའདི་ /var/lib/samba/passdb.tdb ལུ་སྤོ་ནི་ཨིན་ན་?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "སབ་མ་༣.༠ གིས་/etc/samba/smbpasswd ཡིག་སྣོད་འཛིན་པའི་ ཨེསི་ཨེ་ཨེམ་ གནད་སྡུད་གཞི་རྟེན་ ངོས་" +#~ "འདྲ་བ་ཆ་ཚང་ཅིག་འགོ་བཙུགས་ཡིà¼" + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "ཡོད་བཞིན་པའི་ smbpasswd ཡིག་སྣོད་འདི་རང་བཞིན་གྱིས་སྦེ་ /var/lib/samba/passdb.tdbལུ་ གཞི་" +#~ "གནས་སྤོ་ནི་ཨིན་ན་ à½à¾±à½¼à½‘་ར་ངེས་དཔྱད་འབད་གནང་༠à½à¾±à½¼à½‘་ཀྱིས་pdb རྒྱབ་མà½à½ à¼‹ (དཔེར་ན་ ཨེལ་ཌི་ཨེ་པི་) " +#~ "འདི་དེ་གི་ཚབ་སྦེ་ལག་ལེན་འà½à½–་ནིའི་འཆར་གཞི་ཡོད་པ་ཅིན་ གདམ་à½à¼‹à½ à½‘ི་ག་གདམསà¼" --- samba-3.3.0.orig/debian/po/ca.po +++ samba-3.3.0/debian/po/ca.po @@ -0,0 +1,296 @@ +# samba (debconf) translation to Catalan. +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +# Aleix Badia i Bosch 2004 +# +msgid "" +msgstr "" +"Project-Id-Version: samba_3.0.0beta2-1_templates\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2006-08-13 15:16-0700\n" +"Last-Translator: Jordi Mallach \n" +"Language-Team: Debian L10n Catalan \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"Voleu modificar el smb.conf perquè utilitzi els paràmetres de configuració " +"del WINS del DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Si el vostre ordinador obté la informació referent a la IP a través d'un " +"servidor de DHCP, aquest també li donarà informació sobre els servidors de " +"WINS (\"servidors de nom de NetBIOS\") presents a la xarxa. Aquesta opció " +"precisa d'una modificació del fitxer smb.conf per tal que els paràmetres de " +"WINS obtinguts a través del DHCP s'obtinguin a través de la lectura de /etc/" +"samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Per beneficiar-vos d'aquesta característica cal que sigui instal·lat el " +"paquet dhcp3-client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Voleu configurar el smb.conf automàticament?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"La resta de la configuració del Samba tracta amb qüestions que afecten els " +"paràmetres del fitxer de configuració /etc/samba/smb.conf, que utilitzen els " +"programes de Samba. La versió actual del smb.conf conté una línia 'include' " +"o una opció que abarca múltiples línies que podria confondre a la " +"configuració automàtica i precisar de la seva edició manual per poder-lo fer " +"funcionar de nou." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Si no escolliu aquesta opció, haureu de gestionar manualment qualsevol canvi " +"de la configuració, i no us podreu beneficiar de les millores periòdiques." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Grup de treball/nom del domini:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Indiqueu en quin grup de treball voleu que aparegui el vostre servidor quan " +"ho consultin els clients. Recordeu que aquest paràmetre també controla el " +"nom de domini utilitzat pel paràmetre de configuració security=domain." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Voleu utilitzar el xifrat de contrasenyes?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Tots els clients de Windows recents es comuniquen amb els servidors de Samba " +"utilitzant contrasenyes xifrades. Si voleu utilitzar contrasenyes amb text " +"pla, haureu de modificar el vostre registre de Windows." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"És recomanable habilitar aquesta opció. Si ho feu, assegureu-vos de tenir un " +"fitxer /etc/samba/smbpasswd vàlid i que hi especifiqueu la contrasenya de " +"cada usuari utilitzant l'ordre smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "" +"Voleu crear la base de dades de contrasenyes de Samba, /var/lib/samba/passdb." +"tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"El Samba s'ha de configurar perquè utilitzi contrasenyes xifrades per tal " +"que sigui compatible amb la majoria de versions de Windows per defecte. Això " +"implica que les contrasenyes d'usuari s'emmagatzemin a un fitxer diferent " +"del /etc/passwd. Aquest fitxer es pot crear automàticament, però les " +"contrasenyes s'han d'afegir manualment executant l'ordre smbpasswd i s'han " +"de mantindre actualitzades en el futur." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Si no el creeu, haureu de reconfigurar el Samba (i probablement els vostres " +"ordinadors clients) per tal que utilitzin contrasenyes de text pla." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Per més informació feu una ullada a /usr/share/doc/samba-doc/htmldocs/" +"ENCRYPTION.html del paquet samba-doc." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "dimonis" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Com voleu executar el Samba?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"El dimoni de Samba pot executar-se com un dimoni normal o des de l'inetd. És " +"recomanable executar-lo com a dimoni." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "La resta de la configuració del Samba tracta amb qüestions que afecten " +#~ "els paràmetres del fitxer de configuració /etc/samba/smb.conf, que " +#~ "utilitzen els programes de Samba. La versió actual del smb.conf conté una " +#~ "línia 'include' o una opció que abarca múltiples línies que podria " +#~ "confondre a la configuració automàtica i precisar de la seva edició " +#~ "manual per poder-lo fer funcionar de nou." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Indiqueu en quin grup de treball voleu que aparegui el vostre servidor " +#~ "quan ho consultin els clients. Recordeu que aquest paràmetre també " +#~ "controla el nom de domini utilitzat pel paràmetre de configuració " +#~ "security=domain." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Tots els clients de Windows recents es comuniquen amb els servidors de " +#~ "Samba utilitzant contrasenyes xifrades. Si voleu utilitzar contrasenyes " +#~ "amb text pla, haureu de modificar el vostre registre de Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "És recomanable habilitar aquesta opció. Si ho feu, assegureu-vos de tenir " +#~ "un fitxer /etc/samba/smbpasswd vàlid i que hi especifiqueu la contrasenya " +#~ "de cada usuari utilitzant l'ordre smbpasswd." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Per més informació feu una ullada a /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html del paquet samba-doc." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "L'encadenament dels passdb no es permet" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Des de la versió 3.0.23, Samba ja no permet l'encadenament de més d'un " +#~ "passdb al paràmetre «passdb backend». Sembla que el vostre smb.conf conté " +#~ "un paràmetre «passdb backend» que consta d'una llista de rerefons. La nova " +#~ "versió de Samba no funcionarà fins que ho corregiu." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Voleu moure /etc/samba/smbpasswd a /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "El Samba 3.0 introdueix una interfície de base de dades de SAM més " +#~ "completa que reemplaça el fitxer /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Confirmeu si voleu que es migri el fitxer smbpasswd a /var/lib/samba/" +#~ "passdb.tdb. No escolliu aquesta opció si la vostra intenció és utilitzar " +#~ "un altre rerefons pdb (p. ex., LDAP)." + +#~ msgid "daemons, inetd" +#~ msgstr "dimonis, inetd" --- samba-3.3.0.orig/debian/po/id.po +++ samba-3.3.0/debian/po/id.po @@ -0,0 +1,255 @@ +# translation of samba_po-id.po to Bahasa Indonesia +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Arief S Fitrianto , 2008. +msgid "" +msgstr "" +"Project-Id-Version: samba_po-id\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2008-03-08 18:24+0700\n" +"Last-Translator: Arief S Fitrianto \n" +"Language-Team: Bahasa Indonesia \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplural=1, plural>1\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Ubah smb.conf agar menggunakan setelan WINS dari DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Jika komputer Anda mendapatkan alamat IP dari sebuah server DHCP di " +"jaringan, server DHCP tersebut mungkin juga memberikan info tentang server " +"WINS (\"server NetBIOS\") yang tersedia dalam jaringan. Berkas smb.conf " +"perlu diubah agar setelan WINS dari server DHCP dapat dibaca otomatis dari /" +"etc/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "Paket dhcp3-client harus dipasang agar fitur ini dapat digunakan." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Konfigurasikan smb.conf secara otomatis?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Konfigurasi Samba selanjutnya berhubungan dengan pertanyaan seputar " +"parameter dalam /etc/samba/smb.conf yang digunakan untuk mengonfigurasi " +"program Samba (nmbd dan smbd). Konfigurasi smb.conf Anda saat ini berisi " +"setelah yang lebih dari satu baris, yang dapat membingungkan proses " +"konfigurasi otomatis. Anda harus mengubah smb.conf secara manual agar dapat " +"digunakan lagi." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Jika Anda tidak mengambil pilihan ini, Anda harus menangani sendiri semua " +"konfigurasi dan tidak dapat memanfaatkan keuntungan dari pembaharuan " +"konfigurasi secara periodik." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Nama Domain/Workgrop:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Mohon tentukan workgroup yang Anda ingin server ini dikenali oleh klien. " +"Ingat bahwa parameter ini juga mengendalikan nama domain yang digunakan oleh " +"setelan security=domain." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Gunakan enkripsi sandi?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Semua klien Windows terbaru berkomunikasi dengan server SMB menggunakan " +"sandi terenkripsi. Jika Anda ingin menggunakan sandi teks, Anda harus " +"mengubah parameter tersebut dalam register Windows." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Mengaktifkan pilihan ini sangat dianjurkan. Jika demikian, pastikan Anda " +"memiliki berkas /etc/samba/smbpasswd tempat Anda menyimpan semua sandi " +"pengguna menggunakan perintah smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Buat basis data sandi samba dalam /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Agar kompatibel dengan semua versi Windows, Samba harus dikonfigurasi untuk " +"menggunakan sandi terenkripsi. Hal ini mengharuskan sandi pengguna disimpan " +"dalam berkas selain /etc/passwd. Berkas ini dapat dibuat otomatis, tetapi " +"kata sandi harus ditambahkan secara manual dengan menjalankan perintah " +"smbpasswd dan diperbaharui setiap ada perubahan pengguna." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Jika Anda tidak membuatnya, Anda harus mengonfigurasi ulang Samba (dan juga " +"komputer klien) untuk menggunakan sandi teks-murni." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Lihat /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +"html dalam paket samba-doc." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "server" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Bagaimana Anda ingin menjalankan Samba" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Server samba (smbd) dapat berjalan sebagai server normal (daemon) atau dari " +"inetd. Sangat dianjurkan menjalankannya sebagai server normal." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Konfigurasi Samba selanjutnya berhubungan dengan pertanyaan seputar " +#~ "parameter dalam /etc/samba/smb.conf yang digunakan untuk mengonfigurasi " +#~ "program Samba (nmbd dan smbd). Konfigurasi smb.conf Anda saat ini berisi " +#~ "setelah yang lebih dari satu baris, yang dapat membingungkan proses " +#~ "konfigurasi otomatis. Anda harus mengubah smb.conf secara manual agar " +#~ "dapat digunakan lagi." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Mohon tentukan workgroup yang Anda ingin server ini dikenali oleh klien. " +#~ "Ingat bahwa parameter ini juga mengendalikan nama domain yang digunakan " +#~ "oleh setelan security=domain." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Semua klien Windows terbaru berkomunikasi dengan server SMB menggunakan " +#~ "sandi terenkripsi. Jika Anda ingin menggunakan sandi teks, Anda harus " +#~ "mengubah parameter tersebut dalam register Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Mengaktifkan pilihan ini sangat dianjurkan. Jika demikian, pastikan Anda " +#~ "memiliki berkas /etc/samba/smbpasswd tempat Anda menyimpan semua sandi " +#~ "pengguna menggunakan perintah smbpasswd." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Lihat /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html dalam paket samba-" +#~ "doc." --- samba-3.3.0.orig/debian/po/vi.po +++ samba-3.3.0/debian/po/vi.po @@ -0,0 +1,255 @@ +# Vietnamese translation for Samba. +# Copyright © 2009 Free Software Foundation, Inc. +# Clytie Siddall , 2005-2009. +# +msgid "" +msgstr "" +"Project-Id-Version: samba 3.2\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2009-02-15 15:57+1030\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: LocFactoryEditor 1.8\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Sá»­a đổi « smb.conf » để dùng thiết lập WINS từ DHCP ?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Nếu máy tính của bạn lấy thông tin địa chỉ IP từ má»™t trình phục vụ DHCP nằm " +"trên mạng, trình phục vụ DHCP có lẽ cÅ©ng có khả năng cung cấp thông tin vá» " +"trình phục vụ WINS (« NetBIOS name servers ») cÅ©ng nằm trên mạng. Dịch vụ này " +"cần thiết bạn sá»­a đổi tập tin « smb.conf » của mình để cho phép thiết lập " +"WINS do DHCP cung cấp sẽ được Ä‘á»c tá»± Ä‘á»™ng từ tập tin « /etc/samba/dhcp.conf »." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "Äể nhá»› dịp tính năng này, bạn cần phải cài đặt gói « dhcp3-client »." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Tá»± Ä‘á»™ng cấu hình « smb.conf » ?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Phần còn lại của cấu hình Samba Ä‘á» cập các câu há»i vá» tham số trong tập tin " +"« /etc/samba/smb.conf », tập tin được dùng để cấu hình các chÆ°Æ¡ng trình Samba " +"(nmbd và smbd). Tập tin « smb.conf » hiện thá»i chứa má»™t dòng « include » (gồm) " +"hay má»™t tùy chá»n chiếm nhiá»u dòng, mà có thể gây ra lá»—i trong tiến trình cấu " +"hình tá»± Ä‘á»™ng thì cần thiết bạn tá»± sá»­a đổi tập tin « smb.conf » mình để kích " +"hoạt lại nó." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Không bật tùy chá»n này thì bạn cần phải tá»± quản lý thay đổi cấu hình nào, và " +"không thể nhá»› dịp sá»± tăng cÆ°á»ng cấu hình định kỳ." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Tên Nhóm làm việc/Miá»n:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Hãy xác định nhóm làm việc cho hệ thống này. Thiết lập này Ä‘iá»u khiển nhóm " +"làm việc trong đó hệ thống sẽ xuất hiện khi dùng làm trình phục vụ (nhóm làm " +"việc mặc định được dùng khi duyệt qua giao diện) và tên miá»n được dùng vá»›i " +"thiết lập « security=domain » (bảo mật=miá»n)." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Gá»­i mật khẩu mật mã ?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Má»i ứng dụng khách Windows gần đây Ä‘á»u liên lạc vá»›i trình phục vụ SMB/CIFS " +"dùng mật khẩu đã mật mã. Vẫn muốn sá»­ dụng mật khẩu « nhập thô » (không có mật " +"mã) thì bạn cần phải thay đổi má»™t tham số trong sổ đăng ký (registry) " +"Windows của mình." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Rất khuyên bạn bật tùy chá»n này, vì há»— trợ mật khẩu nhập thô không còn được " +"duy trì lại trong sản phẩm MS Windows. CÅ©ng hãy kiểm tra lại có má»™t tập tin " +"« /etc/samba/smbpasswd » đúng, và đặt trong nó má»™t mật khẩu cho má»—i ngÆ°á»i " +"dùng sẽ sá»­ dụng lệnh smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Tạo cÆ¡ sở dữ liệu mật khẩu samba « /var/lib/samba/passdb.tdb » ?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Äể tÆ°Æ¡ng thích vá»›i các giá trị mặc định trong hậu hết các phiên bản Windows, " +"phần má»m Samba phải được cấu hình để sá»­ dụng mật khẩu đã mật mã. Cấu hình " +"này cần thiết các mật khẩu ngÆ°á»i dùng được cất giữ trong má»™t tập tin khác " +"vá»›i « /etc/passwd ». Tập tin này có thể được tá»± Ä‘á»™ng tạo, còn những mật khẩu " +"phải được thêm thủ công bằng cách chạy smbpaswd; cÅ©ng cần phải cứ cập nhật " +"chúng trong tÆ°Æ¡ng lai." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Không tạo tập tin đó thì bạn cần phải cấu hình lại Samba (rất có thể là cÅ©ng " +"cần cấu hình lại má»i máy khách) để sá»­ dụng mật khẩu nhập thô." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Äể tìm chi tiết, xem tài liệu « /usr/share/doc/samba-doc/htmldocs/Samba3-" +"Developers-Guide/pwencrypt.html » từ gói tài liệu samba-doc." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "trình ná»n" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Muốn chạy Samba nhÆ° thế nào?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Trình ná»n Samba smbd có khả năng chạy làm má»™t trình ná»n tiêu chuẩn, hoặc từ " +"inetd. PhÆ°Æ¡ng pháp khuyến khích là chạy làm trình ná»n." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Phần còn lại của cấu hình Samba Ä‘á» cập các câu há»i vá» tham số trong tập " +#~ "tin , tập tin được dùng để cấu hình các chÆ°Æ¡ng trình " +#~ "Samba (nmbd và smbd). Tập tin « smb.conf » hiện thá»i chứa má»™t dòng « " +#~ "include » (gồm) hay má»™t tùy chá»n chiếm nhiá»u dòng, mà có thể gây ra lá»—i " +#~ "trong tiến trình cấu hình tá»± Ä‘á»™ng thì cần thiết bạn tá»± sá»­a đổi tập tin « " +#~ "smb.conf » mình để kích hoạt lại nó." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Hãy xác định nhóm làm việc nÆ¡i có vẻ nằm trình phục vụ này, khi ứng dụng " +#~ "khách yêu cầu. Ghi chú rằng tham số này cÅ©ng Ä‘iá»u khiển tên miá»n được " +#~ "dùng vá»›i thiết lập « security=domain » (bảo mật=miá»n)." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Má»i ứng dụng khách Windows gần đây liên lạc vá»›i trình phục vụ SMB bằng " +#~ "mật khẩu đã mật mã. Nếu bạn có muốn sá»­ dụng mật khẩu « chữ rõ » (chữ thô, " +#~ "không có mật mã), bạn sẽ cần phải thay đổi má»™t tham số trong sổ đăng ký " +#~ "(registry) Windows của mình." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Rất khuyên bạn bật tùy chá»n này. Nếu có, hãy chắc là bạn có tập tin hợp lệ và bạn cÅ©ng đặt mật khẩu trong nó cho má»—i ngÆ°á»i " +#~ "dùng bằng lênh « smbpasswd »." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Xem tài liệu từ gói " +#~ "samba-doc để tìm chi tiết." --- samba-3.3.0.orig/debian/po/ku.po +++ samba-3.3.0/debian/po/ku.po @@ -0,0 +1,170 @@ +# translation of samba_ku.po to Kurdish +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Erdal Ronahi , 2008. +msgid "" +msgstr "" +"Project-Id-Version: samba_ku\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2008-05-08 13:02+0200\n" +"Last-Translator: Erdal Ronahi \n" +"Language-Team: ku \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KAider 0.1\n" +"Plural-Forms: nplurals=2; plural= n != 1;\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"Bila smb.conf were guherandin da ku mîhengên WINS ji DHCP werin bikaranîn?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "Ji bo bikaranîna vê fonksiyonê divê pakêta dhcp3-client were sazkirin." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Bila smb.conf were jixweber mîhengkirin?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Navê Koma Xebate/Domain:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Danegeha şîfreyên samba, /var/lib/samba/passdb.tdb, were afirandin?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Dixwazî Samba çawa bixebitînî?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" --- samba-3.3.0.orig/debian/po/templates.pot +++ samba-3.3.0/debian/po/templates.pot @@ -0,0 +1,168 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" --- samba-3.3.0.orig/debian/po/cs.po +++ samba-3.3.0/debian/po/cs.po @@ -0,0 +1,294 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-13 22:31+0100\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Upravit smb.conf, aby používal WINS nastavení z DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Pokud váš poÄítaÄ získává IP adresu z DHCP serveru, může vám tento server " +"nabízet také informace o WINS serverech (jmenných serverech NetBIOSu), které " +"jsou dostupné ve vaší síti. To vyžaduje zásah do souboru smb.conf, kde se " +"nastaví, aby se informace o WINS serverech naÄítaly ze souboru /etc/samba/" +"dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Pro využití této vlastnosti musíte mít nainstalovaný balík dhcp3-client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Konfigurovat smb.conf automaticky?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Zbytek konfigurace Samby se zabývá otázkami, které mÄ›ní parametry v /etc/" +"samba/smb.conf, což je soubor používaný pro nastavení programů nmbd a smbd " +"(dohromady tvoří Sambu). Váš stávající smb.conf obsahuje řádek 'include' " +"nebo volbu, která se táhne pÅ™es více řádků, což může zmást proces " +"automatického nastavení a může způsobit, že pro znovuzprovoznÄ›ní Samby " +"budete muset upravit smb.conf ruÄnÄ›." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Pokud tuto možnost nepovolíte, budete muset zvládnout vÅ¡echna nastavení sami " +"a nebudete moci využívat výhod pravidelných vylepÅ¡ení tohoto souboru." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Skupina/název domény:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Zadejte prosím jméno skupiny, do které má server patÅ™it (resp. se to tak " +"bude jevit klientům. Tento parametr také urÄuje název domény v případech, " +"kdy používáte nastavení security=domain)." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Použít Å¡ifrování hesel?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"VÅ¡ichni souÄasní windowsoví klienti používají pro komunikaci se SMB servery " +"Å¡ifrovaná hesla. Pokud chcete použít hesla neÅ¡ifrovaná, musíte zmÄ›nit jeden " +"parametr v registrech systému Windows." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Povolení této volby je silnÄ› doporuÄeno. Dáte-li na naÅ¡i radu, mÄ›li byste se " +"ujistit, že máte platný soubor /etc/samba/smbpasswd a že v nÄ›m nastavíte " +"hesla vÅ¡ech uživatelů příkazem smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "VytvoÅ™it databázi hesel /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Aby byla Samba kompatibilní s výchozím nastavením vÄ›tÅ¡iny verzí Windows, " +"musí být nastavena pro používání Å¡ifrovaných hesel. To vyžaduje, aby byla " +"uživatelská hesla uložena v jiném souboru než /etc/passwd. Tento soubor může " +"být vytvoÅ™en automaticky, ale hesla do nÄ›j musíte pÅ™idat ruÄnÄ› programem " +"smbpasswd a také ho musíte udržovat aktualizovaný." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Pokud soubor nevytvoříte, budete muset nastavit Sambu (a pravdÄ›podobnÄ› také " +"klienty), aby používali neÅ¡ifrovaná hesla." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Podrobnosti naleznete v souboru /usr/share/doc/samba-doc/htmldocs/ENCRYPTION." +"html z balíku samba-doc." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "démoni" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Jak chcete spouÅ¡tÄ›t Sambu?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Server Samby smbd může běžet jako obyÄejný daemon (doporuÄeno), nebo se může " +"spouÅ¡tÄ›t z inetd." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Zbytek konfigurace Samby se zabývá otázkami, které mÄ›ní parametry v /etc/" +#~ "samba/smb.conf, což je soubor používaný pro nastavení programů nmbd a " +#~ "smbd (dohromady tvoří Sambu). Váš stávající smb.conf obsahuje řádek " +#~ "'include' nebo volbu, která se táhne pÅ™es více řádků, což může zmást " +#~ "proces automatického nastavení a může způsobit, že pro znovuzprovoznÄ›ní " +#~ "Samby budete muset upravit smb.conf ruÄnÄ›." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Zadejte prosím jméno skupiny, do které má server patÅ™it (resp. se to tak " +#~ "bude jevit klientům. Tento parametr také urÄuje název domény v případech, " +#~ "kdy používáte nastavení security=domain)." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "VÅ¡ichni souÄasní windowsoví klienti používají pro komunikaci se SMB " +#~ "servery Å¡ifrovaná hesla. Pokud chcete použít hesla neÅ¡ifrovaná, musíte " +#~ "zmÄ›nit jeden parametr v registrech systému Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Povolení této volby je silnÄ› doporuÄeno. Dáte-li na naÅ¡i radu, mÄ›li byste " +#~ "se ujistit, že máte platný soubor /etc/samba/smbpasswd a že v nÄ›m " +#~ "nastavíte hesla vÅ¡ech uživatelů příkazem smbpasswd." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Podrobnosti naleznete v souboru /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html z balíku samba-doc." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "ŘetÄ›zení backendů passdb není podporováno" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "PoÄínaje verzi 3.0.23 již Samba v parametru \"passdb backend\" " +#~ "nepodporuje Å™etÄ›zení nÄ›kolika backendů. Zdá se, že váš soubor smb.conf " +#~ "obsahuje v parametru passdb backend nÄ›kolik backendů. Dokud to " +#~ "neopravíte, nová verze Samby nebude fungovat." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "PÅ™esunout /etc/samba/smbpasswd do /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 zavedla nové, kompletnÄ›jší rozhraní k SAM databázi, jež " +#~ "pÅ™ekonává původní soubor /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Prosím potvrÄte, zda chcete automaticky pÅ™evést stávající soubor " +#~ "smbpasswd na /var/lib/samba/passwd.tdb. Pokud plánujete použít jinou pdb " +#~ "databázi (tÅ™eba LDAP), mÄ›li byste odpovÄ›dÄ›t zápornÄ›." --- samba-3.3.0.orig/debian/po/sv.po +++ samba-3.3.0/debian/po/sv.po @@ -0,0 +1,298 @@ +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# Developers do not need to manually edit POT or PO files. +# , fuzzy +# +# +msgid "" +msgstr "" +"Project-Id-Version: samba 3.0.20b-3\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-12 20:57+0100\n" +"Last-Translator: Daniel Nylander \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Ändra smb.conf till att använda WINS-inställningar från DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Om din dator får en IP-address och information från en DHCP-server på " +"nätverket kan även DHCP-server också skicka information om WINS-servrar " +"(\"NetBIOS namnservrar\") i ditt nätverk. Detta kräver en ändring i din fil " +"smb.conf så att WINS-inställningar från DHCP-servern automatiskt kan läsas " +"från /etc/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Paketet dhcp3-client måste installeras för att kunna använda denna funktion." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Konfigurera smb.conf automatiskt?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Resten av Samba-konfigurationen hanterar frågor som rör parametrar i /etc/" +"samba/smb.conf, vilken är den fil som används för att konfigurera Samba-" +"programmen (nmbd och smbd). Din aktuella smb.conf innehåller en \"include\"-" +"rad eller ett alternativ som spänner över flera rader som kan göra Debconf " +"förvirrad och kan innebära att du måste redigera din smb.conf på egen hand " +"för att få det att fungera igen." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Om du inte väljer detta alternativ måste du hantera alla " +"konfigurationsändringar på egen hand och kan därför inte utnyttja fördelarna " +"med periodiska konfigurationsförbättringar." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Arbetsgrupp/Domännamn:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Ange vilken arbetsgrupp som denna server ska synas i när klienterna frågar. " +"Notera att denna parameter även kontrollerar domännamnet som används med " +"inställningen \"security=domain\"." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Använd lösenordskryptering?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"De flesta Windows-klienter av senare versioner kommunicerar med krypterade " +"lösenord mot SMB-servrar. Om du vill använda lösenord i klartext behöver du " +"ändra en parameter i ditt Windows-register." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Det rekommenderas varmt att du aktiverar detta alternativ. Om du gör det, " +"kontrollera att du har en giltig /etc/samba/smbpasswd och att du har ställt " +"in lösenorden där för varje användare med kommandot smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Skapa Sambas lösenordsdatabas, /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"För att vara kompatibel med de standardvärden i de flesta versioner av " +"Windows måste Samba konfigureras för att använda krypterade lösenord. Detta " +"kräver att användarnas lösenord lagras i en fil separerad från /etc/passwd. " +"Denna fil kan skapas automatiskt men lösenorden måste läggas till manuellt " +"genom att köra smbpasswd och hållas uppdaterad i framtiden." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Om du inte skapar den måste du konfigurera Samba (och antagligen även dina " +"klientmaskiner) till att använda lösenord i klartext." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Se /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"från paketet samba-doc för mer information." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "demoner" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Hur vill du köra Samba?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Samba-demonen smbd kan köras som en normal demon eller från inetd. Köra som " +"en demon är den rekommenderade metoden." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Resten av Samba-konfigurationen hanterar frågor som rör parametrar i /etc/" +#~ "samba/smb.conf, vilken är den fil som används för att konfigurera Samba-" +#~ "programmen (nmbd och smbd). Din aktuella smb.conf innehåller en \"include" +#~ "\"-rad eller ett alternativ som spänner över flera rader som kan göra " +#~ "Debconf förvirrad och kan innebära att du måste redigera din smb.conf på " +#~ "egen hand för att få det att fungera igen." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Ange vilken arbetsgrupp som denna server ska synas i när klienterna " +#~ "frågar. Notera att denna parameter även kontrollerar domännamnet som " +#~ "används med inställningen \"security=domain\"." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "De flesta Windows-klienter av senare versioner kommunicerar med " +#~ "krypterade lösenord mot SMB-servrar. Om du vill använda lösenord i " +#~ "klartext behöver du ändra en parameter i ditt Windows-register." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Det rekommenderas varmt att du aktiverar detta alternativ. Om du gör det, " +#~ "kontrollera att du har en giltig /etc/samba/smbpasswd och att du har " +#~ "ställt in lösenorden där för varje användare med kommandot smbpasswd." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Se /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html från paketet samba-" +#~ "doc för mer information." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Kedjekoppling av passdb-bakändar stöds inte" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Från och med version 3.0.23 kommer Samba inte längre att ha stöd för att " +#~ "kedjekoppla flera bakändar i parametern \"passdb backend\". Det verkar " +#~ "som om din smb.conf-fil innehåller en sådan bakändesparameter som " +#~ "innehåller en lista över bakändar. Den nya versionen av Samba kommer " +#~ "inte att fungera tills du har rättat till det här." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Flytta /etc/samba/smbpasswd till /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 introducerade ett mer komplett gränssnitt för SAM-databasen som " +#~ "åsidosätter filen /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Bekräfta att du vill migrera din existerande smbpasswd till /var/lib/" +#~ "samba/passdb.tdb. Välj inte detta alternativ om du istället planerar att " +#~ "använda ett annat pdb-baksystem (till exempel LDAP)." + +#~ msgid "daemons, inetd" +#~ msgstr "demoner, inetd" --- samba-3.3.0.orig/debian/po/ja.po +++ samba-3.3.0/debian/po/ja.po @@ -0,0 +1,293 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-13 16:39+0900\n" +"Last-Translator: Kenshi Muto \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "DHCP ã‹ã‚‰ WINS 設定を使ã†ã‚ˆã† smb.conf を変更ã—ã¾ã™ã‹?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"ã‚ãªãŸã®ã‚³ãƒ³ãƒ”ュータãŒãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ä¸Šã® DHCP サーãƒã‹ã‚‰ IP アドレス情報をå–å¾—" +"ã—ã¦ã„ã‚‹ã®ã§ã‚ã‚Œã°ã€DHCP サーãƒã¯ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ä¸Šã«ã‚ã‚‹ WINS サーム(NetBIOS " +"ãƒãƒ¼ãƒ ã‚µãƒ¼ãƒ) ã«ã¤ã„ã¦ã®æƒ…報をæä¾›ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚DHCP ã§æä¾›ã•ã‚Œã‚‹ WINS " +"設定㯠/etc/samba/dhcp.conf ã‹ã‚‰è‡ªå‹•çš„ã«èª­ã¿è¾¼ã¾ã‚Œã‚‹ãŸã‚ã€smb.conf ファイルを" +"変更ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"ã“ã®æ©Ÿèƒ½ã‚’使ã†ãŸã‚ã«ã¯ã€dhcp3-client パッケージãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã‚‹å¿…è¦ãŒ" +"ã‚ã‚Šã¾ã™ã€‚" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "自動的㫠smb.conf を設定ã—ã¾ã™ã‹?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Samba ã®è¨­å®šã®æ®‹ã‚Šã®éƒ¨åˆ†ã¯ã€Samba プログラム (nmbd ãŠã‚ˆã³ smbd) を設定ã™ã‚‹ã®" +"ã«ä½¿ã†ãƒ•ã‚¡ã‚¤ãƒ« /etc/samba/smb.conf ã«ã‚るパラメータã«å½±éŸ¿ã™ã‚‹è³ªå•ã§ã™ã€‚ç¾åœ¨" +"ã® smb.conf ã¯ã€'include' è¡Œã¾ãŸã¯è¤‡æ•°è¡Œã«ã¾ãŸãŒã‚‹ã‚ªãƒ—ションをå«ã‚“ã§ã„ã¾ã™ã€‚" +"ã“ã‚Œã¯è‡ªå‹•è¨­å®šå‡¦ç†ã‚’æ··ä¹±ã•ã›ã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã€å†ã³ãã‚ŒãŒä½œå‹•ã™ã‚‹ã‚ˆã†ã«ã™ã¹ã " +"smb.conf ã®æ‰‹å‹•ã§ã®ä¿®æ­£ã‚’å¿…è¦ã¨ã—ã¾ã™ã€‚" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"ã“ã®é¸æŠžè‚¢ã§ã€Œã„ã„ãˆã€ã¨ç­”ãˆã‚‹ã¨ã€ã™ã¹ã¦ã®è¨­å®šã®å¤‰æ›´ã‚’ã‚ãªãŸè‡ªèº«ãŒé¢å€’を見る" +"å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ã“ã‚Œã¯å®šæœŸçš„ãªè¨­å®šæ”¹å–„ã«ã¯å‘ã„ã¦ã„ã¾ã›ã‚“。" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "ワークグループ/ドメインå:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"クライアントã‹ã‚‰ç…§ä¼šã•ã‚ŒãŸéš›ã«ã“ã®ã‚µãƒ¼ãƒãŒç¾ã‚Œã‚‹ã“ã¨ã«ãªã‚‹ãƒ¯ãƒ¼ã‚¯ã‚°ãƒ«ãƒ¼ãƒ—を指" +"定ã—ã¦ãã ã•ã„。ã“ã®ãƒ‘ラメータ㯠security=domain 設定ãŒä½¿ã‚ã‚ŒãŸã¨ãã®ãƒ‰ãƒ¡ã‚¤ãƒ³" +"åも制御ã™ã‚‹ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "パスワードã®æš—å·åŒ–を使ã„ã¾ã™ã‹?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"ã»ã¨ã‚“ã©ã® Windows クライアントã¯æš—å·åŒ–ã•ã‚ŒãŸãƒ‘スワードを使ã£ã¦ SMB サーãƒã¨" +"ã‚„ã‚Šå–ã‚Šã—ã¾ã™ã€‚クリアテキストパスワードを使ã„ãŸã„å ´åˆã¯ã€ã‚ãªãŸã® Windows ã®" +"レジストリã«ã‚るパラメータを変更ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"ã“ã“ã§ã€Œã¯ã„ã€ã¨ç­”ãˆã‚‹ã“ã¨ã‚’å¼·ããŠå‹§ã‚ã—ã¾ã™ã€‚ã“ã®å ´åˆã€æœ‰åŠ¹ãª /etc/samba/" +"smbpasswd ファイルãŒã‚ã‚‹ã“ã¨ã‚’確èªã—ã€å„ユーザã®ãƒ‘スワード㯠smbpasswd コマン" +"ドを使ã£ã¦è¨­å®šã—ã¦ãã ã•ã„。" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Samba パスワードデータベース /var/lib/samba/passdb.tdb を作æˆã—ã¾ã™ã‹?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Windows ã®ã»ã¨ã‚“ã©ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã¨ã®äº’æ›æ€§ã®ãŸã‚ã«ã€Samba ã‚’æš—å·åŒ–" +"パスワードを使ã†ã‚ˆã†ã«è¨­å®šã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ã“ã‚Œã¯ãƒ¦ãƒ¼ã‚¶ã®ãƒ‘スワードを /" +"etc/passwd ã¨ã¯åˆ¥ã®ãƒ•ã‚¡ã‚¤ãƒ«ã«æ ¼ç´ã™ã‚‹ã“ã¨ã‚’å¿…è¦ã¨ã—ã¾ã™ã€‚ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯è‡ªå‹•çš„" +"ã«ä½œæˆã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ãŒã€ãƒ‘スワードã¯æ‰‹å‹•ã§ (smbpasswd を使ã£ã¦) 追加ã—ãª" +"ã‘ã‚Œã°ãªã‚‰ãšã€å°†æ¥ã«æ¸¡ã£ã¦æœ€æ–°çŠ¶æ…‹ã‚’ä¿ã¡ç¶šã‘るよã†æ•´ãˆã¦ãŠãå¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’作æˆã—ãªã„å ´åˆã€ãƒ—レインテキストパスワードを使ã†ã‚ˆã† Samba (ãŠ" +"よã³ãŠãらãã‚ãªãŸã®ã‚¯ãƒ©ã‚¤ã‚¢ãƒ³ãƒˆãƒžã‚·ãƒ³) ã®å†è¨­å®šãŒå¿…è¦ã§ã™ã€‚" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"詳細ã«ã¤ã„ã¦ã¯ã€samba-doc パッケージã«ã‚ã‚‹ /usr/share/doc/samba-doc/htmldocs/" +"ENCRYPTION.html ã‚’å‚ç…§ã—ã¦ãã ã•ã„。" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "デーモン" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "ã©ã®ã‚ˆã†ã« Samba を実行ã—ãŸã„ã§ã™ã‹?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Samba デーモン smbd ã¯é€šå¸¸ã®ãƒ‡ãƒ¼ãƒ¢ãƒ³ã¨ã—ã¦ã®å®Ÿè¡Œã¾ãŸã¯ inetd ã‹ã‚‰ã®å®Ÿè¡ŒãŒã§ã" +"ã¾ã™ã€‚デーモンã¨ã—ã¦å®Ÿè¡Œã™ã‚‹ã®ãŒãŠå‹§ã‚ã®æ‰‹æ®µã§ã™ã€‚" + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Samba ã®è¨­å®šã®æ®‹ã‚Šã®éƒ¨åˆ†ã¯ã€Samba プログラム (nmbd ãŠã‚ˆã³ smbd) を設定ã™ã‚‹" +#~ "ã®ã«ä½¿ã†ãƒ•ã‚¡ã‚¤ãƒ« /etc/samba/smb.conf ã«ã‚るパラメータã«å½±éŸ¿ã™ã‚‹è³ªå•ã§ã™ã€‚" +#~ "ç¾åœ¨ã® smb.conf ã¯ã€'include' è¡Œã¾ãŸã¯è¤‡æ•°è¡Œã«ã¾ãŸãŒã‚‹ã‚ªãƒ—ションをå«ã‚“ã§ã„" +#~ "ã¾ã™ã€‚ã“ã‚Œã¯è‡ªå‹•è¨­å®šå‡¦ç†ã‚’æ··ä¹±ã•ã›ã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã€å†ã³ãã‚ŒãŒä½œå‹•ã™ã‚‹ã‚ˆã†ã«" +#~ "ã™ã¹ã smb.conf ã®æ‰‹å‹•ã§ã®ä¿®æ­£ã‚’å¿…è¦ã¨ã—ã¾ã™ã€‚" + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "クライアントã‹ã‚‰ç…§ä¼šã•ã‚ŒãŸéš›ã«ã“ã®ã‚µãƒ¼ãƒãŒç¾ã‚Œã‚‹ã“ã¨ã«ãªã‚‹ãƒ¯ãƒ¼ã‚¯ã‚°ãƒ«ãƒ¼ãƒ—ã‚’" +#~ "指定ã—ã¦ãã ã•ã„。ã“ã®ãƒ‘ラメータ㯠security=domain 設定ãŒä½¿ã‚ã‚ŒãŸã¨ãã®ãƒ‰" +#~ "メインåも制御ã™ã‚‹ã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "ã»ã¨ã‚“ã©ã® Windows クライアントã¯æš—å·åŒ–ã•ã‚ŒãŸãƒ‘スワードを使ã£ã¦ SMB サーãƒ" +#~ "ã¨ã‚„ã‚Šå–ã‚Šã—ã¾ã™ã€‚クリアテキストパスワードを使ã„ãŸã„å ´åˆã¯ã€ã‚ãªãŸã® " +#~ "Windows ã®ãƒ¬ã‚¸ã‚¹ãƒˆãƒªã«ã‚るパラメータを変更ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "ã“ã“ã§ã€Œã¯ã„ã€ã¨ç­”ãˆã‚‹ã“ã¨ã‚’å¼·ããŠå‹§ã‚ã—ã¾ã™ã€‚ã“ã®å ´åˆã€æœ‰åŠ¹ãª /etc/samba/" +#~ "smbpasswd ファイルãŒã‚ã‚‹ã“ã¨ã‚’確èªã—ã€å„ユーザã®ãƒ‘スワード㯠smbpasswd コ" +#~ "マンドを使ã£ã¦è¨­å®šã—ã¦ãã ã•ã„。" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "詳細ã«ã¤ã„ã¦ã¯ã€samba-doc パッケージã«ã‚ã‚‹ /usr/share/doc/samba-doc/" +#~ "htmldocs/ENCRYPTION.html ã‚’å‚ç…§ã—ã¦ãã ã•ã„。" + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "passdb ãƒãƒƒã‚¯ã‚¨ãƒ³ãƒ‰ã®ãƒã‚§ãƒ¼ãƒ³åŒ–ã¯ã‚µãƒãƒ¼ãƒˆã•ã‚Œã¾ã›ã‚“" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "ãƒãƒ¼ã‚¸ãƒ§ãƒ³ 3.0.23 ã‹ã‚‰ã€samba 㯠\"passdb backend\" パラメータã§ã®è¤‡æ•°ã®" +#~ "ãƒãƒƒã‚¯ã‚¨ãƒ³ãƒ‰ã®ãƒã‚§ãƒ¼ãƒ³åŒ–をサãƒãƒ¼ãƒˆã—ã¾ã›ã‚“。ã‚ãªãŸã® smb.conf ファイルã¯ã€" +#~ "ãƒãƒƒã‚¯ã‚¨ãƒ³ãƒ‰ã®ãƒªã‚¹ãƒˆã‚’構æˆã™ã‚‹ passdb ãƒãƒƒã‚¯ã‚¨ãƒ³ãƒ‰ãƒ‘ラメータをå«ã‚“ã§ã„ã¾" +#~ "ã™ã€‚samba ã®æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã¯ã‚ãªãŸãŒã“れを訂正ã™ã‚‹ã¾ã§å‹•ä½œã—ã¾ã›ã‚“。" + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "/etc/samba/smbpasswd ã‚’ /var/lib/samba/passdb.tdb ã«ç§»å‹•ã—ã¾ã™ã‹?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 ã§ã¯ã€/etc/samba/smbpasswd ファイルã«ä»£ã‚ã‚‹ã€ã‚ˆã‚Šå®Œå…¨ãª SAM デー" +#~ "タベースインターフェイスãŒå°Žå…¥ã•ã‚Œã¦ã„ã¾ã™ã€‚" + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "既存㮠smbpasswd ファイルを自動的㫠/var/lib/samba/passdb.tdb ã«ç§»è¡Œã—ã¦ã‚ˆ" +#~ "ã„ã‹ã©ã†ã‹ç¢ºèªã—ã¦ãã ã•ã„。別㮠pdb ãƒãƒƒã‚¯ã‚¨ãƒ³ãƒ‰ (LDAP ãªã©) を代ã‚ã‚Šã«è¨ˆ" +#~ "ç”»ã—ã¦ã„ã‚‹ã®ã§ã‚ã‚Œã°ã€ã“ã“ã§ã¯ã€Œã„ã„ãˆã€ã¨ç­”ãˆã¦ãã ã•ã„。" --- samba-3.3.0.orig/debian/po/sk.po +++ samba-3.3.0/debian/po/sk.po @@ -0,0 +1,264 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# Miroslav Kure , 2006 +# Peter Mann , 2006 +# Ivan Masár , 2009 +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2009-02-15 08:16+0100\n" +"Last-Translator: Ivan Masár \n" +"Language-Team: Slovak \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "UpraviÅ¥ smb.conf, aby používal nastavenie WINS z DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Ak váš poÄítaÄ získava IP adresu z DHCP servera, môže vám tento server " +"ponúkaÅ¥ aj údaje o serveroch WINS (menných serveroch NetBIOS-u), ktoré sa " +"nachádzajú na vaÅ¡ej sieti. To vyžaduje zásah do súboru smb.conf, kde sa " +"nastaví naÄítavanie údajov o WINS serveroch zo súboru /etc/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Aby ste mohli využiÅ¥ túto vlastnosÅ¥, musíte maÅ¥ nainÅ¡talovaný balík dhcp3-" +"client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Automaticky nastaviÅ¥ smb.conf?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"ZvyÅ¡ok nastavenia Samby sa zaoberá otázkami, ktoré ovplyvňujú parametre " +"uvedené v /etc/samba/smb.conf, Äo je konfiguraÄný súbor pre programy Samba " +"(nmbd a smbd). Váš súÄasný súbor smb.conf obsahuje riadok „include“ alebo " +"voľbu, ktorá presahuje viac riadkov. Toto môže zapríÄiniÅ¥ zlé automatické " +"nastavenie, takže pre správnu funkÄnosÅ¥ možno budete musieÅ¥ upraviÅ¥ smb.conf " +"manuálne." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Ak si nezvolíte túto možnosÅ¥, budete musieÅ¥ sami zvládnuÅ¥ vÅ¡etky nastavenia " +"a nebudete môcÅ¥ využívaÅ¥ výhody pravidelných vylepÅ¡ení tohto súboru." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Pracovná skupina/Názov domény:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Zadajte názov pracovnej skupiny pre tento poÄítaÄ. Táto voľba urÄuje v " +"ktorej pracovnej skupine sa má tento systém objaviÅ¥ keÄ sa k nemu pristupuje " +"ako k serveru, pri prehliadaní rôznymi rozhraniami a názov domény, ktorá sa " +"používa pri nastavení „security=domain“." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "PoužiÅ¥ Å¡ifrovanie hesiel?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"VÅ¡etky súÄasné poÄítaÄe Windows používajú na komunikáciu so SMB/CIFS " +"servermi Å¡ifrované heslá. Ak chcete použiÅ¥ neÅ¡ifrované heslá, musíte zmeniÅ¥ " +"parameter v registroch systému Windows." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Povolenie tejto voľby sa dôrazne odporúÄa, pretože podpora neÅ¡ifrovaných " +"hesiel v produktoch Microsoft Windows sa už neudržiava. V tom prípade sa " +"uistite, že máte platný súbor /etc/samba/smbpasswd a že v ňom nastavíte " +"heslá vÅ¡etkým používateľom príkazom smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "VytvoriÅ¥ databázu hesiel /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Kvôli kompatibilite s predvoleným nastavením väÄÅ¡iny verzií Windows sa musí " +"Samba nastaviÅ¥ na používanie Å¡ifrovaných hesiel. To vyžaduje uloženie " +"používateľských hesiel v inom súbore ako /etc/passwd. Tento súbor sa môže " +"vytvoriÅ¥ automaticky, ale heslá do neho musíte pridaÅ¥ manuálne programom " +"smbpasswd a taktiež ho musíte neustále aktualizovaÅ¥." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Ak tento súbor nevytvoríte, budete musieÅ¥ nastaviÅ¥ Sambu (a zrejme aj " +"poÄítaÄe klientov) aby používali neÅ¡ifrované heslá." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Podrobnosti nájdete v súbore /usr/share/doc/samba-doc/htmldocs/ENCRYPTION." +"html z balíka samba-doc." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "démoni" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Ako chcete spúšťaÅ¥ Sambu?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Samba server smbd sa môže spúšťaÅ¥ ako obyÄajný démon (odporúÄa sa) alebo sa " +"môže spúšťaÅ¥ z inetd." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "ZvyÅ¡ok nastavenia Samby sa zaoberá otázkami, ktoré ovplyvňujú parametre " +#~ "uvedené v /etc/samba/smb.conf, Äo je konfiguraÄný súbor pre Samba " +#~ "programy (nmbd a smbd). Váš súÄasný súbor smb.conf obsahuje riadok " +#~ "'include' alebo voľbu, ktorá presahuje viac riadkov. Toto môže zapríÄiniÅ¥ " +#~ "zlé automatické nastavenie, takže pre správnu funkÄnosÅ¥ možno budete " +#~ "musieÅ¥ upraviÅ¥ smb.conf manuálne." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Zadajte názov pracovnej skupiny, v ktorej sa má objaviÅ¥ server pri " +#~ "prístupe klientov. Tento parameter zároveň urÄuje názov domény, ktorá sa " +#~ "používa pri nastavení security=domain." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "VÅ¡etky súÄasné Windows poÄítaÄe používajú na komunikáciu so SMB servermi " +#~ "Å¡ifrované heslá. Ak chcete použiÅ¥ neÅ¡ifrované heslá, musíte zmeniÅ¥ " +#~ "parameter v registroch systému Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Povolenie tejto voľby sa veľmi odporúÄa. V tom prípade sa uistite, že " +#~ "máte platný súbor /etc/samba/smbpasswd a že v ňom nastavíte heslá vÅ¡etkým " +#~ "používateľom príkazom smbpasswd." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Podrobnosti nájdete v súbore /usr/share/doc/samba-doc/htmldocs/ENCRYPTION." +#~ "html z balíka samba-doc." --- samba-3.3.0.orig/debian/po/pt_BR.po +++ samba-3.3.0/debian/po/pt_BR.po @@ -0,0 +1,304 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-12 16:16-0200\n" +"Last-Translator: André Luís Lopes \n" +"Language-Team: Debian-BR Project \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Modificar smb.conf para usar configurações WINS fornecidas via DHCP ?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Caso seu computador obtenha as informações de endereçamento IP de um " +"servidor DHCP na rede, o servidor DHCP poderá também fornecer informações " +"sobre servidor WINS (\"Servidor de Nomes NetBIOS\") presentes na rede. Para " +"que o Samba leia as configurações WINS fornecidas pelo servidor DHCP " +"automaticamente do arquivo /etc/samba/dhcp.conf, é preciso modificar seu " +"arquivo smb.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"O pacote dhcp3-client deve estar instalado para que esse recurso possa ser " +"utilizado." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Configurar smb.conf automaticamente ?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"O restante da configuração do Samba lida com questões que afetam parâmetros " +"no arquivo /etc/samba/smb.conf, que é o arquivo usado para configurar os " +"programas Samba (nmbd e smbd). Seu arquivo smb.conf atual contém uma linha " +"'include' ou uma opção que ocupa diversas linhas, o que pode confundir o " +"processo de configuração automatizado e requerer que você edite seu arquivo " +"smb.conf manualmente para torná-lo funcional novamente." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Caso você opte por essa opção, você precisará lidar com quaisquer mudanças " +"de configuração manualmente e você não poderá aproveitar os melhoramentos " +"periódicos de configuração." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Nome de Domínio/Grupo de Trabalho :" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Por favor, especifique o grupo de trabalho no qual quer que este servidor " +"pareça estar quando questionado por clientes. Note que este parâmetro também " +"controla o nome de Domínio usado com a configuração security=domain." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Usar senhas criptografadas ?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Todos os clientes Windows atuais comunicam-se com servidores SMB usando " +"senhas encriptadas. Caso você queira usar senhas em texto puro você " +"precisará modificar um parâmetro no registro de seu Windows." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Habilitar esta opção é altamente recomendado. Caso você o faça, certifique-" +"se de possuir um arquivo /etc/samba/smbpasswd e que você tenha senhas " +"definidas no mesmo para cada usuário usando o comando smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Gerar a base de dados para senhas /var/lib/samba/passdb.tdb ?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Para ser compatível com os padrões na maioria das versões do Windows, o " +"Samba deve ser configurado para utilizar senhas encriptadas. Isto requer que " +"as senhas dos usuários sejam armazenadas em um arquivo diferente do arquivo /" +"etc/passwd. Esse arquivo pode ser criado automaticamente, mas as senhas " +"devem ser definidas manualmente através da execução do utilitário smbpasswd " +"e devem ser mantidas atualizadas no futuro." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Caso você não o crie, você terá que reconfigurar o samba (e provavelmente " +"suas máquinas clientes) para utilização de senhas em texto puro." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Consulte o arquivo /usr/share/doc/samba-doc/htmldos/ENCRYPTION.html, " +"fornecido pelo pacote samba-doc, para conhecer maiores detalhes." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "daemons" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Como você deseja que o Samba seja executado ?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"O serviço Samba smbd pode ser executado como daemon normal ou a partir do " +"inetd. Executá-lo como daemon é o método recomendado." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "O restante da configuração do Samba lida com questões que afetam " +#~ "parâmetros no arquivo /etc/samba/smb.conf, que é o arquivo usado para " +#~ "configurar os programas Samba (nmbd e smbd). Seu arquivo smb.conf atual " +#~ "contém uma linha 'include' ou uma opção que ocupa diversas linhas, o que " +#~ "pode confundir o processo de configuração automatizado e requerer que " +#~ "você edite seu arquivo smb.conf manualmente para torná-lo funcional " +#~ "novamente." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Por favor, especifique o grupo de trabalho no qual quer que este servidor " +#~ "pareça estar quando questionado por clientes. Note que este parâmetro " +#~ "também controla o nome de Domínio usado com a configuração " +#~ "security=domain." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Todos os clientes Windows atuais comunicam-se com servidores SMB usando " +#~ "senhas encriptadas. Caso você queira usar senhas em texto puro você " +#~ "precisará modificar um parâmetro no registro de seu Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Habilitar esta opção é altamente recomendado. Caso você o faça, " +#~ "certifique-se de possuir um arquivo /etc/samba/smbpasswd e que você tenha " +#~ "senhas definidas no mesmo para cada usuário usando o comando smbpasswd." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Consulte o arquivo /usr/share/doc/samba-doc/htmldos/ENCRYPTION.html, " +#~ "fornecido pelo pacote samba-doc, para conhecer maiores detalhes." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Múltiplos backends passdb não são suportados" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Desde a versão 3.0.23, o Samba não mais suporta múltiplos backends como " +#~ "valor para o parâmetro \"passdb backend\". Parece que seu arquivo smb." +#~ "conf possui um parâmetro passdb backend que consiste de uma lista de " +#~ "backends. A nova versão do Samba não funcionará até que você corrija isso." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Mover /etc/samba/smbpasswd para /var/lib/samba/passdb.tdb ?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "O Samba 3.0 introduziu uma interface mais completa com a base de dados " +#~ "SAM, a qual substitui o arquivo /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Por favor, confirme se você gostaria que o arquivo smbpasswd existente " +#~ "fosse migrado automaticamente para /var/lib/samba/passdb.tdb. Não aceite " +#~ "essa opção caso você planeje utilizar um outro backend pdb (como LDAP, " +#~ "por exemplo)." + +#~ msgid "daemons, inetd" +#~ msgstr "daemons, inetd" --- samba-3.3.0.orig/debian/po/de.po +++ samba-3.3.0/debian/po/de.po @@ -0,0 +1,305 @@ +# translation of samba_3.0.23b-2 to German +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# Holger Wansing , 2006. +# Martin Krüger , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-12 22:27+0100\n" +"Last-Translator: Holger Wansing \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"Soll smb.conf so abgeändert werden, dass per DHCP angebotene WINS-" +"Einstellungen verwendet werden?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Wenn Ihr Computer IP-Adress-Informationen von einem DHCP-Server im Netzwerk " +"bezieht, kann es sein, dass auch Informationen über WINS-Server (»NetBIOS-" +"Name-Server«) zur Verfügung gestellt werden, sollten solche Server im " +"Netzwerk vorhanden sein. Eine Änderung der Datei smb.conf ist erforderlich, " +"damit die über DHCP angebotenen WINS-Einstellungen automatisch aus der " +"Datei /etc/samba/dhcp.conf übernommen werden." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Sie müssen das Paket dhcp3-client installiert haben, um diese Funktionalität " +"nutzen zu können." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Soll smb.conf automatisch konfiguriert werden?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Der Rest der Konfiguration von Samba betrifft Fragen über Parameter in /etc/" +"samba/smb.conf (das ist die Datei, die genutzt wird, um die Samba-Programme " +"(nmbd und smbd) zu konfigurieren). Ihre aktuelle smb.conf enthält eine " +"»include«-Zeile oder eine mehrzeilige Option. Dies kann den automatischen " +"Konfigurationsprozess stören, so dass Sie eventuell Ihre smb.conf-Datei " +"manuell korrigieren müssen, um Samba wieder zum Laufen zu bekommen." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Wenn Sie diese Option nicht wählen, werden Sie jede Änderung an der " +"Konfiguration manuell vornehmen müssen und können nicht den Vorteil von " +"regelmäßigen Verbesserungen an der Konfiguration nutzen." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Arbeitsgruppen-/Domain-Name:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Bitte geben Sie die Arbeitsgruppe an, in der der Server bei Anfragen von " +"Clients erscheinen soll. Beachten Sie, dass dieser Parameter auch den Domain-" +"Namen festlegt, der für die Einstellung security=domain verwendet wird." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Verschlüsselte Passwörter verwenden?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Alle aktuellen Windows-Clients kommunizieren mit SMB-Servern mittels " +"verschlüsselter Passwörter. Wenn Sie Passwörter im Klartext verwenden " +"möchten, müssen Sie einen Parameter in der Windows Registry ändern. " + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Es wird dringendst empfohlen, diese Option zu aktivieren. Stellen Sie in dem " +"Fall sicher, dass Sie eine gültige /etc/samba/smbpasswd-Datei haben und dort " +"mittels dem smbpasswd-Befehl Passwörter für alle Benutzer setzen." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Samba-Passwort-Datenbank (/var/lib/samba/passdb.tdb) erstellen?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Um mit den Standards in den meisten Windows-Versionen kompatibel zu sein, " +"muss Samba konfiguriert werden, verschlüsselte Passwörter zu benutzen. Dies " +"erfordert es, Benutzerpasswörter in einer anderen Datei als in /etc/passwd " +"abzulegen. Diese Datei kann automatisch erstellt werden, aber die Passwörter " +"müssen über den Befehl smbpasswd manuell eingefügt werden und in der Zukunft " +"aktuell gehalten werden." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Wenn Sie sie nicht erstellen, müssen Sie Samba (und möglicherweise auch die " +"Clients) neu konfigurieren, so dass diese unverschlüsselte Passwörter " +"benutzen." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Details finden Sie in /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-" +"Guide/pwencrypt.html aus dem samba-doc-Paket." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "Daemon" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Wie möchten Sie Samba starten?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Der Samba-Prozess smbd kann als normaler Hintergrunddienst (Daemon) laufen " +"oder über inetd gestartet werden. Ersteres wird jedoch empfohlen." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Der Rest der Konfiguration von Samba betrifft Fragen über Parameter in /" +#~ "etc/samba/smb.conf (das ist die Datei, die genutzt wird, um die Samba-" +#~ "Programme (nmbd und smbd) zu konfigurieren). Ihre aktuelle smb.conf " +#~ "enthält eine »include«-Zeile oder eine mehrzeilige Option. Dies kann den " +#~ "automatischen Konfigurationsprozess stören, so dass Sie eventuell Ihre " +#~ "smb.conf-Datei manuell korrigieren müssen, um Samba wieder zum Laufen zu " +#~ "bekommen." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Bitte geben Sie die Arbeitsgruppe an, in der der Server bei Anfragen von " +#~ "Clients erscheinen soll. Beachten Sie, dass dieser Parameter auch den " +#~ "Domain-Namen festlegt, der für die Einstellung security=domain verwendet " +#~ "wird." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Alle aktuellen Windows-Clients kommunizieren mit SMB-Servern mittels " +#~ "verschlüsselter Passwörter. Wenn Sie Passwörter im Klartext verwenden " +#~ "möchten, müssen Sie einen Parameter in der Windows Registry ändern. " + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Es wird dringendst empfohlen, diese Option zu aktivieren. Stellen Sie in " +#~ "dem Fall sicher, dass Sie eine gültige /etc/samba/smbpasswd-Datei haben " +#~ "und dort mittels dem smbpasswd-Befehl Passwörter für alle Benutzer setzen." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Details finden Sie in /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html " +#~ "aus dem samba-doc-Paket." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Auflistung mehrerer passdb-Backends wird nicht unterstützt." + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Seit Version 3.0.23 wird die Angabe von mehreren Backends im »passdb " +#~ "backend«-Parameter von Samba nicht mehr unterstützt. Es scheint so, als ob " +#~ "Ihre smb.conf-Datei einen »passdb backend«-Parameter mit einer Auflistung " +#~ "mehrerer Backends enthält. Die neue Samba-Version wird nicht " +#~ "funktionieren, bevor dies behoben wurde." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "Daten von /etc/samba/smbpasswd nach /var/lib/samba/passdb.tdb verschieben?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Mit Samba 3.0 wurde eine vollständigere SAM-Datenbank-Schnittstelle " +#~ "eingeführt, die die /etc/samba/smbpasswd-Datei ersetzt." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Möchten Sie die bestehende smbpasswd-Datei automatisch nach /var/lib/" +#~ "samba/passdb.tdb migrieren? Wenn Sie vorhaben, ein anderes pdb-Backend (z." +#~ "B. LDAP) zu verwenden, sollten Sie hier mit »Nein« antworten." --- samba-3.3.0.orig/debian/po/el.po +++ samba-3.3.0/debian/po/el.po @@ -0,0 +1,318 @@ +# translation of samba_el.po to +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# QUAD-nrg.net , 2006. +msgid "" +msgstr "" +"Project-Id-Version: samba_el\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-16 11:29+0200\n" +"Last-Translator: galaxico\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"ΤÏοποποίηση του smb.conf ώστε να χÏησιμοποιεί τις Ïυθμίσεις WINS από τον " +"server DHCP;" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Αν ο υπολογιστής σας παίÏνει πληÏοφοÏίες για την διεÏθυνση IP από έναν " +"server DHCP στο δίκτυο, ο server DHCP μποÏεί επίσης να δώσει πληÏοφοÏίες " +"σχετικά με server WINS (\"NetBIOS name servers\") που υπάÏχουν στο δίκτυο. " +"Αυτό απαιτεί μια αλλαγή στο αÏχείο σας smb.conf ώστε Ïυθμίσεις για τον " +"server WINS που παÏέχονται από τον εξυπηÏετητή DHCP να διαβάζονται αυτόματα " +"από από το αÏχείο /etc/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Για να εκμεταλλευτείτε αυτό το γνώÏισμα θα Ï€Ïέπει να εγκαταστήσετε το πακέτο " +"dhcp3-client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Αυτόματη ÏÏθμιση του αÏχείου smb.conf;" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Το υπόλοιπο της ÏÏθμισης της υπηÏεσίας Samba έχει να κάνει με εÏωτήσεις που " +"επηÏεάζουν παÏαμέτÏους στο αÏχείο etc/samba/smb.conf, που είναι το αÏχείο " +"που χÏησιμοποιείται για την ÏÏθμιση των Ï€ÏογÏαμμάτων της Samba (nmbd και " +"smbd). To παÏόν αÏχείο σας smb.conf πεÏιέχει μια γÏαμμή 'include' ή μια " +"επιλογή που εκτείνεται σε πολλαπλές γÏαμμές, που θα μποÏοÏσαν να μπεÏδέψουν " +"την διαδικασία της αυτόματης ÏÏθμισης και απαιτοÏν την διόÏθωση του αÏχείου " +"smb.conf από σας με το χέÏι ώστε να ξαναγίνει λειτουÏγικό." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Αν δεν διαλέξετε αυτή την επιλογή , θα Ï€Ïέπει να χειÏιστείτε τις όποιες " +"αλλαγές στις Ïυθμίσεις μόνοι σας και δεν θα είστε σε θέση να εκμεταλλευτείτε " +"τις βελτιώσεις που κατά καιÏοÏÏ‚ γίνονται σε αυτές." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Όνομα Ομάδας ΕÏγασίας/Τομέα:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"ΠαÏακαλώ Ï€ÏοσδιοÏίστε το όνομα της ομάδας εÏγασίας (workgroup) στην οποία " +"θέλετε να εμφανίζει αυτός ο εξυπηÏετητής ότι ανήκει όταν εÏωτάται από τους " +"πελάτες. Σημειώστε ότι αυτή η παÏάμετÏος ελέγχει επίσης το όνομα του τομέα " +"που χÏησιμοποιείται στην ÏÏθμιση security=domain." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Îα χÏησιμοποιηθεί κÏυπτογÏάφηση των κωδικών Ï€Ïόσβασης;" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Όλες οι Ï€Ïόσφατες εκδόσεις των πελατών Windows επικοινωνοÏν με τους " +"εξυπηÏετητές SMB χÏησιμοποιώντας κÏυπτογÏαφημένους κωδικοÏÏ‚ Ï€Ïόσβασης. Αν " +"θέλετε να χÏησιμοποιήσετε μη κÏυπτογÏαφημένους κωδικοÏÏ‚ θα Ï€Ïέπει να " +"αλλάξετε μια παÏάμετÏο στο registry των Windows." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Η ενεÏγοποίηση αυτής της επιλογής συνιστάται έντονα. Αν την κάνετε, " +"βεβαιωθείτε ότι έχετε ένα έγκυÏο αÏχείο /etc/samba/smbpasswd και ότι οÏίζετε " +"κωδικοÏÏ‚ Ï€Ïόσβασης σ' αυτό για κάθε χÏήστη που χÏησιμοποιεί την εντολή " +"smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "" +"Îα δημιουÏγηθεί η βάση δεδομένων των κωδικών Ï€Ïόσβασης samba, /var/lib/samba/" +"passdb.tdb;" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Για να είναι συμβατή με τις Ï€Ïοεπιλογές στις πεÏισσότεÏες εκδόσεις των " +"Windows, η υπηÏεσία Samba θα Ï€Ïέπει να Ïυθμιστεί ώστε να χÏησιμοποιεί " +"κÏυπτογÏαφημένους κωδικοÏÏ‚ Ï€Ïόσβασης. Αυτό απαιτεί την φÏλαξη των κωδικών " +"Ï€Ïόσβασης σε ένα αÏχείο ξεχωÏιστά από το /etc/passwd. Αυτό το αÏχείο μποÏεί " +"να δημιουÏγηθεί αυτόματα, αλλά οι κωδικοί Ï€Ïόσβασης θα Ï€Ïέπει να Ï€ÏοστεθοÏν " +"με το χέÏι εκτελώντας την εντολή smbpasswd και να διατηÏοÏνται πάντα " +"ενημεÏωμένα στο μέλλον." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Αν δεν δημιουÏγήσετε το αÏχείο, θα Ï€Ïέπει να ξαναÏυθμίσετε την υπηÏεσία " +"Samba (και πιθανόν τα μηχανήματα πελάτης της υπηÏεσίας) ώστε βα " +"χÏησιμοποιοÏν μη κÏυπτογÏαφημένους κωδικοÏÏ‚ Ï€Ïόσβασης." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Δείτε το αÏχείο usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html από το " +"πακέτο samba-doc για πεÏισσότεÏες λεπτομέÏειες." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "δαίμονες" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Πώς θέλετε να εκτελείται η υπηÏεσία Samba;" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Ο δαίμονας της υπηÏεσίας Samba μποÏεί να Ï„Ïέχει σαν ένας συνηθισμένος " +"δαίμονας ή από τον inetd. Η εκτέλεσή του σαν συνηθισμένου δαίμονα είναι η " +"συνιστώμενη Ï€Ïοσέγγιση." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Το υπόλοιπο της ÏÏθμισης της υπηÏεσίας Samba έχει να κάνει με εÏωτήσεις " +#~ "που επηÏεάζουν παÏαμέτÏους στο αÏχείο etc/samba/smb.conf, που είναι το " +#~ "αÏχείο που χÏησιμοποιείται για την ÏÏθμιση των Ï€ÏογÏαμμάτων της Samba " +#~ "(nmbd και smbd). To παÏόν αÏχείο σας smb.conf πεÏιέχει μια γÏαμμή " +#~ "'include' ή μια επιλογή που εκτείνεται σε πολλαπλές γÏαμμές, που θα " +#~ "μποÏοÏσαν να μπεÏδέψουν την διαδικασία της αυτόματης ÏÏθμισης και " +#~ "απαιτοÏν την διόÏθωση του αÏχείου smb.conf από σας με το χέÏι ώστε να " +#~ "ξαναγίνει λειτουÏγικό." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "ΠαÏακαλώ Ï€ÏοσδιοÏίστε το όνομα της ομάδας εÏγασίας (workgroup) στην οποία " +#~ "θέλετε να εμφανίζει αυτός ο εξυπηÏετητής ότι ανήκει όταν εÏωτάται από " +#~ "τους πελάτες. Σημειώστε ότι αυτή η παÏάμετÏος ελέγχει επίσης το όνομα του " +#~ "τομέα που χÏησιμοποιείται στην ÏÏθμιση security=domain." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Όλες οι Ï€Ïόσφατες εκδόσεις των πελατών Windows επικοινωνοÏν με τους " +#~ "εξυπηÏετητές SMB χÏησιμοποιώντας κÏυπτογÏαφημένους κωδικοÏÏ‚ Ï€Ïόσβασης. Αν " +#~ "θέλετε να χÏησιμοποιήσετε μη κÏυπτογÏαφημένους κωδικοÏÏ‚ θα Ï€Ïέπει να " +#~ "αλλάξετε μια παÏάμετÏο στο registry των Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Η ενεÏγοποίηση αυτής της επιλογής συνιστάται έντονα. Αν την κάνετε, " +#~ "βεβαιωθείτε ότι έχετε ένα έγκυÏο αÏχείο /etc/samba/smbpasswd και ότι " +#~ "οÏίζετε κωδικοÏÏ‚ Ï€Ïόσβασης σ' αυτό για κάθε χÏήστη που χÏησιμοποιεί την " +#~ "εντολή smbpasswd." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Δείτε το αÏχείο usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html από το " +#~ "πακέτο samba-doc για πεÏισσότεÏες λεπτομέÏειες." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Η αλÏσωση των backend των passdb δεν υποστηÏίζεται" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "ΑÏχίζοντας με την έκδοση 3.0.23, η samba δεν υποστηÏίζει πλέον την " +#~ "αλÏσωση πολλαπλών backend για την παÏάμετÏο \"passdb backend\". Φαίνεται " +#~ "ότι το αÏχείο σας smb.conf πεÏιέχει μια παÏάμετÏο backend passdb " +#~ "αποτελοÏμενη από μια λίστα τέτοιων backend. Η καινοÏÏια έκδοση της samba " +#~ "δεν θα δουλέψει μέχÏι να διοÏθώσετε αυτή τη ÏÏθμιση." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "Μετακίνηση του αÏχείου /etc/samba/smbpasswd στο /var/lib/samba/passdb.tdb;" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Η έκδοση 3.0 της Samba εισήγαγε μια πιο ολοκληÏωμένη διεπαφή για την βάση " +#~ "δεδομένων SAM που αντικαθιστά το αÏχείο /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "ΠαÏακαλώ επιβεβαιώστε αν θέλετε το υπάÏχον αÏχείο smbpasswd να μεταβεί " +#~ "αυτόματα στο /var/lib/samba/passdb.tdb. Μην κάνετε αυτή την επιλογή αν " +#~ "σκοπεÏετε αντί γι αυτό να χÏησιμοποιήσετε ένα άλλο pdb backend (πχ. LDAP)." --- samba-3.3.0.orig/debian/po/he.po +++ samba-3.3.0/debian/po/he.po @@ -0,0 +1,286 @@ +# translation of samba.po to Hebrew +# translation of PACKAGE. +# Copyright (C) 2007 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Katriel Traum , 2007 +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-09-25 21:03+0200\n" +"Last-Translator: Katriel Traum \n" +"Language-Team: Hebrew \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "×”×× ×œ×©× ×•×ª ×ת הקובץ smb.conf כדי שישתמש ב×ופציית WINS מתוך DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"במידה ומחשב ×–×” מקבל כתובת IP משרת DHCP ברשת, ייתכן ×›×™ שרת ×”-DHCP ×’× ×ž×¡×¤×§ " +"מידע על שרתי WINS (שרתי מיפוי כתובות NetBIOS) ×”×–×ž×™× ×™× ×‘×¨×©×ª. שימוש במידע ×–×” " +"מצריך שינוי בקובץ smb.conf כדי שכתובת שרת ×”-WINS שמספק שרת ×”-DHCP, ×ª×™×§×¨× " +"בצורה ×וטומטית מהקובץ /etc/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "על החבילה dhcp3-client להיות מותקנת כדי ל×פשר מ×פיין ×–×”." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "×”×× ×œ×”×’×“×™×¨ ×ת smb.conf בצורה ×וטומטית?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"ש×ר תהליך ההגדרה של Samba עוסק בש×לות ×שר משפיעות על ×¤×¨×ž×˜×¨×™× ×‘×§×•×‘×¥ /etc/" +"samba/smb.conf. קובץ ×–×” ×”×•× ×§×•×‘×¥ ההגדרות הר×שי ×שר מכיל ×ת ×”×¤×¨×ž×˜×¨×™× ×©×œ שרתי " +"הרקע של Samba (×©×”× smbd ו-nmbd). הקובץ smb.conf הנוכחי שלך כולל שורת " +"'include' ×ו פרמטר ×שר מתפרש על כמה שורות. ×¤×¨×ž×˜×¨×™× ×לו ×¢×©×•×™×™× ×œ×‘×œ×‘×œ ×ת תהליך " +"ההגדרה ×”×וטומטי, ויצריכו עריכה ידנית של הקובץ smb.conf על מנת לתקן ×ת הבעיות " +"ול×פשר ל-Samba לעובד." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"×× ×œ× ×ª×‘×—×¨ ב×פשרות זו, ×™×”×™×” עליך לבצע ×©×™× ×•×™×™× ×‘×¢×¦×ž×š ובצורה ידנית. כמו כן, ×œ× " +"תוכל להשתמש בשיפורי תצורה ×שר ×ž×ª×‘×¦×¢×™× ×ª×§×•×¤×ª×™×ª." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "מהו ×©× ×§×‘×•×¦×ª העבודה/×ž×ª×—× (Workgroup/Domain)?" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"×× × ×¦×™×™×Ÿ ×ת ×©× ×§×‘×•×¦×ª העבודה (Workgroup) ששרת ×–×” יציג ללקוחות ×שר יתחברו " +"×ליו. ×©×™× ×œ×‘ ×›×™ ×©× ×§×‘×•×¦×ª העבודה ×’× ×§×•×‘×¢ ×ת ×©× ×”×ž×ª×—× (Domain) בעת שימוש " +"ב×פשרות security=domain." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "×”×× ×œ×”×©×ª×ž×© בסיסמ×ות מוצפנות?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"כל הלקוחות ×”×—×“×©×™× ×ž×¡×•×’-Windows ×ž×ª×§×©×¨×™× ×¢× ×©×¨×ª×™ SMB בעזרת סיסמ×ות מוצפנות. ×× " +"תרצה להשתמש בסיסמ×ות ש×ינן מוצפנות, ×™×”×™×” עליך לבצע ×©×™× ×•×™×™× ×‘-Registry של " +"לקוח ×”-Windows." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"הפעלת ×ופציה זו מומלצת מ×וד. במידה ותופעל, ×•×•×“× ×›×™ ×§×™×™× ×”×§×•×‘×¥ /etc/samba/" +"smbpasswd, וכי ×”×•× ×ª×§×™×Ÿ. בנוסף, יש לד×וג שהקובץ יכיל סיסמה בעבור כל משתמש " +"בעזרת שימוש בפקודה smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "" +"×”×× ×œ×¦×•×¨ מסד × ×ª×•× ×™× ×©×œ סיסמ×ות עבור שרת ×”-Samba, בקובץ /var/lib/samba/passdb." +"tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"כדי להת××™× ×œ×‘×¨×™×¨×ª המחדל ברוב הגרס×ות של Windows, על Samba להיות מוגדרת " +"להשתמש בסיסמ×ות מוצפנות. ×פשרות זו מצריכה ×חסון של סיסמ×ות בקובץ שונה מ /etc/" +"passwd. ניתן ליצור קובץ ×–×” בצורה ×וטומטית, ×ך יש צורך להוסיף ×ת הסיסמ×ות " +"ולתחזק ×ותן בעתיד בצורה ידנית בעזרת הפקודה smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"×× ×œ× ×ª×¦×•×¨ ×ת ×–×”, ×™×”×™×” עליך לשנות ×ת התצורה של שרת ×”-Samba (וסביר להניח ×©×’× " +"של כל לקוחותיו) להשתמש בסיסמ×ות ש×ינן מוצפנות. " + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"ר××” עוד מידע בקובץ /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/" +"pwencrypt.html מתוך החבילה samba-doc." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "תהליכי רקע" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "כיצד תרצה להריץ ×ת Samba?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"תהליך הרקע של Samba ×©× ×§×¨× smbd יכול לרוץ כתהליך רקע רגיל ×ו דרך inetd. ריצה " +"כתהליך רקע ×”×™× ×”×©×™×˜×” המומלצת." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "ש×ר תהליך ההגדרה של Samba עוסק בש×לות ×שר משפיעות על ×¤×¨×ž×˜×¨×™× ×‘×§×•×‘×¥ /etc/" +#~ "samba/smb.conf. קובץ ×–×” ×”×•× ×§×•×‘×¥ ההגדרות הר×שי ×שר מכיל ×ת ×”×¤×¨×ž×˜×¨×™× ×©×œ " +#~ "שרתי הרקע של Samba (×©×”× smbd ו-nmbd). הקובץ smb.conf הנוכחי שלך כולל שורת " +#~ "'include' ×ו פרמטר ×שר מתפרש על כמה שורות. ×¤×¨×ž×˜×¨×™× ×לו ×¢×©×•×™×™× ×œ×‘×œ×‘×œ ×ת " +#~ "תהליך ההגדרה ×”×וטומטי, ויצריכו עריכה ידנית של הקובץ smb.conf על מנת לתקן " +#~ "×ת הבעיות ול×פשר ל-Samba לעובד." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "×× × ×¦×™×™×Ÿ ×ת ×©× ×§×‘×•×¦×ª העבודה (Workgroup) ששרת ×–×” יציג ללקוחות ×שר יתחברו " +#~ "×ליו. ×©×™× ×œ×‘ ×›×™ ×©× ×§×‘×•×¦×ª העבודה ×’× ×§×•×‘×¢ ×ת ×©× ×”×ž×ª×—× (Domain) בעת שימוש " +#~ "ב×פשרות security=domain." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "כל הלקוחות ×”×—×“×©×™× ×ž×¡×•×’-Windows ×ž×ª×§×©×¨×™× ×¢× ×©×¨×ª×™ SMB בעזרת סיסמ×ות מוצפנות. " +#~ "×× ×ª×¨×¦×” להשתמש בסיסמ×ות ש×ינן מוצפנות, ×™×”×™×” עליך לבצע ×©×™× ×•×™×™× ×‘-Registry " +#~ "של לקוח ×”-Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "הפעלת ×ופציה זו מומלצת מ×וד. במידה ותופעל, ×•×•×“× ×›×™ ×§×™×™× ×”×§×•×‘×¥ /etc/samba/" +#~ "smbpasswd, וכי ×”×•× ×ª×§×™×Ÿ. בנוסף, יש לד×וג שהקובץ יכיל סיסמה בעבור כל משתמש " +#~ "בעזרת שימוש בפקודה smbpasswd." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "ר××” עוד מידע בקובץ /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html מתוך " +#~ "החבילה samba-doc." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "שינוי סוג מסד הסיסמ×ות (passdb backends) ×ינו ניתמך" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "החל מגרסה 3.0.23, שרת Samba ×ינו מ×פשר שרשור של כמה מסדי סיסמ×ות בפרמטר " +#~ "\"passdb-backend\". נר××” ×›×™ הקובץ smb.conf שלך כולל פרמטר ×שר מכיל רשימה " +#~ "של כמה מסדי סיסמ×ות. הגירסה החדשה של samba ×œ× ×ª×¢×‘×•×“ עד ×שר בעיה זו תתוקן." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "×”×× ×œ×”×–×™×– ×ת /etc/samba/smbpasswd ל- /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "פרויקט Samba הציג בגרסה 3.0 מנשק חדש למסד ×”×ž×©×ª×ž×©×™× ×•×”×¡×™×¡×ž×ות (SAM) ×שר ×‘× " +#~ "×‘×ž×§×•× ×”×§×•×‘×¥ /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "×× × ×שר ×›×™ ברצונך להמיר בצורה ×וטומטית, ×ת הקובץ smbpasswd ×”×§×™×™× ×œ×§×•×‘×¥ /" +#~ "var/lib/samba/passdb.tdb. ×ל תבחר ב×ופציה זו ×× ×‘×›×•×•× ×ª×š להשתמש במסד " +#~ "סיסמ×ות (pdb) ×חר (למשל LDAP) במקו×." --- samba-3.3.0.orig/debian/po/zh_CN.po +++ samba-3.3.0/debian/po/zh_CN.po @@ -0,0 +1,284 @@ +# Simplified Chinese translation for samba package's debconf msg +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# Haifeng Chen , 2006 +# Carlos Z.F. Liu , 2006 +# +msgid "" +msgstr "" +"Project-Id-Version: 3.0.22-1\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2006-10-03 19:36-0500\n" +"Last-Translator: Carlos Z.F. Liu \n" +"Language-Team: Debian Chinese [GB] \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "è¦ä¿®æ”¹ smb.conf 以使用从 DHCP 获得的 WINS 设定å—?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"如果您的计算机是从网络上的 DHCP æœåŠ¡å™¨èŽ·å– IP 地å€ä¿¡æ¯ï¼Œè¯¥ DHCP æœåŠ¡ä¹Ÿå¯èƒ½ä¼š" +"æ供网络上的 WINS æœåŠ¡å™¨ (“NetBIOS 域åæœåŠ¡â€) ä¿¡æ¯ã€‚这需è¦å¯¹æ‚¨çš„ smb.conf è¿›" +"行修改,以自动从 /etc/samba/dhcp.conf è¯»å– DHCP 所æ供的 WINS 设置。" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "必须安装 dhcp3-client 软件包,æ‰èƒ½ä½¿ç”¨æ­¤é¡¹ç‰¹æ€§ã€‚" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "自动é…ç½® smb.conf å—?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"余下的 Samba é…置涉åŠé‚£äº›å½±å“ /etc/samba/smb.conf 中å‚数的问题。此文件是用æ¥" +"é…ç½® Samba ç¨‹åº (nmbd å’Œ smbd)。您目å‰çš„ smb.conf 包括一个“includeâ€è¡Œæˆ–者一个" +"跨越多行的选项,这将æ…乱自动é…置程åºå¹¶éœ€è¦æ‚¨æ‰‹åŠ¨ä¿®æ”¹ smb.conf 以使其正常工" +"作。" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"如果您ä¸é€‰ä¸­æ­¤é¡¹ï¼Œæ‚¨å°±å¿…须自己处ç†æ‰€æœ‰çš„é…置改å˜ï¼Œä¹Ÿæ— æ³•äº«å—到定期的é…置改进" +"特性。" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "工作组/域å:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"请指定本æœåŠ¡å™¨åœ¨æ”¶åˆ°å®¢æˆ·ç«¯æŸ¥è¯¢æ—¶å°†è¦æ˜¾ç¤ºçš„工作组。请注æ„,此å‚æ•°åŒæ ·ä¹ŸæŽ§åˆ¶äº† " +"security=demain 设置所用的域å。" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "使用å£ä»¤åŠ å¯†å—?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"较新的 Windows 客户端都使用加密的å£ä»¤ä¸Ž SMB æœåŠ¡å™¨é€šè®¯ã€‚如果您想使用明文密" +"ç ï¼Œæ‚¨å°†éœ€è¦ä¿®æ”¹æ‚¨çš„ Windows 注册表中的一个å‚数。" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"强烈推èå¼€å¯æ­¤é€‰é¡¹ã€‚如果选中,请确ä¿æ‚¨æ‹¥æœ‰ä¸€ä¸ªæœ‰æ•ˆçš„ /etc/samba/smbpasswd æ–‡" +"件,并且此文件包å«ç”¨ smbpasswd 命令为æ¯ä¸ªç”¨æˆ·è®¾å®šçš„密ç ã€‚" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "è¦åˆ›å»º samba 密ç æ•°æ®åº“ /var/lib/samba/passdb.tdb å—?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"è¦ä¸Žå¤§å¤šæ•° Windows 的默认设置兼容,Samba 必须被设置为使用加密å£ä»¤ã€‚这需è¦å°†ç”¨" +"户å£ä»¤ä¿å­˜ç‹¬ç«‹äºŽ /etc/passwd 之外的一个文件中。此文件å¯ä»¥è‡ªåŠ¨åˆ›å»ºï¼Œä½†å£ä»¤å¿…é¡»" +"通过è¿è¡Œ smbpasswd æ¥æ‰‹åŠ¨æ·»åŠ å¹¶ä¿æŒæ›´æ–°ã€‚" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"如果您无法创建它,您就必须é‡æ–°é…ç½® samba (å¯èƒ½è¿˜åŒ…括您的客户端机器) 以使用明" +"æ–‡å£ä»¤ã€‚" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"更多详情,请å‚阅 smaba-doc 软件包中的 /usr/share/doc/samba-doc/htmldocs/" +"ENCRYPTION.html。" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "守护进程" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "您想如何è¿è¡Œ Samba?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Samba 守护进程 smbd å¯ä»¥ä½œä¸ºæ™®é€šå®ˆæŠ¤è¿›ç¨‹æˆ–者从 inetd å¯åŠ¨ã€‚以守护进程的方å¼è¿" +"行是推èçš„æ–¹å¼ã€‚" + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "余下的 Samba é…置涉åŠé‚£äº›å½±å“ /etc/samba/smb.conf 中å‚数的问题。此文件是用" +#~ "æ¥é…ç½® Samba ç¨‹åº (nmbd å’Œ smbd)。您目å‰çš„ smb.conf 包括一个“includeâ€è¡Œæˆ–" +#~ "者一个跨越多行的选项,这将æ…乱自动é…置程åºå¹¶éœ€è¦æ‚¨æ‰‹åŠ¨ä¿®æ”¹ smb.conf 以使其" +#~ "正常工作。" + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "请指定本æœåŠ¡å™¨åœ¨æ”¶åˆ°å®¢æˆ·ç«¯æŸ¥è¯¢æ—¶å°†è¦æ˜¾ç¤ºçš„工作组。请注æ„,此å‚æ•°åŒæ ·ä¹ŸæŽ§åˆ¶" +#~ "了 security=demain 设置所用的域å。" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "较新的 Windows 客户端都使用加密的å£ä»¤ä¸Ž SMB æœåŠ¡å™¨é€šè®¯ã€‚如果您想使用明文密" +#~ "ç ï¼Œæ‚¨å°†éœ€è¦ä¿®æ”¹æ‚¨çš„ Windows 注册表中的一个å‚数。" + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "强烈推èå¼€å¯æ­¤é€‰é¡¹ã€‚如果选中,请确ä¿æ‚¨æ‹¥æœ‰ä¸€ä¸ªæœ‰æ•ˆçš„ /etc/samba/smbpasswd " +#~ "文件,并且此文件包å«ç”¨ smbpasswd 命令为æ¯ä¸ªç”¨æˆ·è®¾å®šçš„密ç ã€‚" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "更多详情,请å‚阅 smaba-doc 软件包中的 /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html。" + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "ä¸æ”¯æŒä¸²è” passdb åŽç«¯" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "从版本 3.0.23 开始,samba çš„ \"passdb backend\" å‚æ•°ä¸å†æ”¯æŒå¤šä¸ªåŽç«¯çš„串" +#~ "è”。而在你的 smb.conf 文件中的 passdb backend å‚数包å«äº†ä¸€ä¸ªåŽç«¯åˆ—表。如果" +#~ "ä¸ä¿®æ”¹è¿™ä¸ªé—®é¢˜çš„è¯ï¼Œæ–°ç‰ˆæœ¬çš„ samba å°†ä¸èƒ½å·¥ä½œã€‚" + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "è¦ç§»åŠ¨ /etc/samba/smbpasswd 到 /var/lib/samba/passdb.tdb å—?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 引入了一ç§æ›´å®Œæ•´çš„ SAM æ•°æ®åº“接å£ï¼Œå¹¶ç”¨å…¶å–代了 /etc/samba/" +#~ "smbpasswd 文件。" + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "请确定您是å¦æƒ³å°†çŽ°æœ‰çš„ smbpasswd 文件自动移æ¤ä¸º /var/lib/samba/passdb." +#~ "tdb。如果您计划使用其它的 pdb åŽç«¯ (如 LDAP) çš„è¯ï¼Œè¯·ä¸è¦é€‰ä¸­æ­¤é€‰é¡¹ã€‚" + +#~ msgid "daemons, inetd" +#~ msgstr "守护进程, inetd" --- samba-3.3.0.orig/debian/po/th.po +++ samba-3.3.0/debian/po/th.po @@ -0,0 +1,273 @@ +# Thai translation of exim4. +# Copyright (C) 2006 Software in the Public Interest, Inc. +# This file is distributed under the same license as the exim4 package. +# Theppitak Karoonboonyanan , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-13 10:05+0700\n" +"Last-Translator: Theppitak Karoonboonyanan \n" +"Language-Team: Thai \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "จะà¹à¸à¹‰à¹„ข smb.conf ให้ใช้ค่าตั้ง WINS จาภDHCP หรือไม่?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"ถ้าคอมพิวเตอร์ของคุณใช้ข้อมูลหมายเลข IP จาà¸à¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸­à¸£à¹Œ DHCP ในเครือข่าย เซิร์ฟเวอร์ DHCP " +"ดังà¸à¸¥à¹ˆà¸²à¸§à¸­à¸²à¸ˆà¹ƒà¸«à¹‰à¸‚้อมูลเà¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸­à¸£à¹Œ WINS (\"name server ของ NetBIOS\") " +"ที่มีในเครือข่ายมาด้วย à¸à¸²à¸£à¸ˆà¸°à¹ƒà¸Šà¹‰à¸‚้อมูลดังà¸à¸¥à¹ˆà¸²à¸§à¹„ด้ จำเป็นต้องà¹à¸à¹‰à¹„ขà¹à¸Ÿà¹‰à¸¡ smb.conf ของคุณ " +"เพื่อให้มีà¸à¸²à¸£à¸­à¹ˆà¸²à¸™à¸„่าตั้ง WINS ที่ได้จาภDHCP ในà¹à¸Ÿà¹‰à¸¡ /etc/samba/dhcp.conf โดยอัตโนมัติ" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "คุณต้องติดตั้งà¹à¸žà¸à¹€à¸à¸ˆ dhcp3-client ด้วย เพื่อจะใช้ความสามารถนี้" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "จะตั้งค่า smb.conf à¹à¸šà¸šà¸­à¸±à¸•à¹‚นมัติหรือไม่?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่า Samba ในส่วนที่เหลือ จะเป็นคำถามที่จะมีผลต่อค่าต่างๆ ใน /etc/samba/smb.conf " +"ซึ่งเป็นà¹à¸Ÿà¹‰à¸¡à¸—ี่ใช้à¸à¸³à¸«à¸™à¸”ค่าโปรà¹à¸à¸£à¸¡à¸‚อง Samba (nmbd à¹à¸¥à¸° smbd) à¹à¸Ÿà¹‰à¸¡ smb.conf ปัจจุบันของคุณ " +"มีบรรทัด 'include' หรือมีตัวเลือà¸à¸—ี่ยาวหลายบรรทัด ซึ่งจะเป็นปัà¸à¸«à¸²à¸•à¹ˆà¸­à¸à¸£à¸°à¸šà¸§à¸™à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าà¹à¸šà¸šà¸­à¸±à¸•à¹‚นมัติ " +"à¹à¸¥à¸°à¸„ุณต้องà¹à¸à¹‰à¹„ขà¹à¸Ÿà¹‰à¸¡ smb.conf ของคุณเองà¸à¹ˆà¸­à¸™ เพื่อให้สามารถใช้งานได้" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"ถ้าคุณไม่เลือà¸à¸•à¸±à¸§à¹€à¸¥à¸·à¸­à¸à¸™à¸µà¹‰ คุณจะต้องจัดà¸à¸²à¸£à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าต่างๆ เอง " +"à¹à¸¥à¸°à¸ˆà¸°à¹„ม่สามารถใช้ประโยชน์จาà¸à¸à¸²à¸£à¸•à¹ˆà¸­à¹€à¸•à¸´à¸¡à¸„่าตั้งที่มีอยู่เป็นระยะได้" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "เวร์à¸à¸à¸£à¸¸à¹Šà¸›/ชื่อโดเมน:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"à¸à¸£à¸¸à¸“าระบุเวิร์à¸à¸à¸£à¸¸à¹Šà¸›à¸—ี่คุณต้องà¸à¸²à¸£à¹ƒà¸«à¹‰à¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸­à¸£à¹Œà¸™à¸µà¹‰à¸›à¸£à¸°à¸à¸²à¸¨à¹€à¸›à¹‡à¸™à¸ªà¸¡à¸²à¸Šà¸´à¸à¹€à¸¡à¸·à¹ˆà¸­à¸–ูà¸à¸–ามโดยเครื่องลูภสังเà¸à¸•à¸§à¹ˆà¸² " +"ค่านี้จะควบคุมชื่อโดเมนที่ใช้à¸à¸±à¸šà¸à¸£à¸“ีที่ตั้งค่า security=domain ด้วย" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "ใช้à¸à¸²à¸£à¹€à¸‚้ารหัสลับà¸à¸±à¸šà¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™à¸«à¸£à¸·à¸­à¹„ม่?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"เครื่องลูà¸à¸‚่ายวินโดวส์รุ่นใหม่ๆ ทั้งหมด จะติดต่อà¸à¸±à¸šà¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸­à¸£à¹Œ SMB โดยใช้รหัสผ่านที่เข้ารหัสลับ " +"ถ้าคุณต้องà¸à¸²à¸£à¸ˆà¸°à¹ƒà¸Šà¹‰à¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™à¹à¸šà¸šà¸‚้อความธรรมดา คุณจะต้องเปลี่ยนค่าค่าหนึ่งในเรจิสตรีของวินโดวส์" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"ขอà¹à¸™à¸°à¸™à¸³à¸­à¸¢à¹ˆà¸²à¸‡à¸¢à¸´à¹ˆà¸‡à¹ƒà¸«à¹‰à¹€à¸›à¸´à¸”ใช้ตัวเลือà¸à¸™à¸µà¹‰ à¹à¸¥à¸°à¸–้าคุณเปิดใช้ à¸à¸£à¸¸à¸“าตรวจสอบให้à¹à¸™à¹ˆà¹ƒà¸ˆà¸§à¹ˆà¸²à¸„ุณมีà¹à¸Ÿà¹‰à¸¡ /etc/" +"samba/smbpasswd ที่ใช้à¸à¸²à¸£à¹„ด้ à¹à¸¥à¸°à¸„ุณได้ตั้งรหัสผ่านในนั้นสำหรับผู้ใช้à¹à¸•à¹ˆà¸¥à¸°à¸„น โดยใช้คำสั่ง " +"smbpasswd" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "จะสร้างà¸à¸²à¸™à¸‚้อมูลรหัสผ่าน samba /var/lib/samba/passdb.tdb หรือไม่?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"เพื่อให้ทำงานร่วมà¸à¸±à¸šà¸„่าปà¸à¸•à¸´à¹ƒà¸™à¸§à¸´à¸™à¹‚ดวส์รุ่นส่วนใหà¸à¹ˆà¹„ด้ จึงต้องตั้งค่า Samba ให้ใช้รหัสผ่านà¹à¸šà¸šà¹€à¸‚้ารหัสลับ " +"ซึ่งจำเป็นต้องเà¸à¹‡à¸šà¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™à¸‚องผู้ใช้ไว้ในà¹à¸Ÿà¹‰à¸¡à¹à¸¢à¸à¸•à¹ˆà¸²à¸‡à¸«à¸²à¸à¸ˆà¸²à¸ /etc/passwd " +"à¹à¸Ÿà¹‰à¸¡à¸”ังà¸à¸¥à¹ˆà¸²à¸§à¸ªà¸²à¸¡à¸²à¸£à¸–สร้างโดยอัตโนมัติได้ à¹à¸•à¹ˆà¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™à¸ˆà¸°à¸•à¹‰à¸­à¸‡à¹€à¸žà¸´à¹ˆà¸¡à¹€à¸­à¸‡à¹‚ดยใช้คำสั่ง smbpasswd " +"à¹à¸¥à¸°à¸•à¹‰à¸­à¸‡à¸›à¸£à¸±à¸šà¸‚้อมูลอยู่เสมอในอนาคต" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"หาà¸à¸ˆà¸°à¹„ม่สร้างà¹à¸Ÿà¹‰à¸¡à¸”ังà¸à¸¥à¹ˆà¸²à¸§ คุณจะต้องตั้งค่า Samba (à¹à¸¥à¸°à¸­à¸²à¸ˆà¸ˆà¸°à¸•à¹‰à¸­à¸‡à¸•à¸±à¹‰à¸‡à¸„่าเครื่องลูà¸à¸•à¹ˆà¸²à¸‡à¹† ด้วย) " +"ให้ใช้รหัสผ่านà¹à¸šà¸šà¸‚้อความธรรมดา" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"ดูรายละเอียดเพิ่มเติมได้ที่ /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-" +"Guide/pwencrypt.html จาà¸à¹à¸žà¸à¹€à¸à¸ˆ samba-doc " + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "ดีมอน" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "คุณต้องà¸à¸²à¸£à¹€à¸£à¸µà¸¢à¸à¹ƒà¸Šà¹‰ Samba à¹à¸šà¸šà¹„หน?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"ดีมอน smbd ของ Samba สามารถทำงานà¹à¸šà¸šà¸”ีมอนธรรมดา หรือเรียà¸à¸ˆà¸²à¸ inetd à¸à¹‡à¹„ด้ " +"ทางที่ขอà¹à¸™à¸°à¸™à¸³à¸„ือเรียà¸à¹à¸šà¸šà¸”ีมอน" + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่า Samba ในส่วนที่เหลือ จะเป็นคำถามที่จะมีผลต่อค่าต่างๆ ใน /etc/samba/smb.conf " +#~ "ซึ่งเป็นà¹à¸Ÿà¹‰à¸¡à¸—ี่ใช้à¸à¸³à¸«à¸™à¸”ค่าโปรà¹à¸à¸£à¸¡à¸‚อง Samba (nmbd à¹à¸¥à¸° smbd) à¹à¸Ÿà¹‰à¸¡ smb.conf " +#~ "ปัจจุบันของคุณ มีบรรทัด 'include' หรือมีตัวเลือà¸à¸—ี่ยาวหลายบรรทัด " +#~ "ซึ่งจะเป็นปัà¸à¸«à¸²à¸•à¹ˆà¸­à¸à¸£à¸°à¸šà¸§à¸™à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าà¹à¸šà¸šà¸­à¸±à¸•à¹‚นมัติ à¹à¸¥à¸°à¸„ุณต้องà¹à¸à¹‰à¹„ขà¹à¸Ÿà¹‰à¸¡ smb.conf ของคุณเองà¸à¹ˆà¸­à¸™ " +#~ "เพื่อให้สามารถใช้งานได้" + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "à¸à¸£à¸¸à¸“าระบุเวิร์à¸à¸à¸£à¸¸à¹Šà¸›à¸—ี่คุณต้องà¸à¸²à¸£à¹ƒà¸«à¹‰à¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸­à¸£à¹Œà¸™à¸µà¹‰à¸›à¸£à¸°à¸à¸²à¸¨à¹€à¸›à¹‡à¸™à¸ªà¸¡à¸²à¸Šà¸´à¸à¹€à¸¡à¸·à¹ˆà¸­à¸–ูà¸à¸–ามโดยเครื่องลูภ" +#~ "สังเà¸à¸•à¸§à¹ˆà¸² ค่านี้จะควบคุมชื่อโดเมนที่ใช้à¸à¸±à¸šà¸à¸£à¸“ีที่ตั้งค่า security=domain ด้วย" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "เครื่องลูà¸à¸‚่ายวินโดวส์รุ่นใหม่ๆ ทั้งหมด จะติดต่อà¸à¸±à¸šà¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸­à¸£à¹Œ SMB โดยใช้รหัสผ่านที่เข้ารหัสลับ " +#~ "ถ้าคุณต้องà¸à¸²à¸£à¸ˆà¸°à¹ƒà¸Šà¹‰à¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™à¹à¸šà¸šà¸‚้อความธรรมดา คุณจะต้องเปลี่ยนค่าค่าหนึ่งในเรจิสตรีของวินโดวส์" + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "ขอà¹à¸™à¸°à¸™à¸³à¸­à¸¢à¹ˆà¸²à¸‡à¸¢à¸´à¹ˆà¸‡à¹ƒà¸«à¹‰à¹€à¸›à¸´à¸”ใช้ตัวเลือà¸à¸™à¸µà¹‰ à¹à¸¥à¸°à¸–้าคุณเปิดใช้ à¸à¸£à¸¸à¸“าตรวจสอบให้à¹à¸™à¹ˆà¹ƒà¸ˆà¸§à¹ˆà¸²à¸„ุณมีà¹à¸Ÿà¹‰à¸¡ /etc/" +#~ "samba/smbpasswd ที่ใช้à¸à¸²à¸£à¹„ด้ à¹à¸¥à¸°à¸„ุณได้ตั้งรหัสผ่านในนั้นสำหรับผู้ใช้à¹à¸•à¹ˆà¸¥à¸°à¸„น โดยใช้คำสั่ง " +#~ "smbpasswd" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "ดูรายละเอียดเพิ่มเติมได้ที่ /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html " +#~ "จาà¸à¹à¸žà¸à¹€à¸à¸ˆ samba-doc " + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "ไม่สนับสนุนà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸¥à¸¹à¸à¹‚ซ่à¹à¸šà¹‡à¸à¹€à¸­à¸™à¸”์ของ passdb" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "ตั้งà¹à¸•à¹ˆà¸£à¸¸à¹ˆà¸™ 3.0.23 เป็นต้นไป samba ไม่สนับสนุนà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸¥à¸¹à¸à¹‚ซ่หลายà¹à¸šà¹‡à¸à¹€à¸­à¸™à¸”์ในพารามิเตอร์ " +#~ "\"passdb backend\" à¹à¸•à¹ˆà¸”ูเหมือนà¹à¸Ÿà¹‰à¸¡ smb.conf ของคุณจะมีพารามิเตอร์ passdb backend " +#~ "เป็นรายชื่อà¹à¸šà¹‡à¸à¹€à¸­à¸™à¸”์หลายตัว ซึ่ง samba รุ่นใหม่นี้จะไม่ทำงาน จนà¸à¸§à¹ˆà¸²à¸„ุณจะà¹à¸à¹‰à¹„ขค่านี้" + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "ย้าย /etc/samba/smbpasswd ไปเป็น /var/lib/samba/passdb.tdb หรือไม่?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 มีอินเทอร์เฟซà¸à¸²à¸™à¸‚้อมูล SAM ที่สมบูรณ์à¸à¸§à¹ˆà¸² ซึ่งมาà¹à¸—นà¹à¸Ÿà¹‰à¸¡ /etc/samba/smbpasswd" + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "à¸à¸£à¸¸à¸“ายืนยันว่าคุณต้องà¸à¸²à¸£à¸¢à¹‰à¸²à¸¢à¸ˆà¸²à¸à¸à¸²à¸£à¹ƒà¸Šà¹‰à¹à¸Ÿà¹‰à¸¡ smbpasswd ไปใช้ /var/lib/samba/passdb.tdb " +#~ "โดยอัตโนมัติหรือไม่ อย่าเลือà¸à¸•à¸±à¸§à¹€à¸¥à¸·à¸­à¸à¸™à¸µà¹‰à¸–้าคุณมีà¹à¸œà¸™à¸—ี่จะใช้à¹à¸šà¹‡à¸à¹€à¸­à¸™à¸”์ pdb อื่น (เช่น LDAP) à¹à¸—น" --- samba-3.3.0.orig/debian/po/tr.po +++ samba-3.3.0/debian/po/tr.po @@ -0,0 +1,302 @@ +# Turkish translation of samba. +# This file is distributed under the same license as the samba package. +# Mehmet Türker , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-13 18:47+0200\n" +"Last-Translator: Mehmet Türker \n" +"Language-Team: Turkish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"WINS ayarlarını DHCP'den kullanmak için smb.conf dosyasında deÄŸiÅŸiklik " +"yapılsın mı?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"EÄŸer bilgisayarınız IP adresini ağınızdaki bir DHCP sunucusundan alıyorsa, " +"DHCP sunucusu ayrıca ağınızda bulunan WINS sunucuları (\"NetBIOS alanadı " +"sunucuları\") hakkında da bilgi verebilir. Bu, smb.conf dosyanızda DHCP " +"tarafından sunulan WINS ayarlarının otomatik olarak /etc/samba/dhcp.conf " +"dosyasından okunmasını saÄŸlayan bir deÄŸiÅŸikliÄŸi gerektirir." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Bu özellikten yararlanabilmek için dhcp3-client paketinin kurulmuÅŸ olması " +"gerekir." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "smb.conf dosyası otomatik olarak yapılandırılsın mı?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Geri kalan Samba yapılandırması, Samba uygulamalarını (nmbd ve smbd) " +"yapılandırmak için kullanılan /etc/samba/smb.conf dosyasındaki parametreleri " +"etkileyen sorularla devam edecektir. Mevcut smb.conf dosyası, debconf'u " +"ÅŸaşırtabilecek ve smb.conf dosyanızı elle deÄŸiÅŸtirilmesi zorunda kılacak bir " +"'include' satırı veya birden fazla satır boyunca devam eden bir seçenek " +"içeriyor ve tekrar çalışabilmesi için smb.conf dosyanızın sizin tarafınızdan " +"deÄŸiÅŸtirilmesi gerekiyor." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"EÄŸer bu seçeneÄŸi seçmezseniz, bütün yapılandırma deÄŸiÅŸikliklerini kendiniz " +"yapmak zorunda kalacaksınız ve periyodik yapılandırma iyileÅŸtirmelerinin " +"avantajlarını kullanamayacaksınız." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Çalışma Grubu/Etki Alanı Ä°smi:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Lütfen sunucunuzun istemciler tarafından sorgulandığında içerisinde " +"gözükmesini istediÄŸiniz Çalışma Grubu'nu belirtiniz. Aklınızda bulunsun, bu " +"parametre ayrıca security=domain ayarı ile beraber kullanılacak Etki Alanını " +"da kontrol eder." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Parola ÅŸifrelenmesi kullanılsın mı?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Yeni Windows istemcileri SBM sunucularıyla ÅŸifrelenmiÅŸ parolalar kullanarak " +"iletiÅŸim kurarlar. EÄŸer düz metin parolaları kullanmak istiyorsanız Windows " +"registry içinde bir parametreyi deÄŸiÅŸtirmelisiniz." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Bu iÅŸlemi yapmanız ÅŸiddetle önerilir. EÄŸer yapacaksanız, geçerli bir /etc/" +"samba/smbpasswd dosyanız olduÄŸundan emin olun ve smbpasswd komutunu " +"kullanarak bütün kullanıcılar için parola belirleyin." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Samba parola veritabanı /var/lib/samba/passwd.tdb yaratılsın mı?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Windows'un çoÄŸu versiyonunda öntanımlı olarak kullanılan deÄŸerler ile uyumlu " +"olabilmesi için Samba'nın ÅŸifrelenmiÅŸ parolaları kullanacak ÅŸekilde " +"ayarlanması gerekir. Bu yöntem kullanıcı parolalarının /etc/passwd dosyası " +"dışında saklanmasını gerektirir. Bu dosya otomatik olarak yaratılabilir, " +"fakat parolaların smbpasswd komutu çalıştırılarak eklenmesi ve ilerleyen " +"zamanlarda güncel tutulması gerekir." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"EÄŸer yaratmazsanız, daha sonra Sambayı (ve büyük ihtimalle istemci " +"makineleri de) düz metin parolalarını kullanması için tekrar yapılandırmanız " +"gerekir." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Daha detaylıı bilgi için samba-doc paketinden /usr/share/doc/samba-doc/" +"htmldocs/ENCRYPTION.html dosyasına gözatın." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "artalan süreçleri" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Samba'nın nasıl çalışmasını istersiniz?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Samba artalan süreci smbd, normal bir artalan süreci olarak veya inetd'den " +"çalışabilir. Tavsiye edilen yaklaşım artalan süreci olarak çalıştırmaktır." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Geri kalan Samba yapılandırması, Samba uygulamalarını (nmbd ve smbd) " +#~ "yapılandırmak için kullanılan /etc/samba/smb.conf dosyasındaki " +#~ "parametreleri etkileyen sorularla devam edecektir. Mevcut smb.conf " +#~ "dosyası, debconf'u ÅŸaşırtabilecek ve smb.conf dosyanızı elle " +#~ "deÄŸiÅŸtirilmesi zorunda kılacak bir 'include' satırı veya birden fazla " +#~ "satır boyunca devam eden bir seçenek içeriyor ve tekrar çalışabilmesi " +#~ "için smb.conf dosyanızın sizin tarafınızdan deÄŸiÅŸtirilmesi gerekiyor." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Lütfen sunucunuzun istemciler tarafından sorgulandığında içerisinde " +#~ "gözükmesini istediÄŸiniz Çalışma Grubu'nu belirtiniz. Aklınızda bulunsun, " +#~ "bu parametre ayrıca security=domain ayarı ile beraber kullanılacak Etki " +#~ "Alanını da kontrol eder." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Yeni Windows istemcileri SBM sunucularıyla ÅŸifrelenmiÅŸ parolalar " +#~ "kullanarak iletiÅŸim kurarlar. EÄŸer düz metin parolaları kullanmak " +#~ "istiyorsanız Windows registry içinde bir parametreyi deÄŸiÅŸtirmelisiniz." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Bu iÅŸlemi yapmanız ÅŸiddetle önerilir. EÄŸer yapacaksanız, geçerli bir /etc/" +#~ "samba/smbpasswd dosyanız olduÄŸundan emin olun ve smbpasswd komutunu " +#~ "kullanarak bütün kullanıcılar için parola belirleyin." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Daha detaylıı bilgi için samba-doc paketinden /usr/share/doc/samba-doc/" +#~ "htmldocs/ENCRYPTION.html dosyasına gözatın." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "" +#~ "Parola veritabanı için çoklu arkayüz kullanılabilmesi özelliÄŸi " +#~ "desteklenmiyor" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Versiyon 3.0.23 ile beraber, samba artık \"passdb backend\" " +#~ "parametresindeki çoklu arkayüz kullanılabilmesi özelliÄŸini " +#~ "desteklemiyor. Öyle gözüküyorki, smb.conf dosyanızdaki parola veritabanı " +#~ "arkayüz parametresi bir liste içeriyor. Bunu düzeltene kadar yeni samba " +#~ "versiyonu çalışmayacaktır." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "/etc/samba/smbpasswd /var/lib/samba/passwd.tdb'ye taşınsın mı?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 daha stabil ve /etc/samba/smbpasswd dosyasının da yerine " +#~ "geçecek bir SAM veritabanını içerir." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Lütfen smbpasswd dosyasının otomatik olarak /var/lib/samba/passdb.tdb " +#~ "dosyasına dönüştürülmesini isteyip istemediÄŸinizi onaylayınız. EÄŸer baÅŸka " +#~ "bir pdb arkayüzü (ör. LDAP) kullanmayı planlıyorsanız, burada 'hayır' " +#~ "cevabını vermelisiniz." + +#~ msgid "daemons, inetd" +#~ msgstr "artalan süreçleri, inetd" --- samba-3.3.0.orig/debian/po/zh_TW.po +++ samba-3.3.0/debian/po/zh_TW.po @@ -0,0 +1,278 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-13 23:18+0800\n" +"Last-Translator: Asho Yeh \n" +"Language-Team: Chinese (traditional) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Country: TAIWAN\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "è¦ä¿®æ”¹ smb.conf 以使用 DHCP å–å¾— WINS 設定嗎?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"如果您的電腦是從網絡上的 DHCP 伺æœå™¨å–å¾— IP 地å€è³‡è¨Šï¼Œè©² DHCP æœå‹™ä¹Ÿå¯èƒ½æœƒæ" +"供網路上的 WINS 伺æœå™¨ (“NetBIOS å稱æœå‹™â€) 資訊。這需è¦å°æ‚¨çš„ smb.conf 進行" +"修改,以自動從 /etc/samba/dhcp.conf è®€å– DHCP 所æ供的 WINS 設定。" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "å¿…é ˆå®‰è£ dhcp3-client 套件,æ‰èƒ½ä½¿ç”¨æ­¤é …特性。" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "自動設定 smb.conf 嗎?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"剩下的 Samba 設定涉åŠé‚£äº›å½±éŸ¿ /etc/samba/smb.conf 中åƒæ•¸çš„å•é¡Œã€‚此文件是用來" +"設定 Samba ç¨‹åº (nmbd å’Œ smbd)。您目å‰çš„ smb.conf 包括一個“includeâ€è¡Œæˆ–者一個" +"跨越多行的é¸é …,這將攪亂自動設定程åºä¸¦éœ€è¦æ‚¨æ‰‹å‹•ä¿®æ”¹ smb.conf 以使其正常工" +"作。" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"如果您ä¸é¸æ­¤é …,您就必須自己處ç†æ‰€æœ‰çš„設定改變,也無法享å—到定期的設定改進特" +"性。" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "群組/網域:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"請指定本伺æœå™¨åœ¨æ”¶åˆ°å®¢æˆ¶ç«¯æŸ¥è©¢æ™‚å°‡è¦é¡¯ç¤ºçš„群組。請注æ„,此åƒæ•¸åŒæ¨£ä¹ŸæŽ§åˆ¶äº† " +"security=demain 設置所用的網域å。" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "使用密碼加密嗎?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"較新的 Windows 客戶端都使用加密的密碼與 SMB æœå‹™å™¨é€šè¨Šã€‚如果您想使用明文密" +"碼,您將需è¦ä¿®æ”¹æ‚¨çš„ Windows 登錄表中的一個åƒæ•¸ã€‚" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"強烈推薦開啟此é¸é …。如果é¸å–,請確ä¿æ‚¨æ“有一個有效的 /etc/samba/smbpasswd 檔" +"案,並且此檔案包å«ç”¨ smbpasswd 命令為æ¯å€‹ç”¨æˆ¶è¨­å®šçš„密碼。" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "è¦å»ºç«‹ samba 密碼資料庫 /var/lib/samba/passdb.tdb 嗎?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"è¦èˆ‡å¤§å¤šæ•¸ Windows çš„é è¨­è¨­å®šç›¸å®¹ï¼ŒSamba 必須被設定為使用加密密碼。這需è¦å°‡ä½¿" +"用者密碼ä¿å­˜ç¨ç«‹æ–¼ /etc/passwd 之外的一個檔案中。此檔案å¯ä»¥è‡ªå‹•å»ºç«‹ï¼Œä½†å¯†ç¢¼å¿…" +"須通éŽåŸ·è¡Œ smbpasswd 來手動添加並ä¿æŒæ›´æ–°ã€‚" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"如果您無法建立它,您就必須é‡æ–°è¨­å®š samba (å¯èƒ½é‚„包括您的客戶端機器) 以使用明" +"文密碼。" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"更多詳情,請åƒé–± smaba-doc 套件中的 /usr/share/doc/samba-doc/htmldocs/" +"ENCRYPTION.html。" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "背景æœå‹™" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "您想如何執行 Samba?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Samba 背景æœå‹™ç¨‹å¼ smbd å¯ä»¥ä½œç‚ºæ™®é€šçš„背景æœå‹™æˆ–者從 inetd 啟動。以背景æœå‹™çš„" +"æ–¹å¼åŸ·è¡Œæ˜¯æŽ¨è–¦çš„æ–¹å¼ã€‚" + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "剩下的 Samba 設定涉åŠé‚£äº›å½±éŸ¿ /etc/samba/smb.conf 中åƒæ•¸çš„å•é¡Œã€‚此文件是用" +#~ "來設定 Samba ç¨‹åº (nmbd å’Œ smbd)。您目å‰çš„ smb.conf 包括一個“includeâ€è¡Œæˆ–" +#~ "者一個跨越多行的é¸é …,這將攪亂自動設定程åºä¸¦éœ€è¦æ‚¨æ‰‹å‹•ä¿®æ”¹ smb.conf 以使其" +#~ "正常工作。" + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "請指定本伺æœå™¨åœ¨æ”¶åˆ°å®¢æˆ¶ç«¯æŸ¥è©¢æ™‚å°‡è¦é¡¯ç¤ºçš„群組。請注æ„,此åƒæ•¸åŒæ¨£ä¹ŸæŽ§åˆ¶" +#~ "了 security=demain 設置所用的網域å。" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "較新的 Windows 客戶端都使用加密的密碼與 SMB æœå‹™å™¨é€šè¨Šã€‚如果您想使用明文密" +#~ "碼,您將需è¦ä¿®æ”¹æ‚¨çš„ Windows 登錄表中的一個åƒæ•¸ã€‚" + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "強烈推薦開啟此é¸é …。如果é¸å–,請確ä¿æ‚¨æ“有一個有效的 /etc/samba/smbpasswd " +#~ "檔案,並且此檔案包å«ç”¨ smbpasswd 命令為æ¯å€‹ç”¨æˆ¶è¨­å®šçš„密碼。" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "更多詳情,請åƒé–± smaba-doc 套件中的 /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html。" + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Chaining passdb backendså°‡ä¸å†æ”¯æ´ã€‚" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "從版本3.0.23開始,在\"passdb backed\"é¸é …中,ä¸å†æ”¯æ´å¤šé‡å¾Œç«¯èªè­‰æ©Ÿåˆ¶ã€‚您" +#~ "çš„smb.conf檔夾帶著ä¸æ”¯æ´çš„後端èªè­‰æ©Ÿåˆ¶ã€‚除éžæ‚¨ä¿®æ­£é€™å€‹éŒ¯èª¤ï¼Œå¦å‰‡æ–°ç‰ˆçš„" +#~ "samba將無法使用。" + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "è¦ç§»å‹• /etc/samba/smbpasswd 到 /var/lib/samba/passdb.tdb 嗎?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 引入了一種更完整的 SAM 資料庫介é¢ï¼Œä¸¦ç”¨å…¶å–代了 /etc/samba/" +#~ "smbpasswd 檔案。" + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "請確定您是å¦æƒ³å°‡ç¾æœ‰çš„ smbpasswd 檔案自動移æ¤ç‚º /var/lib/samba/passdb." +#~ "tdb。如果您計劃使用其它的 pdb 後端 (如 LDAP) 的話,請ä¸è¦é¸ä¸­æ­¤é¸é …。" --- samba-3.3.0.orig/debian/po/ar.po +++ samba-3.3.0/debian/po/ar.po @@ -0,0 +1,278 @@ +# translation of ar.po to Arabic +# xserver-xorg translation +# Copyright (C) 2006 The Arabeyes Project +# This file is distributed under the same license as the xserver-xorg package. +# +# younes , 2006. +# Ossama M. Khayat , 2006, 2007. +msgid "" +msgstr "" +"Project-Id-Version: ar\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-14 11:37+0300\n" +"Last-Translator: Ossama M. Khayat \n" +"Language-Team: Arabic \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "تغيير smb.conf لاستعمال إعدادات WINS عبر DHCP" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"إذا كان حاسوبك يحصل على معلومات عنوانه (IP adresse) من خادم DHCP المتواجد " +"على الشبكة, Ùأنه باﻹمكان أيضا الحصول غلى معلومات حول Ø®Ùدَّم WINS (\"خدم أسماء " +"NetBIOS\") المتواجد على الشبكة, هذا يتطلب تغييرا ÙÙŠ ملÙsmb.conf بحيث ان " +"إعدادات WINS المÙقدمة من طر٠DHCP ستقرأ آليا من مل٠/etc/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "يجب تثبيت رزمة dhcp3-client للاستÙادة من هذه الميزة." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "إعداد آلي لمل٠smb.conf ØŸ" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"بقية إعدادات Samba تعالج أسئلة تؤثر ÙÙŠ المقاييس المتواجدة ÙÙŠ المل٠/etc/" +"samba/smb.conf Ùˆ الذي يستعمل لإعداد برامج Samba التالية ( nmbd Ùˆ smbd). ملÙÙƒ " +"الحالي smb.conf يحتوي على سطر 'include' او على خيار يمتد لعدة أسطر, الشي " +"الذي يمكن أن يشوش على عملية الإعداد الآلية, ويستلزم منك تحرير ملÙÙƒ smb.conf " +"يدويا لكي تتمكن من تشغبل ذلك مرة أخرى." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"ÙÙŠ حالة عدم اختيارك لهذا الخيار, عليك معالجة أي تغيير ÙÙŠ الإعدادات بنÙسك, Ùˆ " +"لن تستÙيد من تحسينات الإعداد الدورية." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr " اسم مجموعة العمل/الحقل:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"من Ùضلك حدّÙد مجموعة العمل التي تريد أن يظهر داخلها هذا الخادم عند استÙساره من " +"طر٠الزبائن. لاحظ أن هذا المقياس يتحكم ÙÙŠ إسم الحقل المستعمل مع الخيار " +"security=domain setting." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "تشÙير كلمة المرور ØŸ" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"زبائن Windows الجديدة كلّها تتصل مع Ø®Ùدّام SMB مستعملة كلمات مرور مشÙرة. إذا " +"أردت استعمال كلمات مرور واضخة عليك بتغيير إعداد ÙÙŠ قاعدة تسجيلات Windows." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"يستحسن تمكين هذا الخيار. إذا Ùعلت ذلك، تأكد من وجود مل٠/etc/samba/smbpasswd " +"صالح Ùˆ من وضعك كلمة مرور لكل مستخدم باستعمال اﻷمر smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "إحداث قاعدة كلمات المرور Ù„Samba ÙÙŠ /var/lib/samba/passdb.tdb ØŸ" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"حتى يكون هناك تواÙÙ‚ مع اﻹعدادت الاÙتراصية لأغلبية نسخ WindowsØŒ يجب تهيئة " +"Samba لاستعمال كلمات مرور مشÙرة، اﻷمر الذي يتطلب Ø­Ùظها ÙÙŠ مل٠منÙصل عن /etc/" +"passwd. ويمكن إنشاء ذلك المل٠تلقائياً، إلا أن كلمات المرور يجب أن تضا٠يدوياً " +"بتنÙيذ الأمر smbpaswd وإبقاء المل٠محدثاً ÙÙŠ المستقبل." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"إن لم تنشئه، Ùستضطر إلى إعادة تهيئة Samba (وربما بعض الأجهزة العميلة) " +"لاستخدام كلمات مرور مجردة." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"راجع /usr/share/doc/samba-doc/htmldocs/ENCRYPTION ÙÙŠ رزمة samba-doc لتÙاصيل " +"أكثر." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "رقباء" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "كي٠تريد تشغيل SambaØŸ" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "يمكن لرقيب smbd الاشتغال كرقيب عادي أو عبر inetd. ينصح بتشغييله كرقيب." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "بقية إعدادات Samba تعالج أسئلة تؤثر ÙÙŠ المقاييس المتواجدة ÙÙŠ المل٠/etc/" +#~ "samba/smb.conf Ùˆ الذي يستعمل لإعداد برامج Samba التالية ( nmbd Ùˆ smbd). " +#~ "ملÙÙƒ الحالي smb.conf يحتوي على سطر 'include' او على خيار يمتد لعدة أسطر, " +#~ "الشي الذي يمكن أن يشوش على عملية الإعداد الآلية, ويستلزم منك تحرير ملÙÙƒ " +#~ "smb.conf يدويا لكي تتمكن من تشغبل ذلك مرة أخرى." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "من Ùضلك حدّÙد مجموعة العمل التي تريد أن يظهر داخلها هذا الخادم عند استÙساره " +#~ "من طر٠الزبائن. لاحظ أن هذا المقياس يتحكم ÙÙŠ إسم الحقل المستعمل مع الخيار " +#~ "security=domain setting." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "زبائن Windows الجديدة كلّها تتصل مع Ø®Ùدّام SMB مستعملة كلمات مرور مشÙرة. إذا " +#~ "أردت استعمال كلمات مرور واضخة عليك بتغيير إعداد ÙÙŠ قاعدة تسجيلات Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "يستحسن تمكين هذا الخيار. إذا Ùعلت ذلك، تأكد من وجود مل٠/etc/samba/" +#~ "smbpasswd صالح Ùˆ من وضعك كلمة مرور لكل مستخدم باستعمال اﻷمر smbpasswd." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "راجع /usr/share/doc/samba-doc/htmldocs/ENCRYPTION ÙÙŠ رزمة samba-doc " +#~ "لتÙاصيل أكثر." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "الربط التسلسلي لملÙات passdb غير مدعوم" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "بدءً من النسخة 3.0.23 من sambaØŒ لم يعد دعم ربط ملÙات passdb عبر المعطى " +#~ "\"passdb backend\" متوÙراً. يبدو أن مل٠smb.conf لديك يحتوي هذا المعطى " +#~ "والذي يحدد قائمة من ملÙات دعم passdb. لن تعمل نسخة samba الجديدة حتى تقوم " +#~ "بتصحيح هذا المعطى." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "نَقْل /etc/samba/smbpasswd إلى /var/lib/samba/passdb.tdb ØŸ" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "النسخة 3.0 من Samba أدخلت واجهة أكمل لقاعدة SAM, Ùˆ التي تلغي بدورها " +#~ "مل٠/etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "من Ùضلك أكّد إذا ما كنت تÙضل هجرة آلية لمل٠smbpasswd المتواجد إلى /var/" +#~ "lib/samba/passdb.tdb. لا تختر هذا الخيار إذا كنت تنوي استعمال قاعدة كلمات " +#~ "مرور خلÙية ( pdb backend) مثل LDAP." --- samba-3.3.0.orig/debian/po/bs.po +++ samba-3.3.0/debian/po/bs.po @@ -0,0 +1,281 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2006-11-01 22:14+0100\n" +"Last-Translator: Safir Secerovic \n" +"Language-Team: Bosnian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: 3\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Izmijeniti smb.conf za koriÅ¡tenje WINS postavki od DHCP-a?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Ako vaÅ¡ raÄunar dobiva informacije o IP adresama od DHCP servera na mreži, " +"DHCP server može takoÄ‘er pružiti informacije o WINS serverima (\"NetBIOS " +"name servers\") prisutnim na mreži. Ovo zahtijeva izmjenu u vaÅ¡oj smb.conf " +"datoteci tako da WINS postavke dobivene od DHCP-a budu automatski proÄitane " +"iz /etc/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"dhcp3-client paket mora biti instaliran kako bi se iskoristila ova mogućnost." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Podesiti smb.conf automatski?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Ostatak konfiguracije Samba-e se bavi pitanjima koja utiÄu na parametre u /" +"etc/samba/smb.conf, a to je datoteka koja se koristi za podeÅ¡avanje Samba " +"programa (nmbd-a i smbd-a). VaÅ¡a trenutna smb.conf sadrži 'include' liniju " +"ili opciju koja obuhvata nekoliko linija, Å¡to bi moglo zbuniti " +"automatizovani konfiguracioni proces i zahtijevati od vas da ruÄno uredite " +"smb.conf kako bi proradili." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Ako ne odaberete ovu opciju, moraćete sve izmjene konfiguracije sami " +"napraviti i nećete moći iskoristiti periodiÄna poboljÅ¡anja konfiguracije." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Workgroup/Domain Name:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Molim navedite workgroup u kojoj želite da se ovaj server nalazi prilikom " +"upita od strane klijenata. Primijetite da ovaj parametar takoÄ‘e kontroliÅ¡e " +"domain name koriÅ¡ten u security=domain postavci." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Koristiti enkripciju Å¡ifre?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Svi noviji Windows klijenti komuniciraju sa SMB serverima koristeći " +"enkriptovane Å¡ifre. Ako želite koristiti Å¡ifre u vidu Äistog teksta, trebate " +"promijeniti parametar u vaÅ¡em Windows registriju." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"UkljuÄivanje ove opcije je veoma preporuÄeno. Ako to uradite, pobrinite se " +"da imate ispravnu /etc/samba/smbpasswd datoteku i da u njoj postavite Å¡ifre " +"za svakog korisnika koristeći smbpasswd naredbu." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Kreirati samba bazu podataka sa Å¡iframa, /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Kako bi bila kompatibilna s većinom Windows verzija, Samba mora biti " +"podeÅ¡ena da koristi enkriptovane Å¡ifre. Ovo zahtijeva da korisniÄke Å¡ifre " +"budu spremljene u zasebnu datoteku od /etc/passwd. Ova datoteka može biti " +"kreirana automatski, ali Å¡ifre moraju biti dodane ruÄno pokreÄući smbpasswd " +"i ubuduće održavane." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Ako ju ne kreirate, morati ćete rekonfigurisati Samba-u (i vjerovatno vaÅ¡e " +"klijente) da koristi Å¡ifre u obliku Äistog teksta." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Vidjeti /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +"html iz samba-doc paketa za viÅ¡e detalja." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "daemons" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Kako želite pokretati Samba-u?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Samba daemon smbd može biti pokrenut kao normalni daemon ili preko inetd-a. " +"Pokretanje kao daemon je preporuÄeni pristup." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Ostatak konfiguracije Samba-e se bavi pitanjima koja utiÄu na parametre " +#~ "u /etc/samba/smb.conf, a to je datoteka koja se koristi za podeÅ¡avanje " +#~ "Samba programa (nmbd-a i smbd-a). VaÅ¡a trenutna smb.conf sadrži 'include' " +#~ "liniju ili opciju koja obuhvata nekoliko linija, Å¡to bi moglo zbuniti " +#~ "automatizovani konfiguracioni proces i zahtijevati od vas da ruÄno " +#~ "uredite smb.conf kako bi proradili." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Molim navedite workgroup u kojoj želite da se ovaj server nalazi prilikom " +#~ "upita od strane klijenata. Primijetite da ovaj parametar takoÄ‘e " +#~ "kontroliÅ¡e domain name koriÅ¡ten u security=domain postavci." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Svi noviji Windows klijenti komuniciraju sa SMB serverima koristeći " +#~ "enkriptovane Å¡ifre. Ako želite koristiti Å¡ifre u vidu Äistog teksta, " +#~ "trebate promijeniti parametar u vaÅ¡em Windows registriju." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "UkljuÄivanje ove opcije je veoma preporuÄeno. Ako to uradite, pobrinite " +#~ "se da imate ispravnu /etc/samba/smbpasswd datoteku i da u njoj postavite " +#~ "Å¡ifre za svakog korisnika koristeći smbpasswd naredbu." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Vidjeti /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html iz samba-doc " +#~ "paketa za viÅ¡e detalja." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Premjestiti /etc/samba/smbpasswd u /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 uvodi potpuniji interfejs SAM baze podataka koji zamjenjuje /" +#~ "etc/samba/smbpasswd datoteku. " + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Molim potvrdite da li želite da postojeću smbpasswd datoteku automatski " +#~ "pomijerite u /var/lib/samba/passdb.tdb. Ne koristite ovu opciju ako " +#~ "umjesto toga planirate koristiti drugi pdb backend (poput LDAP-a)." --- samba-3.3.0.orig/debian/po/eu.po +++ samba-3.3.0/debian/po/eu.po @@ -0,0 +1,297 @@ +# translation of eu.po to librezale +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# Piarres Beobide , 2006, 2007. +msgid "" +msgstr "" +"Project-Id-Version: eu\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-04-07 23:18+0200\n" +"Last-Translator: Piarres Beobide \n" +"Language-Team: librezale \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "smb.conf WINS ezarpenak DHCP-tik jasotzeko eraldatu?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Zure sistemak IP helbidea sareko DHCP zerbitzari batetatik jaso ezkero, " +"zerbitzari horrek sareko WINS (\"NetBIOS name servers\") zerbitzarien datuak " +"eman ditzake. Honek smb.conf fitxategian aldaketa bat behar du DHCP bidezko " +"WINS ezarpenak /etc/samba/dhcp.conf-etik irakurtzeko." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Ezaugarri honetaz baliatzeko dhcp3-client bezeroa instalaturik izan behar " +"duzu." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Smb.conf automatikoki konfiguratu?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Konfigurazioaren hurrengo atalak /etc/samba/smb.conf fitxategiari dagozkion " +"ezarpenenak dira, honek Samba programak (smbd eta nmbd) konfiguratzen ditu. " +"Zure smb.conf fitxategiak 'include' lerro bat edo lerro bat baino luzeago " +"den aukera bat badu, horregatik konfigurazio automatiko fitxategia honda " +"daiteke, zuk eskuz konpondu beharko duzularik." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Aukera hau ez erabili ezkero, konfigurazioko edozein aldaketa eskuz egin " +"beharko duzu eta ezingo duzu konfigurazio aldaketa automatikoez baliatu." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Lan Talde/Domeinu izena?" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Mesede ezarri zure zerbitzariari sareko bezeroek galdetzean bistaraziko duen " +"lan taldea. Kontutan izan parametro honek security=domain ezarpeneko domeinu " +"izena ere ezartzen duela." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Zifraturiko pasahitzak erabili?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Windows bezero berrienek SMB zerbitzariekiko harremanak zifraturiko " +"pasahitzak erabiliaz egiten dituzte. Testu laueko pasahitzak erabili nahi " +"izan ezkero parametro bat aldatu behar duzu Windows erregistroan." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Aukera hau erabiltzea oso gomendagarri da. Erabiltzea hautatu ezkero " +"ziurtatu baliozko /etc/samba/smbpasswd fitxategi bat duzula eta pasahitzak " +"smbpasswd programaren bidez ezarri dituzula." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "/var/lib/samba/passdb.tdb pasahitz datubase berria sortu?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Windows sistema gehienen lehenetsiriko portaerarekin bateragarritasuna " +"mantentzeko, Samba zifraturiko pasahitzak erabiltzeko konfiguratu behar da. " +"Honetako erabiltzaileen pasahitzak gordeko dituen /etc/passwd fitxategiaz " +"bereiziriko beste fitxategi bat sortu behar da. Fitxategia automatikoki " +"sortu daiteke baina pasahitzak eskuz gehitu behar dira 'smbpasswd' " +"programaren bidez eta pasahitzak eguneraturik mantendu behar dira." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +" Fitxategi hau ez sortu ezkero beharrezkoa da Samba (eta ziurrenik Windows " +"bezeroak) zifratu gabeko pasahitzak erabiltzeko konfiguratzea." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Samba-doc paketeko /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/" +"pwencrypt.html begiratu argibide gehiagorako" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "deabruak" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Nola nahi duzu Samba abiaraztea?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Samba smbd zerbitzua deabru arrunt edo inted bidez abiarazi daiteke. Deabru " +"bezala abiaraztea gomendatzen da." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Konfigurazioaren hurrengo atalak /etc/samba/smb.conf fitxategiari " +#~ "dagozkion ezarpenenak dira, honek Samba programak (smbd eta nmbd) " +#~ "konfiguratzen ditu. Zure smb.conf fitxategiak 'include' lerro bat edo " +#~ "lerro bat baino luzeago den aukera bat badu, horregatik konfigurazio " +#~ "automatiko fitxategia honda daiteke, zuk eskuz konpondu beharko duzularik." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Mesede ezarri zure zerbitzariari sareko bezeroek galdetzean bistaraziko " +#~ "duen lan taldea. Kontutan izan parametro honek security=domain ezarpeneko " +#~ "domeinu izena ere ezartzen duela." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Windows bezero berrienek SMB zerbitzariekiko harremanak zifraturiko " +#~ "pasahitzak erabiliaz egiten dituzte. Testu laueko pasahitzak erabili nahi " +#~ "izan ezkero parametro bat aldatu behar duzu Windows erregistroan." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Aukera hau erabiltzea oso gomendagarri da. Erabiltzea hautatu ezkero " +#~ "ziurtatu baliozko /etc/samba/smbpasswd fitxategi bat duzula eta " +#~ "pasahitzak smbpasswd programaren bidez ezarri dituzula." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Samba-doc paketeko /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html " +#~ "begiratu argibide gehiagorako" + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "\"passbd\" motore kateatzea ez da onartzen" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "2.0.23 bertsiotik aurrera ez da gehiago onartzen motore bat baino " +#~ "gehiagoren kateatzea \"passdb backend\" parametroan. Dirudienez zure smb." +#~ "conf fitxategiko \"passdb backend\" parametroak motore zerrenda bat du. " +#~ "Samba bertsio berriak ez du funtzionatuko hau konpondu arte." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "/etc/samba/smbpasswd /var/lib/samba/passdb.tdb-ra mugitu?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 bertsioak SAM datubase sistema osoago bat eskaintzen du /etc/" +#~ "samba/smbpasswd fitxategia ordezteko." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Mesedez berretsi smbpasswd fitxategi arrunta /var/lib/samba/passdb.tdb-ra " +#~ "migratzea nahi duzula. Beste pasahitz datubase bat erabiltzea pentsatzen " +#~ "baduzu (adib LDAP) hemen 'ez' erantzun beharko zenuke." --- samba-3.3.0.orig/debian/po/it.po +++ samba-3.3.0/debian/po/it.po @@ -0,0 +1,291 @@ +# Italian (it) translation of debconf templates for samba +# Copyright (C) 2004 Software in the Public Interest +# This file is distributed under the same license as the samba package. +# Luca Monducci , 2004-2007. +# +msgid "" +msgstr "" +"Project-Id-Version: samba 3.0.24-4 italian debconf templates\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2006-03-13 13:47+0100\n" +"Last-Translator: Luca Monducci \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Modificare smb.conf per usare le impostazioni WINS da DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Se il computer prende le informazioni sull'indirizzo IP da un server DHCP " +"allora il server DHCP può fornire anche informazioni sui server WINS (i name " +"server per NetBIOS) presenti nella rete. Ciò richiede una modifica al file " +"smb.conf in modo che le impostazioni WINS, fornite da DHCP, siano lette " +"automaticamente da /etc/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Per usare questa funzionalità deve essere installato il pacchetto dhcp3-" +"client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Configurare automaticamente smb.conf?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Il resto della configurazione di Samba riguarda i parametri in /etc/samba/" +"smb.conf, il file usato per configurare i programmi di Samba (nmbd e smbd). " +"L'attuale file smb.conf contiene una riga «include» o un'opzione che si " +"estende su più righe; ciò potrebbe confondere il processo di configurazione " +"automatica e richiede una modifica manuale a smb.conf per renderlo " +"nuovamente funzionante." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Se si rifiuta, si dovrà gestire qualsiasi cambiamento nella configurazione " +"da soli e non sarà possibile beneficiare dei periodici miglioramenti della " +"configurazione." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Nome del Workgroup/Dominio:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Specificare in quale workgroup deve apparire il server quando verrà " +"interrogato dai client. Notare che questo parametro controlla anche il nome " +"del dominio quando è usato il parametro «security=domain»." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Usare password cifrate?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Tutti i client Windows recenti comunicano con i server SMB usando password " +"cifrate. Per usare password in chiaro è necessario cambiare un parametro nel " +"registro di Windows." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Si raccomanda d'accettare, in questo caso assicurarsi che il file /etc/samba/" +"smbpasswd sia valido e che le password di tutti gli utenti siano state " +"inserite con il comando smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Creare il database delle password di samba /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Per essere compatibile con le impostazioni predefinite di molte versioni di " +"Windows, Samba deve essere configurato per usare password cifrate. Ciò " +"richiede che le password degli utenti siano memorizzate in un file diverso " +"da /etc/passwd. Questo file può essere creato automaticamente ma le password " +"dovranno essere inserite manualmente con smbpasswd e in futuro il file dovrà " +"essere tenuto aggiornato." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Se non si crea questo file è necessario riconfigurare samba (e probabilmente " +"anche le macchine client) per usare password in chiaro." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Si veda /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +"html, contenuto nel pacchetto samba-doc, per ulteriori dettagli." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "demoni" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Come avviare Samba?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Il demone Samba smbd può essere avviato come un normale demone oppure da " +"inetd. Si raccomanda l'avvio come demone." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Il resto della configurazione di Samba riguarda i parametri in /etc/samba/" +#~ "smb.conf, il file usato per configurare i programmi di Samba (nmbd e " +#~ "smbd). L'attuale file smb.conf contiene una riga «include» o un'opzione " +#~ "che si estende su più righe; ciò potrebbe confondere il processo di " +#~ "configurazione automatica e richiede una modifica manuale a smb.conf per " +#~ "renderlo nuovamente funzionante." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Specificare in quale workgroup deve apparire il server quando verrà " +#~ "interrogato dai client. Notare che questo parametro controlla anche il " +#~ "nome del dominio quando è usato il parametro «security=domain»." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Tutti i client Windows recenti comunicano con i server SMB usando " +#~ "password cifrate. Per usare password in chiaro è necessario cambiare un " +#~ "parametro nel registro di Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Si raccomanda d'accettare, in questo caso assicurarsi che il file /etc/" +#~ "samba/smbpasswd sia valido e che le password di tutti gli utenti siano " +#~ "state inserite con il comando smbpasswd." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Si veda /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html, contenuto nel " +#~ "pacchetto samba-doc, per ulteriori dettagli." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Il caricamento a catena dei backend passdb non è supportato" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "A partire dalla versione 3.0.23, samba non supporta più il caricamento a " +#~ "catena di più backend nel parametro \"passdb backend\". Sembra che il " +#~ "prorio file smb.conf contenga nel parametro passdb backend un elenco di " +#~ "backend. La nuova versione di samba non funziona se non si corregge " +#~ "questo valore." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Trasferire /etc/samba/smbpasswd in /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 introduce una nuova e più completa interfaccia al database SAM " +#~ "che sostituisce il file /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Confermare se si vuole che il file smbpasswd esistente sia " +#~ "automaticamente trasferito in /var/lib/samba/passdb.tdb. Invece, se si " +#~ "pensa di usare un backend pdb diverso (per esempio LDAP), si dovrebbe " +#~ "rifiutare." --- samba-3.3.0.orig/debian/po/wo.po +++ samba-3.3.0/debian/po/wo.po @@ -0,0 +1,298 @@ +# translation of wo.po to Wolof +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# Mouhamadou Mamoune Mbacke , 2006, 2007. +msgid "" +msgstr "" +"Project-Id-Version: wo\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-04-30 18:13+0000\n" +"Last-Translator: Mouhamadou Mamoune Mbacke \n" +"Language-Team: Wolof\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Ndax nu soppi smb.con ba muy jëfandikoo komfiguraasioÅ‹ bu DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Bu fekkee sa kompiyutar mi ngi ame adrees IP ci ab serwóor DHCP bu ne ci " +"resóo bi, kon serwóor DHCP bi man na yitam di joxe ay xamle yu aju ci " +"serwóor WINS yi (\"NetBIOS name servers\") yi nekk ci resóo bi. Loolu nak " +"dana laaj ak coppat ci sa fiise smb.conf, ngir ba komfiguraasioÅ‹ yi DHCP bi " +"di joxe ñukoy jaÅ‹gale sune boppu ci fiise /etc/samba/dhcp.conf" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "Paket bu dhcp3-client nak wareesna koo istale ngir jariñoo defiin wii." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Ndax ñu komfigureel smb.conf sunu boppu?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Li des ci komfiguraasioÅ‹ bu samba ay laaj la yu aju ci parameetar yu /etc/" +"samba/smb.conf, nga xam ne mooy fiise biñuy jëfandikoo ngir komfigure " +"prograam yu samba (nmbd ak smbd). Sa fiise smb.conf bii nga yore fii mune, " +"amna aw bind wu 'include' walla ab tann bu tallalu ci ay bind yu bare, ta " +"loolu man naa jaxase komfiguraasioÅ‹ otomatik bi, ba taxna danga koy wara " +"soppi ak sa loxo, ngir léppu awaat yoon." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Bu fekkee tannoo lii, kon bépp coppat booy def ci komfiguraasioÅ‹ bi danga " +"koy defal sa boppu, ta kon doo mana jariñu ci rafetal ak jekkal yiñuy farala " +"def ci komfiguraasioÅ‹ bi." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Grup bu liggéey/Turu domen:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Joxeel grup bu liggéey binga bëgg serwóor bii di mel ne ci bokk buko ay " +"kiliyaÅ‹ di laaj. Nga bayyi xel ne parameetar bii mooy konturle yitam turu " +"domen biñuy jëfandikoo ci komfiguraasioÅ‹ bu security=domain." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Ndax ñu kiripte baatujall yi?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Mbooleem kiliyaÅ‹ yu Windows yu yees yi buñuy jokkoo ak SMB dañuy jëfandikoo " +"baatijall yuñu kiripte. Boo bëggée jëfandikoo baatijall yu tekst yu leer, " +"kon dangay wara soppi ab parameetar ci register bu Windows." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Ñoongi deÅ‹kaane bubaax nga tann lii. Boo ko defee, na nga wóorlu ne amnga ab " +"fiise /etc/samba/smbpasswd bu baax, ta nga def foofa baatujall bu " +"jëfandikukat yéppu. Dangay jëfandikoo komaand bu smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "" +"Ndax ñu sos baasu done bu baatujall yu samba, /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Ngir mana dëppóo ak defóo bu li ëppu ci wersioÅ‹ yu Windows yi, samba deeskoo " +"wara komfigure muy jëfandikoo baatijall yuñu kiripte. Loolu dafay laaj ñu " +"deñc baatijall yi ci ab fiise bu bokkul ak /etc/passwd. Fiise boobu " +"manessna koo sos sosuk otomatik, waaye kon baatijall yi deesleen ciy wara " +"dugël ak loxo, doxal smbpasswd, ta buko defee ñu leen di yeesal saa yuñu ko " +"soxlawaatee." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Boo ko sosul, kon fawwu nga komfigure Samba (amaana yit sa masin yu kiliyaÅ‹ " +"yi) def leen ñuy jëfandikoo baatijall yu text normaal (plain text)." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Xoolal /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +"html bi nekk ci paket bu samba-doc, ngir am yaneen leeral." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "daemon yi" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Nan nga bëgga doxale samba?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Daemon bu Samba smbd maneesna koo doxal ne ab deamon normaal, maneesna koo " +"doxale yit ak inetd. Liñuy deÅ‹kaane nak mooy doxalko muy ab daemon." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Li des ci komfiguraasioÅ‹ bu samba ay laaj la yu aju ci parameetar yu /etc/" +#~ "samba/smb.conf, nga xam ne mooy fiise biñuy jëfandikoo ngir komfigure " +#~ "prograam yu samba (nmbd ak smbd). Sa fiise smb.conf bii nga yore fii " +#~ "mune, amna aw bind wu 'include' walla ab tann bu tallalu ci ay bind yu " +#~ "bare, ta loolu man naa jaxase komfiguraasioÅ‹ otomatik bi, ba taxna danga " +#~ "koy wara soppi ak sa loxo, ngir léppu awaat yoon." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Joxeel grup bu liggéey binga bëgg serwóor bii di mel ne ci bokk buko ay " +#~ "kiliyaÅ‹ di laaj. Nga bayyi xel ne parameetar bii mooy konturle yitam turu " +#~ "domen biñuy jëfandikoo ci komfiguraasioÅ‹ bu security=domain." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Mbooleem kiliyaÅ‹ yu Windows yu yees yi buñuy jokkoo ak SMB dañuy " +#~ "jëfandikoo baatijall yuñu kiripte. Boo bëggée jëfandikoo baatijall yu " +#~ "tekst yu leer, kon dangay wara soppi ab parameetar ci register bu Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Ñoongi deÅ‹kaane bubaax nga tann lii. Boo ko defee, na nga wóorlu ne amnga " +#~ "ab fiise /etc/samba/smbpasswd bu baax, ta nga def foofa baatujall bu " +#~ "jëfandikukat yéppu. Dangay jëfandikoo komaand bu smbpasswd." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Xoolal /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html bi nekk ci paket " +#~ "bu samba-doc, ngir am yaneen leeral." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Ceene passdb backends manula nekk" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Liko dale ci version 3.0.23 ba leegi, samba naÅ‹gootul ceene ay backends " +#~ "yu bare ci parameetaru \"passdb backend\". Dafa mel ne nak sa fiise " +#~ "smb.conf dafa am parameetaru passdb backend budoon ab list bu ay backend. " +#~ "version bu samba bu beesbi du naÅ‹goo dox fii ak ngay defaraat loolu." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "Ndax nu toxal /etc/samba/smbpasswd yobbuko ci /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 dafa indaale ab interfaas bu baasu done SAM bu gëna mat, buy " +#~ "wuutu fiise bu /etc/samba/smbpasswd" + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Feddlin baxam bëggnga fiise smbpasswd bifi nekk ñu toxalalko suñu boppy " +#~ "yobbuko ca /var/lib/samba/passdb.tdb. Bul tann lii bu fekkee yaangi jappa " +#~ "jëfandikoo baneen paket bu pdb (ci misaal LDAP)." --- samba-3.3.0.orig/debian/po/ro.po +++ samba-3.3.0/debian/po/ro.po @@ -0,0 +1,270 @@ +# translation of ro.po to Romanian +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# Eddy PetriÈ™or , 2006, 2007, 2008. +msgid "" +msgstr "" +"Project-Id-Version: samba/debian/po/ro.po\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2008-06-29 19:42+0300\n" +"Last-Translator: Eddy PetriÈ™or \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Se modifică smb.conf pentru a folosi configuraÈ›iile WINS din DHCP?" + +# RO: prefer să nu folosesc termeni de genul „calculatorul dvs.â€; de multe ori nu e cazul È™i sună mai puÈ›in profesional. +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Dacă acest calculator primeÈ™te informaÈ›iile IP (de configurare a reÈ›elei) de " +"la un server DHCP din reÈ›ea, acel server ar putea să ofere informaÈ›ii È™i " +"despre serverele WINS („Serverele NetBIOS de numeâ€) prezente în reÈ›ea. Acest " +"lucru necesită o schimbare a fiÈ™ierului smb.conf astfel încât configuraÈ›iile " +"WINS oferite prin DHCP vor fi citite automat din /etc/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Pachetul dhcp3-client trebuie să fie instalat pentru a beneficia de această " +"facilitate." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Se configurează smb.conf automat?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Restul configuraÈ›iei Samba tratează întrebările care afectează parametrii " +"din /etc/samba/smb.conf, fiÈ™ierul utilizat pentru a configura programele " +"Samba (nmbd È™i smbd). Actualul fiÈ™ier smb.conf conÈ›ine o linie „include†sau " +"o opÈ›iune care se desfășoară de-a lungul a mai multor linii, lucru care ar " +"putea să creeze confuzie în procesul de configurare automată È™i ar putea " +"duce la necesitatea editării manuale a fiÈ™ierului smb.conf pentru a-l face " +"din nou funcÈ›ional." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Dacă nu selectaÈ›i aceasta opÈ›iune, va trebui să gestionaÈ›i personal orice " +"schimbare a configuraÈ›iei È™i nu veÈ›i putea beneficia de îmbunătățirile " +"periodice ale configuraÈ›iei." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Grupul de lucru/Numele de domeniu:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Vă rugăm să specificaÈ›i grupul de lucru de care acest server va aparÈ›ine " +"când va fi chestionat de clienÈ›i. A se reÈ›ine că acest parametru controlează " +"È™i numele de domeniu folosit cu opÈ›iunea security=domain." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Se folosesc parole criptate? " + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Cei mai recenÈ›i clienÈ›i Windows comunică cu serverele SMB folosind parole " +"criptate. Dacă doriÈ›i să folosiÈ›i parole necriptate, va trebui să schimbaÈ›i " +"un parametru în registrul de configurare Windows." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Activarea acestei opÈ›iuni este recomandată în mod deosebit. Dacă o activaÈ›i, " +"asiguraÈ›i-vă că fiÈ™ierul /etc/samba/smbpasswd este valid È™i că aveÈ›i " +"configurată o parolă pentru fiecare utilizator (folosind comanda smbpasswd)." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Se creează baza de date cu parole /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Pentru compatibilitate cu majoritatea versiunilor de Windows, Samba trebuie " +"să fie configurată să folosească parole criptate. Acest lucru necesită ca " +"parolele utilizatorilor să fie stocate în alt fiÈ™ier decât /etc/passwd. " +"Acest fiÈ™ier poate fi creat automat, dar parolele trebuie să fie adăugate " +"manual prin rularea comenzii smbpasswd È™i, în viitor, trebuie È›inut la zi." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Dacă nu-l creaÈ›i, va trebui să reconfiguraÈ›i Samba (probabil È™i " +"calculatoarele client) să folosească parole necriptate." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"A se vedea /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/" +"pwencrypt.html din pachetul samba-doc pentru mai multe detalii." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "demoni" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Cum doriÈ›i să rulaÈ›i Samba?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Demonul Samba smbd poate rula ca un demon normal sau din inetd. Rularea ca " +"demon este recomandată." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Restul configuraÈ›iei Samba tratează întrebările care afectează parametrii " +#~ "din /etc/samba/smb.conf, fiÈ™ierul utilizat pentru a configura programele " +#~ "Samba (nmbd È™i smbd). Actualul fiÈ™ier smb.conf conÈ›ine o linie „include†" +#~ "sau o opÈ›iune care se desfășoară de-a lungul a mai multor linii, lucru " +#~ "care ar putea să creeze confuzie în procesul de configurare automată È™i " +#~ "ar putea duce la necesitatea editării manuale a fiÈ™ierului smb.conf " +#~ "pentru a-l face din nou funcÈ›ional." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Vă rugăm să specificaÈ›i grupul de lucru de care acest server va aparÈ›ine " +#~ "când va fi chestionat de clienÈ›i. A se reÈ›ine că acest parametru " +#~ "controlează È™i numele de domeniu folosit cu opÈ›iunea security=domain." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Cei mai recenÈ›i clienÈ›i Windows comunică cu serverele SMB folosind parole " +#~ "criptate. Dacă doriÈ›i să folosiÈ›i parole necriptate, va trebui să " +#~ "schimbaÈ›i un parametru în registrul de configurare Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Activarea acestei opÈ›iuni este recomandată în mod deosebit. Dacă o " +#~ "activaÈ›i, asiguraÈ›i-vă că fiÈ™ierul /etc/samba/smbpasswd este valid È™i că " +#~ "aveÈ›i configurată o parolă pentru fiecare utilizator (folosind comanda " +#~ "smbpasswd)." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "A se vedea /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html din pachetul " +#~ "samba-doc pentru mai multe detalii." --- samba-3.3.0.orig/debian/po/nn.po +++ samba-3.3.0/debian/po/nn.po @@ -0,0 +1,289 @@ +# translation of samba_nn.po to Norwegian nynorsk +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# HÃ¥vard Korsvoll , 2007. +msgid "" +msgstr "" +"Project-Id-Version: samba_nn\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-17 18:35+0100\n" +"Last-Translator: HÃ¥vard Korsvoll \n" +"Language-Team: Norwegian nynorsk \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Vil du endre smd.conf til Ã¥ bruke WINS-innstillingar frÃ¥ DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Viss maskina di fÃ¥r IP-adresseinformasjon frÃ¥ ein DHCP-tenar pÃ¥ nettverket, " +"kan DHCP-tenaren ogsÃ¥ gje informasjon om WINS-tenarar («NetBIOS " +"namnetenarar») som er tilstade pÃ¥ nettverket. Dette krev ei endring i smb." +"conf-fila slik at WINS-innstillingar som DHCP-tenaren oppgjev automatisk " +"vert lest frÃ¥ /etc/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "Pakka dhcp3-client mÃ¥ vere installert for Ã¥ ta i bruk dette." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Setje opp smb.conf automatisk?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Resten av oppsettet av Samba er spørsmÃ¥l som handlar om parametrar i /etc/" +"samba/smb.conf, som er fila som blir brukt til Ã¥ setje opp Sambaprogram " +"(nmbd og smbd). Den noverande smb.conf-fila inneheld ei «include»-linje eller " +"ein opsjon som gÃ¥r over fleire linjer, noko som kan forvirre den automatiske " +"oppsettsprosessen og gjer at du mÃ¥ redigere smb.conf-fila manuelt for Ã¥ fÃ¥ " +"det til Ã¥ fungere igjen." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Viss du ikkje vel dette, sÃ¥ vil du mÃ¥tte handtere endringar i oppsettet " +"sjølv, og du vil ikkje vere i stand til Ã¥ ta imot periodiske forbetringar i " +"oppsettet." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Arbeidsgruppe/Domenenamn:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Oppgje den arbeidsgruppa (workgroup) som du vil at denne tenaren skal vere i " +"nÃ¥r han blir spurd av klientar. Merk at denne parameteren ogsÃ¥ kontrollerer " +"domenenamnet som er brukt med instillinga security=domain." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Bruke krypterte passord?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Alle nyare Windows-klientar kommuniserer med SMB-tenarar ved hjelp av " +"krypterte passord. Viss du vil bruke klartekstpassord, mÃ¥ du endre ein " +"parameter i Windows-registeret." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Det er sterkt tilrÃ¥dd at du slÃ¥r pÃ¥ dette valet. Viss du gjer det, mÃ¥ du sjÃ¥ " +"etter at du har ei gyldig /etc/samba/smbpasswd-fil, og du set inn passord " +"der for kvar brukar ved hjelp av kommandoen «smbpasswd»." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Opprette samba passorddatabase, /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"For Ã¥ vere kompatibel med standard i dei fleste versjonar av Windows, mÃ¥ " +"Samba bli sett opp til Ã¥ bruke krypterte passord. Dette krev at " +"brukarpassord mÃ¥ lagrast i ei anna fil enn /etc/passwd. Denne fila kan " +"lagast automatisk, men passorda mÃ¥ leggjast til manuelt ved Ã¥ køyre " +"smbpasswd og haldast oppdatert i framtida." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Viss du ikkje lagar ho, mÃ¥ du endre oppsettet av Samba (og truleg " +"klientmaskinene ogsÃ¥) til Ã¥ bruke klartekstpassord." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"SjÃ¥ /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"frÃ¥ pakken samba-doc for fleire detaljar." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "tenester" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Korleis vil du køyre Samba?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Samba-tenesta smbd kan køyrast som ei normal teneste frÃ¥ inetd. Ã… køyre som " +"ei teneste er den tilrÃ¥dde mÃ¥ten." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Resten av oppsettet av Samba er spørsmÃ¥l som handlar om parametrar i /etc/" +#~ "samba/smb.conf, som er fila som blir brukt til Ã¥ setje opp Sambaprogram " +#~ "(nmbd og smbd). Den noverande smb.conf-fila inneheld ei «include»-linje " +#~ "eller ein opsjon som gÃ¥r over fleire linjer, noko som kan forvirre den " +#~ "automatiske oppsettsprosessen og gjer at du mÃ¥ redigere smb.conf-fila " +#~ "manuelt for Ã¥ fÃ¥ det til Ã¥ fungere igjen." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Oppgje den arbeidsgruppa (workgroup) som du vil at denne tenaren skal " +#~ "vere i nÃ¥r han blir spurd av klientar. Merk at denne parameteren ogsÃ¥ " +#~ "kontrollerer domenenamnet som er brukt med instillinga security=domain." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Alle nyare Windows-klientar kommuniserer med SMB-tenarar ved hjelp av " +#~ "krypterte passord. Viss du vil bruke klartekstpassord, mÃ¥ du endre ein " +#~ "parameter i Windows-registeret." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Det er sterkt tilrÃ¥dd at du slÃ¥r pÃ¥ dette valet. Viss du gjer det, mÃ¥ du " +#~ "sjÃ¥ etter at du har ei gyldig /etc/samba/smbpasswd-fil, og du set inn " +#~ "passord der for kvar brukar ved hjelp av kommandoen «smbpasswd»." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "SjÃ¥ /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html frÃ¥ pakken samba-" +#~ "doc for fleire detaljar." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Lenkjing av passdb-motorar er ikkje støtta" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "FrÃ¥ og med versjon 3.0.23 støttar ikkje samba lenkjing av motorar i " +#~ "«passdb backend»-parameteren lenger. Det ser ut til at smb.conf-fila di " +#~ "inneheld ein «passdb backend»-parameter som bestÃ¥r av ei liste med " +#~ "motorar. Den nye versjonen av samba vil ikkje fungere før du rettar opp " +#~ "dette." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Flytte /etc/samba/smbpasswd til /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 introduserte eit meir komplett SAM-databasegrensesnitt som " +#~ "erstattar /etc/samba/smbpasswd-fila." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Stadfest om du vil at den eksisterande smbpasswd-fila automatisk skal " +#~ "migrerast inn i /var/lib/samba/passdb.tdb. Ikkje vel dette viss du " +#~ "planlegg Ã¥ bruke ein anna pdb-motor (t.d. LDAP) i staden." --- samba-3.3.0.orig/debian/po/gl.po +++ samba-3.3.0/debian/po/gl.po @@ -0,0 +1,304 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-12 20:24+0100\n" +"Last-Translator: Jacobo Tarrio \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "¿Modificar smb.conf para empregar a configuración WINS de DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Se o seu ordenador obtén o enderezo IP dun servidor DHCP da rede, o servidor " +"DHCP tamén pode fornecer información sobre os servidores WINS (servidores de " +"nomes NetBIOS) que estean presentes na rede. Para facelo hai que modificar o " +"ficheiro smb.conf para que a configuración WINS fornecida por DHCP se lea " +"automaticamente de /etc/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"O paquete dhcp3-client debe estar instalado para aproveitar esta " +"característica." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "¿Configurar o ficheiro smb.conf automaticamente?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"O resto da configuración de Samba trata con cuestións que afectan aos " +"parámetros de /etc/samba/smb.conf, que é o ficheiro que se emprega para " +"configurar os programas de Samba (nmbd e smbd). O seu ficheiro smb.conf " +"actual contén unha liña \"include\" ou unha opción que cubre varias liñas, o " +"que pode confundir ao proceso de configuración automático e facer que teña " +"que editar o ficheiro smb.conf a man para poñelo a funcionar outra vez." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Se non escolle esta opción ha ter que facer os cambios na configuración " +"vostede mesmo, e non ha poder aproveitar as melloras periódicas na " +"configuración." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Nome do grupo de traballo/dominio:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Indique o grupo de traballo no que quere que apareza este servidor cando lle " +"pregunten os clientes. Teña en conta que este parámetro tamén controla o " +"nome de dominio que se emprega coa configuración security=domain." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "¿Empregar cifrado de contrasinais?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Todos os clientes Windows recentes comunícanse cos servidores SMB empregando " +"contrasinais cifrados. Se quere empregar contrasinais de texto claro ha ter " +"que cambiar un parámetro no rexistro de Windows." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Recoméndase activar esta opción. Se o fai, asegúrese de ter un ficheiro /etc/" +"samba/smbpasswd válido e de establecer nel os contrasinais de cada usuario " +"coa orde smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "" +"¿Crear a base de datos de contrasinais de samba, /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Para que sexa compatible coa configuración por defecto da maioría das " +"versións de Windows, Samba ten que se configurar para empregar contrasinais " +"cifrados. Para facelo, hai que armacenar os contrasinais dos usuarios nun " +"ficheiro separado de /etc/passwd. Este ficheiro pódese crear " +"automaticamente, pero os contrasinais hai que engadilos á man empregando " +"smbpasswd e hai que mantelo actualizado no futuro." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Se non o crea ha ter que reconfigurar samba (e probablemente tamén as " +"máquinas cliente) para que empreguen contrasinais en texto normal." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Consulte o ficheiro /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-" +"Guide/pwencrypt.html do paquete samba-doc para ter máis detalles." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "servizos" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "¿Como quere executar Samba?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"O servizo de Samba smbd pode funcionar coma un servizo normal ou desde " +"inetd. Recoméndase executalo coma un servizo." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "O resto da configuración de Samba trata con cuestións que afectan aos " +#~ "parámetros de /etc/samba/smb.conf, que é o ficheiro que se emprega para " +#~ "configurar os programas de Samba (nmbd e smbd). O seu ficheiro smb.conf " +#~ "actual contén unha liña \"include\" ou unha opción que cubre varias " +#~ "liñas, o que pode confundir ao proceso de configuración automático e " +#~ "facer que teña que editar o ficheiro smb.conf a man para poñelo a " +#~ "funcionar outra vez." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Indique o grupo de traballo no que quere que apareza este servidor cando " +#~ "lle pregunten os clientes. Teña en conta que este parámetro tamén " +#~ "controla o nome de dominio que se emprega coa configuración " +#~ "security=domain." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Todos os clientes Windows recentes comunícanse cos servidores SMB " +#~ "empregando contrasinais cifrados. Se quere empregar contrasinais de texto " +#~ "claro ha ter que cambiar un parámetro no rexistro de Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Recoméndase activar esta opción. Se o fai, asegúrese de ter un ficheiro /" +#~ "etc/samba/smbpasswd válido e de establecer nel os contrasinais de cada " +#~ "usuario coa orde smbpasswd." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Consulte o ficheiro /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html do " +#~ "paquete samba-doc para ter máis detalles." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Non está soportado o encadeamento de motores de passdb" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "A partires da versión 3.0.23, samba xa non soporta o encadeamento de " +#~ "varios motores no parámetro \"passdb backend\". Semella que o seu " +#~ "ficheiro smb.conf contén un parámetro de motor de passdb que consiste " +#~ "nunha lista de motores. A nova versión de samba non ha funcionar ata que " +#~ "o corrixa." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "¿Trasladar /etc/samba/smbpasswd a /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 introduciu unha interface de base de datos SAM máis completa " +#~ "que substitúe ao ficheiro /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Confirme se quere que se migre automaticamente o ficheiro smbpasswd " +#~ "existente a /var/lib/samba/passdb.tdb. Non escolla esta opción se " +#~ "pretende empregar outro motor pdb (por exemplo, LDAP)." + +#~ msgid "daemons, inetd" +#~ msgstr "servizos, inetd" --- samba-3.3.0.orig/debian/po/POTFILES.in +++ samba-3.3.0/debian/po/POTFILES.in @@ -0,0 +1,2 @@ +[type: gettext/rfc822deb] samba-common.templates +[type: gettext/rfc822deb] samba.templates --- samba-3.3.0.orig/debian/po/pt.po +++ samba-3.3.0/debian/po/pt.po @@ -0,0 +1,294 @@ +# translation of pt.po to Portuguese +# translation of samba Debian debconf template to Portuguese +# Miguel Figueiredo , 2004, 2007 +# +msgid "" +msgstr "" +"Project-Id-Version: samba 3.0.9-1\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2006-08-14 07:42-0000\n" +"Last-Translator: Miguel Figueiredo \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"Modificar o smb.conf para utilizar definições de WINS a partir de DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Se o seu computador obtém a informação do endereço IP a partir de um " +"servidor de DHCP na rede, o servidor de DHCP pode também fornecer informação " +"acerca de servidores de WINS (\"servidor de nomes NetBIOS\") presentes na " +"rede. Isto requer uma alteração no seu ficheiro smb.conf de modo que as " +"definições de WINS fornecidas por DHCP sejam automaticamente lidas a partir " +"de /etc/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Para tirar partido desta funcionalidade tem de ter instalado o pacote dhcp3-" +"client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Configurar automaticamente o smb.conf?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"O resto da configuração do Samba trata de questões que afectam parâmetros " +"em /etc/samba/smb.conf, que é o ficheiro utilizado para configurar os " +"programas do Samba (nmbd e smbd). O seu actual smb.conf contém uma linha " +"'include' ou uma opção que se espalha por várias linhas, a qual pode " +"confundir o processo de configuração automática e necessitar que você edite " +"à mão o smb.conf par o ter novamente operacional." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Se não escolher esta opção, terá de lidar você mesmo com quaisquer " +"alterações de configuração, e não poderá tirar partido de melhorias " +"periódicas da configuração." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Nome do Grupo de trabalho/Domínio:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Por favor especifique o grupo de trabalho em que quer que este servidor " +"apareça quando questionado pelos clientes. Note que este parâmetro também " +"controla o nome de Domínio utilizado com a configuração security=domain." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Utilizar encriptação de passwords?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Todos os clientes Windows recentes comunicam com servidores SMB utilizando " +"passwords encriptadas. Se deseja utilizar passwords de texto puro você vai " +"ter de alterar um parâmetro no registo do seu Windows." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"É altamente recomendado que escolha esta opção. Se o fizer, assegure-se que " +"tem um ficheiro /etc/samba/smbpasswd válido e que define as passwords para " +"cada utilizador utilizando o comando smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Criar base de dados de passwords samba, /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Para ser compatível com as omissões na maioria das versões do Windows, o " +"Samba tem de ser configurado para utilizar passwords encriptadas. Isto faz " +"com que as passwords dos utilizadores sejam guardadas noutro ficheiro " +"separado do /etc/passwd. Este ficheiro pode ser criado automaticamente, mas " +"as passwords têm de ser manualmente adicionadas correndo o smbpasswd e " +"mantidas actualizadas no futuro." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Se não o criar, terá de reconfigurar o samba (e provavelmente as suas " +"máquinas clientes) para utilizar passwords de texto puro." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Para mais detalhes veja /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-" +"Guide/pwencrypt.html do pacote samba-doc." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "daemons" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Como deseja correr o Samba?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"O daemon de Samba smbd pode correr como um daemon normal ou a partir de " +"inetd. Executá-lo como um daemon é a aproximação recomendada." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "O resto da configuração do Samba trata de questões que afectam parâmetros " +#~ "em /etc/samba/smb.conf, que é o ficheiro utilizado para configurar os " +#~ "programas do Samba (nmbd e smbd). O seu actual smb.conf contém uma linha " +#~ "'include' ou uma opção que se espalha por várias linhas, a qual pode " +#~ "confundir o processo de configuração automática e necessitar que você " +#~ "edite à mão o smb.conf par o ter novamente operacional." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Por favor especifique o grupo de trabalho em que quer que este servidor " +#~ "apareça quando questionado pelos clientes. Note que este parâmetro também " +#~ "controla o nome de Domínio utilizado com a configuração security=domain." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Todos os clientes Windows recentes comunicam com servidores SMB " +#~ "utilizando passwords encriptadas. Se deseja utilizar passwords de texto " +#~ "puro você vai ter de alterar um parâmetro no registo do seu Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "É altamente recomendado que escolha esta opção. Se o fizer, assegure-se " +#~ "que tem um ficheiro /etc/samba/smbpasswd válido e que define as passwords " +#~ "para cada utilizador utilizando o comando smbpasswd." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Para mais detalhes veja /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html " +#~ "do pacote samba-doc." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Não é suportado carregar backends passdb" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "A partir da versão 3.0.23, o samba deixou de suportar carregar vários " +#~ "backends no parâmentro \"passdb_backend\". Parece que o seu ficheiro smb." +#~ "conf contém um pârametro passdb backend que consiste numa lista de " +#~ "backends. A nova versão do Samba não irá funcionar até você corrigir " +#~ "isto." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Mover /etc/samba/smbpasswd para /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "O Samba 3.0 introduziu um interface mais completo da base de dados SAM " +#~ "que sucede ao ficheiro /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Por favor confirme se quer que o ficheiro existente smbpasswd seja " +#~ "automaticamente migrado para /var/lib/samba/passdb.tdb. Não escolha esta " +#~ "opção se em vez disso planeia utilizar outro backend pdb (e.g., LDAP)." + +#~ msgid "daemons, inetd" +#~ msgstr "daemons, inetd" --- samba-3.3.0.orig/debian/po/ko.po +++ samba-3.3.0/debian/po/ko.po @@ -0,0 +1,281 @@ +# Sunjae Park , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-14 09:28-0400\n" +"Last-Translator: Sunjae Park \n" +"Language-Team: Korean \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "smb.confì„ ìˆ˜ì •í•˜ì—¬ DHCPì˜ WINS ì„¤ì •ì„ ì‚¬ìš©í•˜ë„ë¡ í• ê¹Œìš”?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"컴퓨터가 ë„¤íŠ¸ì›Œí¬ ìƒì— 있는 DHCP 서버ì—ì„œ IP 주소 정보를 받아올 경우, DHCP ì„œ" +"버ì—ì„œ ë„¤íŠ¸ì›Œí¬ ìƒì— 있는 WINS 서버(\"NetBIOS 네임 서버\")ì— ê´€í•œ 정보를 받아" +"올 수 있는 ê²½ìš°ë„ ìžˆìŠµë‹ˆë‹¤. ì´ë¥¼ 위해서는 smb.conf 파ì¼ì„ 수정하여 DHCPì—ì„œ " +"ì œê³µëœ WINS ì„¤ì •ì„ /etc/samba/dhcp.confì—ì„œ ìžë™ìœ¼ë¡œ ì½ì–´ë“¤ì¼ 수 있ë„ë¡ í•´ì•¼ " +"합니다." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "ì´ ê¸°ëŠ¥ì„ ì‚¬ìš©í•˜ê¸° 위해서는 dhcp3-client 꾸러미를 설치해야 합니다." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "smb.confì„ ìžë™ìœ¼ë¡œ 설정할까요?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"앞으로 ë‚¨ì€ Samba ì„¤ì •ì€ Samba 프로그램들(nmbd와 smbd)ì„ ì„¤ì •í•  ë•Œ 사용하는 /" +"etc/samba/smb.confì— ìžˆëŠ” ê°ì¢… 매개 ë³€ìˆ˜ë“¤ì„ ë³€ê²½í•˜ëŠ” 질문들로 구성ë˜ì–´ 있습" +"니다. í˜„ìž¬ì˜ smb.confì€ 'include'를 사용하거나 여러 ì¤„ì— ê±¸ì¹œ ì˜µì…˜ì„ ì‚¬ìš©í•˜" +"ê³  있습니다. ì´ëŠ” ìžë™ 설정 ê³¼ì •ì— í˜¼ëˆì„ 줄 수 있으며 ë‚˜ì¤‘ì— ì†ìœ¼ë¡œ smb.conf" +"ì„ ìˆ˜ì •í•˜ì…”ì•¼ 제대로 ë™ìž‘합니다." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"ì´ ì˜µì…˜ì„ ì„ íƒí•˜ì§€ ì•Šì„ ê²½ìš° 설정 ë³€ê²½ì‚¬í•­ì„ ì§ì ‘ 다루셔야 하며 ì£¼ê¸°ì  ì„¤ì • " +"변경 업그레ì´ë“œ ê¸°ëŠ¥ì„ ì‚¬ìš©í•˜ì§€ 못할 것입니다." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "작업그룹/ë„ë©”ì¸ ì´ë¦„:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"í´ë¼ì´ì–¸íŠ¸ì—ì„œ 질ì˜ê°€ 들어올 ë•Œ ì´ ì„œë²„ê°€ 소ì†ëœ ìž‘ì—…ê·¸ë£¹ì„ ì§€ì •í•´ì£¼ì‹­ì‹œì˜¤. " +"참고로 security=domain ë°©ì‹ì˜ ì„¤ì •ì„ ì‚¬ìš©í•  경우 사용하는 ë„ë©”ì¸ ì´ë¦„ë„ ì´ ë§¤" +"개변수를 통해 설정합니다." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "비밀번호 암호화 ê¸°ëŠ¥ì„ ì‚¬ìš©í• ê¹Œìš”?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"최신 윈ë„ìš° í´ë¼ì´ì–¸íŠ¸ë“¤ì€ ëª¨ë‘ ì•”í˜¸í™”ëœ ë¹„ë°€ë²ˆí˜¸ë¥¼ 통해 SMB 서버와 통신합니" +"다. 암호화 안 ëœ í´ë¦¬ì–´í…스트 비밀번호를 사용하려면 윈ë„ìš° ë ˆì§€ìŠ¤íŠ¸ë¦¬ì— ìžˆëŠ” " +"매개변수를 변경하셔야 합니다." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"ì´ ê¸°ëŠ¥ì„ í™œì„±í™”í•  ê²ƒì„ ê°•ë ¥ížˆ 권장합니다. 활성화할 경우, /etc/samba/" +"smbpasswd 파ì¼ì´ 제대로ì´ê³  smbpasswd ëª…ë ¹ì„ ì‚¬ìš©í•˜ì—¬ ê° ì‚¬ìš©ìžë“¤ì˜ 비밀번호" +"를 전부 ë‹´ê³  있는지 확ì¸í•˜ì‹­ì‹œì˜¤." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "sambaì˜ ë¹„ë°€ë²ˆí˜¸ ë°ì´í„°ë² ì´ìŠ¤ /var/lib/samba/passdb.tdb를 만들까요?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"ëŒ€ë¶€ë¶„ì˜ ìœˆë„ìš° ë²„ì „ë“¤ê³¼ì˜ í˜¸í™˜ì„±ì„ ìœ„í•´ Samba는 ì•”í˜¸í™”ëœ ë¹„ë°€ë²ˆí˜¸ë¥¼ 사용하ë„" +"ë¡ í•´ì•¼ 합니다. ì´ë¥¼ 위해서는 사용ìžë“¤ì˜ 비밀번호를 /etc/passwd와 다른 ê³³ì— " +"저장해야 합니다. ì´ íŒŒì¼ì€ ìžë™ìœ¼ë¡œ ìƒì„±í•  수는 있지만, ë¹„ë°€ë²ˆí˜¸ë“¤ì€ " +"smbpasswd ëª…ë ¹ì„ í†µí•´ ì§ì ‘ 입력하셔야 하며 꾸준히 최신 ìƒíƒœë¡œ 유지하셔야 합니" +"다." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"ìƒì„±í•˜ì§€ ì•Šì„ ê²½ìš°, Samba(와 ëŒ€ë¶€ë¶„ì˜ í´ë¼ì´ì–¸íŠ¸ 머신)ì„ ë‹¤ì‹œ 설정하여 플레ì¸" +"í…스트 비밀번호를 사용하ë„ë¡ í•´ì•¼ 합니다." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"ìžì„¸í•œ ì‚¬í•­ì€ samba-doc 꾸러미ì—ì„œ 제공하는 /usr/share/doc/samba-doc/" +"htmldocs/ENCRYPTION.html를 참조하십시오." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "ë°ëª¬" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Samba를 어떻게 실행하시겠습니까?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Sambaì˜ ë°ëª¬ì¸ smbdì€ ì¼ë°˜ì ì¸ ë°ëª¬ìœ¼ë¡œ 실행할 ìˆ˜ë„ ìžˆê³  inetdì„ í†µí•´ 실행할 " +"ìˆ˜ë„ ìžˆìŠµë‹ˆë‹¤. ë°ëª¬ìœ¼ë¡œ 실행할 ê²ƒì„ ê¶Œìž¥í•©ë‹ˆë‹¤." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "앞으로 ë‚¨ì€ Samba ì„¤ì •ì€ Samba 프로그램들(nmbd와 smbd)ì„ ì„¤ì •í•  ë•Œ 사용하" +#~ "는 /etc/samba/smb.confì— ìžˆëŠ” ê°ì¢… 매개 ë³€ìˆ˜ë“¤ì„ ë³€ê²½í•˜ëŠ” 질문들로 구성ë˜" +#~ "ì–´ 있습니다. í˜„ìž¬ì˜ smb.confì€ 'include'를 사용하거나 여러 ì¤„ì— ê±¸ì¹œ 옵션" +#~ "ì„ ì‚¬ìš©í•˜ê³  있습니다. ì´ëŠ” ìžë™ 설정 ê³¼ì •ì— í˜¼ëˆì„ 줄 수 있으며 ë‚˜ì¤‘ì— ì†" +#~ "으로 smb.confì„ ìˆ˜ì •í•˜ì…”ì•¼ 제대로 ë™ìž‘합니다." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "í´ë¼ì´ì–¸íŠ¸ì—ì„œ 질ì˜ê°€ 들어올 ë•Œ ì´ ì„œë²„ê°€ 소ì†ëœ ìž‘ì—…ê·¸ë£¹ì„ ì§€ì •í•´ì£¼ì‹­ì‹œ" +#~ "오. 참고로 security=domain ë°©ì‹ì˜ ì„¤ì •ì„ ì‚¬ìš©í•  경우 사용하는 ë„ë©”ì¸ ì´ë¦„" +#~ "ë„ ì´ ë§¤ê°œë³€ìˆ˜ë¥¼ 통해 설정합니다." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "최신 윈ë„ìš° í´ë¼ì´ì–¸íŠ¸ë“¤ì€ ëª¨ë‘ ì•”í˜¸í™”ëœ ë¹„ë°€ë²ˆí˜¸ë¥¼ 통해 SMB 서버와 통신합" +#~ "니다. 암호화 안 ëœ í´ë¦¬ì–´í…스트 비밀번호를 사용하려면 윈ë„ìš° ë ˆì§€ìŠ¤íŠ¸ë¦¬ì— " +#~ "있는 매개변수를 변경하셔야 합니다." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "ì´ ê¸°ëŠ¥ì„ í™œì„±í™”í•  ê²ƒì„ ê°•ë ¥ížˆ 권장합니다. 활성화할 경우, /etc/samba/" +#~ "smbpasswd 파ì¼ì´ 제대로ì´ê³  smbpasswd ëª…ë ¹ì„ ì‚¬ìš©í•˜ì—¬ ê° ì‚¬ìš©ìžë“¤ì˜ 비밀번" +#~ "호를 전부 ë‹´ê³  있는지 확ì¸í•˜ì‹­ì‹œì˜¤." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "ìžì„¸í•œ ì‚¬í•­ì€ samba-doc 꾸러미ì—ì„œ 제공하는 /usr/share/doc/samba-doc/" +#~ "htmldocs/ENCRYPTION.html를 참조하십시오." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "연쇄 passdb 백엔드는 ìž‘ì—…ì€ ì§€ì›ë˜ì§€ 않습니다" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "삼바는 3.0.23 버전부터 \"passdb backend\" 매개변수는 ë” ì´ìƒ 연쇄 백엔드" +#~ "를 지ì›í•˜ì§€ 않습니다. smb.conf 파ì¼ì— 있는 passdb 백엔드 ë§¤ê°œë³€ìˆ˜ì— ë°±ì—”" +#~ "ë“œ 목ë¡ì´ 지정ë˜ì–´ 있는 것으로 보입니다. ì´ê²ƒì„ 바꾸기 전까지는 새 ë²„ì „ì˜ " +#~ "삼바가 ë™ìž‘하지 않습니다." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "/etc/samba/smbpasswdì„ /var/lib/samba/passwd.tdbë¡œ 옮길까요?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0부터는 /etc/samba/smbpasswd 파ì¼ì„ 대체하며 ì´ì „보다 완전한 SAM " +#~ "ë°ì´í„°ë² ì´ìŠ¤ ì¸í„°íŽ˜ì´ìŠ¤ë¥¼ 제공합니다." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "ê¸°ì¡´ì˜ smbpasswd 파ì¼ì„ ìžë™ìœ¼ë¡œ /var/lib/samba/passdb.tdbë¡œ 옮길 여부를 " +#~ "결정하여 주십시오. LDAP 등 다른 pdb 백엔드를 ì‚¬ìš©í•˜ê³ ìž í•  경우 ì´ ì˜µì…˜ì„ " +#~ "ì„ íƒí•˜ì§€ 마십시오." --- samba-3.3.0.orig/debian/po/tl.po +++ samba-3.3.0/debian/po/tl.po @@ -0,0 +1,307 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-13 06:13+0800\n" +"Last-Translator: eric pareja \n" +"Language-Team: Tagalog \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Baguhin ang smb.conf upang gumamit ng WINS setting mula sa DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Kung ang computer ninyo ay kumukuha ng IP address mula sa DHCP server sa " +"network, ang DHCP server ay maaaring magbigay ng impormasyon tungkol sa mga " +"WINS server (\"NetBIOS name server\") na nasa network. Kinakailangan nito ng " +"pagbabago sa inyong talaksang smb.conf upang ang bigay-ng-DHCP na WINS " +"setting ay awtomatikong babasahin mula sa /etc/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Ang paketeng dhcp3-client ay dapat nakaluklok upang mapakinabangan ang " +"feature na ito." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Awtomatikong isaayos ang smb.conf?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Ang natitirang pagsasaayos ng Samba ay may mga katanungan tungkol sa mga " +"parameter sa /etc/samba/smb.conf, na siyang talaksan na ginagamit sa " +"pagsaayos ng mga programang Samba (nmbd at smbd). Ang kasalukuyang smb.conf " +"ninyo ay naglalaman ng 'include' na linya o opsiyon na labis sa isang linya, " +"na maaaring makalito sa prosesong pagsaayos na awtomatiko at kakailanganin " +"ninyong i-edit ang inyong smb.conf ng de kamay upang ito'y umandar muli. " + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Kung hindi ninyo pinili ang opsiyon na ito, kakailanganin ninyong ayusin ang " +"anumang pagbabagong pagsasaayos, at hindi ninyo mapapakinabangan ang mga " +"paminsanang pagpapahusay ng pagsasaayos." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Pangalan ng Workgroup/Domain:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Pakibigay ang workgroup ng server na ito kapag ito ay tinanong ng mga " +"client. Ang parameter na ito ang siyang nag-co-control ng Domain name na " +"ginagamit sa security=domain na setting." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Gumamit ng encryption sa kontrasenyas?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Lahat ng mga bagong mga Windows client ay nakikipag-usap sa mga SMB server " +"na naka-encrypt ang mga kontrasenyas. Kung nais niyong gumamit ng \"clear " +"text\" na kontrasenyas, kailangan ninyong baguhin ang isang parameter sa " +"inyong Windows registry." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Ang pag-enable ng opsiyon na ito ay rekomendado. Kung gawin niyo ito, " +"tiyakin na ang inyong talaksang /etc/samba/smbpasswd ay valid at may " +"nakatakda kayong kontrasenyas para sa bawat gumagamit na ginamitan ng " +"smbpasswd na utos." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "" +"Likhain ang talaan ng kontrasenyas ng samba, /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Upang makibagay sa mga default ng karamihan ng bersiyon ng Windows, " +"kailangan na nakasaayos ang Samba na gumamit ng encrypted na kontrasenyas. " +"Kinakailangan na ang mga kontrasenyas ng mga gumagamit ay nakatago sa " +"talaksang hiwalay sa /etc/passwd. Maaaring likhain ang talaksang ito na " +"awtomatiko, ngunit ang mga kontrasenyas dito ay kinakailangang idagdag ng " +"mano-mano sa pagpapatakbo ng smbpasswd at kailangan na sariwain ito sa " +"hinaharap." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Kung hindi ito likhain, kailangan ninyong isaayos muli ang Samba (at " +"malamang ang inyong mga makinang client) na gumamit ng plaintext na " +"kontrasenyas." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Basahin ang /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/" +"pwencrypt.html mula sa paketeng samba-doc para sa karagdagang detalye." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "mga daemon" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Paano ninyo gustong patakbuhin ang Samba?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Ang daemon na smbd ng Samba ay maaaring patakbuhin bilang normal na daemon o " +"mula sa inetd. Pagpapatakbo nito bilang daemon ang rekomendado." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Ang natitirang pagsasaayos ng Samba ay may mga katanungan tungkol sa mga " +#~ "parameter sa /etc/samba/smb.conf, na siyang talaksan na ginagamit sa " +#~ "pagsaayos ng mga programang Samba (nmbd at smbd). Ang kasalukuyang smb." +#~ "conf ninyo ay naglalaman ng 'include' na linya o opsiyon na labis sa " +#~ "isang linya, na maaaring makalito sa prosesong pagsaayos na awtomatiko " +#~ "at kakailanganin ninyong i-edit ang inyong smb.conf ng de kamay upang " +#~ "ito'y umandar muli. " + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Pakibigay ang workgroup ng server na ito kapag ito ay tinanong ng mga " +#~ "client. Ang parameter na ito ang siyang nag-co-control ng Domain name na " +#~ "ginagamit sa security=domain na setting." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Lahat ng mga bagong mga Windows client ay nakikipag-usap sa mga SMB " +#~ "server na naka-encrypt ang mga kontrasenyas. Kung nais niyong gumamit ng " +#~ "\"clear text\" na kontrasenyas, kailangan ninyong baguhin ang isang " +#~ "parameter sa inyong Windows registry." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Ang pag-enable ng opsiyon na ito ay rekomendado. Kung gawin niyo ito, " +#~ "tiyakin na ang inyong talaksang /etc/samba/smbpasswd ay valid at may " +#~ "nakatakda kayong kontrasenyas para sa bawat gumagamit na ginamitan ng " +#~ "smbpasswd na utos." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Basahin ang /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html mula sa " +#~ "paketeng samba-doc para sa karagdagang detalye." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Ang pagdudugtong ng mga backend ng passdb ay hindi suportado" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Simula sa bersiyon 3.0.23, hindi na suportado ng samba ang pagdudugtong " +#~ "ng multiple backend sa parameter na \"passdb backend\". Mukhang ang " +#~ "talaksang smb.conf ay naglalaman ng passdb backend parameter na " +#~ "naglilista ng mga backend. Ang bagong bersiyon ng samba ay hindi aandar " +#~ "ng wasto hanggang ito ay ayusin." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Ilipat ang /etc/samba/smbpasswd sa /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Ipinakilala ng Samba 3.0 ang mas-kumpletong SAM database interface na " +#~ "siyang pumalit sa talaksang /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Pakitiyak kung inyong nais na mailipat ng awtomatiko ang kasalukuyang " +#~ "talaksang smbpasswd patungong /var/lib/samba/passdb.tdb. Huwag piliin ang " +#~ "opsiyon na ito kung balak ninyong gumamit ng ibang pdb backend (hal., " +#~ "LDAP)." --- samba-3.3.0.orig/debian/po/ne.po +++ samba-3.3.0/debian/po/ne.po @@ -0,0 +1,293 @@ +# translation of ne.po to Nepali +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# Shiva Prasad Pokharel , 2006. +# Nabin Gautam , 2006. +# Shiva Pokharel , 2007. +msgid "" +msgstr "" +"Project-Id-Version: ne\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-14 05:36+0545\n" +"Last-Translator: Shiva Pokharel \n" +"Language-Team: Nepali \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; nplural(n!=1)\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "DHCP बाट WINS सेटिङ पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨ smb.conf परिमारà¥à¤œà¤¨ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"यदि तपाईà¤à¤•à¥‹ कमà¥à¤ªà¥à¤¯à¥à¤Ÿà¤°à¤²à¥‡ सञà¥à¤œà¤¾à¤²à¤®à¤¾ DHCP सरà¥à¤­à¤°à¤¬à¤¾à¤Ÿ IP ठेगाना जानकारी पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤› भने, DHCP " +"सरà¥à¤­à¤°à¤²à¥‡ पनि सञà¥à¤œà¤¾à¤²à¤®à¤¾ वरà¥à¤¤à¤®à¤¾à¤¨ WINS सरà¥à¤­à¤° (\"NetBIOS name servers\") का बारेमा " +"जानकारी उपलबà¥à¤§ गराउन सकà¥à¤› । यसका लागि तपाईà¤à¤•à¥‹ smb.conf फाइलमा परिवरà¥à¤¤à¤¨ आवशà¥à¤¯à¤• हà¥à¤¨à¥à¤› " +"ताकी DHCP ले उपलबà¥à¤§ गराà¤à¤•à¤¾ WINS सेटिङ /etc/samba/dhcp.conf. बाट सà¥à¤µà¤šà¤¾à¤²à¤¿à¤¤ रà¥à¤ªà¤®à¤¾ " +"पढà¥à¤¨ सकियोसॠ।" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "यो विशेषताको फाइदा लिन dhcp3-कà¥à¤²à¤¾à¤‡à¤¨à¥à¤Ÿ पà¥à¤¯à¤¾à¤•à¥‡à¤œ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ गरिà¤à¤•à¥‹ हà¥à¤¨ परà¥à¤› ।" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "सà¥à¤µà¤šà¤¾à¤²à¤¿à¤¤ रà¥à¤ªà¤®à¤¾ smb.conf कनà¥à¤«à¤¿à¤—र गरà¥à¤¨à¥à¤¹à¥à¤¨à¥à¤›?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"सामà¥à¤¬à¤¾à¤•à¥‹ बाà¤à¤•à¥€ कनà¥à¤«à¤¿à¤—रेसन /etc/samba/smb.conf परामितिमा पà¥à¤°à¤­à¤¾à¤µ पारà¥à¤¨à¥‡ पà¥à¤°à¤¶à¥à¤¨à¤¸à¤à¤— डिल " +"गरà¥à¤›, जà¥à¤¨ सामà¥à¤¬à¤¾ कारà¥à¤¯à¤•à¥à¤°à¤® कनà¥à¤«à¤¿à¤—र गरà¥à¤¨ पà¥à¤°à¤¯à¥‹à¤— हà¥à¤¨à¥‡ फाइल हो (nmbd र smbd) । तपाईà¤à¤•à¥‹ " +"हालको smb.conf ले à¤à¤‰à¤Ÿà¤¾ 'समà¥à¤®à¤¿à¤²à¤¿à¤¤' लाइन वा बहà¥à¤­à¤¾à¤—िय लाइन ढाकà¥à¤¨à¥‡ विकलà¥à¤ª समावेश गरà¥à¤›, " +"जसले सà¥à¤µà¤šà¤¾à¤²à¤¿à¤¤ कनà¥à¤«à¤¿à¤—रेसन पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ असà¥à¤¤à¤µà¥à¤¯à¤¸à¥à¤¤ पारà¥à¤¨ सकà¥à¤› र तपाईà¤à¤²à¥‡ यसबाट फेरि कारà¥à¤¯ गराउन " +"हातैले smb.conf समà¥à¤ªà¤¾à¤¦à¤¨ गरà¥à¤¨à¥ परà¥à¤› ।" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"यदि तपाईà¤à¤²à¥‡ यो विकलà¥à¤ª छनौट नगरेमा, कà¥à¤¨à¥ˆ पनि कनà¥à¤«à¤¿à¤—रेसन परिवरà¥à¤¤à¤¨ तपाईठआफैले हà¥à¤¯à¤¾à¤¨à¥à¤¡à¤² गरà¥à¤¨à¥ " +"परà¥à¤›, र आवधिक कनà¥à¤«à¤¿à¤—रेसन वृदà¥à¤§à¥€à¤•à¥‹ फाइदा लिन सकà¥à¤¨à¥ हà¥à¤¨à¥‡ छैन ।" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "कारà¥à¤¯ समूह/डोमेन नाम:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"कृपया गà¥à¤°à¤¾à¤¹à¤•à¤²à¥‡ पà¥à¤°à¤¶à¥à¤¨ गरà¥à¤¦à¤¾ यो सरà¥à¤­à¤° भितà¥à¤° देखाउन चाहेका कारà¥à¤¯ समूह निरà¥à¤¦à¤¿à¤·à¥à¤Ÿ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ । याद " +"गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ यो परामितिले पनि सà¥à¤°à¤•à¥à¤·à¤¾=डोमेन सेटिङमा पà¥à¤°à¤¯à¥‹à¤— गरिà¤à¤•à¤¾ डोमेन नाम नियनà¥à¤¤à¥à¤°à¤£ गरà¥à¤› ।" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "पासवरà¥à¤¡ गà¥à¤ªà¥à¤¤à¤¿à¤•à¤°à¤£ पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨à¥à¤¹à¥à¤¨à¥à¤› ?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"हालका सबै सञà¥à¤à¥à¤¯à¤¾à¤² गà¥à¤°à¤¾à¤¹à¤• समकà¥à¤°à¤®à¤¿à¤¤ पासवरà¥à¤¡ पà¥à¤°à¤¯à¥‹à¤— गरेर SMB सरà¥à¤­à¤°à¤¸à¤à¤— सञà¥à¤šà¤¾à¤° गरà¥à¤›à¤¨à¥ । यदि " +"तपाईठखाली पाठ पासवरà¥à¤¡ पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨ चाहनà¥à¤¹à¥à¤¨à¥à¤› भने तपाईà¤à¤•à¥‹ सञà¥à¤à¥à¤¯à¤¾à¤² दरà¥à¤¤à¤¾à¤•à¥‹ परामिति " +"परिवरà¥à¤¤à¤¨ गरà¥à¤¨à¥ आवशà¥à¤¯à¤• हà¥à¤¨à¥à¤› ।" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"यो विकलà¥à¤ª सकà¥à¤·à¤® पारà¥à¤¨à¥‡ उतà¥à¤•à¥ƒà¤·à¥à¤Ÿ सà¥à¤µà¥€à¤•à¤¾à¤° गरिà¤à¤•à¥‹ छ । यदि तपाईठगरà¥à¤¨à¥à¤¹à¥à¤¨à¥à¤› भने, तपाईठसà¤à¤— /etc/" +"samba/smbpasswd फाइल र तà¥à¤¯à¤¹à¤¾à¤ पà¥à¤°à¤¤à¥à¤¯à¥‡à¤• पà¥à¤°à¤¯à¥‹à¤—करà¥à¤¤à¤¾à¤•à¤¾ लागि सेट गरिà¤à¤•à¤¾ पासवरà¥à¤¡ " +"smbpasswd आदेश पà¥à¤°à¤¯à¥‹à¤— गरेर वैदà¥à¤¯ भà¤à¤•à¥‹ निशà¥à¤šà¤¿à¤¨à¥à¤¤ हà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "सामà¥à¤¬à¤¾ पासवरà¥à¤¡ डाटाबेस /var/lib/samba/passdb.tdb सिरà¥à¤œà¤¨à¤¾ गरà¥à¤¨à¥à¤¹à¥à¤¨à¥à¤› ?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"विनà¥à¤¡à¥‹à¤œà¤•à¤¾ धेरै संसà¥à¤•à¤°à¤£ पूरà¥à¤µà¤¨à¤¿à¤°à¥à¤§à¤¾à¤°à¤¿à¤¤à¤¸à¤à¤— मिलà¥à¤¨à¥‡, समकà¥à¤°à¤®à¤¿à¤¤ पासवरà¥à¤¡ पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨ सामà¥à¤¬à¤¾ कनà¥à¤«à¤¿à¤—र " +"भà¤à¤•à¥‹ हà¥à¤¨à¥ परà¥à¤› । /etc/passwd बाट छà¥à¤Ÿà¥à¤¯à¤¾à¤à¤•à¥‹ फाइल भणà¥à¤¡à¤¾à¤°à¤£ हà¥à¤¨ पà¥à¤°à¤¯à¥‹à¤—करà¥à¤¤à¤¾à¤•à¥‹ पासवरà¥à¤¡ " +"आवशà¥à¤¯à¤• हà¥à¤¨à¥à¤› । यो फाइल सà¥à¤µà¤šà¤¾à¤²à¤¿à¤¤ तरिकाले सिरà¥à¤œà¤¨à¤¾ हà¥à¤¨ सकà¥à¤›, तर पासवरà¥à¤¡ smbpasswd चलाà¤à¤° " +"हातैले थपà¥à¤¨à¥ परà¥à¤› र भविषà¥à¤¯à¤®à¤¾ पनि अदà¥à¤¯à¤¾à¤µà¤§à¤¿à¤• राखà¥à¤¨à¥ परà¥à¤› ।" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"यदि तपाईà¤à¤²à¥‡ यसलाई सिरà¥à¤œà¤¨à¤¾ गरà¥à¤¨à¥ भà¤à¤•à¥‹ छैन भने, तपाईà¤à¤²à¥‡ पà¥à¤²à¥‡à¤¨à¤Ÿà¥‡à¤•à¥à¤¸à¥à¤Ÿ पासवरà¥à¤¡ पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨ सामà¥à¤¬à¤¾ " +"(र समà¥à¤­à¤µà¤¤ तपाईà¤à¤•à¥‹ गà¥à¤°à¤¾à¤¹à¤•à¤•à¥‹ मेसिन) पà¥à¤¨: कनà¥à¤«à¤¿à¤—र गरेको हà¥à¤¨à¥ परà¥à¤› ।" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"अधिक जानकारीका लागि /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-" +"Guide/pwencrypt.html बाट samba-doc पà¥à¤¯à¤¾à¤•à¥‡à¤œ हेरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "डेइमोन" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "तपाईठसामà¥à¤¬à¤¾ कसरी चलाउन चाहनà¥à¤¹à¥à¤¨à¥à¤›?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"सामà¥à¤¬à¤¾ डेइमोन समानà¥à¤¯ डेइमोनको रà¥à¤ªà¤®à¤¾ वा inetd बाट चलाउन सकिनà¥à¤› । डेइमोनको रूपमा चलाउनॠ" +"सिफारिस गरिà¤à¤•à¥‹ तरिका हो ।" + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "सामà¥à¤¬à¤¾à¤•à¥‹ बाà¤à¤•à¥€ कनà¥à¤«à¤¿à¤—रेसन /etc/samba/smb.conf परामितिमा पà¥à¤°à¤­à¤¾à¤µ पारà¥à¤¨à¥‡ पà¥à¤°à¤¶à¥à¤¨à¤¸à¤à¤— डिल " +#~ "गरà¥à¤›, जà¥à¤¨ सामà¥à¤¬à¤¾ कारà¥à¤¯à¤•à¥à¤°à¤® कनà¥à¤«à¤¿à¤—र गरà¥à¤¨ पà¥à¤°à¤¯à¥‹à¤— हà¥à¤¨à¥‡ फाइल हो (nmbd र smbd) । तपाईà¤à¤•à¥‹ " +#~ "हालको smb.conf ले à¤à¤‰à¤Ÿà¤¾ 'समà¥à¤®à¤¿à¤²à¤¿à¤¤' लाइन वा बहà¥à¤­à¤¾à¤—िय लाइन ढाकà¥à¤¨à¥‡ विकलà¥à¤ª समावेश " +#~ "गरà¥à¤›, जसले सà¥à¤µà¤šà¤¾à¤²à¤¿à¤¤ कनà¥à¤«à¤¿à¤—रेसन पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ असà¥à¤¤à¤µà¥à¤¯à¤¸à¥à¤¤ पारà¥à¤¨ सकà¥à¤› र तपाईà¤à¤²à¥‡ यसबाट फेरि कारà¥à¤¯ " +#~ "गराउन हातैले smb.conf समà¥à¤ªà¤¾à¤¦à¤¨ गरà¥à¤¨à¥ परà¥à¤› ।" + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "कृपया गà¥à¤°à¤¾à¤¹à¤•à¤²à¥‡ पà¥à¤°à¤¶à¥à¤¨ गरà¥à¤¦à¤¾ यो सरà¥à¤­à¤° भितà¥à¤° देखाउन चाहेका कारà¥à¤¯ समूह निरà¥à¤¦à¤¿à¤·à¥à¤Ÿ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ । " +#~ "याद गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ यो परामितिले पनि सà¥à¤°à¤•à¥à¤·à¤¾=डोमेन सेटिङमा पà¥à¤°à¤¯à¥‹à¤— गरिà¤à¤•à¤¾ डोमेन नाम " +#~ "नियनà¥à¤¤à¥à¤°à¤£ गरà¥à¤› ।" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "हालका सबै सञà¥à¤à¥à¤¯à¤¾à¤² गà¥à¤°à¤¾à¤¹à¤• समकà¥à¤°à¤®à¤¿à¤¤ पासवरà¥à¤¡ पà¥à¤°à¤¯à¥‹à¤— गरेर SMB सरà¥à¤­à¤°à¤¸à¤à¤— सञà¥à¤šà¤¾à¤° गरà¥à¤›à¤¨à¥ । " +#~ "यदि तपाईठखाली पाठ पासवरà¥à¤¡ पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨ चाहनà¥à¤¹à¥à¤¨à¥à¤› भने तपाईà¤à¤•à¥‹ सञà¥à¤à¥à¤¯à¤¾à¤² दरà¥à¤¤à¤¾à¤•à¥‹ " +#~ "परामिति परिवरà¥à¤¤à¤¨ गरà¥à¤¨à¥ आवशà¥à¤¯à¤• हà¥à¤¨à¥à¤› ।" + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "यो विकलà¥à¤ª सकà¥à¤·à¤® पारà¥à¤¨à¥‡ उतà¥à¤•à¥ƒà¤·à¥à¤Ÿ सà¥à¤µà¥€à¤•à¤¾à¤° गरिà¤à¤•à¥‹ छ । यदि तपाईठगरà¥à¤¨à¥à¤¹à¥à¤¨à¥à¤› भने, तपाईठसà¤à¤— /" +#~ "etc/samba/smbpasswd फाइल र तà¥à¤¯à¤¹à¤¾à¤ पà¥à¤°à¤¤à¥à¤¯à¥‡à¤• पà¥à¤°à¤¯à¥‹à¤—करà¥à¤¤à¤¾à¤•à¤¾ लागि सेट गरिà¤à¤•à¤¾ पासवरà¥à¤¡ " +#~ "smbpasswd आदेश पà¥à¤°à¤¯à¥‹à¤— गरेर वैदà¥à¤¯ भà¤à¤•à¥‹ निशà¥à¤šà¤¿à¤¨à¥à¤¤ हà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "अधिक जानकारीका लागि /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html " +#~ "बाट samba-doc पà¥à¤¯à¤¾à¤•à¥‡à¤œ हेरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।" + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "passdb बà¥à¤¯à¤¾à¤•à¥‡à¤¨à¥à¤¡ चेन गरà¥à¤¨à¥‡à¤•à¤¾ लागि समरà¥à¤¥à¤¨ छैन " + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "सà¤à¤¸à¥à¤•à¤°à¤£ 3.0.23 सà¤à¤— सà¥à¤°à¥ गरà¥à¤¦à¤¾ सामà¥à¤¬à¤¾à¤²à¥‡ \"passdb backend\" परामितिमा यो भनà¥à¤¦à¤¾ बढि " +#~ "बहà¥à¤µà¤¿à¤§ बà¥à¤¯à¤¾à¤•à¥‡à¤¨à¥à¤¡ समरà¥à¤¥à¤¨ गरà¥à¤¦à¥ˆà¤¨ । सायद तपाईà¤à¤•à¥‹ smb.conf फाइलमा बà¥à¤¯à¤¾à¤•à¥‡à¤¨à¥à¤¡à¤¹à¤°à¥‚को सूची भà¤à¤•à¥‹ " +#~ "à¤à¤‰à¤Ÿà¤¾ passdb बà¥à¤¯à¤¾à¤•à¥‡à¤¨à¥à¤¡ भà¤à¤•à¥‹ हà¥à¤¨à¥à¤ªà¤°à¥à¤¦à¤› । तपाईà¤à¤²à¥‡ यसलाई नसचà¥à¤¯à¤¾à¤‰à¤¨à¥ भà¤à¤¸à¤®à¥à¤® सामà¥à¤¬à¤¾à¤•à¥‹ नयाठ" +#~ "संसà¥à¤•à¤°à¤£à¤²à¥‡ काम गरà¥à¤¦à¥ˆà¤¨ ।" + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "/etc/samba/smbpasswd लाई /var/lib/samba/passdb.tdb मा सारà¥à¤¨à¥à¤¹à¥à¤¨à¥à¤› ?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "सामà¥à¤¬à¤¾ ३.० ले /etc/samba/smbpasswd फाइल हटाउने अà¤à¥ˆ बढी पूरà¥à¤£ SAM डाटाबेस इनà¥à¤Ÿà¤°à¤«à¥‡à¤¸ " +#~ "सारà¥à¤µà¤œà¤¨à¤¿à¤• गरेको छ ।" + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "कृपया तपाइà¤à¤²à¥‡ सà¥à¤µà¤šà¤¾à¤²à¤¿à¤¤ रà¥à¤ªà¤²à¥‡ /var/lib/samba/passdb.tdb मा सरà¥à¤¨à¥‡ अवसà¥à¤¥à¤¿à¤¤ smbpasswd " +#~ "फाइल चाहनà¥à¤¹à¥à¤¨à¥à¤› भने यकीन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ । यदि तपाईठसाटोमा अरà¥à¤•à¥‹ pdb backend (जसà¥à¤¤à¥ˆ: " +#~ "LDAP) पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨à¥‡ योजना बनाउनà¥à¤¹à¥à¤¨à¥à¤› भने यो विकलà¥à¤ª नरोजà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।" --- samba-3.3.0.orig/debian/po/et.po +++ samba-3.3.0/debian/po/et.po @@ -0,0 +1,290 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-13 10:26+0300\n" +"Last-Translator: Siim Põder \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Country: ESTONIA\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Muuta smb.conf, et kasutataks DHCP WINS seadeid?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Kui su arvuti saab IP aadressi informatsiooni võrgus asuvalt DHCP serverilt, " +"võib toosama DHCP server levitada infot ka võrgus asuvate WINS serverite " +"(\"NetBIOS nimeserverid\") kohta. Kui soovid, et seda informatsiooni " +"kasutataks, on vaja smb.conf faili sisse viia muudatus, et DHCP poolt " +"jagatud WINS seaded automaatselt /etc/samba/dhcp.conf failist loetaks." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "Et seda võimalust kasutada, peab olema paigaldatud dhcp3-client pakk." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Seadistada smb.conf automaatselt?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Ãœlejäänud Samba seadistus tegeleb /etc/samba/smb.conf parameetreid " +"mõjutavate küsimustega - see on fail mille abil seadistatakse Samba " +"programmid (nmbd ja smbd). Sinu praegune smb.conf sisaldab 'include' rida " +"või mitmerealist valikut, mis võib automaatse seadistamise nurjata ning " +"tekitada olukorra, kus pead smb.conf faili käsitsi töökorda seadma." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Kui sa seda seadet ei vali, pead iga seadistuse muudatuse ise läbi viima ega " +"saa tunda rõõmu autmaatsest perioodilisest seadistuse täiustustamisest." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Töögrupi/domeeni nimi:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Palun vali töögrupp, kuhu see server kuulub. Pane tähele, et seesama seade " +"määrab ka domeeni, mida kasutatakse koos security=domain valikuga." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Kasutada paroolide krüpteerimist?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Kõik hiljutised Windows kliendid suhtlevad SMB serveritega kasutades " +"krüpteeritud paroole. Kui soovid kasutada avatud paroole, pead Windows " +"registris muutma üht seadet." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Selle seade valimine on ülimalt soovitatav. Kui ta valid, palun veendu et " +"sul oleks sobiv /etc/samba/smbpasswd fail ning sea igale seal olevale " +"kasutajale smbpasswd käsu abil parool." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Luua samba paroolide andmebaas, /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Et ühilduda enamike Windows versioonidega, tuleb Samba seadistada " +"krüpteeritud paroole kasutama. Selle jaoks on tarvis kasutajate paroole " +"väljaspool /etc/passwd hoida. Selle faili võib automaatselt luua, kuid " +"paroolid tuleb sinna käsitsi lisada ning ka hiljem värsketena hoida." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Kui sa seda ei loo, tuleb sul Samba ümber seadistada (ning tõenäoliselt ka " +"kliendimasinad) kasutamaks avatud paroole." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"End detailidega kurssi viimaks loe /usr/share/doc/samba-doc/htmldocs/" +"ENCRYPTION.html pakist samba-doc." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "deemonitena" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd'ist" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Kuidas soovid Samba käivitada?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Samba deemon võib käivituda kui tavaline deemon või inetd'ist. Soovitatav " +"lähenemine on käivitamine tavalise deemonina." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Ãœlejäänud Samba seadistus tegeleb /etc/samba/smb.conf parameetreid " +#~ "mõjutavate küsimustega - see on fail mille abil seadistatakse Samba " +#~ "programmid (nmbd ja smbd). Sinu praegune smb.conf sisaldab 'include' rida " +#~ "või mitmerealist valikut, mis võib automaatse seadistamise nurjata ning " +#~ "tekitada olukorra, kus pead smb.conf faili käsitsi töökorda seadma." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Palun vali töögrupp, kuhu see server kuulub. Pane tähele, et seesama " +#~ "seade määrab ka domeeni, mida kasutatakse koos security=domain valikuga." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Kõik hiljutised Windows kliendid suhtlevad SMB serveritega kasutades " +#~ "krüpteeritud paroole. Kui soovid kasutada avatud paroole, pead Windows " +#~ "registris muutma üht seadet." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Selle seade valimine on ülimalt soovitatav. Kui ta valid, palun veendu et " +#~ "sul oleks sobiv /etc/samba/smbpasswd fail ning sea igale seal olevale " +#~ "kasutajale smbpasswd käsu abil parool." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "End detailidega kurssi viimaks loe /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html pakist samba-doc." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "" +#~ "passdb backends mitme järjestikkuse variandi määramine pole toetatud" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Samba versioonid alates 3.0.23 ei toeta enam \"passdb backend\" " +#~ "parameetri juures mitmest variandist koosnevat nimekirja. Paistab, et " +#~ "sinu smb.conf failis on passdb backend parameetrile määratud nimekiri. " +#~ "Uus samba versioon ei tööta, kuni sellega tegeletud on." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Kanda /etc/samba/smbpasswd üle /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 võttis kasutusele täielikuma SAM andmebaasiliidese, mis ületab /" +#~ "etc/samba/smbpasswd faili." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Palun kinnita, kas soovid olemasoleva smbpasswd faili automaatset " +#~ "ülekandmist /var/lib/samba/passdb.tdb. Ära nõustu, kui soovid kasutada " +#~ "hoopis mõnd muud pdb lahendust (näiteks LDAP)." --- samba-3.3.0.orig/debian/po/hu.po +++ samba-3.3.0/debian/po/hu.po @@ -0,0 +1,291 @@ +# Hungarian translation for samba +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the samba package. +# FIRST AUTHOR , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-13 09:20+0100\n" +"Last-Translator: SZERVÃC Attila \n" +"Language-Team: Hungarian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Hungarian\n" +"X-Poedit-Country: HUNGARY\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"Módosítod az smb.conf-ot, hogy a WINS beállításokat a DHCP-n keresztül érje " +"el?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Ha e gép az IP címeket egy DHCP kiszolgálótól kérdezi le a hálózaton, lehet, " +"hogy a WINS kiszolgálók (\"NetBIOS névkiszolgálók\") listáját is le tudja " +"kérdezni. Ehhez az smb.conf módosítása szükséges, hogy a DHCP-n keresztüli " +"WINS beállításokat automatikusan kiolvassa a /etc/samba/dhcp.conf-ból." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"A dhcp3-client csomagnak telepítve kell lennie e képesség kihasználásához." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Az smb.conf-ot automatikusan állítod be?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"A Samba további beállításaihoz a /etc/samba/smb.conf paramétereit " +"befolyásoló további kérdéseket kell megválaszolni, ami a Samba programok " +"(nmbd és smbd) beállítófájlja. A jelenlegi smb.conf tartalmaz egy 'include' " +"sort, vagy egy több sorra tört opciót, ami megzavarhatja az automata " +"beállító folyamot, és szükségessé teszi az smb.conf saját kezű " +"szerkesztését, hogy az ismét működjön." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Ha nem élsz e lehetÅ‘séggel, minden beállítás változását neked kell " +"felügyelned, és nem élvezheted az idÅ‘szakos beállításhangolás elÅ‘nyeit." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Munkacsoport/Tartomány neve:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Add meg e kiszolgáló által megjelenítendÅ‘ munkacsoport, mikor azt lekérdezik " +"a kliensek. Vedd figyelembe, hogy e paraméter meghatározza a tartomány nevét " +"is, ha engedélyezve van a security=domain beállítás." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Használsz kódolt jelszavakat?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Az újabb Windows kliensek kódolt jelszavakkal kommunikálnak az SMB " +"kiszolgálókkal. Ha sima szöveges jelszavakat kívánsz alkalmazni, meg kell " +"változtatni egy beállítást a kliensek regisztrációjában." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"E lehetÅ‘ség bekapcsolása erÅ‘sen ajánlott. Ha ezt teszed, gyÅ‘zÅ‘dj meg róla " +"hogy érvényes /etc/samba/smbpasswd fájllal rendelkezel és hogy beállítottad " +"a jelszavakat minden felhasználóhoz a smbpasswd paranccsal." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Létrehozod a samba jelszóadatbázist (/var/lib/samba/passdb.tdb)?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Az újabb Windows kliensekkel való kompatibilitás érdekében a Samba-t kódolt " +"jelszavak használatára kell beállítani. Ez megköveteli a jelszavak /etc/" +"passwd fájltól különálló tárolását. Ez a fájl automatikusan létrejön, de a " +"jelszavakat kézzel kell felvenni az smbpasswd parancs futtatásával és a " +"továbbiakban kezelni." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Ha nem hozod létre, újra be kell állítani a Samba-t (és valószínűleg a " +"klienseket is) a sima szöveges jelszavakhoz." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Lásd a samba-doc csomag /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-" +"Guide/pwencrypt.html odalát a részletekért." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "démonok" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Hogyan induljon a Samba?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Az smbd Samba démon futhat normál démonként vagy az inetd-n keresztül. A " +"démonként való futtatása a javasolt beállítás." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "A Samba további beállításaihoz a /etc/samba/smb.conf paramétereit " +#~ "befolyásoló további kérdéseket kell megválaszolni, ami a Samba programok " +#~ "(nmbd és smbd) beállítófájlja. A jelenlegi smb.conf tartalmaz egy " +#~ "'include' sort, vagy egy több sorra tört opciót, ami megzavarhatja az " +#~ "automata beállító folyamot, és szükségessé teszi az smb.conf saját kezű " +#~ "szerkesztését, hogy az ismét működjön." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Add meg e kiszolgáló által megjelenítendÅ‘ munkacsoport, mikor azt " +#~ "lekérdezik a kliensek. Vedd figyelembe, hogy e paraméter meghatározza a " +#~ "tartomány nevét is, ha engedélyezve van a security=domain beállítás." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Az újabb Windows kliensek kódolt jelszavakkal kommunikálnak az SMB " +#~ "kiszolgálókkal. Ha sima szöveges jelszavakat kívánsz alkalmazni, meg kell " +#~ "változtatni egy beállítást a kliensek regisztrációjában." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "E lehetÅ‘ség bekapcsolása erÅ‘sen ajánlott. Ha ezt teszed, gyÅ‘zÅ‘dj meg róla " +#~ "hogy érvényes /etc/samba/smbpasswd fájllal rendelkezel és hogy " +#~ "beállítottad a jelszavakat minden felhasználóhoz a smbpasswd paranccsal." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Lásd a samba-doc csomag /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html " +#~ "odalát a részletekért." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "A passdb hátterek láncolása nem támogatott" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "A 3.0.23 verziótól a samba nem támogatja több háttér láncolását a " +#~ "\"passdb backend\" paraméterben. Ezzel szemben úgy fest, az smb.conf " +#~ "fájlod egy hátterek listájából álló passdb háttér paramétert tartalmaz. A " +#~ "samba új verziója ennek javításával fog működni." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "Ãthelyezed a /etc/samba/smbpasswd tartalmát a /var/lib/samba/passdb.tdb-" +#~ "be?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "A Samba 3.0 sokkal átfogóbb SAM adatbázis felületet ad, mellyel elavul a /" +#~ "etc/samba/smbpasswd fájl." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "ErÅ‘sítsd meg a létezÅ‘ smbpasswd fájl áthelyezését a /var/lib/samba/passdb." +#~ "tdb fájlba. Ha másik pdb hátteret használnál (például LDAP), válaszolj " +#~ "nemmel." --- samba-3.3.0.orig/debian/po/sq.po +++ samba-3.3.0/debian/po/sq.po @@ -0,0 +1,297 @@ +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# Developers do not need to manually edit POT or PO files. +# , fuzzy +# +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-13 21:25+0100\n" +"Last-Translator: Elian Myftiu \n" +"Language-Team: Debian L10n Albanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Ta ndryshoj smb.conf për të përdorur rregullimet WINS nga DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Nëse kompjuteri yt pajiset me adrese IP nga një shërbyes DHCP në rrjet, " +"shërbyesi DHCP mundet gjithashtu të japë të dhëna rreth shërbyesve WINS " +"(\"shërbyesa emri NetBIOS\") që ndodhen në rrjet. Kjo ka nevojë për një " +"ndryshim në skedën tënde smb.conf në mënyrë të tillë që rregullimet WINS që " +"vijnë me DHCP të lexohen automatikisht nga /etc/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Duhet instaluar paketa dhcp3-client për të patur përparësi mbi këtë veti." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Ta konfiguroj smb.conf automatikisht?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Pjesa e mbetur e konfigurimit Samba ka të bëjë me pyetje që prekin parametra " +"në /etc/samba/smb.conf, e cili është skeda që përdoret për të konfiguruar " +"programet Samba (nmbd dhe smbd). smb.conf yt i tanishëm përmban një rresht " +"'include' ose një mundësi që tendos rreshta të shumëfishtë, të cilët mund të " +"hutojnë proçesin automatik të konfigurimit dhe të të kërkojë ta ndryshosh " +"skedarin tënd smb.conf dorazi dhe ta vesh në punë sërish." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Nëse nuk zgjedh këtë mundësi, do të duhet të kryesh çdo ndryshim konfigurimi " +"vetë, dhe nuk do kesh rastin të përfitosh nga përmirësime periodike " +"konfigurimi." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Grup Pune/Emër Zone:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Të lutem saktëso grupin e punës ku dëshiron që ky shërbyes të shfaqet kur të " +"pyetet nga klientë. Vër re që ky parametër kontrollon gjithashtu emrin e " +"zonës së përdorur me rregullimet security=domain." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Të përdor kriptim fjalëkalimi?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Të tërë klientët e fundit Windows komunikojnë me shërbyes SMB duke përdorur " +"fjalëkalime të kriptuar. Nëse dëshiron të përdorësh fjalëkalime të qarta " +"tekstualë do të duhet të ndryshosh një parametër në regjistrin tënd Windows." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Aktivizimi i kësaj mundësie këshillohet fuqimisht. Nëse e bën, sigurohu që " +"ke një skedar të vlefshëm /etc/samba/smbpasswd dhe që i cakton fjalëkalimet " +"atje për secilin përdorues duke përdorur komandën smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Të krijoj bazë të dhënash fjalëkalimi, /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Për të qenë e pajtueshme me parazgjedhjet në shumë versione Windows, Samba " +"duhet të konfigurohet për përdorim fjalëkalimesh të kriptuar. Kjo kërkon " +"fjalëkalimet e përdoruesve të ruhen në një skedë të veçantë nga /etc/" +"passwd. Kjo skedë mund të krijohet automatikisht, por fjalëkalimet duhet të " +"shtohen dorazi duke përdorur smbpasswd dhe të mirëmbahen në të ardhmen." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Nëse nuk e krijon, do të duhet të rikonfigurosh Samba (dhe ndoshta " +"kompjuterët klientë) për të përdorur fjalëkalime tekstualë të qartë." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Shih /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +"html nga paketa samba-doc për hollësi të mëtejshme." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "daemons" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Si dëshiron të xhirojë Samba?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Daemon Samba smbd mund të xhirojë si një daemon normal ose nga inetd. " +"Rekomandohet puna si daemon." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Pjesa e mbetur e konfigurimit Samba ka të bëjë me pyetje që prekin " +#~ "parametra në /etc/samba/smb.conf, e cili është skeda që përdoret për të " +#~ "konfiguruar programet Samba (nmbd dhe smbd). smb.conf yt i tanishëm " +#~ "përmban një rresht 'include' ose një mundësi që tendos rreshta të " +#~ "shumëfishtë, të cilët mund të hutojnë proçesin automatik të konfigurimit " +#~ "dhe të të kërkojë ta ndryshosh skedarin tënd smb.conf dorazi dhe ta vesh " +#~ "në punë sërish." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Të lutem saktëso grupin e punës ku dëshiron që ky shërbyes të shfaqet kur " +#~ "të pyetet nga klientë. Vër re që ky parametër kontrollon gjithashtu emrin " +#~ "e zonës së përdorur me rregullimet security=domain." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Të tërë klientët e fundit Windows komunikojnë me shërbyes SMB duke " +#~ "përdorur fjalëkalime të kriptuar. Nëse dëshiron të përdorësh fjalëkalime " +#~ "të qarta tekstualë do të duhet të ndryshosh një parametër në regjistrin " +#~ "tënd Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Aktivizimi i kësaj mundësie këshillohet fuqimisht. Nëse e bën, sigurohu " +#~ "që ke një skedar të vlefshëm /etc/samba/smbpasswd dhe që i cakton " +#~ "fjalëkalimet atje për secilin përdorues duke përdorur komandën smbpasswd." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Shih /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html nga paketa samba-" +#~ "doc për hollësi të mëtejshme." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Vargëzimi i passdb nuk suportohet" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Duke filluar nga versioni 3.0.23, samba nuk do ta suportojë më vargëzimin " +#~ "në parametrin \"passdb backend\". Ngjan që kartela jote smb.conf përmban " +#~ "një parametër passdb që përmban një listë me backend-a. Versioni i ri i " +#~ "samba-s nuk do të punojë deri kur ta korrigjoni këtë." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Ta lëviz /etc/samba/smbpasswd në /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 paraqiti një ndërfaqe baze të dhënash më të plotë SAM që " +#~ "zëvendëson skedën /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Të lutem poho nëse do dëshironit që skeda ekzistuese smbpasswd të " +#~ "shpërngulej automatikisht në /var/lib/samba/passdb.tdb. Mos e zgjidh " +#~ "këtë mundësi nëse synon të përdorësh një tjetër organizues pdb (p.sh., " +#~ "LDAP)." --- samba-3.3.0.orig/debian/po/ml.po +++ samba-3.3.0/debian/po/ml.po @@ -0,0 +1,302 @@ +# Translation of samba to malayalam +# Copyright (c) 2006 Praveen A and Debian Project +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2006-12-11 19:30+0530\n" +"Last-Translator: Praveen A \n" +"Language-Team: Swathanthra Malayalam Computing \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "DHCP യിലàµâ€ നിനàµà´¨àµà´³àµà´³ WINS സെറàµà´±à´¿à´™àµà´™àµà´•à´³àµâ€ ഉപയോഗികàµà´•à´¾à´¨àµâ€ smb.conf മാറàµà´±à´£àµ‹?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"നിങàµà´™à´³àµà´Ÿàµ† à´•à´®àµà´ªàµà´¯àµ‚à´Ÿàµà´Ÿà´±à´¿à´¨àµ à´à´ªà´¿ വിലാസ വിവരം നെറàµà´±àµà´µà´°àµâ€à´•àµà´•à´¿à´²àµ† ഒരൠDHCP സേവകനിലàµâ€ നിനàµà´¨àµà´®à´¾à´£àµ " +"ലഭികàµà´•àµà´¨àµà´¨à´¤àµ†à´™àµà´•à´¿à´²àµâ€, DHCP സേവകനàµâ€ നെറàµà´±àµà´µà´°àµâ€à´•àµà´•à´¿à´²àµà´³àµà´³ WINS (\"NetBIOS നാമ സേവകരàµâ€\") " +"സേവകനàµà´®à´¾à´°àµ†à´•àµà´•àµà´±à´¿à´šàµà´šàµà´³àµà´³ വിവരങàµà´™à´³àµâ€ കൂടി നലàµà´•à´¿à´¯àµ‡à´•àµà´•à´¾à´‚. DHCP-നലàµà´•à´¿à´¯ WINS സജàµà´œàµ€à´•à´°à´£à´™àµà´™à´³àµâ€ /etc/" +"samba/dhcp.conf à´²àµâ€ നിനàµà´¨àµà´‚ à´¸àµà´µà´¯à´®àµ‡ വായികàµà´•àµà´¨àµà´¨à´¤à´¿à´¨àµ നിങàµà´™à´³àµà´Ÿàµ† smb.conf ഫയലിലàµâ€ ഒരൠമാറàµà´±à´‚ " +"ആവശàµà´¯à´®à´¾à´£àµ." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "à´ˆ à´•à´´à´¿à´µàµà´ªà´¯àµ‹à´—à´¿à´•àµà´•à´¾à´¨àµâ€ dhcp3-client പാകàµà´•àµ‡à´œàµ ഇനàµâ€à´¸àµà´±àµà´±à´¾à´³àµâ€â€ ചെയàµà´¤à´¿à´°à´¿à´•àµà´•àµ‡à´£àµà´Ÿà´¤àµà´£àµà´Ÿàµ." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "smb.conf à´¸àµà´µà´¯à´®àµ‡ à´•àµà´°à´®àµ€à´•à´°à´¿à´•àµà´•à´£àµ‹?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"ബാകàµà´•à´¿à´¯àµà´³àµà´³ സാംബ à´•àµà´°à´®àµ€à´•à´°à´£à´‚ സാംബ à´ªàµà´°àµ‹à´—àµà´°à´¾à´®àµà´•à´³àµ† (nmbd à´¯àµà´‚ smbd) à´•àµà´°à´®àµ€à´•à´°à´¿à´•àµà´•à´¾à´¨àµà´ªà´¯àµ‹à´—à´¿à´•àµà´•àµà´¨àµà´¨ " +"ഫയലായ /etc/samba/smb.conf ലെ പരാമീറàµà´±à´±àµà´•à´³àµ† ബാധികàµà´•àµà´¨àµà´¨ ചോദàµà´¯à´™àµà´™à´³àµà´®à´¾à´¯à´¿ ബനàµà´§à´ªàµà´ªàµ†à´Ÿàµà´Ÿà´¤à´¾à´£àµ. " +"നിങàµà´™à´³àµà´Ÿàµ† ഇപàµà´ªàµ‹à´´à´¤àµà´¤àµ† smb.conf ഒരൠ'include' വരി à´…à´²àµà´²àµ†à´™àµà´•à´¿à´²àµâ€ à´’à´¨àµà´¨à´¿à´²à´§à´¿à´•à´‚ വരിയിലàµâ€ " +"à´µàµà´¯à´¾à´ªà´¿à´šàµà´šàµà´³àµà´³ ഒരൠതിരഞàµà´žàµ†à´Ÿàµà´•àµà´•à´¾à´µàµà´¨àµà´¨ വില ഉളàµâ€â€Œà´•àµà´•àµŠà´³àµà´³àµà´¨àµà´¨à´¤à´¾à´£àµ, അതൠസàµà´µà´¯à´®àµ‡à´¯àµà´³àµà´³ à´•àµà´°à´®àµ€à´•à´°à´£ à´ªàµà´°à´•àµà´°à´¿à´¯à´¯àµ† " +"ആശയകàµà´•àµà´´à´ªàµà´ªà´¤àµà´¤à´¿à´²à´¾à´•àµà´•àµà´•à´¯àµà´‚ വീണàµà´Ÿàµà´‚ à´ªàµà´°à´µà´°àµâ€à´¤àµà´¤à´¿à´•àµà´•àµà´¨àµà´¨ വിധതàµà´¤à´¿à´²à´¾à´•àµà´•à´¾à´¨àµâ€ smb.conf കൈകൊണàµà´Ÿàµ മാറàµà´±àµà´¨àµà´¨à´¤àµ " +"ആവശàµà´¯à´®à´¾à´•àµà´•àµà´•à´¯àµà´‚ ചെയàµà´¯àµà´‚." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"à´ˆ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•à´¾à´µàµà´¨àµà´¨ വില നിങàµà´™à´³àµâ€â€ തിരഞàµà´žà´Ÿàµà´¤àµà´¤à´¿à´²àµà´²àµ†à´™àµà´•à´¿à´²àµâ€ à´Žà´¨àµà´¤àµ†à´™àµà´•à´¿à´²àµà´‚ à´•àµà´°à´®àµ€à´•à´°à´£ മാറàµà´±à´™àµà´™à´³àµâ€ നിങàµà´™à´³àµâ€à´•àµà´•àµ " +"à´¸àµà´µà´¯à´‚ കൈകാരàµà´¯à´‚ ചെയàµà´¯àµ‡à´£àµà´Ÿà´¿ വരàµà´•à´¯àµà´‚ സമയാസമയങàµà´™à´³à´¿à´²àµà´³àµà´³ à´•àµà´°à´®àµ€à´•à´°à´£ à´ªàµà´°àµ‹à´—തികളàµà´Ÿàµ† à´®àµà´¨àµâ€à´¤àµ‚à´•àµà´•à´‚ നേടാനàµâ€ " +"നിങàµà´™à´³àµâ€à´•àµà´•àµ സാധികàµà´•à´¾à´¤àµ† വരàµà´•à´¯àµà´‚ ചെയàµà´¯àµà´‚." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "വരàµâ€à´•àµà´•àµà´—àµà´°àµ‚à´ªàµà´ªàµ/ഡൊമൈനàµâ€ നാമം:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"ദയവായി à´•àµà´²à´¯à´¨àµà´±àµà´•à´³àµâ€ à´…à´¨àµà´µàµ‡à´·à´¿à´•àµà´•àµà´®àµà´ªàµ‹à´³àµâ€ à´ˆ സേവകനàµâ€ ഉളàµâ€â€Œà´ªàµà´ªàµ†à´Ÿàµà´¨àµà´¨àµ à´Žà´¨àµà´¨àµ തോനàµà´¨àµ‡à´£àµà´Ÿ വരàµâ€à´•àµà´•àµà´—àµà´°àµ‚à´ªàµà´ªàµ നലàµà´•àµà´•. à´ˆ " +"പരാമീറàµà´±à´°àµâ€ security=domain à´Žà´¨àµà´¨ സജàµà´œàµ€à´•à´°à´£à´¤àµà´¤à´¿à´²àµà´ªà´¯àµ‹à´—à´¿à´•àµà´•àµà´¨àµà´¨ ഡൊമൈനàµâ€ നാമതàµà´¤àµ‡à´¯àµà´‚ നിയനàµà´¤àµà´°à´¿à´•àµà´•àµà´¨àµà´¨àµ " +"à´Žà´¨àµà´¨àµ‹à´°àµâ€à´•àµà´•àµà´•." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "അടയാളവാകàµà´•àµ à´Žà´¨àµâ€à´•àµà´°à´¿à´ªàµà´·à´¨àµâ€ ഉപയോഗികàµà´•à´£àµ‹?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"à´Žà´²àµà´²à´¾ à´ªàµà´¤à´¿à´¯ വിനàµâ€à´¡àµ‹à´¸àµ à´•àµà´²à´¯à´¨àµà´±àµà´•à´³àµà´‚ SMB സേവകരàµà´®à´¾à´¯à´¿ ആശയവിനàµà´®à´¯à´‚ നടതàµà´¤àµà´¨àµà´¨à´¤àµ à´Žà´¨àµâ€à´•àµà´°à´¿à´ªàµà´±àµà´±àµ ചെയàµà´¤ " +"അടയാള വാകàµà´•àµà´•à´³àµà´ªà´¯àµ‹à´—à´¿à´šàµà´šà´¾à´£àµ. നിങàµà´™à´³àµâ€ à´•àµà´²à´¿à´¯à´°àµâ€ ടെകàµà´¸àµà´±àµà´±àµ അടയാള " +"വാകàµà´•àµà´•à´³àµà´ªà´¯àµ‹à´—à´¿à´•àµà´•à´¾à´¨à´¾à´—àµà´°à´¹à´¿à´•àµà´•àµà´¨àµà´¨àµ†à´™àµà´•à´¿à´²àµâ€ നിങàµà´™à´³àµâ€à´•àµà´•àµ നിങàµà´™à´³àµà´Ÿàµ† വിനàµâ€à´¡àµ‹à´¸àµ രജിസàµà´Ÿàµà´°à´¿à´¯à´¿à´²àµ† ഒരൠപരാമീറàµà´±à´°àµâ€ " +"മാറàµà´±àµ‡à´£àµà´Ÿà´¿ വരàµà´‚." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"à´ˆ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•à´¾à´µàµà´¨àµà´¨ വില ഇനേബിളàµâ€ ചെയàµà´¯àµà´¨àµà´¨à´¤à´¿à´¨àµ വളരെയധികം à´¶àµà´ªà´¾à´°àµâ€à´¶ ചെയàµà´¤à´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨àµ. നിങàµà´™à´³àµâ€ " +"à´…à´™àµà´™à´¨àµ† ചെയàµà´¯àµà´•à´¯à´¾à´£àµ†à´™àµà´•à´¿à´²àµâ€ നിങàµà´™à´³àµâ€à´•àµà´•àµ ഒരൠയോഗàµà´¯à´®à´¾à´¯ /etc/samba/smbpasswd ഫയലàµà´£àµà´Ÿàµ†à´¨àµà´¨àµà´‚ " +"smbpasswd à´Žà´¨àµà´¨ ആജàµà´ž ഉപയോഗിചàµà´šàµ ഓരോ ഉപയോകàµà´¤à´¾à´•àµà´•à´³àµâ€à´•àµà´•àµà´‚ അവിടെ അടയാള വാകàµà´•àµ സെറàµà´±àµ ചെയàµà´¤àµ à´Žà´¨àµà´¨àµ " +"ഉറപàµà´ªà´¾à´•àµà´•àµà´•à´¯àµà´‚ ചെയàµà´¯àµà´•." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "സാംബ അടയാള വാകàµà´•àµà´•à´³àµà´Ÿàµ† ഡാറàµà´±à´¾à´¬àµ‡à´¸à´¾à´¯ /var/lib/samba/passdb.tdb സൃഷàµà´Ÿà´¿à´¯àµà´•àµà´•à´Ÿàµà´Ÿàµ‡?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"കൂടàµà´¤à´²àµâ€ വിനàµâ€à´¡àµ‹à´¸àµ ലകàµà´•à´™àµà´™à´³àµà´Ÿàµ‡à´¯àµà´‚ ഡിഫാളàµâ€à´Ÿàµà´Ÿàµà´•à´³àµà´®à´¾à´¯à´¿ പൊരàµà´¤àµà´¤à´ªàµà´ªàµ†à´Ÿà´¾à´¨àµâ€ സാംബ à´Žà´¨àµâ€à´•àµà´°à´¿à´ªàµà´±àµà´±àµ ചെയàµà´¤ അടയാള " +"വാകàµà´•àµà´•à´³àµâ€ ഉപയോഗികàµà´•à´¾à´¨à´¾à´¯à´¿ à´•àµà´°à´®àµ€à´•à´°à´¿à´•àµà´•àµ‡à´£àµà´Ÿà´¤àµà´£àµà´Ÿàµ. ഇതിനൠഉപയോകàµà´¤àµƒ അടയാള വാകàµà´•àµà´•à´³àµâ€ /etc/passwd " +"ലിലàµâ€ നിനàµà´¨àµà´‚ à´µàµà´¯à´¤àµà´¯à´¸àµà´¤à´®à´¾à´¯ ഒരൠഫയലിലàµâ€ സൂകàµà´·à´¿à´šàµà´šàµ വകàµà´•àµ‡à´£àµà´Ÿà´¤àµà´£àµà´Ÿàµ. à´ˆ ഫയലàµâ€ à´¸àµà´µà´¯à´®àµ‡ സൃഷàµà´Ÿà´¿à´•àµà´•à´¾à´µàµà´¨àµà´¨à´¤à´¾à´£àµ " +"പകàµà´·àµ‡ അടയാള വാകàµà´•àµà´•à´³àµâ€ smbpasswd à´“à´Ÿà´¿à´šàµà´šàµà´•àµŠà´£àµà´Ÿàµ മാനàµà´µà´²à´¾à´¯à´¿ കൂടàµà´Ÿà´¿à´šàµà´šàµ‡à´°àµâ€â€Œà´•àµà´•àµ‡à´£àµà´Ÿà´¤àµà´‚ ഭാവിയിലàµâ€ à´ªàµà´¤àµà´•àµà´•à´¿ " +"സൂകàµà´·à´¿à´•àµà´•àµ‡à´£àµà´Ÿà´¤àµà´®à´¾à´£àµ." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"ഇതൠനിങàµà´™à´³àµâ€ സൃഷàµà´Ÿà´¿à´šàµà´šà´¿à´²àµà´²àµ†à´™àµà´•à´¿à´²àµâ€ നിങàµà´™à´³àµâ€à´•àµà´•àµ à´ªàµà´²àµ†à´¯à´¿à´¨àµâ€ ടെകàµà´¸àµà´±àµà´±àµ അടയാള വാകàµà´•àµà´•à´³àµâ€ ഉപയോഗികàµà´•à´£à´®àµ†à´™àµà´•à´¿à´²àµâ€ " +"സാംബ (à´¯àµà´‚ ഒരൠപകàµà´·àµ‡ നിങàµà´™à´³àµà´Ÿàµ† à´•àµà´²à´¯à´¨àµà´±àµ മഷീനàµà´•à´³àµà´‚) à´ªàµà´¨à´ƒà´•àµà´°à´®àµ€à´•à´°à´¿à´•àµà´•àµ‡à´£àµà´Ÿà´¿ വരàµà´‚." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"കൂടàµà´¤à´²àµâ€ വിവരങàµà´™à´³àµâ€à´•àµà´•à´¾à´¯à´¿ samba-doc പാകàµà´•àµ‡à´œà´¿à´²àµ† /usr/share/doc/samba-doc/htmldocs/" +"ENCRYPTION.html കാണàµà´•." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "ഡെമണàµà´•à´³àµâ€" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "സാംബ à´Žà´™àµà´™à´¨àµ† à´ªàµà´°à´µà´°àµâ€à´¤àµà´¤à´¿à´ªàµà´ªà´¿à´•àµà´•à´¾à´¨à´¾à´£àµ നിങàµà´™à´³à´¾à´—àµà´°à´¹à´¿à´•àµà´•àµà´¨àµà´¨à´¤àµ?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"സാംബ ഡെമണàµâ€ smbd ഒരൠസാധാരണ ഡെമണായോ à´…à´²àµà´²àµ†à´™àµà´•à´¿à´²àµâ€ inetd യിലàµâ€ നിനàµà´¨àµ‹ " +"à´ªàµà´°à´µà´°àµâ€à´¤àµà´¤à´¿à´ªàµà´ªà´¿à´•àµà´•à´¾à´µàµà´¨àµà´¨à´¤à´¾à´£àµ. ഡെമണായി à´“à´Ÿà´¿à´•àµà´•àµà´¨àµà´¨à´¤à´¾à´£àµ à´¶àµà´ªà´¾à´°àµâ€à´¶ ചെയàµà´¤à´¿à´Ÿàµà´Ÿàµà´³àµà´³ വഴി." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "ബാകàµà´•à´¿à´¯àµà´³àµà´³ സാംബ à´•àµà´°à´®àµ€à´•à´°à´£à´‚ സാംബ à´ªàµà´°àµ‹à´—àµà´°à´¾à´®àµà´•à´³àµ† (nmbd à´¯àµà´‚ smbd) " +#~ "à´•àµà´°à´®àµ€à´•à´°à´¿à´•àµà´•à´¾à´¨àµà´ªà´¯àµ‹à´—à´¿à´•àµà´•àµà´¨àµà´¨ ഫയലായ /etc/samba/smb.conf ലെ പരാമീറàµà´±à´±àµà´•à´³àµ† ബാധികàµà´•àµà´¨àµà´¨ " +#~ "ചോദàµà´¯à´™àµà´™à´³àµà´®à´¾à´¯à´¿ ബനàµà´§à´ªàµà´ªàµ†à´Ÿàµà´Ÿà´¤à´¾à´£àµ. നിങàµà´™à´³àµà´Ÿàµ† ഇപàµà´ªàµ‹à´´à´¤àµà´¤àµ† smb.conf ഒരൠ'include' വരി " +#~ "à´…à´²àµà´²àµ†à´™àµà´•à´¿à´²àµâ€ à´’à´¨àµà´¨à´¿à´²à´§à´¿à´•à´‚ വരിയിലàµâ€ à´µàµà´¯à´¾à´ªà´¿à´šàµà´šàµà´³àµà´³ ഒരൠതിരഞàµà´žàµ†à´Ÿàµà´•àµà´•à´¾à´µàµà´¨àµà´¨ വില ഉളàµâ€â€Œà´•àµà´•àµŠà´³àµà´³àµà´¨àµà´¨à´¤à´¾à´£àµ, അതൠ" +#~ "à´¸àµà´µà´¯à´®àµ‡à´¯àµà´³àµà´³ à´•àµà´°à´®àµ€à´•à´°à´£ à´ªàµà´°à´•àµà´°à´¿à´¯à´¯àµ† ആശയകàµà´•àµà´´à´ªàµà´ªà´¤àµà´¤à´¿à´²à´¾à´•àµà´•àµà´•à´¯àµà´‚ വീണàµà´Ÿàµà´‚ à´ªàµà´°à´µà´°àµâ€à´¤àµà´¤à´¿à´•àµà´•àµà´¨àµà´¨ " +#~ "വിധതàµà´¤à´¿à´²à´¾à´•àµà´•à´¾à´¨àµâ€ smb.conf കൈകൊണàµà´Ÿàµ മാറàµà´±àµà´¨àµà´¨à´¤àµ ആവശàµà´¯à´®à´¾à´•àµà´•àµà´•à´¯àµà´‚ ചെയàµà´¯àµà´‚." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "ദയവായി à´•àµà´²à´¯à´¨àµà´±àµà´•à´³àµâ€ à´…à´¨àµà´µàµ‡à´·à´¿à´•àµà´•àµà´®àµà´ªàµ‹à´³àµâ€ à´ˆ സേവകനàµâ€ ഉളàµâ€â€Œà´ªàµà´ªàµ†à´Ÿàµà´¨àµà´¨àµ à´Žà´¨àµà´¨àµ തോനàµà´¨àµ‡à´£àµà´Ÿ വരàµâ€à´•àµà´•àµà´—àµà´°àµ‚à´ªàµà´ªàµ നലàµà´•àµà´•. à´ˆ " +#~ "പരാമീറàµà´±à´°àµâ€ security=domain à´Žà´¨àµà´¨ സജàµà´œàµ€à´•à´°à´£à´¤àµà´¤à´¿à´²àµà´ªà´¯àµ‹à´—à´¿à´•àµà´•àµà´¨àµà´¨ ഡൊമൈനàµâ€ നാമതàµà´¤àµ‡à´¯àµà´‚ " +#~ "നിയനàµà´¤àµà´°à´¿à´•àµà´•àµà´¨àµà´¨àµ à´Žà´¨àµà´¨àµ‹à´°àµâ€à´•àµà´•àµà´•." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "à´Žà´²àµà´²à´¾ à´ªàµà´¤à´¿à´¯ വിനàµâ€à´¡àµ‹à´¸àµ à´•àµà´²à´¯à´¨àµà´±àµà´•à´³àµà´‚ SMB സേവകരàµà´®à´¾à´¯à´¿ ആശയവിനàµà´®à´¯à´‚ നടതàµà´¤àµà´¨àµà´¨à´¤àµ à´Žà´¨àµâ€à´•àµà´°à´¿à´ªàµà´±àµà´±àµ ചെയàµà´¤ " +#~ "അടയാള വാകàµà´•àµà´•à´³àµà´ªà´¯àµ‹à´—à´¿à´šàµà´šà´¾à´£àµ. നിങàµà´™à´³àµâ€ à´•àµà´²à´¿à´¯à´°àµâ€ ടെകàµà´¸àµà´±àµà´±àµ അടയാള " +#~ "വാകàµà´•àµà´•à´³àµà´ªà´¯àµ‹à´—à´¿à´•àµà´•à´¾à´¨à´¾à´—àµà´°à´¹à´¿à´•àµà´•àµà´¨àµà´¨àµ†à´™àµà´•à´¿à´²àµâ€ നിങàµà´™à´³àµâ€à´•àµà´•àµ നിങàµà´™à´³àµà´Ÿàµ† വിനàµâ€à´¡àµ‹à´¸àµ രജിസàµà´Ÿàµà´°à´¿à´¯à´¿à´²àµ† ഒരൠ" +#~ "പരാമീറàµà´±à´°àµâ€ മാറàµà´±àµ‡à´£àµà´Ÿà´¿ വരàµà´‚." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "à´ˆ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•à´¾à´µàµà´¨àµà´¨ വില ഇനേബിളàµâ€ ചെയàµà´¯àµà´¨àµà´¨à´¤à´¿à´¨àµ വളരെയധികം à´¶àµà´ªà´¾à´°àµâ€à´¶ ചെയàµà´¤à´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨àµ. നിങàµà´™à´³àµâ€ " +#~ "à´…à´™àµà´™à´¨àµ† ചെയàµà´¯àµà´•à´¯à´¾à´£àµ†à´™àµà´•à´¿à´²àµâ€ നിങàµà´™à´³àµâ€à´•àµà´•àµ ഒരൠയോഗàµà´¯à´®à´¾à´¯ /etc/samba/smbpasswd ഫയലàµà´£àµà´Ÿàµ†à´¨àµà´¨àµà´‚ " +#~ "smbpasswd à´Žà´¨àµà´¨ ആജàµà´ž ഉപയോഗിചàµà´šàµ ഓരോ ഉപയോകàµà´¤à´¾à´•àµà´•à´³àµâ€à´•àµà´•àµà´‚ അവിടെ അടയാള വാകàµà´•àµ സെറàµà´±àµ ചെയàµà´¤àµ " +#~ "à´Žà´¨àµà´¨àµ ഉറപàµà´ªà´¾à´•àµà´•àµà´•à´¯àµà´‚ ചെയàµà´¯àµà´•." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "കൂടàµà´¤à´²àµâ€ വിവരങàµà´™à´³àµâ€à´•àµà´•à´¾à´¯à´¿ samba-doc പാകàµà´•àµ‡à´œà´¿à´²àµ† /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html കാണàµà´•." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "passdb ബാകàµà´•àµ†à´¨àµâ€à´¡àµà´•à´³àµâ€ ചെയിനàµâ€ ചെയàµà´¯àµà´¨àµà´¨à´¤à´¿à´¨àµ† പിനàµâ€à´¤àµà´£à´¯àµà´•àµà´•àµà´¨àµà´¨à´¿à´²àµà´²" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "3.0.23 ലകàµà´•à´‚ à´®àµà´¤à´²àµâ€ സാംബ \"passdb backend\" പരാമീറàµà´±à´±à´¿à´²àµâ€ à´’à´¨àµà´¨à´¿à´²àµâ€ കൂടàµà´¤à´²àµâ€ ബാകàµà´•àµ†à´¨àµâ€à´¡àµà´•à´³àµ† " +#~ "ചെയിനàµâ€ ചെയàµà´¯àµà´¨àµà´¨à´¤àµ പിനàµâ€à´¤àµà´£à´¯àµà´•àµà´•àµà´¨àµà´¨à´¿à´²àµà´². നിങàµà´™à´³àµà´Ÿàµ† smb.conf à´²àµâ€ ബാകàµà´•àµ†à´¨àµâ€à´¡àµà´•à´³àµà´Ÿàµ† " +#~ "പടàµà´Ÿà´¿à´•à´¯àµà´³àµâ€â€Œà´•àµà´•àµŠà´³àµà´³àµà´¨àµà´¨ ഒരൠpassdb backend പരാമീറàµà´±à´°àµâ€ ഉളàµâ€â€Œà´•àµà´•àµŠà´³àµà´³àµà´¨àµà´¨à´¤à´¾à´¯à´¿ തോനàµà´¨àµà´¨àµà´¨àµ. നിങàµà´™à´³àµâ€ ഇതൠ" +#~ "ശരിയാകàµà´•àµà´¨àµà´¨à´¤àµ വരെ സാംബയàµà´Ÿàµ† à´ªàµà´¤à´¿à´¯ ലകàµà´•à´‚ à´ªàµà´°à´µà´°àµâ€à´¤àµà´¤à´¿à´•àµà´•àµà´•à´¯à´¿à´²àµà´²." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "/etc/samba/smbpasswd നെ /var/lib/samba/passdb.tdb യിലേകàµà´•àµ മാറàµà´±à´£àµ‹?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "നേരതàµà´¤àµ†à´¯àµà´£àµà´Ÿà´¾à´¯à´¿à´°àµà´¨àµà´¨ /etc/samba/smbpasswd ഫയലിനെ മാറàµà´±à´¿à´•àµà´•àµŠà´£àµà´Ÿàµ സാംബ 3.0 ഒരൠകൂടàµà´¤à´²àµâ€ " +#~ "പൂരàµâ€à´£à´®à´¾à´¯ SAM ഡാറàµà´±à´¾à´¬àµ‡à´¸àµ ഇനàµà´±à´°àµâ€à´«àµ‡à´¸àµ കൊണàµà´Ÿàµà´µà´¨àµà´¨à´¿à´Ÿàµà´Ÿàµà´£àµà´Ÿàµ." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "ദയവായി നിലവിലàµà´³àµà´³ smbpasswd ഫയലàµâ€ à´¸àµà´µà´¯à´®àµ‡ /var/lib/samba/passdb.tdb യിലേകàµà´•àµ " +#~ "മാറàµà´±àµà´µà´¾à´¨àµâ€ നിങàµà´™à´³à´¾à´—àµà´°à´¹à´¿à´•àµà´•àµà´¨àµà´¨àµà´£àµà´Ÿàµ‹ à´Žà´¨àµà´¨àµ നിശàµà´šà´¯à´¿à´•àµà´•àµà´•. ഇതിനൠപകരം മറàµà´±àµŠà´°àµ pdb ബാകàµà´•àµ†à´¨àµâ€à´¡àµ " +#~ "(ഉദാ. LDAP) ഇതിനൠപകരം ഉപയോഗികàµà´•à´¾à´¨àµâ€ നിങàµà´™à´³àµâ€à´•àµà´•àµ പദàµà´§à´¤à´¿à´¯àµà´£àµà´Ÿàµ†à´™àµà´•à´¿à´²àµâ€ à´ˆ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•à´¾à´µàµà´¨àµà´¨ " +#~ "വില തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•à´°àµà´¤àµ." --- samba-3.3.0.orig/debian/po/ka.po +++ samba-3.3.0/debian/po/ka.po @@ -0,0 +1,254 @@ +# Georgian translation of samba. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Aiet Kolkhi , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2008-09-10 01:45+0400\n" +"Last-Translator: Aiet Kolkhi \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "გსურთ smb.conf-ის შეცვლრWINS პáƒáƒ áƒáƒ›áƒ”ტრების DHCP-დáƒáƒœ გáƒáƒ›áƒáƒ¡áƒáƒ§áƒ”ნებლáƒáƒ“?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"თუ თქვენი კáƒáƒ›áƒžáƒ˜áƒ£áƒ¢áƒ”რი IP მისáƒáƒ›áƒáƒ áƒ—ს ქსელის DHCP სერვერიდáƒáƒœ იღებს, მáƒáƒ¨áƒ˜áƒœ DHCP " +"სერვერს შეიძლებრáƒáƒ¡áƒ”ვე გáƒáƒáƒ©áƒœáƒ“ეს ინფáƒáƒ áƒ›áƒáƒªáƒ˜áƒ ქსელში áƒáƒ áƒ¡áƒ”ბულ WINS სერვერების " +"(„NetBIOS name servers“) შესáƒáƒ®áƒ”ბ. áƒáƒ›áƒ˜áƒ¡áƒáƒ—ვის სáƒáƒ­áƒ˜áƒ áƒáƒ ცვლილებრsmb.conf " +"ფáƒáƒ˜áƒšáƒ¨áƒ˜, რáƒáƒ—რDHCP-ს მáƒáƒ¬áƒáƒ“ებული WINS პáƒáƒ áƒáƒ›áƒ”ტრები áƒáƒ•áƒ¢áƒáƒ›áƒáƒ¢áƒ£áƒ áƒáƒ“ áƒáƒ›áƒáƒ˜áƒ™áƒ˜áƒ—ხáƒáƒ¡ /etc/" +"samba/dhcp.conf-დáƒáƒœ." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"áƒáƒ› ფუნქციის გáƒáƒ›áƒáƒ¡áƒáƒ§áƒ”ნებლáƒáƒ“ áƒáƒ£áƒªáƒ˜áƒšáƒ”ბელირდáƒáƒ§áƒ”ნებული იყáƒáƒ¡ dhcp3-client პáƒáƒ™áƒ”ტი." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "გსურთ smb.conf-ის áƒáƒ•áƒ¢áƒáƒ›áƒáƒ¢áƒ£áƒ áƒ˜ კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"დáƒáƒ áƒ©áƒ”ნილი Samba-ს კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ ეხებრსáƒáƒ™áƒ˜áƒ—ხებს, რáƒáƒ›áƒšáƒ”ბსáƒáƒª ზეგáƒáƒ•áƒšáƒ”ნრáƒáƒ¥áƒ•áƒ¡ /" +"etc/samba/smb.conf-ზე. ეს ფáƒáƒ˜áƒšáƒ˜ Samba-ს პრáƒáƒ’რáƒáƒ›áƒ”ბის (nmbd დრsmbd) " +"კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ˜áƒ¡áƒáƒ—ვის გáƒáƒ›áƒáƒ˜áƒ§áƒ”ნებáƒ. თქვენი áƒáƒ›áƒŸáƒáƒ›áƒ˜áƒœáƒ“ელი smb.conf ფáƒáƒ˜áƒšáƒ˜ შეიცáƒáƒ•áƒ¡ " +"'include' სტრიქáƒáƒœáƒ¡, áƒáƒœ პáƒáƒ áƒáƒ›áƒ”ტრს, რáƒáƒ›áƒ”ლის მრáƒáƒ•áƒáƒš სტრიქáƒáƒœáƒ¡ მიმáƒáƒ˜áƒ®áƒ˜áƒšáƒáƒ•áƒ¡, რáƒáƒ›áƒáƒª " +"შესáƒáƒ«áƒšáƒáƒ áƒáƒ•áƒ¢áƒáƒ›áƒáƒ¢áƒ£áƒ áƒ˜ კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ˜áƒ¡ პრáƒáƒªáƒ”სი დáƒáƒáƒ‘ნიáƒáƒ¡ დრთქვენ smb.conf-ის " +"ხელით დáƒáƒ›áƒ£áƒ¨áƒáƒ•áƒ”ბრმáƒáƒ’იწიáƒáƒ— მის კვლáƒáƒ• áƒáƒ¡áƒáƒ›áƒ£áƒ¨Aვებლáƒáƒ“." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"თუ áƒáƒ› პáƒáƒ áƒáƒ›áƒ”ტრს áƒáƒ  áƒáƒ›áƒáƒ˜áƒ áƒ©áƒ”ბთ, ნებისმიერი კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ˜áƒ¡ ცვლილებების გáƒáƒ¢áƒáƒ áƒ”ბრ" +"ხელით მáƒáƒ’იწევთ. áƒáƒ¡áƒ”ვე ვერ გáƒáƒ›áƒáƒ˜áƒ§áƒ”ნებთ კნფიგურáƒáƒªáƒ˜áƒ˜áƒ¡ პერიáƒáƒ“ულ გáƒáƒ£áƒ›áƒ¯áƒáƒ‘ესებებს." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "სáƒáƒ›áƒ£áƒ¨áƒáƒ ჯგუფის/დáƒáƒ›áƒ”ნის სáƒáƒ®áƒ”ლი:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"მიუთითეთ სáƒáƒ›áƒ£áƒ¨áƒáƒ ჯგუფი (workgroup), რáƒáƒ›áƒ”ლსáƒáƒª სერვერმრთáƒáƒ•áƒ˜ უნდრმიáƒáƒ™áƒ£áƒ—ვნáƒáƒ¡ " +"კლიენტების მიერ მáƒáƒ—ხáƒáƒ•áƒœáƒ˜áƒ¡ გáƒáƒ›áƒáƒ’ზáƒáƒ•áƒœáƒ˜áƒ¡áƒáƒ¡. გáƒáƒ˜áƒ—ვáƒáƒšáƒ˜áƒ¡áƒ¬áƒ˜áƒœáƒ”თ, რáƒáƒ› ეს პáƒáƒ áƒáƒ›áƒ”ტრი " +"áƒáƒ¡áƒ”ვე áƒáƒ™áƒáƒœáƒ¢áƒ áƒáƒšáƒ”ბს security=domain პáƒáƒ áƒáƒ›áƒ”ტრზე გáƒáƒ›áƒáƒ§áƒ”ნებულ დáƒáƒ›áƒ”ნის სáƒáƒ®áƒ”ლს." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "გსურთ პáƒáƒ áƒáƒšáƒ˜áƒ¡ დáƒáƒ¨áƒ˜áƒ¤áƒ•áƒ áƒ˜áƒ¡ გმáƒáƒáƒ§áƒ”ნებáƒ?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Windows-ის ყველრáƒáƒ®áƒáƒšáƒ˜ კლიენტი SMB სერვერთáƒáƒœ კáƒáƒ•áƒ¨áƒ˜áƒ áƒ¡ შიფრირებული პáƒáƒ áƒáƒšáƒ˜áƒ— " +"áƒáƒ›áƒ§áƒáƒ áƒ”ბს. თუ გსურთ დáƒáƒ£áƒ¨áƒ˜áƒ¤áƒ áƒáƒ•áƒ˜ პáƒáƒ áƒáƒšáƒ˜áƒ¡ გáƒáƒ›áƒáƒ§áƒ”ნებáƒ, მáƒáƒ’იწევთ შეცვáƒáƒšáƒáƒ— " +"პáƒáƒ áƒáƒ›áƒ”ტრი Windows-ის რეგისტრში." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"áƒáƒ› პáƒáƒ áƒáƒ›áƒ”ტრის გáƒáƒáƒ¥áƒ¢áƒ˜áƒ£áƒ áƒ”ბრრეკáƒáƒ›áƒ”ნდირებულიáƒ. თუ áƒáƒ›áƒáƒ¡ გáƒáƒáƒ™áƒ”თებთ, დáƒáƒ áƒ¬áƒ›áƒ£áƒœáƒ“ით, " +"რáƒáƒ› გáƒáƒ’áƒáƒ©áƒœáƒ˜áƒáƒ— გáƒáƒ›áƒáƒ áƒ—ული /etc/samba/smbpasswd ფáƒáƒ˜áƒšáƒ˜ დრრáƒáƒ› იქ ყáƒáƒ•áƒ”ლ " +"მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბელზე პáƒáƒ áƒáƒšáƒ˜ გქáƒáƒœáƒ“ეთ დáƒáƒ§áƒ”ნებული smbpasswd ბრძáƒáƒœáƒ”ბით." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "გსურთ samba-ს პáƒáƒ áƒáƒšáƒ—რბáƒáƒ–ის, /var/lib/samba/passdb.tdb-ს შექმნáƒ?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Windows-ის უმეტეს ვერსიების ნáƒáƒ’ულისხმევ პáƒáƒ áƒáƒ›áƒ”ტრებთáƒáƒœ თáƒáƒ•áƒ¡áƒ”ბáƒáƒ“áƒáƒ‘ისáƒáƒ—ვის, " +"Samba-მ დáƒáƒ¨áƒ˜áƒ¤áƒ áƒ£áƒšáƒ˜ პáƒáƒ áƒáƒšáƒ”ბი უნდრგáƒáƒ›áƒáƒ˜áƒ§áƒ”ნáƒáƒ¡. ეს სáƒáƒ­áƒ˜áƒ áƒáƒ”ბს, რáƒáƒ› მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბელთრ" +"პáƒáƒ áƒáƒšáƒ”ბი /etc/passwd-ისáƒáƒ’áƒáƒœ გáƒáƒœáƒªáƒ®áƒáƒšáƒ™áƒ”ვებით იქნáƒáƒ¡ შენáƒáƒ®áƒ£áƒšáƒ˜. áƒáƒ› ფáƒáƒ˜áƒšáƒ˜áƒ¡ შექმნრ" +"áƒáƒ•áƒ¢áƒáƒ›áƒáƒ¢áƒ£áƒ áƒáƒ“ áƒáƒ áƒ˜áƒ¡ შესáƒáƒ«áƒšáƒ”ბელი, თუმცრპáƒáƒ áƒáƒšáƒ”ბის ჩáƒáƒ›áƒáƒ¢áƒ”ბრხელით უნდრმáƒáƒ®áƒ“ეს " +"smbpasswd ბრძáƒáƒœáƒ”ბით დრსáƒáƒ›áƒáƒ›áƒáƒ•áƒšáƒáƒ“ მუდáƒáƒ› გáƒáƒœáƒáƒ®áƒšáƒ”ბული უნდრიყáƒáƒ¡." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"თუ მáƒáƒ¡ áƒáƒ  შექმნით, Samba-ს (დრსáƒáƒ•áƒáƒ áƒáƒ£áƒ“áƒáƒ“ თქვენი კლიენტისáƒáƒª) ხელáƒáƒ®áƒáƒšáƒ˜ " +"კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ მáƒáƒ’იწევთ დáƒáƒ£áƒ¨áƒ˜áƒ¤áƒ áƒáƒ•áƒ˜ პáƒáƒ áƒáƒšáƒ”ბის გáƒáƒ›áƒáƒ¡áƒáƒ§áƒ”ნებლáƒáƒ“." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"დáƒáƒ›áƒáƒ¢áƒ”ბითი ინფáƒáƒ áƒ›áƒáƒªáƒ˜áƒ˜áƒ¡áƒáƒ—ვის იხილეთ /usr/share/doc/samba-doc/htmldocs/" +"ENCRYPTION.html სტáƒáƒ¢áƒ˜áƒ samba-doc პáƒáƒ™áƒ”ტიდáƒáƒœ." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "დემáƒáƒœáƒ”ბი" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "რáƒáƒ’áƒáƒ  გსურთ Samba-ს გáƒáƒ¨áƒ•áƒ”ბáƒ?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Samba-ს დემáƒáƒœáƒ˜ smbd შეიძლებრგáƒáƒ”შვáƒáƒ¡ რáƒáƒ’áƒáƒ áƒª ჩვეულებრივი დემრinetd-დáƒáƒœ. " +"დემáƒáƒœáƒáƒ“ გáƒáƒ¨áƒ•áƒ”ბრრეკáƒáƒ›áƒ”ნდირებული მიდგáƒáƒ›áƒáƒ." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "დáƒáƒ áƒ©áƒ”ნილი Samba-ს კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ ეხებრსáƒáƒ™áƒ˜áƒ—ხებს, რáƒáƒ›áƒšáƒ”ბსáƒáƒª ზეგáƒáƒ•áƒšáƒ”ნრáƒáƒ¥áƒ•áƒ¡ /" +#~ "etc/samba/smb.conf-ზე. ეს ფáƒáƒ˜áƒšáƒ˜ Samba-ს პრáƒáƒ’რáƒáƒ›áƒ”ბის (nmbd დრsmbd) " +#~ "კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ˜áƒ¡áƒáƒ—ვის გáƒáƒ›áƒáƒ˜áƒ§áƒ”ნებáƒ. თქვენი áƒáƒ›áƒŸáƒáƒ›áƒ˜áƒœáƒ“ელი smb.conf ფáƒáƒ˜áƒšáƒ˜ შეიცáƒáƒ•áƒ¡ " +#~ "'include' სტრიქáƒáƒœáƒ¡, áƒáƒœ პáƒáƒ áƒáƒ›áƒ”ტრს, რáƒáƒ›áƒ”ლის მრáƒáƒ•áƒáƒš სტრიქáƒáƒœáƒ¡ მიმáƒáƒ˜áƒ®áƒ˜áƒšáƒáƒ•áƒ¡, " +#~ "რáƒáƒ›áƒáƒª შესáƒáƒ«áƒšáƒáƒ áƒáƒ•áƒ¢áƒáƒ›áƒáƒ¢áƒ£áƒ áƒ˜ კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ˜áƒ¡ პრáƒáƒªáƒ”სი დáƒáƒáƒ‘ნიáƒáƒ¡ დრთქვენ smb." +#~ "conf-ის ხელით დáƒáƒ›áƒ£áƒ¨áƒáƒ•áƒ”ბრმáƒáƒ’იწიáƒáƒ— მის კვლáƒáƒ• áƒáƒ¡áƒáƒ›áƒ£áƒ¨Aვებლáƒáƒ“." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "მიუთითეთ სáƒáƒ›áƒ£áƒ¨áƒáƒ ჯგუფი (workgroup), რáƒáƒ›áƒ”ლსáƒáƒª სერვერმრთáƒáƒ•áƒ˜ უნდრ" +#~ "მიáƒáƒ™áƒ£áƒ—ვნáƒáƒ¡ კლიენტების მიერ მáƒáƒ—ხáƒáƒ•áƒœáƒ˜áƒ¡ გáƒáƒ›áƒáƒ’ზáƒáƒ•áƒœáƒ˜áƒ¡áƒáƒ¡. გáƒáƒ˜áƒ—ვáƒáƒšáƒ˜áƒ¡áƒ¬áƒ˜áƒœáƒ”თ, რáƒáƒ› " +#~ "ეს პáƒáƒ áƒáƒ›áƒ”ტრი áƒáƒ¡áƒ”ვე áƒáƒ™áƒáƒœáƒ¢áƒ áƒáƒšáƒ”ბს security=domain პáƒáƒ áƒáƒ›áƒ”ტრზე გáƒáƒ›áƒáƒ§áƒ”ნებულ " +#~ "დáƒáƒ›áƒ”ნის სáƒáƒ®áƒ”ლს." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Windows-ის ყველრáƒáƒ®áƒáƒšáƒ˜ კლიენტი SMB სერვერთáƒáƒœ კáƒáƒ•áƒ¨áƒ˜áƒ áƒ¡ შიფრირებული პáƒáƒ áƒáƒšáƒ˜áƒ— " +#~ "áƒáƒ›áƒ§áƒáƒ áƒ”ბს. თუ გსურთ დáƒáƒ£áƒ¨áƒ˜áƒ¤áƒ áƒáƒ•áƒ˜ პáƒáƒ áƒáƒšáƒ˜áƒ¡ გáƒáƒ›áƒáƒ§áƒ”ნებáƒ, მáƒáƒ’იწევთ შეცვáƒáƒšáƒáƒ— " +#~ "პáƒáƒ áƒáƒ›áƒ”ტრი Windows-ის რეგისტრში." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "áƒáƒ› პáƒáƒ áƒáƒ›áƒ”ტრის გáƒáƒáƒ¥áƒ¢áƒ˜áƒ£áƒ áƒ”ბრრეკáƒáƒ›áƒ”ნდირებულიáƒ. თუ áƒáƒ›áƒáƒ¡ გáƒáƒáƒ™áƒ”თებთ, " +#~ "დáƒáƒ áƒ¬áƒ›áƒ£áƒœáƒ“ით, რáƒáƒ› გáƒáƒ’áƒáƒ©áƒœáƒ˜áƒáƒ— გáƒáƒ›áƒáƒ áƒ—ული /etc/samba/smbpasswd ფáƒáƒ˜áƒšáƒ˜ დრრáƒáƒ› იქ " +#~ "ყáƒáƒ•áƒ”ლ მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბელზე პáƒáƒ áƒáƒšáƒ˜ გქáƒáƒœáƒ“ეთ დáƒáƒ§áƒ”ნებული smbpasswd ბრძáƒáƒœáƒ”ბით." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "დáƒáƒ›áƒáƒ¢áƒ”ბითი ინფáƒáƒ áƒ›áƒáƒªáƒ˜áƒ˜áƒ¡áƒáƒ—ვის იხილეთ /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html სტáƒáƒ¢áƒ˜áƒ samba-doc პáƒáƒ™áƒ”ტიდáƒáƒœ." --- samba-3.3.0.orig/debian/po/ru.po +++ samba-3.3.0/debian/po/ru.po @@ -0,0 +1,292 @@ +# Translation of samba_3.0.23c-1.po to Russian +# Yuriy Talakan' , 2005, 2006. +# Pavel Maryanov , 2006, 2007. +msgid "" +msgstr "" +"Project-Id-Version: samba_3.0.23c-1\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-13 22:22+0200\n" +"Last-Translator: Pavel Maryanov \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Изменить smb.conf Ð´Ð»Ñ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð½Ð°Ñтроек WINS из DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"ЕÑли компьютер получает информацию о Ñвоём IP-адреÑе от Ñлужбы DHCP по Ñети, " +"тогда DHCP-Ñервер также может предоÑтавлÑÑ‚ÑŒ информацию о Ñерверах WINS " +"(\"Ñерверы имён NetBIOS\"), доÑтупных в Ñети. Чтобы наÑтройки WINS, " +"предоÑтавленные Ñервером DHCP, автоматичеÑки ÑчитывалиÑÑŒ из /etc/samba/dhcp." +"conf, нужно изменить файл smb.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Чтобы иÑпользовать Ñту возможноÑÑ‚ÑŒ, нужно уÑтановить пакет dhcp3-client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "ÐаÑтроить smb.conf автоматичеÑки?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"ОÑтавшаÑÑÑ Ñ‡Ð°ÑÑ‚ÑŒ наÑтройки Samba предÑтавлÑет Ñобой вопроÑÑ‹, влиÑющие на " +"параметры в /etc/samba/smb.conf. Этот файл иÑпользуетÑÑ Ð´Ð»Ñ Ð½Ð°Ñтройки " +"программ Samba (nmbd и smbd). Ð’ текущем файле smb.conf еÑÑ‚ÑŒ Ñтрока 'include' " +"или параметр, ÑоÑтоÑщий из неÑкольких Ñтрок. При Ñтом автоматичеÑÐºÐ°Ñ " +"наÑтройка может быть нарушена, и Ð´Ð»Ñ Ð²Ð¾ÑÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ð¾ÑпоÑобноÑти " +"потребуетÑÑ Ð¾Ñ‚Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¸Ñ€Ð¾Ð²Ð°Ñ‚ÑŒ smb.conf вручную." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"При отказе от Ñтой возможноÑти позаботитьÑÑ Ð¾Ð±Ð¾ вÑех изменениÑÑ… конфигурации " +"придётÑÑ ÑамоÑтоÑтельно, а приведёт к невозможноÑти периодичеÑкого " +"Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð½Ð°Ñтроек." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Ð Ð°Ð±Ð¾Ñ‡Ð°Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ð°/домен:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Укажите рабочую группу, к которой будет принадлежать Ñервер при опроÑе " +"клиентами. Обратите внимание, что Ñтот параметр также определÑет Ð¸Ð¼Ñ Ð´Ð¾Ð¼ÐµÐ½Ð°, " +"иÑпользуемое вмеÑте Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð¾Ð¼ security=domain." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "ИÑпользовать шифрование паролей?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Ð’Ñе поÑледние Windows-клиенты ÑвÑзываютÑÑ Ñ Ñерверами SMB Ñ Ð¸Ñпользованием " +"шифрованных паролей. ЕÑли нужно иÑпользовать нешифрованные пароли, тогда " +"надо будет изменить параметр в рееÑтре Windows." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Крайне рекомендуетÑÑ Ð²ÐºÐ»ÑŽÑ‡Ð¸Ñ‚ÑŒ Ñтот параметр. Ð’ Ñтом Ñлучае нужно убедитьÑÑ Ð² " +"правильноÑти файла /etc/samba/smbpasswd и в том, что Ð´Ð»Ñ Ð²Ñех пользователей " +"в нём уÑтановлены пароли Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ команды smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Создать базу данных паролей Samba - /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Ð”Ð»Ñ ÑовмеÑтимоÑти Ñо Ñтандартными значениÑми большинÑтва верÑий Windows " +"Samba необходимо наÑтроить на иÑпользование шифрованных паролей. При Ñтом " +"пароли пользователей должны хранитьÑÑ Ð² отдельном файле, а не в /etc/passwd. " +"Этот файл будет Ñоздан автоматичеÑки, однако пароли нужно добавить вручную Ñ " +"помощью команды smbpasswd и не забывать поддерживать их в актуальном " +"ÑоÑтоÑнии." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"ЕÑли Ñтот файл не Ñоздан, тогда нужно перенаÑтроить Samba (и, возможно, " +"клиентÑкие машины) на иÑпользование нешифрованных паролей." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Более Ð¿Ð¾Ð´Ñ€Ð¾Ð±Ð½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð´Ð¾Ñтупна в файле /usr/share/doc/samba-doc/" +"htmldocs/ENCRYPTION.html из пакета samba-doc." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "daemons" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Как нужно запуÑкать Samba?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Samba-демон smbd может запуÑкатьÑÑ ÐºÐ°Ðº обычный демон или из inetd. " +"РекомендуетÑÑ Ð¸Ñпользовать запуÑк в виде демона." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "ОÑтавшаÑÑÑ Ñ‡Ð°ÑÑ‚ÑŒ наÑтройки Samba предÑтавлÑет Ñобой вопроÑÑ‹, влиÑющие на " +#~ "параметры в /etc/samba/smb.conf. Этот файл иÑпользуетÑÑ Ð´Ð»Ñ Ð½Ð°Ñтройки " +#~ "программ Samba (nmbd и smbd). Ð’ текущем файле smb.conf еÑÑ‚ÑŒ Ñтрока " +#~ "'include' или параметр, ÑоÑтоÑщий из неÑкольких Ñтрок. При Ñтом " +#~ "автоматичеÑÐºÐ°Ñ Ð½Ð°Ñтройка может быть нарушена, и Ð´Ð»Ñ Ð²Ð¾ÑÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ " +#~ "работоÑпоÑобноÑти потребуетÑÑ Ð¾Ñ‚Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¸Ñ€Ð¾Ð²Ð°Ñ‚ÑŒ smb.conf вручную." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Укажите рабочую группу, к которой будет принадлежать Ñервер при опроÑе " +#~ "клиентами. Обратите внимание, что Ñтот параметр также определÑет Ð¸Ð¼Ñ " +#~ "домена, иÑпользуемое вмеÑте Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð¾Ð¼ security=domain." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Ð’Ñе поÑледние Windows-клиенты ÑвÑзываютÑÑ Ñ Ñерверами SMB Ñ " +#~ "иÑпользованием шифрованных паролей. ЕÑли нужно иÑпользовать нешифрованные " +#~ "пароли, тогда надо будет изменить параметр в рееÑтре Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Крайне рекомендуетÑÑ Ð²ÐºÐ»ÑŽÑ‡Ð¸Ñ‚ÑŒ Ñтот параметр. Ð’ Ñтом Ñлучае нужно " +#~ "убедитьÑÑ Ð² правильноÑти файла /etc/samba/smbpasswd и в том, что Ð´Ð»Ñ Ð²Ñех " +#~ "пользователей в нём уÑтановлены пароли Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ команды smbpasswd." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Более Ð¿Ð¾Ð´Ñ€Ð¾Ð±Ð½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð´Ð¾Ñтупна в файле /usr/share/doc/samba-doc/" +#~ "htmldocs/ENCRYPTION.html из пакета samba-doc." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Объединение СУБД паролей не поддерживаетÑÑ." + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "ÐÐ°Ñ‡Ð¸Ð½Ð°Ñ Ñ Ð²ÐµÑ€Ñии 3.0.23, в samba больше не поддерживаетÑÑ Ð¸Ñпользование " +#~ "неÑкольких СУБД в параметре \"passdb backend\". Похоже, что в текущем " +#~ "файле smb.conf еÑÑ‚ÑŒ Ñтот параметр, ÑоÑтоÑщий из неÑкольких ÑиÑтем " +#~ "ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð‘Ð” паролей. ÐÐ¾Ð²Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ samba не Ñможет работать Ñ Ñтим " +#~ "параметром. Его необходимо иÑправить." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "ПеремеÑтить /etc/samba/smbpasswd в /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Ð’ Samba 3.0 предÑтавлен новый, более полный Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ Ð±Ð°Ð·Ñ‹ данных SAM, " +#~ "замещающий файл /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Подтвердите автоматичеÑкую миграцию ÑущеÑтвующего файла smbpasswd в /var/" +#~ "lib/samba/passdb.tdb. Ðе выбирайте Ñтот вариант, еÑли вмеÑто него будет " +#~ "иÑпользоватьÑÑ Ð´Ñ€ÑƒÐ³Ð°Ñ Ð‘Ð” паролей (например, LDAP)." + +#~ msgid "daemons, inetd" +#~ msgstr "daemons, inetd" --- samba-3.3.0.orig/debian/po/nl.po +++ samba-3.3.0/debian/po/nl.po @@ -0,0 +1,304 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-12 21:30+0100\n" +"Last-Translator: Bart Cornelis \n" +"Language-Team: debian-l10n-dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Dutch\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "smb.conf aanpassen om de WINS instellingen van DHCP te gebruiken?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Indien uw computer zijn ip-adresinformatie van een DHCP-server op het " +"netwerk haalt, voorziet deze mogelijk ook informatie betreffende de op het " +"netwerk aanwezige WINS-servers (\"NetBIOS naamservers\").\" Dit vereist een " +"verandering aan uw smb.conf bestand, opdat de door DHCP doorgegeven WINS " +"instellingen automatisch gelezen worden van /etc/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Het pakket dhcp3-client dient geïnstalleerd te zijn om van deze optie " +"gebruik te kunnen maken." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "smb.conf automatisch instellen?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"De resterende Samba-configuratievragen hebben betrekking op parameters in /" +"etc/samba/smb.conf, het configuratiebestand dat gebruikt wordt voor de Samba " +"programma's (nmbd en smbd). Uw huidige smb.conf bevat een 'include'-regel of " +"een optie die meerdere regels beslaat, het kan zijn dat dit het automatische " +"configuratieproces in verwarring brengt. In dat geval dient u uw smb.conf " +"handmatig aan te passen om samba terug werkend te krijgen." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Indien u geen gebruik maakt van deze optie, dient u alle configuratie " +"instellingen zelf te doen, en zult u geen voordeel halen uit de periodieke " +"configuratie-verbeteringen." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Werkgroep/Domeinnaam:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Van welke werkgroep moet deze server deel lijken uit te maken, wanneer " +"clients hierom vragen? Merk op dat deze parameter ook de domeinnaam bepaald " +"die wordt gebruikt voor de security=domain instelling." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Wachtwoordversleuteling gebruiken?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Alle recente windows-clients maken gebruik van versleutelde wachtwoorden bij " +"de communicatie met SMB-servers. Als u 'onversleutelde tekst'-wachtwoorden " +"wilt gebruiken dient u een parameter te veranderen in het Windows register." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Het activeren van deze optie is ten sterkste aangeraden. Indien u hiervoor " +"kiest dient u er wel voor te zorgen dat u een geldig '/etc/samba/smbpasswd'- " +"bestand heeft en dat u de wachtwoorden daar voor elke gebruiker met behulp " +"van het commando 'smbpasswd' instelt." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Samba-wachtwoorddatabase /var/lib/samba/passdb.tdb aanmaken?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Om compatibel te zijn met de standaardwaarden van de meeste Windows-versies " +"dient Samba ingesteld te zijn om gebruik te maken van versleutelde " +"wachtwoorden. Dit vereist dat gebruikerswachtwoorden opgeslagen worden in " +"een apart bestand (niet /etc/passwd). Dit bestand kan automatisch aangemaakt " +"worden, de wachtwoorden zelf dient u echter handmatig aan te maken (en in de " +"toekomst bij te houden) via het commando 'smbpasswd'." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Als u dit bestand niet automatisch laat aanmaken dient de samba-configuratie " +"(en waarschijnlijk die van uw client-machines) aangepast te worden om " +"'onversleutelde tekst'-wachtwoorden te gebruiken." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Meer informatie vindt u in /usr/share/doc/samba-doc/htmldocs/Samba3-" +"Developers-Guide/pwencrypt.html uit het pakket 'samba-doc'." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "achtergronddiensten" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Hoe wilt u Samba draaien?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"De Samba-achtergronddienst smbd kan als een normale achtergronddienst of via " +"inetd draaien. Als een achtergronddienst is de aangeraden aanpak." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "De resterende Samba-configuratievragen hebben betrekking op parameters " +#~ "in /etc/samba/smb.conf, het configuratiebestand dat gebruikt wordt voor " +#~ "de Samba programma's (nmbd en smbd). Uw huidige smb.conf bevat een " +#~ "'include'-regel of een optie die meerdere regels beslaat, het kan zijn " +#~ "dat dit het automatische configuratieproces in verwarring brengt. In dat " +#~ "geval dient u uw smb.conf handmatig aan te passen om samba terug werkend " +#~ "te krijgen." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Van welke werkgroep moet deze server deel lijken uit te maken, wanneer " +#~ "clients hierom vragen? Merk op dat deze parameter ook de domeinnaam " +#~ "bepaald die wordt gebruikt voor de security=domain instelling." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Alle recente windows-clients maken gebruik van versleutelde wachtwoorden " +#~ "bij de communicatie met SMB-servers. Als u 'onversleutelde tekst'-" +#~ "wachtwoorden wilt gebruiken dient u een parameter te veranderen in het " +#~ "Windows register." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Het activeren van deze optie is ten sterkste aangeraden. Indien u " +#~ "hiervoor kiest dient u er wel voor te zorgen dat u een geldig '/etc/samba/" +#~ "smbpasswd'- bestand heeft en dat u de wachtwoorden daar voor elke " +#~ "gebruiker met behulp van het commando 'smbpasswd' instelt." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Meer informatie vindt u in /usr/share/doc/samba-doc/htmldocs/ENCRYPTION." +#~ "html uit het pakket 'samba-doc'." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Aaneenschakelen van passdb-backends wordt niet ondersteund" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Startend vanaf versie 3.0.23 ondersteund samba niet langer het " +#~ "aaneenschakelen van meerdere backends voor de 'passdb backend'-parameter. " +#~ "Het lijkt erop dat uw 'smb.conf'-bestand een 'passdb backend'-parameter " +#~ "bevat die bestaat uit een lijst van backends. De nieuwe samba-versie zal " +#~ "pas juist werken eens u dit gecorrigeerd heeft." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "/etc/samba/smbpasswd verplaatsen naar /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 introduceerde een meer complete SAM-database-interface die het /" +#~ "etc/samba/smbpasswd bestand vervangt." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Bent u zeker dat u het bestaande 'smbpasswd'-bestand naar /var/lib/samba/" +#~ "passdb.tdb wilt migreren? Als u een ander pdb-backend gebruikt (bv. LDAP) " +#~ "dient u hier te weigeren." --- samba-3.3.0.orig/debian/po/eo.po +++ samba-3.3.0/debian/po/eo.po @@ -0,0 +1,287 @@ +# Copyright (C) 2007 Software in the Public Interest +# This file is distributed under the same license as the samba package. +# Serge Leblanc , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-04-04 17:14+0200\n" +"Last-Translator: Serge Leblanc \n" +"Language-Team: Esperanto \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "ÅœanÄu la 'smb.conf'-dosieron por uzi la 'WINS'-argordojn el 'DHCP'?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Se via komputilo akiras sian 'IP'-adreson de reta 'DHCP'-servilo, tiu 'DHCP'-" +"servilo povos provizi informojn pri 'WINS'-serviloj (\"NetBIOS nomservilo\") " +"rete ĉeestantaj. Tio postulas ÅanÄojn en via 'smb.conf'-dosiero por ke la " +"'WINS'-agordoj provizitaj de 'DHCP'-servilo estu ligitaj en la '/etc/samba/" +"dhcp.conf'-dosiero." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"La 'dhcp3'-klienta pako dovos esti instalita por profiti ĉi tiujn trajtojn." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Akomodu mem la 'smb.conf'-dosieron?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"La sekva 'Samba'-agordado petas demandojn koncernantajn la parametrojn de /" +"etc/samba/smb.conf'-dosiero uzita por agordi la 'Samba'-programojn (nmbd kaj " +"smbd). Via kutima 'smb.conf'-dosiero enhavas 'include'-linion aÅ­ komandon " +"kiu multlinie sterniÄas. Tio povas igi konfuza la memakomodan procezon kaj " +"postuli de vi mane agordi vian 'smb.conf'-dosieron. Do oni konsilas mane " +"administri la enhavon de la dosiero." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Se vi ne elektas tiun eblon, vi devos mem administri agordajn ÅanÄojn, kaj " +"vi ne povos periode profiti agordajn plibonigojn." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Laborgrupo/Domajnnomo:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Bonvolu indiki la laborgrupon, kies klientoj devas trovi la servilon. Notu, " +"tiu parametro ankaÅ­ kontrolas la uzitan domajnnomon de la parametro " +"\"security=domain\"." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Uzu pasvortan ĉifradon?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Ĉiuj novaj 'Windows'-klientoj komunikas per 'SMB'-serviloj uzantaj ĉifritajn " +"pasvortojn. Se vi volas uzi malĉifrajn pasvortojn vi bezonos ÅanÄi agordon " +"en via 'Windows'-rikordkampo." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Ege rekomendita tiu eblo estas. Se vi elektas Äin, kontrolu ĉu vi havas " +"validan '/etc/samba/smbpasswd'-dosieron, en kiu vi enmetis pasvortojn por " +"ĉiu uzanto kiu uzas la 'smbpasswd'-ordonon." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Ĉu krei pasvortan 'samba'-datumbazon, /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Por kongrui kun implicita regulo el plimulta 'Windows'-eldono, 'Samba'-" +"programo devas esti agordita por uzi ĉifrajn pasvortojn. Tio postulas ke " +"uzant-pasvortoj estu memortenitaj en apartiga dosiero de '/etc/passwd'. Tiu " +"dosiero povas esti aÅ­tomate kreita, sed oni devas mane aldoni la pasvortojn " +"plenigante 'smbpasswd'-programon kaj Äisdatigante ilin." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Se vi ne volas nun krei Äin, vi devos agordi 'Samba'-programon (kaj verÅajne " +"via klientan maÅinon) por uzi plattekstaj pasvortoj." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Vidu la '/usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +"html'-dosieron de 'samba-doc'-pako por pliaj informoj." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "demonoj" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Kiel vi volas lanĉi la programon 'Samba'?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"La 'Samba'-demono 'smbd' povas ruli tiel kutima demono aÅ­ per la 'inetd'-" +"programo. Oni konsilas demone lanĉi la 'Samba'-programon." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "La sekva 'Samba'-agordado petas demandojn koncernantajn la parametrojn " +#~ "de /etc/samba/smb.conf'-dosiero uzita por agordi la 'Samba'-programojn " +#~ "(nmbd kaj smbd). Via kutima 'smb.conf'-dosiero enhavas 'include'-linion " +#~ "aÅ­ komandon kiu multlinie sterniÄas. Tio povas igi konfuza la memakomodan " +#~ "procezon kaj postuli de vi mane agordi vian 'smb.conf'-dosieron. Do oni " +#~ "konsilas mane administri la enhavon de la dosiero." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Bonvolu indiki la laborgrupon, kies klientoj devas trovi la servilon. " +#~ "Notu, tiu parametro ankaÅ­ kontrolas la uzitan domajnnomon de la parametro " +#~ "\"security=domain\"." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Ĉiuj novaj 'Windows'-klientoj komunikas per 'SMB'-serviloj uzantaj " +#~ "ĉifritajn pasvortojn. Se vi volas uzi malĉifrajn pasvortojn vi bezonos " +#~ "ÅanÄi agordon en via 'Windows'-rikordkampo." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Ege rekomendita tiu eblo estas. Se vi elektas Äin, kontrolu ĉu vi havas " +#~ "validan '/etc/samba/smbpasswd'-dosieron, en kiu vi enmetis pasvortojn por " +#~ "ĉiu uzanto kiu uzas la 'smbpasswd'-ordonon." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Vidu la '/usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html'-dosieron de " +#~ "'samba-doc'-pako por pliaj informoj." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Multmetodo sinsekvo mastrumanta la pasvortojn ne estas administrita" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Ekde la '3.0.23'-eldono, la 'samba'-programo ne plu traktas la sinsekvan " +#~ "multan metodon per la parametro \"passdb backend\". VerÅajne via 'smb." +#~ "conf'-dosiero enhavas tian 'passdb backend'-parametron. La nova 'samba'-" +#~ "versio ne funkcios Äis kiam tiu agordo ne estos ÅanÄita." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "Movu la '/etc/samba/smbpasswd'-dosieron al '/var/lib/samba/passdb.tdb'?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "'Samba 3.0'-pragramo enigas plian kompletan 'SAM'-datumbazan interfacon, " +#~ "anstataÅ­antan la '/etc/samba/smbpasswd'-dosieron." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Bonvolu konfirmi ĉu vi volas anstataÅ­igi la nunan 'smbpasswd'-dosieron " +#~ "per memmigrita '/var/lib/samba/passdb.tdb'-dosiero. Neniam elekti ĉi tiun " +#~ "eblon se vi planas anstataÅ­e uzi alian 'pdb'-internan interfacon (ekz. " +#~ "LDAP)." --- samba-3.3.0.orig/debian/po/bg.po +++ samba-3.3.0/debian/po/bg.po @@ -0,0 +1,277 @@ +# translation of bg.po to Bulgarian +# +# Damyan Ivanov , 2006, 2007. +msgid "" +msgstr "" +"Project-Id-Version: samba_3.0.23c-1_bg\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-12 22:58+0200\n" +"Last-Translator: Damyan Ivanov \n" +"Language-Team: Bulgarian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Да Ñе промени ли smb.conf да взима наÑтройките за WINS от DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Ðко компютърът получава Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° мрежовите наÑтройки от DHCP-Ñървър, " +"този метод може да Ñе използва и за получаване на Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° наличните " +"WINS-Ñървъри (Ñървъри за имена NetBIOS). За целта е необходимо да Ñе промени " +"файлът Ñ Ð½Ð°Ñтройки smb.conf, така че WINS-наÑтройките да Ñе взимат от /etc/" +"samba.dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "Тази наÑтройки изиÑква инÑталирането на пакета dhcp3-client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Ðвтоматична наÑтройка на smb.conf?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"ОÑтаналата чаÑÑ‚ от наÑтройката на Samba изиÑква промени на параметри в smb." +"conf (файлът Ñ Ð½Ð°Ñтройки за smbd и nmbd). Ð’ момента smb.conf Ñъдържа " +"директива „include“, коÑто може да обърка процеÑа на автоматична наÑтройка. " +"Ðко това Ñе Ñлучи ще Ñе наложи ръчно да поправите smb.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Ðко не изберете тази наÑтройка, нÑма да можете да Ñе възползвате от " +"автоматичните промени на файла Ñ Ð½Ð°Ñтройки при обновÑване на пакета." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Работна група/домейн:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Въведете името на работната група, от коÑто ще бъде чаÑÑ‚ компютъра. Този " +"параметър контролира и името на домейна, което ще Ñе използва при " +"наÑтройката „security=domain“." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Шифриране на паролите?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Ð’Ñички Ñъвременни верÑии на Windows използват шифрирани пароли за връзка ÑÑŠÑ " +"SMB-Ñървъри. Използването на пароли без шифриране е възможно Ñамо Ñлед " +"промени в региÑтъра." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "Използването на шифрирани пароли е Ñилно препоръчително." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Създаване на базата данни Ñ Ð¿Ð°Ñ€Ð¾Ð»Ð¸, /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"За ÑъвмеÑтимоÑÑ‚ Ñ Ð¿Ð¾Ð²ÐµÑ‡ÐµÑ‚Ð¾ верÑии на Windows, Samba Ñ‚Ñ€Ñбва да използва " +"шифрирани пароли. Това изиÑква паролите да Ñе ÑъхранÑват във файл, отделен " +"от /etc/passwd. Този файл може да бъде Ñъздаден автоматично, но " +"потребителите и паролите Ñ‚Ñ€Ñбва да Ñе добавÑÑ‚ ръчно чрез командата smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Ðко не Ñъздадете този файл, Ñ‚Ñ€Ñбва да наÑтроите Samba (а вероÑтно и " +"компютрите Ñ Windows) да не използват шифрирани пароли." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð²Ð¸Ð¶Ñ‚Ðµ /usr/share/doc/samba-doc/htmldocs/Samba3-" +"Developers-Guide/pwencrypt.html." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "фонов процеÑ" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "при нужда" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Как да Ñе Ñтартира Samba?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"ОÑновниÑÑ‚ Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð½Ð° Samba, smbd, може да бъде изпълнÑван при нужда или като " +"фонов Ð¿Ñ€Ð¾Ñ†ÐµÑ (ÑÑŠÑ Ð·Ð°Ñ€ÐµÐ¶Ð´Ð°Ð½ÐµÑ‚Ð¾ на операционната ÑиÑтема). ПрепоръчителниÑÑ‚ " +"начин за изпълнение е като фонов процеÑ." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "ОÑтаналата чаÑÑ‚ от наÑтройката на Samba изиÑква промени на параметри в " +#~ "smb.conf (файлът Ñ Ð½Ð°Ñтройки за smbd и nmbd). Ð’ момента smb.conf Ñъдържа " +#~ "директива „include“, коÑто може да обърка процеÑа на автоматична " +#~ "наÑтройка. Ðко това Ñе Ñлучи ще Ñе наложи ръчно да поправите smb.conf." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Въведете името на работната група, от коÑто ще бъде чаÑÑ‚ компютъра. Този " +#~ "параметър контролира и името на домейна, което ще Ñе използва при " +#~ "наÑтройката „security=domain“." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Ð’Ñички Ñъвременни верÑии на Windows използват шифрирани пароли за връзка " +#~ "ÑÑŠÑ SMB-Ñървъри. Използването на пароли без шифриране е възможно Ñамо " +#~ "Ñлед промени в региÑтъра." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "Използването на шифрирани пароли е Ñилно препоръчително." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð²Ð¸Ð¶Ñ‚Ðµ /usr/share/doc/samba-doc/htmldocs/ENCRYPTION." +#~ "html." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "" +#~ "Ðовата верÑÐ¸Ñ Ð½Ð° samba не поддържа работа Ñ Ð½Ñколко бази данни Ñ Ð¿Ð°Ñ€Ð¾Ð»Ð¸" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "От верÑÐ¸Ñ 3.0.23 нататък, samba не поддържа работа Ñ Ð½Ñколко бази данни Ñ " +#~ "пароли в параметъра „passdb backend“. Изглежда, че във файла Ñ Ð½Ð°Ñтройки " +#~ "„smb.conf“ този параметър Ñъдържа ÑпиÑък Ñ Ð½Ñколко бази данни Ñ Ð¿Ð°Ñ€Ð¾Ð»Ð¸. " +#~ "Ðовата верÑÐ¸Ñ Ð½Ð° samba нÑма да работи докато не коригирате това." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "Да Ñе премеÑти ли /etc/samba/smbpasswd във /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 въвежда по-пълна база Ñ Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ð¸, коÑто прави излишен /etc/" +#~ "samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Потвърдете дали желаете ÑъщеÑтвуващиÑÑ‚ /etc/samba/smbpasswd да бъде " +#~ "мигриран автоматично към /var/lib/samba/passdb.tdb. Ðе избирайте тази " +#~ "наÑтройка ако планирате да използвате друг начин на удоÑтоверÑване " +#~ "(например LDAP)." --- samba-3.3.0.orig/debian/po/nb.po +++ samba-3.3.0/debian/po/nb.po @@ -0,0 +1,296 @@ +# translation of nb.po_[K2Raha].po to Norwegian BokmÃ¥l +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# Bjørn Steensrud , 2006. +msgid "" +msgstr "" +"Project-Id-Version: samba_debian_po_nb\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-12 21:44+0100\n" +"Last-Translator: Bjørn Steensrud \n" +"Language-Team: Norwegian BokmÃ¥l \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Skal smb.conf endres til Ã¥ bruke WINS-innstillinger fra DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Hvis din datamaskin fÃ¥r informasjon om IP-adressen fra en DHCP-tjener pÃ¥ " +"nettet, sÃ¥ kan DHCP-tjeneren ogsÃ¥ skaffe informasjon om WINS-tjenere " +"(«NetBIOS navnetjenere») pÃ¥ nettet. For Ã¥ bruke dette mÃ¥ smb.conf-fila endres " +"slik at WINS-innstillinger fra DHCP automatisk leses fra /etc/samba/dhcp." +"conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "For Ã¥ utnytte denne muligheten mÃ¥ pakka dhcp3-client være installert." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Sette opp smb.conf automatisk?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Resten av Samba-oppsettet dreier seg om spørsmÃ¥l som pÃ¥virker parametre i /" +"etc/samba/smb.conf, som er oppsettsfila for Samba-programmene (nmbd og " +"smbd). smb.conf-fila inneholder nÃ¥ en «include»-linje eller en parameter som " +"gÃ¥r over flere linjer, som kanskje kan forvirre den automatiske " +"oppsettsprosessen slik at du mÃ¥ endre smb.conf for hÃ¥nd for Ã¥ fÃ¥ den til Ã¥ " +"virke igjen." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Hvis du ikke velger automatisk oppsett, mÃ¥ du hÃ¥ndtere oppsettsendringer " +"selv, og kan ikke dra nytte av periodiske forbedringer i oppsettet." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Arbeidsgruppe/domenenavn:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Oppgi hvilken arbeidsgruppe denne tjeneren skal vise nÃ¥r klienter spør den. " +"Merk at denne parameteren ogsÃ¥ styrer domenenavnet som brukes med " +"innstillingen security=domain." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Bruke passord-kryptering?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Alle nyere Windows-klienter bruker krypterte passord nÃ¥r de kommuniserer med " +"SMB-tjenere. Hvis du vil bruke passord i klartekst mÃ¥ du endre en parameter " +"i Windows registry pÃ¥ klientene." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Det anbefales sterkt Ã¥ bruke krypterte passord. Gjør du det, sÃ¥ se etter at " +"du har en gyldig fil i /etc/samba/smbpasswd og at du lagrer passord der for " +"hver bruker med kommandoen smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Opprette samba passord-database, /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Samba mÃ¥ settes opp til Ã¥ bruke krypterte passord for Ã¥ være kompatibel med " +"de fleste Windows-versjoner. Dette krever at brukerpassord mÃ¥ lagres i en " +"egen fil unna /etc/passwd. Denne fila kan opprettes automatisk, men " +"passordene mÃ¥ legges inn manuelt med smbpasswd og holdes oppdatert i " +"fremtiden." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Hvis du ikke oppretter den, mÃ¥ du endre oppsettet pÃ¥ Samba (og trolig ogsÃ¥ " +"klientmaskinene) til Ã¥ bruke klartekst-passord." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Mer detaljer finnes i fila /usr/share/doc/samba-doc/htmldocs/Samba3-" +"Developers-Guide/pwencrypt.html fra pakka samba-doc." + +# Using same translation as in debian.edu/Skolelinux. A bit controversial. +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "nisser" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Hvordan vil du at Samba skal kjøres?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Samba-prosessen smbd kan kjøres som en normal nisse eller fra inetd. Det " +"anbefales Ã¥ kjøre som en nisse." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Resten av Samba-oppsettet dreier seg om spørsmÃ¥l som pÃ¥virker parametre " +#~ "i /etc/samba/smb.conf, som er oppsettsfila for Samba-programmene (nmbd og " +#~ "smbd). smb.conf-fila inneholder nÃ¥ en «include»-linje eller en parameter " +#~ "som gÃ¥r over flere linjer, som kanskje kan forvirre den automatiske " +#~ "oppsettsprosessen slik at du mÃ¥ endre smb.conf for hÃ¥nd for Ã¥ fÃ¥ den til " +#~ "Ã¥ virke igjen." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Oppgi hvilken arbeidsgruppe denne tjeneren skal vise nÃ¥r klienter spør " +#~ "den. Merk at denne parameteren ogsÃ¥ styrer domenenavnet som brukes med " +#~ "innstillingen security=domain." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Alle nyere Windows-klienter bruker krypterte passord nÃ¥r de kommuniserer " +#~ "med SMB-tjenere. Hvis du vil bruke passord i klartekst mÃ¥ du endre en " +#~ "parameter i Windows registry pÃ¥ klientene." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Det anbefales sterkt Ã¥ bruke krypterte passord. Gjør du det, sÃ¥ se etter " +#~ "at du har en gyldig fil i /etc/samba/smbpasswd og at du lagrer passord " +#~ "der for hver bruker med kommandoen smbpasswd." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Mer detaljer finnes i fila /usr/share/doc/samba-doc/htmldocs/ENCRYPTION." +#~ "html fra pakka samba-doc." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Det er ikke støtte for Ã¥ kjede sammen passdb-motorer" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Fra og med versjon 3.0.23 støtter ikke samba lenger muligheten for Ã¥ " +#~ "koble sammen flere motorer i parameteren «passdb backend». Det ser ut til " +#~ "at fila smb.conf pÃ¥ dette systemet inneholder en passdb backend-parameter " +#~ "som bestÃ¥r av en liste over passdb -motorer. Den nye samba-versjonen vil " +#~ "ikke virke før dette er rettet." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Flytte /etc/samba/smbpasswd til /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "I Samba 3.0 ble det innført et mer utfyllende grensesnitt til SAM-" +#~ "databasen som erstatter fila /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Bekreft om du vil at den eksisterende smbpasswd-fila skal automatisk " +#~ "omgjøres til /var/lib/samba/passdb.tdb. Ikke velg dette om du har til " +#~ "hensikt Ã¥ bruke en annen pdb-motor i stedet (f.eks. LDAP)." --- samba-3.3.0.orig/debian/po/sl.po +++ samba-3.3.0/debian/po/sl.po @@ -0,0 +1,301 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: Samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-13 08:06+0100\n" +"Last-Translator: Matej KovaÄiÄ \n" +"Language-Team: Sl \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Slovenian\n" +"X-Poedit-Country: SLOVENIA\n" +"X-Poedit-SourceCharset: utf-8\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"Spremeni smb.conf za uporabo WINS nastavitev pridobljenih s strani DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"ÄŒe vaÅ¡ raÄunalnik pridobiva informacije o IP naslovu prek DHCP strežnika, " +"lahko ta strežnik ponuja tudi informacije o WINS strežnikih (\"NetBIOS " +"imenski strežniki\"), ki so prisotni v omrežju. To zahteva spremembo v " +"datoteki smb.conf ki bo omogoÄila samodejno branje nastavitev WINS iz /etc/" +"samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "Za uporabo teh možnosti mora biti nameÅ¡Äen paket dhcp3-client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Samodejna nastavitev smb.conf?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Ostanek nastavitev Sambe se nanaÅ¡a na vpraÅ¡anja, ki vplivajo na parametre v /" +"etc/samba/smb.conf. Ta datoteka se uporablja za konfiguracijo Samba " +"programov (nmbd in smbd). VaÅ¡ trenutni smb.conf vkljuÄuje vrstico 'include' " +"ali možnost, ki se razteza Äez veÄ vrstic konfiguracijske datoteke in lahko " +"povzroÄi zmedo v procesu avtomatskih nastavitev. Za ponovno vzpostavitev " +"delovanja bo potrebno roÄno urejanje konfiguracijske datoteke z nastavitvami " +"smb.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"ÄŒe ne izberete te možnosti, boste morali vse spremembe nastavitev opraviti " +"sami in ne boste mogli uporabljati periodiÄnih samodejnih izboljÅ¡av " +"nastavitev." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Ime delovne skupine/domene:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Prosimo, nastavite ime delovne skupine, v kateri se bo pojavil ta strežnik " +"ko ga bodo klienti iskali. Ta parameter doloÄa tudi ime domene, ki je " +"uporabljeno v nastavitvah security=domain." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Uporaba Å¡ifriranja gesel?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Vsi novejÅ¡i Windows odjemalci komunicirajo s SMB strežniki z uporabo " +"Å¡ifriranih gesel. ÄŒe želite uporabiti neÅ¡ifrirana gesla boste morali " +"spremeniti ustrezen parameter v Windows registru." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"MoÄno priporoÄamo vklop te možnosti. ÄŒe jo boste vkljuÄili, preverite da " +"imate veljavno datoteko /etc/samba/smbpasswd in da ste tam nastavili gesla " +"za vsakega uporabnika s pomoÄjo ukaza smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Ali naj ustvarim bazo samba gesel, /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"ÄŒe želite doseÄi kompatibilnost z veÄino razliÄic operacijskega sistema " +"Windows, mora biti Samba nastavljena tako, da uporablja Å¡ifrirana gesla. " +"Taka uporabniÅ¡ka gesla morajo biti shranjena v posebni datoteki in ne v /etc/" +"passwd. Ta datoteko je mogoÄe ustvariti samodejno, gesla pa je treba " +"dodajati roÄno s pomoÄjo programa smbpasswd. Za ažurnost gesel morate tudi v " +"prihodnje skrbeti roÄno." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"ÄŒe je ne boste ustvarili, boste morali nastaviti Sambo (in verjetno tudi " +"odjemalce) za uporabo neÅ¡ifriranih gesel." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Za podrobnejÅ¡e informacije si oglejte /usr/share/doc/samba-doc/htmldocs/" +"ENCRYPTION.html iz paketa samba-doc." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "daemoni" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Kako želite poganjati Sambo?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Samba demon smbd lahko teÄe kot obiÄajen demon ali iz inetd. PriporoÄljivo " +"je poganjanje sambe kot demon." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Ostanek nastavitev Sambe se nanaÅ¡a na vpraÅ¡anja, ki vplivajo na parametre " +#~ "v /etc/samba/smb.conf. Ta datoteka se uporablja za konfiguracijo Samba " +#~ "programov (nmbd in smbd). VaÅ¡ trenutni smb.conf vkljuÄuje vrstico " +#~ "'include' ali možnost, ki se razteza Äez veÄ vrstic konfiguracijske " +#~ "datoteke in lahko povzroÄi zmedo v procesu avtomatskih nastavitev. Za " +#~ "ponovno vzpostavitev delovanja bo potrebno roÄno urejanje konfiguracijske " +#~ "datoteke z nastavitvami smb.conf." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Prosimo, nastavite ime delovne skupine, v kateri se bo pojavil ta " +#~ "strežnik ko ga bodo klienti iskali. Ta parameter doloÄa tudi ime domene, " +#~ "ki je uporabljeno v nastavitvah security=domain." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Vsi novejÅ¡i Windows odjemalci komunicirajo s SMB strežniki z uporabo " +#~ "Å¡ifriranih gesel. ÄŒe želite uporabiti neÅ¡ifrirana gesla boste morali " +#~ "spremeniti ustrezen parameter v Windows registru." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "MoÄno priporoÄamo vklop te možnosti. ÄŒe jo boste vkljuÄili, preverite da " +#~ "imate veljavno datoteko /etc/samba/smbpasswd in da ste tam nastavili " +#~ "gesla za vsakega uporabnika s pomoÄjo ukaza smbpasswd." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Za podrobnejÅ¡e informacije si oglejte /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html iz paketa samba-doc." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Veriženje (chaining) passdb hrbtenic ni podprto." + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Od razliÄice 3.0.23 samba ne podpira veÄ veriženja (chaining) veÄih " +#~ "hrbtenic v \"passdb backend\" parametru. Kaže, da vaÅ¡a konfiguracijska " +#~ "datoteka smb.conf vsebuje passdb hrbteniÄni parameter, ki vsebuje seznam " +#~ "hrbtenic. Nova razliÄica sambe ne bo delovala dokler tega ne popravite." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Premaknem /etc/samba/smbpasswd v /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 uvaja popolnejÅ¡i vmesnik do SAM baze ki nadomeÅ¡Äa datoteko /etc/" +#~ "samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Prosimo potrdite Äe želite avtomatsko prenesti obstojeÄo datoteko " +#~ "smbdpasswd v var/lib/samba/passdb.tdb. Te možnosti ne izberite Äe boste " +#~ "namesto tega uporabljali kakÅ¡no drugo pdb hrbtenico (n. pr. LDAP)." --- samba-3.3.0.orig/debian/po/mr.po +++ samba-3.3.0/debian/po/mr.po @@ -0,0 +1,288 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2006-08-15 07:59-0500\n" +"Last-Translator: Priti Patil \n" +"Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India " +"\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"डीà¤à¤šà¤¸à¥€à¤ªà¥€(डायनमिक होसà¥à¤Ÿ कानफिगà¥à¤°à¥‡à¤¶à¤¨ पà¥à¤°à¥‹à¤Ÿà¥‹à¤•à¥‰à¤²) मधील डबà¥à¤²à¥à¤¯à¥à¤†à¤¯à¤à¤¨à¤à¤¸(विनà¥à¤¸) निरà¥à¤§à¤¾à¤°à¤£à¤¾à¤‚चा " +"उपयोग करणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ smb.conf मधà¥à¤¯à¥‡ बदल करायचा का?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"संगणकाचà¥à¤¯à¤¾ जाळà¥à¤¯à¤¾à¤µà¤°,तà¥à¤®à¤šà¥à¤¯à¤¾ संगणकाला,डीà¤à¤šà¤¸à¥€à¤ªà¥€ परिसेवकामधून आयपी पतà¥à¤¤à¤¾ मिळाला असेल,तर " +"तो डीà¤à¤šà¤¸à¥€à¤ªà¥€ परिसेवक,संगणकाचà¥à¤¯à¤¾ जाळà¥à¤¯à¤¾à¤µà¤° असलेलà¥à¤¯à¤¾ डबà¥à¤²à¥à¤¯à¥‚आयà¤à¤¨à¤à¤¸ परिसेवकांबदà¥à¤¦à¤²à¤¹à¥€ (\"नेटबॉयस" +"( à¤à¤¨à¤ˆà¤Ÿà¥€ बीआयओà¤à¤¸) नांवाचा परिसेवक\") माहिती देऊ शकेल. यासाठीच तà¥à¤®à¤šà¥à¤¯à¤¾ smb.conf " +"संचिकेत बदल करणे आवशà¥à¤¯à¤• आहे, तसे केलà¥à¤¯à¤¾à¤¨à¥‡ डीà¤à¤šà¤¸à¥€à¤ªà¥€à¤¨à¥‡ पà¥à¤°à¤µà¤¿à¤²à¥‡à¤²à¥€ डबà¥à¤²à¥à¤¯à¥‚आयà¤à¤¨à¤à¤¸ निरà¥à¤§à¤¾à¤°à¤£à¥‡ /ईटीसी/" +"सांबा/डीà¤à¤šà¤¸à¥€à¤ªà¥€ सीओà¤à¤¨à¤à¤« (/etc/samba/dhcp.conf./) मधून आपोआप वाचली जाऊ शकतात." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"या विशेष लकà¥à¤·à¤£à¤¾à¤šà¤¾ फायदा घेणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€,डीà¤à¤šà¤¸à¥€à¤ªà¥€ ३ गà¥à¤°à¤¾à¤¹à¤• पॅकेज अधिषà¥à¤ à¤¾à¤ªà¤¿à¤¤ केले गेलेच पाहिजे. " + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "à¤à¤¸à¤à¤®à¤¬à¥€à¥¤à¤¸à¥€à¤“à¤à¤¨à¤à¤« smb.conf आपोआप संरचित करायचे का? " + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"सांबाची बाकीची संरचना,सांबा आजà¥à¤žà¤¾à¤µà¤²à¥€à¤šà¥€ (à¤à¤¨à¤à¤®à¤¬à¥€à¤¡à¥€ व à¤à¤¸à¤à¤®à¤¬à¥€à¤¡à¥€) संरचना करणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ " +"वापरलà¥à¤¯à¤¾ जाणाऱà¥à¤¯à¤¾ etc/samba/smb.conf /ईटीसी/सांबा/à¤à¤¸à¤à¤®à¤¬à¥€.सीओà¤à¤¨à¤à¤« या संचिकेमधील " +"चलितमूलà¥à¤¯à¤¾à¤‚वर परिणाम करणाऱà¥à¤¯à¤¾ पà¥à¤°à¤¶à¥à¤¨à¤¾à¤‚बाबत आहे. तà¥à¤®à¤šà¥à¤¯à¤¾ सधà¥à¤¯à¤¾à¤šà¥à¤¯à¤¾ à¤à¤¸à¤à¤®à¤¬à¥€. सीओà¤à¤¨à¤à¤« smb." +"conf मधà¥à¤¯à¥‡,'अंतरà¥à¤­à¤¾à¤µ' ओळ किंवा अनेक ओळी असलेला à¤à¤• परà¥à¤¯à¤¾à¤¯ आहे. व तो सà¥à¤µà¤¯à¤‚चलित संरचना " +"पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¥‡à¤¤ गोंधळ करू शकतो आणि तà¥à¤¯à¤¾à¤®à¥à¤³à¥‡ तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ तà¥à¤®à¤šà¥€ à¤à¤¸à¤à¤®à¤¬à¥€.सीओà¤à¤¨à¤à¤«,smb.conf,पà¥à¤¨à¥à¤¹à¤¾ " +"कारà¥à¤¯à¤•à¤¾à¤°à¥€ होणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ सà¥à¤µà¤¤à¤ƒà¤š संपादित करावी लागेल." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"तà¥à¤®à¥à¤¹à¥€ हा परà¥à¤¯à¤¾à¤¯ निवडला नाहीत तर संरचनेतले बदल तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾à¤š हाताळावे लागतील व तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ " +"आवरà¥à¤¤à¥€ संरचना गà¥à¤£à¤¸à¤‚वरà¥à¤§à¤¨à¤¾à¤šà¤¾ चा लाभ घेता येणार नाही." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "कारà¥à¤¯à¤—ट/पà¥à¤°à¤•à¥à¤·à¥‡à¤¤à¥à¤°à¤¾à¤šà¥‡ नाव:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"गà¥à¤°à¤¾à¤¹à¤•à¤¾à¤‚नी पृचà¥à¤›à¤¾ केलà¥à¤¯à¤¾à¤µà¤° हा परिसेवक कोणतà¥à¤¯à¤¾ कारà¥à¤¯à¤—टात दिसायला हवा याचा नेमका उलà¥à¤²à¥‡à¤– " +"करा. लकà¥à¤·à¤¾à¤¤ ठेवा की हेच चलितमूलà¥à¤¯ सà¥à¤°à¤•à¥à¤·à¤¾-पà¥à¤°à¤•à¥à¤·à¥‡à¤¤à¥à¤° निरà¥à¤§à¤¾à¤°à¤£ बरोबर वापरले असता " +"पà¥à¤°à¤•à¥à¤·à¥‡à¤¤à¥à¤°à¤¨à¤¾à¤®à¤¹à¥€ नियंतà¥à¤°à¤¿à¤¤ करते." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "कूटलिखित परवलीचा शबà¥à¤¦ वापरावा का?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"विंडोजचे सरà¥à¤µ गà¥à¤°à¤¾à¤¹à¤• कूटलिखित परवलीचे शबà¥à¤¦ वापरà¥à¤¨ à¤à¤¸à¤à¤®à¤¬à¥€ परिसेवकांशी संवाद साधतात. " +"तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ सà¥à¤ªà¤·à¥à¤Ÿ परवलीचे शबà¥à¤¦ वापरायचे असतील तर तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ तà¥à¤®à¤šà¥à¤¯à¤¾ विंडोजमधील नोंदीमधà¥à¤¯à¥‡ à¤à¤–ादे " +"चलितमूलà¥à¤¯ बदलावे लागेल." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"हाच परà¥à¤¯à¤¾à¤¯ कारà¥à¤¯à¤¾à¤¨à¥à¤µà¤¿à¤¤ करणà¥à¤¯à¤¾à¤šà¥€ शिफारस केली जात आहे. तà¥à¤®à¥à¤¹à¥€ तसे केलà¥à¤¯à¤¾à¤¸,तà¥à¤®à¤šà¥à¤¯à¤¾à¤œà¤µà¤³ वैध अशी " +"(/etc/samba/smbpasswd)ईटीसी/सांबा/à¤à¤¸à¤à¤®à¤¬à¥€ पासवरà¥à¤¡ संचिका आहे, तसेच ,à¤à¤¸à¤à¤®à¤¬à¥€ पासवरà¥à¤¡ " +"आजà¥à¤žà¤¾à¤µà¤²à¥€ वापरà¥à¤¨, पà¥à¤°à¤¤à¥à¤¯à¥‡à¤• उपयोजकासाठी परवलीचे शबà¥à¤¦ निरà¥à¤§à¤¾à¤°à¤¿à¤¤ केलà¥à¤¯à¤¾à¤šà¥€ खातà¥à¤°à¥€ करा." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "" +"var/lib/samba/passdb.tdb /वà¥à¤¹à¥€à¤à¤†à¤° /à¤à¤²à¤†à¤¯à¤¬à¥€/सांबा /à¤à¤¸à¤à¤®à¤¬à¥€ पासडीबी.टीडीबी? या " +"सांबा परवलीचà¥à¤¯à¤¾ शबà¥à¤¦à¤¾à¤šà¥€ डेटाबेस (माहिती) तयार करा." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"विंडोजचà¥à¤¯à¤¾ बहà¥à¤¤à¥‡à¤• आवृतà¥à¤¤à¥€à¤‚मधील डिफॉलà¥à¤Ÿà¤¶à¥€ सहतà¥à¤µ ठेवणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ कूटलिखित परवलीचे शबà¥à¤¦ वापरà¥à¤¨ " +"सांबा संरचित केला पाहिजे. यासाठी परवलीचे शबà¥à¤¦,ईटीसी/पासवरà¥à¤¡ पेकà¥à¤·à¤¾ अलग संचिकेत साठवून " +"ठेवणे आवशà¥à¤¯à¤• आहे. ही या संचिकेची रचना सà¥à¤µà¤¯à¤‚चलित करता येते,परंतॠयात परवलीचे शबà¥à¤¦,à¤à¤¸à¤à¤®à¤¬à¥€ " +"पासवरà¥à¤¡ चालवून सà¥à¤µà¤¹à¤¸à¥à¤¤à¥‡ टाकले पाहिजेत व भविषà¥à¤¯à¤•à¤¾à¤³à¤¾à¤¤ अदà¥à¤¯à¤¯à¤¾à¤µà¤¤ ठेवले पाहिजे." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"तà¥à¤®à¥à¤¹à¥€ ही रचना न केलà¥à¤¯à¤¾à¤¸ तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ सांबा(व कदाचित तà¥à¤®à¤šà¥à¤¯à¤¾ गà¥à¤°à¤¾à¤¹à¤•à¤¾à¤‚चे संगणक),साधà¥à¤¯à¤¾ शबà¥à¤¦à¤¾à¤‚चे " +"परवलीचे शबà¥à¤¦ वापरà¥à¤¨ पà¥à¤¨à¤ƒà¤¸à¤‚रचित करावे लागतील." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"अधिक माहितीसाठी सांबा-डीओसी पॅकेजमधील /usr/share/doc/samba-doc/htmldocs/" +"ENCRYPTION.html (यूà¤à¤¸à¤†à¤°/शेअर/डीओसी/सांबा-डीओसी/à¤à¤šà¤Ÿà¥€à¤à¤®à¤à¤²à¤¡à¥€à¤“सीà¤à¤¸/à¤à¤¨à¤•à¥à¤°à¤¿à¤ªà¥à¤¶à¤¨." +"à¤à¤šà¤Ÿà¥€à¤à¤®à¤à¤²) हे पॅकेज पहा." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "डिमनà¥à¤¸" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "आयà¤à¤¨à¤‡à¤Ÿà¥€à¤¡à¥€" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ सांबा कशा पà¥à¤°à¤•à¤¾à¤°à¥‡ चालू करावयाचा आहे?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"सांबा डिमन à¤à¤¸à¤à¤®à¤¬à¥€à¤¡à¥€ हा पà¥à¤°à¥‹à¤—à¥à¤°à¤¾à¤® सरà¥à¤µà¤¸à¤¾à¤§à¤¾à¤°à¤£ डिमन मà¥à¤¹à¤£à¥‚न किंवा आयà¤à¤¨à¤‡à¤Ÿà¥€à¤¡à¥€ मधून चालविता " +"येतो. डिमन मà¥à¤¹à¤£à¥‚न चालविणे अधिक शà¥à¤°à¥‡à¤¯à¤¸à¥à¤•à¤°." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "सांबाची बाकीची संरचना,सांबा आजà¥à¤žà¤¾à¤µà¤²à¥€à¤šà¥€ (à¤à¤¨à¤à¤®à¤¬à¥€à¤¡à¥€ व à¤à¤¸à¤à¤®à¤¬à¥€à¤¡à¥€) संरचना करणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ " +#~ "वापरलà¥à¤¯à¤¾ जाणाऱà¥à¤¯à¤¾ etc/samba/smb.conf /ईटीसी/सांबा/à¤à¤¸à¤à¤®à¤¬à¥€.सीओà¤à¤¨à¤à¤« या संचिकेमधील " +#~ "चलितमूलà¥à¤¯à¤¾à¤‚वर परिणाम करणाऱà¥à¤¯à¤¾ पà¥à¤°à¤¶à¥à¤¨à¤¾à¤‚बाबत आहे. तà¥à¤®à¤šà¥à¤¯à¤¾ सधà¥à¤¯à¤¾à¤šà¥à¤¯à¤¾ à¤à¤¸à¤à¤®à¤¬à¥€. सीओà¤à¤¨à¤à¤« smb." +#~ "conf मधà¥à¤¯à¥‡,'अंतरà¥à¤­à¤¾à¤µ' ओळ किंवा अनेक ओळी असलेला à¤à¤• परà¥à¤¯à¤¾à¤¯ आहे. व तो सà¥à¤µà¤¯à¤‚चलित संरचना " +#~ "पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¥‡à¤¤ गोंधळ करू शकतो आणि तà¥à¤¯à¤¾à¤®à¥à¤³à¥‡ तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ तà¥à¤®à¤šà¥€ à¤à¤¸à¤à¤®à¤¬à¥€.सीओà¤à¤¨à¤à¤«,smb.conf,पà¥à¤¨à¥à¤¹à¤¾ " +#~ "कारà¥à¤¯à¤•à¤¾à¤°à¥€ होणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ सà¥à¤µà¤¤à¤ƒà¤š संपादित करावी लागेल." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "गà¥à¤°à¤¾à¤¹à¤•à¤¾à¤‚नी पृचà¥à¤›à¤¾ केलà¥à¤¯à¤¾à¤µà¤° हा परिसेवक कोणतà¥à¤¯à¤¾ कारà¥à¤¯à¤—टात दिसायला हवा याचा नेमका उलà¥à¤²à¥‡à¤– " +#~ "करा. लकà¥à¤·à¤¾à¤¤ ठेवा की हेच चलितमूलà¥à¤¯ सà¥à¤°à¤•à¥à¤·à¤¾-पà¥à¤°à¤•à¥à¤·à¥‡à¤¤à¥à¤° निरà¥à¤§à¤¾à¤°à¤£ बरोबर वापरले असता " +#~ "पà¥à¤°à¤•à¥à¤·à¥‡à¤¤à¥à¤°à¤¨à¤¾à¤®à¤¹à¥€ नियंतà¥à¤°à¤¿à¤¤ करते." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "विंडोजचे सरà¥à¤µ गà¥à¤°à¤¾à¤¹à¤• कूटलिखित परवलीचे शबà¥à¤¦ वापरà¥à¤¨ à¤à¤¸à¤à¤®à¤¬à¥€ परिसेवकांशी संवाद साधतात. " +#~ "तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ सà¥à¤ªà¤·à¥à¤Ÿ परवलीचे शबà¥à¤¦ वापरायचे असतील तर तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ तà¥à¤®à¤šà¥à¤¯à¤¾ विंडोजमधील नोंदीमधà¥à¤¯à¥‡ " +#~ "à¤à¤–ादे चलितमूलà¥à¤¯ बदलावे लागेल." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "हाच परà¥à¤¯à¤¾à¤¯ कारà¥à¤¯à¤¾à¤¨à¥à¤µà¤¿à¤¤ करणà¥à¤¯à¤¾à¤šà¥€ शिफारस केली जात आहे. तà¥à¤®à¥à¤¹à¥€ तसे केलà¥à¤¯à¤¾à¤¸,तà¥à¤®à¤šà¥à¤¯à¤¾à¤œà¤µà¤³ वैध " +#~ "अशी (/etc/samba/smbpasswd)ईटीसी/सांबा/à¤à¤¸à¤à¤®à¤¬à¥€ पासवरà¥à¤¡ संचिका आहे, तसेच ,à¤à¤¸à¤à¤®à¤¬à¥€ " +#~ "पासवरà¥à¤¡ आजà¥à¤žà¤¾à¤µà¤²à¥€ वापरà¥à¤¨, पà¥à¤°à¤¤à¥à¤¯à¥‡à¤• उपयोजकासाठी परवलीचे शबà¥à¤¦ निरà¥à¤§à¤¾à¤°à¤¿à¤¤ केलà¥à¤¯à¤¾à¤šà¥€ खातà¥à¤°à¥€ " +#~ "करा." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "अधिक माहितीसाठी सांबा-डीओसी पॅकेजमधील /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html (यूà¤à¤¸à¤†à¤°/शेअर/डीओसी/सांबा-डीओसी/à¤à¤šà¤Ÿà¥€à¤à¤®à¤à¤²à¤¡à¥€à¤“सीà¤à¤¸/à¤à¤¨à¤•à¥à¤°à¤¿à¤ªà¥à¤¶à¤¨." +#~ "à¤à¤šà¤Ÿà¥€à¤à¤®à¤à¤²) हे पॅकेज पहा." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "/ईटीसी/सांबा/à¤à¤¸à¤à¤®à¤¬à¥€ पासवरà¥à¤¡,/वà¥à¤¹à¥€à¤à¤†à¤°/à¤à¤²à¤†à¤¯à¤¬à¥€/सांबा/पासवरà¥à¤¡à¥¤à¤Ÿà¥€à¤¡à¥€à¤¬à¥€ कडे हलवायचा का?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "सांबा ३.० ने पूरà¥à¤£à¤¤à¤° असा à¤à¤¸à¤à¤à¤® डेटाबेस अंतराफलक पà¥à¤°à¤¸à¥à¤¤à¥à¤¤ केला असून तो इटीसी/सांबा/" +#~ "à¤à¤¸à¤à¤®à¤¬à¥€ पासवरà¥à¤¡ संचिकेला मागे टाकतो." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "कृपया तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ सधà¥à¤¯à¤¾à¤šà¥€ à¤à¤¸à¤à¤®à¤¬à¥€ पासवरà¥à¤¡ संचिका आपोआप/वà¥à¤¹à¥€à¤à¤†à¤°/à¤à¤²à¤†à¤¯à¤¬à¥€/सांबा/" +#~ "पासडीबी।टीडीबी कडे सà¥à¤¥à¤²à¤¾à¤‚तरित à¤à¤¾à¤²à¥à¤¯à¤¾à¤¸ चालेल का याची खातà¥à¤°à¥€ करा. तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ तà¥à¤¯à¤¾à¤à¤µà¤œà¥€ " +#~ "दà¥à¤¸à¤°à¥€ कोणती पीडीबी बॅकà¤à¤‚ड(उदा.à¤à¤²à¤¡à¥€à¤à¤ªà¥€)करावयाची असलà¥à¤¯à¤¾à¤¸ हा परà¥à¤¯à¤¾à¤¯ सà¥à¤µà¥€à¤•à¤¾à¤°à¥ नका" --- samba-3.3.0.orig/debian/po/fr.po +++ samba-3.3.0/debian/po/fr.po @@ -0,0 +1,260 @@ +# samba debconf screens: French translation. +# Copyright (C) 2006-2009, Christian Perrier +# This file is distributed under the same license as the samba package. +# +msgid "" +msgstr "" +"Project-Id-Version: fr\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2008-12-29 12:32+0100\n" +"Last-Translator: Christian Perrier \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Modifier smb.conf pour utiliser les paramètres WINS fournis par DHCP ?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Si votre ordinateur obtient ses paramètres IP à partir d'un serveur DHCP du " +"réseau, ce serveur peut aussi fournir des informations sur les serveurs WINS " +"(serveurs de noms NetBIOS) présents sur le réseau. Une modification du " +"fichier smb.conf est nécessaire afin que les réglages WINS fournis par le " +"serveur DHCP soient lus dans /etc/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Le paquet dhcp3-client doit être installé pour utiliser cette fonctionnalité." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Voulez-vous configurer smb.conf automatiquement ?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"La suite de la configuration de Samba pose des questions relatives aux " +"paramètres de /etc/samba/smb.conf, le fichier utilisé pour configurer les " +"programmes de Samba (nmbd et smbd). Le fichier actuel contient une ligne " +"« include » ou une option qui s'étale sur plusieurs lignes : cela peut " +"perturber la configuration automatique. Il est donc conseillé de gérer le " +"contenu de ce fichier vous-même." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Si vous ne choisissez pas cette option, vous devrez gérer vous-même les " +"modifications de configuration et vous ne pourrez pas bénéficier des " +"améliorations faites dans la configuration." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Nom de domaine ou de groupe de travail :" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Veuillez indiquer le groupe de travail pour ce système. Ce réglage définit " +"le groupe de travail où le système apparaîtra s'il est utilisé comme " +"serveur, le groupe de travail utilisé par défaut avec les divers outils de " +"Samba ainsi que le nom de domaine utilisé le cas échéant avec le paramètre " +"« security=domain »." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Voulez-vous chiffrer les mots de passe ?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Tous les clients Windows récents communiquent avec les serveurs SMB/CIFS en " +"utilisant des mots de passe chiffrés. Si vous voulez utiliser des mots de " +"passe sans chiffrement, vous devez modifier un paramètre dans le registre de " +"Windows." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Il est fortement recommandé d'utiliser des mots de passe chiffrés car les " +"mots de passe en clair ne sont plus gérés dans les produits Microsoft " +"Windows. Si vous le faites, n'oubliez pas de créer un fichier /etc/samba/" +"smbpasswd et d'y établir les mots de passe de tous les utilisateurs, à " +"l'aide de la commande « smbpasswd »." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Faut-il créer une base de données /var/lib/samba/passdb.tdb ?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Pour rester compatible avec les réglages par défaut de la majorité des " +"versions de Windows, Samba doit être configuré pour utiliser des mots de " +"passe chiffrés. Cela impose de conserver les mots de passe dans un fichier " +"distinct de /etc/passwd. Ce fichier peut être créé automatiquement, mais les " +"mots de passe doivent y être ajoutés manuellement avec la commande " +"« smbpasswd » et être tenus à jour." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Si vous ne voulez pas créer le fichier maintenant, Samba (ainsi, " +"probablement, que les clients Windows) devra utiliser des mots de passe non " +"chiffrés." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Veuillez consulter le fichier /usr/share/doc/samba-doc/htmldocs/ENCRYPTION." +"html dans le paquet samba-doc pour plus d'informations." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "démons" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Comment voulez-vous lancer Samba ?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Le service de Samba smbd peut s'exécuter en tant que démon classique ou bien " +"être lancé par inetd. Il est recommandé de l'exécuter en tant que démon." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "La suite de la configuration de Samba pose des questions relatives aux " +#~ "paramètres de /etc/samba/smb.conf, le fichier utilisé pour configurer les " +#~ "programmes de Samba (nmbd et smbd). Le fichier actuel contient une ligne " +#~ "« include » ou une option qui s'étale sur plusieurs lignes : cela peut " +#~ "perturber la configuration automatique. Il est donc conseillé de gérer le " +#~ "contenu de ce fichier vous-même." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Veuillez indiquer le groupe de travail où les clients doivent trouver le " +#~ "serveur. Il indique aussi le nom de domaine utilisé par le paramètre " +#~ "« security=domain » quand celui-ci est utilisé." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Tous les clients Windows récents communiquent avec les serveurs SMB en " +#~ "utilisant des mots de passe chiffrés. Si vous voulez utiliser des mots de " +#~ "passe sans chiffrement, vous devez modifier un paramètre dans le registre " +#~ "de Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Il est recommandé d'utiliser des mots de passe chiffrés. Si vous le " +#~ "faites, n'oubliez pas de créer un fichier /etc/samba/smbpasswd et d'y " +#~ "établir les mots de passe de tous les utilisateurs, à l'aide de la " +#~ "commande « smbpasswd »." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Veuillez consulter le fichier /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html dans le paquet samba-doc pour plus d'informations." --- samba-3.3.0.orig/debian/po/es.po +++ samba-3.3.0/debian/po/es.po @@ -0,0 +1,328 @@ +# samba translation to spanish +# Copyright (C) 2003-2007 Steve Langasek +# Copyright (C) 2006 Software in the Public Interest, SPI Inc. +# This file is distributed under the same license as the samba package. +# +# Changes: +# - Initial translation +# Steve Langasek, 2003-2006 +# +# - Revision and update +# Javier Fernandez-Sanguino, 2006 +# +# - Translation of new templates +# Steve Langasek, 2007 +# +# Traductores, si no conoce el formato PO, merece la pena leer la +# documentación de gettext, especialmente las secciones dedicadas a este +# formato, por ejemplo ejecutando: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Equipo de traducción al español, por favor lean antes de traducir +# los siguientes documentos: +# - El proyecto de traducción de Debian al español +# http://www.debian.org/intl/spanish/ +# especialmente las notas y normas de traducción en +# http://www.debian.org/intl/spanish/notas +# +# - La guía de traducción de po's de debconf: +# /usr/share/doc/po-debconf/README-trans +# o http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Si tiene dudas o consultas sobre esta traducción consulte con el último +# traductor (campo Last-Translator) y ponga en copia a la lista de +# traducción de Debian al español () +# +msgid "" +msgstr "" +"Project-Id-Version: Samba for Debian 3.0.23c-1\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2006-10-08 13:43+0200\n" +"Last-Translator: Steve Langasek \n" +"Language-Team: Debian Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"¿Modificar smb.conf para usar la configuración WINS que proviene de DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Si su sistema recibe la dirección IP desde un servidor DHCP en la red, el " +"servidor DHCP también puede proveerle informaciones sobre los servidores de " +"WINS que haya en la red. Esto requiere un cambio en el fichero smb.conf " +"para que la configuración de WINS proveniente de DHCP se lea automaticamente " +"de /etc/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Hay que instalar el paquete dhcp3-client para aprovechar esta funcionalidad." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "¿Configurar smb.conf automaticamente?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"El resto de la configuración de Samba trata sobre cuestiones que afectan al " +"contenido de /etc/samba/smb.conf, que es el fichero utilizado para " +"configurar los programas de Samba (nmbd y smbd). Su smb.conf actual contiene " +"una línea «include» o una opción que atraviesa más de una línea, así que el " +"proceso de configuración automática puede dejarlo con un smb.conf " +"descompuesto, requiriendo que lo arregle a mano." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Si no escoge esta opción, tendrá que gestionar a mano cualquier cambio a la " +"configuración de Samba y no disfrutará de las mejoras periódicos que se " +"realicen a la configuración." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Nombre del dominio o del grupo de trabajo:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Indique el grupo de trabajo en el cual quiere que su servidor aparezca " +"cuando se lo pregunten los clientes de la red. Este parámetro también " +"controla el nombre de dominio que se usa con la configuración " +"«security=domain»." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "¿Utilizar contraseñas cifradas?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Todos los clientes Windows actuales se comunican con los servidores SMB " +"utilizando contraseñas cifradas. Si quiere usar contraseñas en claro, tendrá " +"que cambiar un parámetro en el registro de sus sistemas Windows." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Es muy recomendable habilitar esta opción. Compruebe que tiene un fichero /" +"etc/samba/smbpasswd válido y que configura las contraseñas para cada usuario " +"con el programa smbpasswd si elige hacerlo." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "¿Crear la base de dados de contraseñas /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Hay que configurar Samba para que use contraseñas cifradas para mantener la " +"compatibilidad con el comportamiento por omisión de la mayoria de los " +"sistemas Windows. Para hacer esto es necesario crear un fichero, distinto " +"del /etc/passwd, donde se guarden las contraseñas de los usuarios. El " +"fichero se puede crear automaticamente, aunque es necesario añadir las " +"contraseñas manualmente mediante el programa «smbpasswd» y mantenerlas al día." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Es imprescindible que configure Samba (y probablemente también los sistemas " +"cliente) para que use contraseñas en claro si no crea este fichero." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Si desea más información consulte /usr/share/doc/samba-doc/htmldocs/" +"ENCRYPTION.html, disponible en el paquete samba-doc." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "demonios" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "¿Cómo quiere que se ejecute Samba?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"El servicio Samba smbd puede ejecutarse como un demonio normal independiente " +"o lanzarse desde el demonio inetd. Se recomienda que se ejecute como demonio " +"independiente." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "El resto de la configuración de Samba trata sobre cuestiones que afectan " +#~ "al contenido de /etc/samba/smb.conf, que es el fichero utilizado para " +#~ "configurar los programas de Samba (nmbd y smbd). Su smb.conf actual " +#~ "contiene una línea «include» o una opción que atraviesa más de una línea, " +#~ "así que el proceso de configuración automática puede dejarlo con un smb." +#~ "conf descompuesto, requiriendo que lo arregle a mano." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Indique el grupo de trabajo en el cual quiere que su servidor aparezca " +#~ "cuando se lo pregunten los clientes de la red. Este parámetro también " +#~ "controla el nombre de dominio que se usa con la configuración " +#~ "«security=domain»." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Todos los clientes Windows actuales se comunican con los servidores SMB " +#~ "utilizando contraseñas cifradas. Si quiere usar contraseñas en claro, " +#~ "tendrá que cambiar un parámetro en el registro de sus sistemas Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Es muy recomendable habilitar esta opción. Compruebe que tiene un " +#~ "fichero /etc/samba/smbpasswd válido y que configura las contraseñas para " +#~ "cada usuario con el programa smbpasswd si elige hacerlo." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Si desea más información consulte /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html, disponible en el paquete samba-doc." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "El encadenamiento de motores «passdb» ya no está soportado" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "A partir de la versión 3.0.23 de samba, ya no se soporta el " +#~ "encadenamiento de más de un motor en el parámetro «passdb backend». " +#~ "Parece que en su smb.conf tiene un parámetro «passdb backend» que consta " +#~ "de una lista de motores. La nueva versión de samba no funcionará hasta " +#~ "que lo corrija." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "¿Convertir el fichero /etc/samba/smbpasswd a /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "La versión 3.0 de Samba introduce un base de dados «SAM» más completa que " +#~ "sustituye al fichero /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Confirme si quiere que el fichero smbpasswd existente se migre de forma " +#~ "automática a /var/lib/samba/passdb.tdb. No escoja esta opción si " +#~ "pretende usar otro motor para pdb (p.ej. LDAP)." + +#~ msgid "daemons, inetd" +#~ msgstr "demonios, inetd" --- samba-3.3.0.orig/debian/po/ast.po +++ samba-3.3.0/debian/po/ast.po @@ -0,0 +1,211 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: samba package\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-01-02 12:18-0800\n" +"PO-Revision-Date: 2009-01-15 09:17+0100\n" +"Last-Translator: astur \n" +"Language-Team: Asturian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-Language: Asturian\n" +"X-Poedit-SourceCharset: utf-8\n" +"X-Poedit-Country: SPAIN\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "¿Camudar smb.conf pa usar configuraciones WINS dende DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Si'l to ordenador garra información dende direiciones IP dende un sirvidor " +"DHCP nuna rede, el sirvidor DHCP tamién-y podría dar información acerca de " +"sirvidores WINS (\"NetBIOS name servers\") presentes na rede. Esto requier " +"camudar el to ficheru smb.conf ya que DHCP da la configuración de WINS qué " +"será automáticamente lleío dende /etc/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"El paquete dhcp3-client tien qu'instálase p'algamar la ventaxa d'esta " +"carauterística." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "¿Configurar smb.conf automáticamente?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"El restu de la configuración de Samba fina con entrugues qu'afeuten a los " +"parámetros de /etc/samba/smb.conf, el cual ye'l ficheru usáu pa configurar " +"el programa Samba (nmbd y smbd). El to smb.conf actual contién una llinia de " +"'include' o una opción que rellena múltiples llinies, lo cual puede " +"confundir nel procesu de configuración automática y requier qu'edites el to " +"smb.conf a manu pa poder a trabayar con él." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Si nun escueyes esta opción, tendrás que camudar manualmente la " +"configuración por ti mesmu, y nun tendrás les ventaxes de les meyores de " +"configuración periódiques." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Nome de Grupu/Dominiu:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Por favor, pon el grupu de trabayu pa esti sistema. Esta opción remana'l " +"sistema de grupos de trabayu que s'espublizará cuando s'usa como un " +"sirvidor, por defeutu el grupu de trabayu a ser usaos mientres la ñavegación " +"con distintos interfaces, y el nome de dominiu usáu cola configuración " +"\"security=domain\"" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "¿Usar contraseña encriptada?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Tolos clientes con Windows recientes comuniquense con sirvidores SMB/CIFS " +"usando contraseñes encriptaes. Si quies usar contraseñes con testu nidiu " +"necesites camudar un parámetru nel to rexistru de Windows." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Activar esta opción ye altamente recomendable. Si lo faes, tate seguru que " +"tienes un ficheru /etc/samba/smbpasswd válidu y que afitastes les " +"contraseñes nél pa cada usuariu usando'l comandu smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "" +"¿Criar una contraseña pa la base de datos de samba, /var/lib/samba/passdb." +"tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Pa ser compatible col comportamientu por defeutu na mayor de les versiones " +"Windows, Samba debe configurase pa usar contraseñes encriptaes. Esto requier " +"qu'una contraseña d'usuariu seya almacenada nun ficheru separtáu dende /etc/" +"passwd. Esti ficheru puede criase automáticamente, pero les contraseñes " +"deben amestase-y manualmente executando smbpasswd y mantenelu nel futuru." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Si nun la crias, tendrás que reconfigurar Samba (y probablemente'l to " +"cliente) pa usar contraseñes de testu planu." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Mira /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +"html dende'l paquete samba-doc pa más detalles." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "degorrios" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "¿Cómo quies executar Samba?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"El degorriu Samba smbd puede correr como un degorriu normal o dende inetd. " +"Corriendo como un degorriu ye la escoyeta recomendada." --- samba-3.3.0.orig/debian/po/lt.po +++ samba-3.3.0/debian/po/lt.po @@ -0,0 +1,284 @@ +# translation of samba-lt.po to Lithuanian +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# Gintautas Miliauskas , 2006. +msgid "" +msgstr "" +"Project-Id-Version: samba-lt\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2006-11-26 00:20+0200\n" +"Last-Translator: Gintautas Miliauskas \n" +"Language-Team: Lithuanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.2\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" +"100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Pakeisti smb.conf, kad bÅ«tų naudojami WINS nustatymai iÅ¡ DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Jei Å¡is kompiuteris gauna IP adresus iÅ¡ tinklo DHCP serverio, DHCP serveris " +"taip pat gali teikti informacijÄ… apie tinklo WINS serverius (NetBIOS vardų " +"serverius). Kad WINS nustatymai, gauti per DHCP (saugomi rinkmenoje /etc/" +"samba/dhcp.conf), bÅ«tų naudojami, reikia pakeisti rinkmenÄ… smb.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Kad bÅ«tų galima pasinaudoti Å¡ia galimybe, turi bÅ«ti įdiegtas paketas dhcp3-" +"client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "AutomatiÅ¡kai konfigÅ«ruoti smb.conf?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Likusi Samba konfigÅ«ravimo dalis susijusi su parametrais, nustatomais Samba " +"konfigÅ«racijos rinkmenoje -- /etc/samba/smb.conf. Å i rinkmena konfigÅ«ruoja " +"Samba programas (nmbd ir smbd). Esamame smb.conf yra „include“ komanda arba " +"nustatymas, užraÅ¡ytas per kelias eilutes. Tai gali sutrikdyti automatinį " +"konfigÅ«ravimo procesÄ…, todÄ—l gali prireikti rankiniu bÅ«du paredaguoti smb." +"conf, kad Samba vÄ—l pradÄ—tų veikti." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Jei nepasirinksite Å¡ios galimybÄ—s, turÄ—site konfigÅ«ruoti Samba rankiniu bÅ«du " +"ir negalÄ—site pasinaudoti reguliariais automatiniais konfigÅ«racijos " +"patobulinimais." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "GrupÄ— (workgroup) / domeno vardas:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Nurodykite grupÄ™ (workgroup), kuriai priklauso Å¡is Samba serveris. Jei " +"nurodyta „security=domain“, Å¡is parametras nurodo domeno vardÄ…." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Naudoti slaptažodžių Å¡ifravimÄ…?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Visos nesenos Windows sistemos bendraudamos su SMB serveriu naudoja " +"Å¡ifruotus slaptažodžius. Jei norite naudoti neÅ¡ifruotus slaptažodžius, " +"reikia pakeisti reikÅ¡mÄ™ Windows registre." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Labai rekomenduojama pasirinkti Å¡iÄ… galimybÄ™. Jei pasirinksite Å¡ifruotus " +"slaptažodžius, įsitikinkite, kad turite taisyklingÄ… /etc/samba/smbpasswd " +"rinkmenÄ… ir kad ten nurodyti visų naudotojų, naudojanÄių smbpasswd, " +"slaptažodžiai." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Sukurti slaptažodžių duomenų bazÄ™, /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Kad bÅ«tų suderinama su standartine daugumos Windows sistemų konfigÅ«racija, " +"Samba turi naudoti Å¡ifruotus slaptažodžius. Tokiu atveju naudotojų " +"slaptažodžiai turi bÅ«ti saugomi atskirai nuo bendrų slaptažodžių rinkmenoje /" +"etc/passwd. Å i rinkmena gali bÅ«ti sukurta automatiÅ¡kai, taÄiau slaptažodžiai " +"turi bÅ«ti pridÄ—ti rankiniu bÅ«du, leidžiant programÄ… smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Jei nesukursite rinkmenos, turÄ—site perkonfigÅ«ruoti Samba (greiÄiausiai ir " +"kitus tinklo kompiuterius), kad bÅ«tų naudojami neÅ¡ifruoti slaptažodžiai." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Daugiau informacijos galite rasti rinkmenoje /usr/share/doc/samba-doc/" +"htmldocs/ENCRYPTION.html iÅ¡ paketo samba-doc." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "tarnybos" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Kokiu bÅ«du norite leisti Samba?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Samba tarnyba smbd gali veikti kaip įprastinÄ— tarnyba arba ji gali bÅ«ti " +"paleidžiama iÅ¡ inetd. Rekomenduojama Samba naudoti kaip įprastinÄ™ tarnybÄ…." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Likusi Samba konfigÅ«ravimo dalis susijusi su parametrais, nustatomais " +#~ "Samba konfigÅ«racijos rinkmenoje -- /etc/samba/smb.conf. Å i rinkmena " +#~ "konfigÅ«ruoja Samba programas (nmbd ir smbd). Esamame smb.conf yra " +#~ "„include“ komanda arba nustatymas, užraÅ¡ytas per kelias eilutes. Tai gali " +#~ "sutrikdyti automatinį konfigÅ«ravimo procesÄ…, todÄ—l gali prireikti " +#~ "rankiniu bÅ«du paredaguoti smb.conf, kad Samba vÄ—l pradÄ—tų veikti." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Nurodykite grupÄ™ (workgroup), kuriai priklauso Å¡is Samba serveris. Jei " +#~ "nurodyta „security=domain“, Å¡is parametras nurodo domeno vardÄ…." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Visos nesenos Windows sistemos bendraudamos su SMB serveriu naudoja " +#~ "Å¡ifruotus slaptažodžius. Jei norite naudoti neÅ¡ifruotus slaptažodžius, " +#~ "reikia pakeisti reikÅ¡mÄ™ Windows registre." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Labai rekomenduojama pasirinkti Å¡iÄ… galimybÄ™. Jei pasirinksite Å¡ifruotus " +#~ "slaptažodžius, įsitikinkite, kad turite taisyklingÄ… /etc/samba/smbpasswd " +#~ "rinkmenÄ… ir kad ten nurodyti visų naudotojų, naudojanÄių smbpasswd, " +#~ "slaptažodžiai." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Daugiau informacijos galite rasti rinkmenoje /usr/share/doc/samba-doc/" +#~ "htmldocs/ENCRYPTION.html iÅ¡ paketo samba-doc." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Perkelti /etc/samba/smbpasswd į /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 versijoje atsirado iÅ¡samesnÄ— SAM duomenų bazÄ—s sÄ…saja, todÄ—l " +#~ "rinkmena /etc/samba/smbpasswd nebenaudojama." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Patvirtinkite, kad norite esamÄ… smbpasswd rinkmenÄ… automatiÅ¡kai " +#~ "numigruoti į /var/lib/samba/passdb.tdb. Nesirinkite Å¡ios galimybÄ—s, jei " +#~ "vietoj standartinio planuojate naudoti kitÄ… pdb modulį (pvz., LDAP)." --- samba-3.3.0.orig/debian/po/pl.po +++ samba-3.3.0/debian/po/pl.po @@ -0,0 +1,259 @@ +# translation of samba_2:3.2.3-1_pl_2008-09-12.po to polski +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Tomasz Majbaum , 2008. +msgid "" +msgstr "" +"Project-Id-Version: samba_2:3.2.3-1_pl_2008-09-12\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2008-09-12 10:08+0200\n" +"Last-Translator: Tomasz Majbaum \n" +"Language-Team: polski \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Czy zmienić smb.conf tak, by używaÅ‚ ustawieÅ„ WINS z DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Jeżeli Twój komputer pobiera informacje o adresie IP z serwera DHCP przez " +"sieć, serwer DHCP może również dostarczać informacji na temat serwerów WINS " +"(\"serwerów nazw NetBIOS\") obecnych w sieci. Wymaga to zmiany w Twoim pliku " +"smb.conf, aby dostarczone przez DHCP ustawienia WINS byÅ‚y automatycznie " +"odczytywane z /etc/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Aby móc skorzystać z tej funkcjonalnoÅ›ci, musi być zainstalowany pakiet " +"dhcp3-client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Czy automatycznie skonfigurować smb.conf?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"PozostaÅ‚a część konfiguracji Samby zwiÄ…zana jest z pytaniami wpÅ‚ywajÄ…cymi na " +"parametry w /etc/samba/smb.conf, który jest plikiem używanym do konfiguracji " +"programów Samby (nmbd i smbd). Twój obecny smb.conf zawiera wiersz " +"'include', bÄ…dź opcjÄ™ obejmujÄ…cÄ… wiele wierszy, co przeszkodziÅ‚o procesowi " +"zautomatyzowanej konfiguracji i wymaga od Ciebie rÄ™cznej edycji pliku smb." +"conf, by mógÅ‚ znowu być używany." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Jeżeli nie wybierzesz tej opcji, bÄ™dziesz musiaÅ‚ samodzielnie zajmować siÄ™ " +"wszelkimi zmianami konfiguracji i nie bÄ™dziesz mógÅ‚ skorzystać z okresowych " +"jej ulepszeÅ„." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Nazwa Grupy Roboczej/Domeny:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"OkreÅ›l grupÄ™ roboczÄ… którÄ… ten serwer powinien siÄ™ podawać, gdy bÄ™dzie o to " +"odpytywany przez klientów. Uwaga, ten parametr dotyczy również nazwy domeny " +"używanej w ustawieniu security=domain." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Czy używać szyfrowania haseÅ‚?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Wszystkie współczesne Windowsowe klienty komunikujÄ… siÄ™ z serwerami SMB " +"używajÄ…c zaszyfrowanych haseÅ‚. Jeżeli chcesz używać haseÅ‚ w postaci " +"otwartego tekstu, konieczna bÄ™dzie zmiana odpowiedniego parametru w " +"rejestrze Windows." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Zaznaczenie tej opcji jest wysoce zalecane. JeÅ›li to zrobisz, upewnij siÄ™, " +"że masz poprawny plik /etc/samba/smbpasswd i że ustawisz w nim hasÅ‚a dla " +"każdego użytkownika korzystajÄ…cego z polecenia smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Utworzyć bazÄ™ haseÅ‚ samby, /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Aby zachować zgodność z domyÅ›lnymi ustawieniami wiÄ™kszoÅ›ci wersji Windows, " +"Samba musi korzystać z szyfrowanych haseÅ‚. W zwiÄ…zku z tym, hasÅ‚a " +"użytkowników muszÄ… być przechowywane w innym pliku niż /etc/passwd. Ten plik " +"może zostać utworzony automatycznie, ale hasÅ‚a muszÄ… być dodawane rÄ™cznie, " +"za pomocÄ… polecenia smbpasswd, a w przyszÅ‚oÅ›ci na bieżąco uaktualniane." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Jeżeli go nie utworzysz, bÄ™dziesz musiaÅ‚ przekonfigurować SambÄ™ (i " +"prawdopodobnie maszyny klienckie) do używania haseÅ‚ w postaci zwykÅ‚ego " +"tekstu." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Zobacz plik /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/" +"pwencrypt.html z pakietu samba-doc, by poznać szczegóły." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "demon" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "W jaki sposób chcesz uruchamiać SambÄ™?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Demon Samby smbd może dziaÅ‚ać jako zwykÅ‚y demon, albo z poziomu inetd. " +"Zalecane jest uruchomienie demona." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "PozostaÅ‚a część konfiguracji Samby zwiÄ…zana jest z pytaniami wpÅ‚ywajÄ…cymi " +#~ "na parametry w /etc/samba/smb.conf, który jest plikiem używanym do " +#~ "konfiguracji programów Samby (nmbd i smbd). Twój obecny smb.conf zawiera " +#~ "wiersz 'include', bÄ…dź opcjÄ™ obejmujÄ…cÄ… wiele wierszy, co przeszkodziÅ‚o " +#~ "procesowi zautomatyzowanej konfiguracji i wymaga od Ciebie rÄ™cznej edycji " +#~ "pliku smb.conf, by mógÅ‚ znowu być używany." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "OkreÅ›l grupÄ™ roboczÄ… którÄ… ten serwer powinien siÄ™ podawać, gdy bÄ™dzie o " +#~ "to odpytywany przez klientów. Uwaga, ten parametr dotyczy również nazwy " +#~ "domeny używanej w ustawieniu security=domain." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Wszystkie współczesne Windowsowe klienty komunikujÄ… siÄ™ z serwerami SMB " +#~ "używajÄ…c zaszyfrowanych haseÅ‚. Jeżeli chcesz używać haseÅ‚ w postaci " +#~ "otwartego tekstu, konieczna bÄ™dzie zmiana odpowiedniego parametru w " +#~ "rejestrze Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Zaznaczenie tej opcji jest wysoce zalecane. JeÅ›li to zrobisz, upewnij " +#~ "siÄ™, że masz poprawny plik /etc/samba/smbpasswd i że ustawisz w nim hasÅ‚a " +#~ "dla każdego użytkownika korzystajÄ…cego z polecenia smbpasswd." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Zobacz plik /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html z pakietu " +#~ "samba-doc, by poznać szczegóły." --- samba-3.3.0.orig/debian/po/ta.po +++ samba-3.3.0/debian/po/ta.po @@ -0,0 +1,282 @@ +# translation of samba_po.po to TAMIL +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# drtvasudevan , 2006. +msgid "" +msgstr "" +"Project-Id-Version: samba_po\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2006-12-16 20:10+0530\n" +"Last-Translator: drtvasudevan \n" +"Language-Team: TAMIL \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "smb.conf ஠டிஹெசà¯à®šà®¿à®ªà®¿ யிலிரà¯à®¨à¯à®¤à¯ WINS அமைபà¯à®ªà¯ˆ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤ மாறà¯à®±à®¿à®¯à®®à¯ˆà®•à¯à®•à®µà®¾ ?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"உஙà¯à®•à®³à¯ கணினி IP à®®à¯à®•à®µà®°à®¿à®¯à¯ˆ வலைப௠பினà¯à®©à®²à®¿à®²à®¿à®°à¯à®¨à¯à®¤à¯ டிஹெசà¯à®šà®¿à®ªà®¿ சேவையகதà¯à®¤à®¿à®©à¯ மூலம௠" +"பெறà¯à®®à®¾à®©à®¾à®²à¯ அநà¯à®¤ டிஹெசà¯à®šà®¿à®ªà®¿ சேவையகம௠வலைப௠பினà¯à®©à®²à®¿à®²à¯ உளà¯à®³ WINS servers (விணà¯à®¸à¯ " +"சேவையகஙà¯à®•à®³à¯) (\"NetBIOS name servers\") நெடà¯à®ªà®¯à®¾à®¸à¯ பெயர௠சேவையகஙà¯à®•à®³à¯ கà¯à®±à®¿à®¤à¯à®¤ தகவலà¯à®•à®³à¯ˆ " +"தர இயலà¯à®®à¯. இதறà¯à®•à¯ smb.conf கோபà¯à®ªà¯ˆ டிஹெசà¯à®šà®¿à®ªà®¿ தரà¯à®®à¯ WINS வடிவமைபà¯à®ªà¯ˆ /etc/samba/" +"dhcp.conf கோபà¯à®ªà®¿à®²à®¿à®°à¯à®¨à¯à®¤à¯ தானியஙà¯à®•à®¿à®¯à®¾à®• படிகà¯à®•à¯à®®à¯ படி அமைகà¯à®• வேணà¯à®Ÿà¯à®®à¯." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "இநà¯à®¤ வசதியை பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®¿à®•à¯ கொளà¯à®³ டிஹெசà¯à®šà®¿à®ªà®¿3 சாரà¯à®¨à¯à®¤à¯‹à®©à¯ பொதியை நிறà¯à®µ வேணà¯à®Ÿà¯à®®à¯." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "smb.conf ஠தானியஙà¯à®•à®¿à®¯à®¾à®• வடிவமைகà¯à®•à®²à®¾à®®à®¾?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"மறà¯à®± சாமà¯à®ªà®¾ வடிவமைபà¯à®ªà¯ /etc/samba/smb.conf கோபà¯à®ªà®¿à®²à¯ உளà¯à®³ எலà¯à®²à¯ˆ செயல௠அலகà¯à®•à®³à¯ˆ " +"(parameters) பாதிகà¯à®•à¯à®®à¯ கேளà¯à®µà®¿à®•à®³à¯ˆà®ªà¯ பறà¯à®±à®¿à®¯à®¤à¯. இநà¯à®¤ கோபà¯à®ªà¯ சாமà¯à®ªà®¾ நிரலà¯à®•à®³à¯ˆ(nmbd and " +"smbd) (எனà¯à®Žà®®à¯à®ªà®¿à®Ÿà®¿ மறà¯à®±à¯à®®à¯ எஸà¯à®Žà®®à¯à®ªà®¿à®Ÿà®¿) வடிவமைகà¯à®• பயனà¯à®ªà®Ÿà¯à®µà®¤à¯. உஙà¯à®•à®³à®¤à¯ தறà¯à®ªà¯‹à®¤à¯ˆà®¯ smb.conf " +"கோபà¯à®ªà¯ 'இனà¯à®•à¯à®²à¯‚டà¯' ('include') வரி அலà¯à®²à®¤à¯ பல வரிகளை ஆகà¯à®•à®¿à®°à®®à®¿à®•à¯à®•à¯à®®à¯ தேரà¯à®µà¯ˆ உளà¯à®³à®Ÿà®•à¯à®•à®¿à®¯à®¤à¯. " +"இத௠தானியஙà¯à®•à®¿ வடிவமைபà¯à®ªà¯ செயலை கà¯à®´à®ªà¯à®ªà®²à®¾à®®à¯. அதனால௠அத௠மீணà¯à®Ÿà¯à®®à¯ வேலை செயà¯à®µà®¤à®±à¯à®•à¯ உஙà¯à®•à®³à¯ˆ " +"கைமà¯à®±à¯ˆà®¯à®¾à®• உஙà¯à®•à®³à¯ smb.conf கோபà¯à®ªà¯ˆ திரà¯à®¤à¯à®¤à®•à¯ கோரலாமà¯." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"நீஙà¯à®•à®³à¯ இதை தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•à®¾à®µà®¿à®Ÿà¯à®Ÿà®¾à®²à¯ எநà¯à®¤ வடிவமைபà¯à®ªà¯ˆà®¯à¯à®®à¯ நீஙà¯à®•à®³à¯‡à®¤à®¾à®©à¯ செயà¯à®¯ வேணà¯à®Ÿà¯à®®à¯. மேலà¯à®®à¯ " +"அவà¯à®µà®ªà¯à®ªà¯‹à®¤à¯ நிகழà¯à®®à¯ வடிவமைபà¯à®ªà¯ மேமà¯à®ªà®¾à®Ÿà¯à®Ÿà¯ வசதியை இழகà¯à®• நேரà¯à®®à¯." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "வேலைகà¯à®•à¯à®´à¯/களப௠பெயரà¯:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"சாரà¯à®¨à¯à®¤à¯‹à®©à¯à®•à®³à®¾à®²à¯ வினவப௠படà¯à®®à¯ போத௠இநà¯à®¤ சேவையகம௠எநà¯à®¤ வேலைக௠கà¯à®´à¯à®µà¯ˆ சேரà¯à®¨à¯à®¤à®¤à®¾à®• தெரிய " +"வேணà¯à®Ÿà¯à®®à¯ என கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿà¯à®•. இநà¯à®¤ எலà¯à®²à¯ˆ செயல௠அலக௠security=domain வடிவமைபà¯à®ªà®¿à®²à¯ உளà¯à®³ களப௠" +"பெயரையà¯à®®à¯ கடà¯à®Ÿà¯à®ªà¯ படà¯à®¤à¯à®¤à¯à®®à¯." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "கடவà¯à®šà¯ சொல௠கà¯à®±à®¿à®¯à¯€à®Ÿà¯à®Ÿà®¾à®•à¯à®•à®¤à¯à®¤à¯ˆ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®µà®¾?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"அனைதà¯à®¤à¯ விணà¯à®Ÿà¯‹à®¸à¯ சாரà¯à®¨à¯à®¤à¯‹à®©à¯à®•à®³à¯à®®à¯ SMB சேவையகஙà¯à®•à®³à¯à®Ÿà®©à¯ கà¯à®±à®¿à®¯à¯€à®Ÿà¯à®Ÿà®¾à®•à¯à®•à®¿à®¯ கடவà¯à®šà¯ சொறà¯à®•à®³à¯ˆ பயன௠" +"படà¯à®¤à¯à®¤à®¿ தொடரà¯à®ªà¯ கொளà¯à®•à®¿à®©à¯à®±à®©. நீஙà¯à®•à®³à¯ தெளிவான உரை கடவà¯à®šà¯ சொலà¯à®²à¯ˆ பயன௠படà¯à®¤à¯à®¤ விரà¯à®®à¯à®ªà®¿à®©à®¾à®²à¯ " +"விணà¯à®Ÿà¯‹à®¸à¯ பதிவகதà¯à®¤à®¿à®²à¯ மாறà¯à®±à®™à¯à®•à®³à¯ செயà¯à®¯ வேணà¯à®Ÿà¯à®®à¯." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"இநà¯à®¤ தேரà¯à®µà¯ˆ செயல௠படà¯à®¤à¯à®¤ பலமாகப௠பரிநà¯à®¤à¯à®°à¯ˆà®•à¯à®•à®ªà¯ படà¯à®•à®¿à®±à®¤à¯. அபà¯à®ªà®Ÿà®¿à®šà¯ செயà¯à®¤à®¾à®²à¯ " +"செலà¯à®²à¯à®ªà®Ÿà®¿à®¯à®¾à®•à¯à®®à¯ /etc/samba/smbpasswd கோபà¯à®ªà¯ உஙà¯à®•à®³à®¿à®Ÿà®®à¯ இரà¯à®ªà¯à®ªà®¤à¯ˆà®¯à¯à®®à¯ நீஙà¯à®•à®³à¯ ஒவà¯à®µà¯Šà®°à¯ " +"பயனரà¯à®•à¯à®•à¯à®®à¯ smbpasswd கடà¯à®Ÿà®³à¯ˆ மூலம௠தனிதà¯à®¤à®©à®¿ கடவà¯à®šà¯ சொல௠அமைபà¯à®ªà®¤à¯ˆà®¯à¯à®®à¯ உறà¯à®¤à®¿ செயà¯à®¤à¯ " +"கொளà¯à®³à®µà¯à®®à¯. " + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr " /var/lib/samba/passdb.tdb எனà¯à®± சாமà¯à®ªà®¾ கடவà¯à®šà¯ சொல௠தரவà¯à®¤à¯ தளதà¯à®¤à¯ˆ உரà¯à®µà®¾à®•à¯à®•à®µà®¾?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"பெரà¯à®®à¯à®ªà®¾à®²à®¾à®© விணà¯à®Ÿà¯‹à®¸à¯ பதிவà¯à®•à®³à¯à®Ÿà®©à¯ இசைநà¯à®¤à¯ போவதறà¯à®•à¯ சாமà¯à®ªà®¾à®µà¯ˆ கà¯à®±à®¿à®¯à¯€à®Ÿà¯à®Ÿà®¾à®•à¯à®•à®®à¯ செயà¯à®¤ கடவà¯à®šà¯ " +"சொறà¯à®•à®³à¯ˆ பயன௠படà¯à®¤à¯à®¤à¯à®®à®¾à®±à¯ அமைகà¯à®• வேணà¯à®Ÿà¯à®®à¯. இதறà¯à®•à¯ /etc/passwd கோபà¯à®ªà¯ அலà¯à®²à®¾à®¤à¯ வேறொர௠" +"கோபà¯à®ªà®¿à®²à¯ பயனர௠கடவà¯à®šà¯ சொறà¯à®•à®³à¯ˆ சேமிகà¯à®• வேணà¯à®Ÿà¯à®®à¯. இநà¯à®¤ கோபà¯à®ªà¯ˆ தானியஙà¯à®•à®¿à®¯à®¾à®• உரà¯à®µà®¾à®•à¯à®•à®²à®¾à®®à¯. " +"ஆனால௠கடவà¯à®šà¯ சொறà¯à®•à®³à¯ˆ கைமà¯à®±à¯ˆà®¯à®¾à®• smbpasswd கடà¯à®Ÿà®³à¯ˆ மூலம௠சேரà¯à®•à¯à®• வேணà¯à®Ÿà¯à®®à¯; எதிரà¯à®•à®¾à®²à®¤à¯à®¤à®¿à®²à¯ " +"அதை இறà¯à®±à¯ˆà®ªà¯ படà¯à®¤à¯à®¤à®µà¯à®®à¯ வேணà¯à®Ÿà¯à®®à¯. " + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"நீஙà¯à®•à®³à¯ அதை உரà¯à®µà®¾à®•à¯à®•à®µà®¿à®²à¯à®²à¯ˆà®¯à®¾à®©à®¾à®²à¯ எளிய உரை கடவà¯à®šà¯ சொறà¯à®•à®³à¯ˆ பயன௠படà¯à®¤à¯à®¤à¯à®®à®¾à®±à¯ சாமà¯à®ªà®¾à®µà¯ˆ " +"(அனேகமாக உஙà¯à®•à®³à¯ சாரà¯à®¨à¯à®¤à¯‹à®©à¯ இயநà¯à®¤à®¿à®°à®™à¯à®•à®³à¯ˆà®¯à¯à®®à¯) மீணà¯à®Ÿà¯à®®à¯ வடிவமைகà¯à®• வேணà¯à®Ÿà¯à®®à¯." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"சாமà¯à®ªà®¾ ஆவணஙà¯à®•à®³à¯ (samba-doc) பொதிகளில௠இரà¯à®¨à¯à®¤à¯ /usr/share/doc/samba-doc/htmldocs/" +"ENCRYPTION.html ஠மேலதிக விவரஙà¯à®•à®³à¯à®•à¯à®•à¯à®ªà¯ பாரà¯à®•à¯à®•à®µà¯à®®à¯." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "கிஙà¯à®•à®°à®©à¯à®•à®³à¯ (டீமனà¯à®•à®³à¯)" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "சாமà¯à®ªà®¾à®µà¯ˆ எபà¯à®ªà®Ÿà®¿ இயகà¯à®• விரà¯à®®à¯à®ªà¯à®•à®¿à®±à¯€à®°à¯à®•à®³à¯?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"சாமà¯à®ªà®¾ கிஙà¯à®•à®°à®©à®¾à®© எஸà¯à®Žà®®à¯à®ªà®¿à®Ÿà®¿ இயலà¯à®ªà®¾à®© கிஙà¯à®•à®°à®©à®¾à®• இயஙà¯à®•à®²à®¾à®®à¯ அலà¯à®²à®¤à¯ inetd லிரà¯à®¨à¯à®¤à¯ இயஙà¯à®•à®²à®¾à®®à¯. " +"கிஙà¯à®•à®°à®©à®¾à®• இயஙà¯à®•à¯à®µà®¤à¯‡ பரிநà¯à®¤à¯à®°à¯ˆà®•à¯à®•à®ªà¯ படà¯à®•à®¿à®±à®¤à¯." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "மறà¯à®± சாமà¯à®ªà®¾ வடிவமைபà¯à®ªà¯ /etc/samba/smb.conf கோபà¯à®ªà®¿à®²à¯ உளà¯à®³ எலà¯à®²à¯ˆ செயல௠அலகà¯à®•à®³à¯ˆ " +#~ "(parameters) பாதிகà¯à®•à¯à®®à¯ கேளà¯à®µà®¿à®•à®³à¯ˆà®ªà¯ பறà¯à®±à®¿à®¯à®¤à¯. இநà¯à®¤ கோபà¯à®ªà¯ சாமà¯à®ªà®¾ நிரலà¯à®•à®³à¯ˆ(nmbd and " +#~ "smbd) (எனà¯à®Žà®®à¯à®ªà®¿à®Ÿà®¿ மறà¯à®±à¯à®®à¯ எஸà¯à®Žà®®à¯à®ªà®¿à®Ÿà®¿) வடிவமைகà¯à®• பயனà¯à®ªà®Ÿà¯à®µà®¤à¯. உஙà¯à®•à®³à®¤à¯ தறà¯à®ªà¯‹à®¤à¯ˆà®¯ smb." +#~ "conf கோபà¯à®ªà¯ 'இனà¯à®•à¯à®²à¯‚டà¯' ('include') வரி அலà¯à®²à®¤à¯ பல வரிகளை ஆகà¯à®•à®¿à®°à®®à®¿à®•à¯à®•à¯à®®à¯ தேரà¯à®µà¯ˆ " +#~ "உளà¯à®³à®Ÿà®•à¯à®•à®¿à®¯à®¤à¯. இத௠தானியஙà¯à®•à®¿ வடிவமைபà¯à®ªà¯ செயலை கà¯à®´à®ªà¯à®ªà®²à®¾à®®à¯. அதனால௠அத௠மீணà¯à®Ÿà¯à®®à¯ வேலை " +#~ "செயà¯à®µà®¤à®±à¯à®•à¯ உஙà¯à®•à®³à¯ˆ கைமà¯à®±à¯ˆà®¯à®¾à®• உஙà¯à®•à®³à¯ smb.conf கோபà¯à®ªà¯ˆ திரà¯à®¤à¯à®¤à®•à¯ கோரலாமà¯." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "சாரà¯à®¨à¯à®¤à¯‹à®©à¯à®•à®³à®¾à®²à¯ வினவப௠படà¯à®®à¯ போத௠இநà¯à®¤ சேவையகம௠எநà¯à®¤ வேலைக௠கà¯à®´à¯à®µà¯ˆ சேரà¯à®¨à¯à®¤à®¤à®¾à®• தெரிய " +#~ "வேணà¯à®Ÿà¯à®®à¯ என கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿà¯à®•. இநà¯à®¤ எலà¯à®²à¯ˆ செயல௠அலக௠security=domain வடிவமைபà¯à®ªà®¿à®²à¯ உளà¯à®³ " +#~ "களப௠பெயரையà¯à®®à¯ கடà¯à®Ÿà¯à®ªà¯ படà¯à®¤à¯à®¤à¯à®®à¯." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "அனைதà¯à®¤à¯ விணà¯à®Ÿà¯‹à®¸à¯ சாரà¯à®¨à¯à®¤à¯‹à®©à¯à®•à®³à¯à®®à¯ SMB சேவையகஙà¯à®•à®³à¯à®Ÿà®©à¯ கà¯à®±à®¿à®¯à¯€à®Ÿà¯à®Ÿà®¾à®•à¯à®•à®¿à®¯ கடவà¯à®šà¯ சொறà¯à®•à®³à¯ˆ பயன௠" +#~ "படà¯à®¤à¯à®¤à®¿ தொடரà¯à®ªà¯ கொளà¯à®•à®¿à®©à¯à®±à®©. நீஙà¯à®•à®³à¯ தெளிவான உரை கடவà¯à®šà¯ சொலà¯à®²à¯ˆ பயன௠படà¯à®¤à¯à®¤ விரà¯à®®à¯à®ªà®¿à®©à®¾à®²à¯ " +#~ "விணà¯à®Ÿà¯‹à®¸à¯ பதிவகதà¯à®¤à®¿à®²à¯ மாறà¯à®±à®™à¯à®•à®³à¯ செயà¯à®¯ வேணà¯à®Ÿà¯à®®à¯." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "இநà¯à®¤ தேரà¯à®µà¯ˆ செயல௠படà¯à®¤à¯à®¤ பலமாகப௠பரிநà¯à®¤à¯à®°à¯ˆà®•à¯à®•à®ªà¯ படà¯à®•à®¿à®±à®¤à¯. அபà¯à®ªà®Ÿà®¿à®šà¯ செயà¯à®¤à®¾à®²à¯ " +#~ "செலà¯à®²à¯à®ªà®Ÿà®¿à®¯à®¾à®•à¯à®®à¯ /etc/samba/smbpasswd கோபà¯à®ªà¯ உஙà¯à®•à®³à®¿à®Ÿà®®à¯ இரà¯à®ªà¯à®ªà®¤à¯ˆà®¯à¯à®®à¯ நீஙà¯à®•à®³à¯ ஒவà¯à®µà¯Šà®°à¯ " +#~ "பயனரà¯à®•à¯à®•à¯à®®à¯ smbpasswd கடà¯à®Ÿà®³à¯ˆ மூலம௠தனிதà¯à®¤à®©à®¿ கடவà¯à®šà¯ சொல௠அமைபà¯à®ªà®¤à¯ˆà®¯à¯à®®à¯ உறà¯à®¤à®¿ செயà¯à®¤à¯ " +#~ "கொளà¯à®³à®µà¯à®®à¯. " + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "சாமà¯à®ªà®¾ ஆவணஙà¯à®•à®³à¯ (samba-doc) பொதிகளில௠இரà¯à®¨à¯à®¤à¯ /usr/share/doc/samba-doc/" +#~ "htmldocs/ENCRYPTION.html ஠மேலதிக விவரஙà¯à®•à®³à¯à®•à¯à®•à¯à®ªà¯ பாரà¯à®•à¯à®•à®µà¯à®®à¯." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "/etc/samba/smbpasswd à® /var/lib/samba/passdb.tdb கà¯à®•à¯ நகரà¯à®¤à¯à®¤à®µà®¾?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "சாமà¯à®ªà®¾ 3.0 /etc/samba/smbpasswd கோபà¯à®ªà¯ˆ நீகà¯à®•à®¿ செமà¯à®®à¯ˆà®¯à®¾à®© à®®à¯à®´à¯à®®à¯ˆà®¯à®¾à®© SAM (எஸà¯à®à®Žà®®à¯) " +#~ "தரவà¯à®¤à¯à®¤à®³ இடைமà¯à®•à®¤à¯à®¤à¯ˆ அறிமà¯à®•à®ªà¯ படà¯à®¤à¯à®¤à¯à®•à®¿à®±à®¤à¯." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "இரà¯à®ªà¯à®ªà®¿à®²à¯à®³à¯à®³ smbpasswd கோபà¯à®ªà¯ˆ /var/lib/samba/passdb.tdb கà¯à®•à¯ தானியஙà¯à®•à®¿à®¯à®¾à®• மாறà¯à®± " +#~ "வேணà¯à®Ÿà¯à®®à®¾ என உறà¯à®¤à®¿ செயà¯à®¯à®µà¯à®®à¯. நீஙà¯à®•à®³à¯ LDAP போனà¯à®± வேற௠pdb பின௠நிலையை பயன௠படà¯à®¤à¯à®¤ " +#~ "உதà¯à®¤à¯‡à®šà®¿à®¤à¯à®¤à¯ இரà¯à®¨à¯à®¤à®¾à®²à¯ இதை தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®• வேணà¯à®Ÿà®¾à®®à¯." --- samba-3.3.0.orig/debian/po/fi.po +++ samba-3.3.0/debian/po/fi.po @@ -0,0 +1,287 @@ +# Translation of samba_po.po to finnish. +# +# Tapio Lehtonen , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: Samba fi\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-13 18:35+0200\n" +"Last-Translator: Tapio Lehtonen \n" +"Language-Team: Finnish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Muokataanko smb.conf käyttämään DHCP:ltä saatua WINS-asetusta?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Jos tietokone saa verkkoasetukset verkon DHCP-palvelimelta, saattaa DHCP-" +"palvelin tarjota tietoa myös verkon WINS-palvelimista (\"NetBIOS-" +"nimipalvelimista\"). Tällöin on tiedostoa smb.conf muutettava, jotta DHCP:n " +"tarjoamat WINS-asetukset luetaan automaattisesti tiedostosta /etc/samba/dhcp." +"conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Tätä ominaisuutta voi käyttää vain jos paketti dhcp3-client on asennettu." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Tehdäänkö asetukset tiedostoon smb.conf automaattisesti?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Loput Samban asetuksista ovat kysymyksiä jotka vaikuttavat parametreihin " +"Samban ohjelmien (nmbd ja smbd) asetustiedostossa /etc/samba/smb.conf. Nyt " +"tiedostossa smb.conf on \"include\"-rivi tai useita rivejä pitkä valitsin, " +"mikä sotkee automatisoidun asetukset tekevän ohjelman ja pakottaa " +"muokkaamaan tiedostoa smb.conf käsin, jotta se taas toimisi." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Jos et valitse tätä toimintoa, on kaikki asetusten muutokset tehtävä itse, " +"etkä pääse hyötymään julkaistavista asetusten parannuksista." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Työryhmän/Verkkoalueen nimi:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Anna sen verkkoalueen nimi, johon tämä palvelin ilmoittaa kuuluvansa " +"asiakaskoneiden kysyessä. Huomaa, että tämä parametri on myös asetuksen " +"security=domain kanssa käytettävä verkkoalueen nimi." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Salataanko salasanat?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Kaikki viime aikoina julkistetut Windows-asiakkaat salaavat salasanat " +"liikennöitäessä SMB-palvelimien kanssa. Jos halutaan käyttää selväkielisiä " +"salasanoja, on Windows registryssä olevaa parametria muutettava." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Tämän valitsimen pitämistä päällä suositellaan suuresti. Jos se on päällä, " +"on varmistuttava tiedoston /etc/samba/smbpasswd kelvollisuudesta ja että " +"siellä on jokaiselle käyttäjälle tehty salasana komennolla smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Luodaanko samban salasanatietokanta, /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"Jotta Samba olisi yhteensopiva useimpien Windows-versioiden oletusten " +"kanssa, on Samban käytettävä salattuja salasanoja. Tällöin on salasanat " +"tallennettava muualle kuin tiedostoon /etc/passwd. Tallennustiedosto voidaan " +"luoda automaattisesti, mutta salasanat on itse lisättävä komennolla " +"smbpasswd ja ne on itse pidettävä ajan tasalla jatkossa." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Jos tiedostoa ei luoda, on Samba asetettava käyttämään selväkielisiä " +"salasanoja (kuten asiakaskoneetkin)." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Katso lisätietoja paketin samba-doc tiedostosta /usr/share/doc/samba-doc/" +"htmldocs/ENCRYPTION.html." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "palvelinprosessit" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Kuinka Samba käynnistetään?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Samban palvelinprosessi smbd voi toimia tavallisena prosessina tai inetd voi " +"käynnistää sen. Tavallisen prosessin käyttämistä suositellaan." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Loput Samban asetuksista ovat kysymyksiä jotka vaikuttavat parametreihin " +#~ "Samban ohjelmien (nmbd ja smbd) asetustiedostossa /etc/samba/smb.conf. " +#~ "Nyt tiedostossa smb.conf on \"include\"-rivi tai useita rivejä pitkä " +#~ "valitsin, mikä sotkee automatisoidun asetukset tekevän ohjelman ja " +#~ "pakottaa muokkaamaan tiedostoa smb.conf käsin, jotta se taas toimisi." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Anna sen verkkoalueen nimi, johon tämä palvelin ilmoittaa kuuluvansa " +#~ "asiakaskoneiden kysyessä. Huomaa, että tämä parametri on myös asetuksen " +#~ "security=domain kanssa käytettävä verkkoalueen nimi." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Kaikki viime aikoina julkistetut Windows-asiakkaat salaavat salasanat " +#~ "liikennöitäessä SMB-palvelimien kanssa. Jos halutaan käyttää " +#~ "selväkielisiä salasanoja, on Windows registryssä olevaa parametria " +#~ "muutettava." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Tämän valitsimen pitämistä päällä suositellaan suuresti. Jos se on " +#~ "päällä, on varmistuttava tiedoston /etc/samba/smbpasswd kelvollisuudesta " +#~ "ja että siellä on jokaiselle käyttäjälle tehty salasana komennolla " +#~ "smbpasswd." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Katso lisätietoja paketin samba-doc tiedostosta /usr/share/doc/samba-doc/" +#~ "htmldocs/ENCRYPTION.html." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "passdb:n taustaosien ketjuttamista ei tueta" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Versiosta 3.0.23 alkaen samba ei enää tue useiden taustaosien " +#~ "ketjuttamista \"passdb backend\" -parametrissa. Tämän koneen smb.conf-" +#~ "tiedostossa vaikuttaa olevan bassdb backend -parametri jossa on luettelo " +#~ "taustaosista. Samban uusi versio ei toimi ennen kuin tämä korjataan." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "Siirretäänkö tiedosto /etc/samba/smbpasswd tiedostoksi /var/lib/samba/" +#~ "passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samban versiossa 3.0 tuli mukaan täydellisempi SAM-tietokantarajapinta " +#~ "joka korvaa tiedoston /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Vahvista, että olemassa oleva tiedosto smbpasswd siirretään " +#~ "automaattisesti tiedostoksi /var/lib/samba/passdb.tdb. Älä valitse tätä " +#~ "jos aiot käyttää jotain muuta pdb-taustaosaa (esim. LDAP)." --- samba-3.3.0.orig/debian/po/km.po +++ samba-3.3.0/debian/po/km.po @@ -0,0 +1,337 @@ +# translation of km.po to Khmer +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# Khoem Sokhem , 2006, 2007. +msgid "" +msgstr "" +"Project-Id-Version: samba_po_km\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-03-13 08:39+0700\n" +"Last-Translator: Khoem Sokhem \n" +"Language-Team: Khmer \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +# Type: boolean +# Description +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "កែប្រែ smb.conf ដើម្បី​ប្រើ​ការកំណážáŸ‹â€‹ážšáž”ស់ WINS ពី DHCP ?" + +# Type: boolean +# Description +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"ប្រសិន​បើ​កុំព្យូទáŸážšâ€‹ážšáž”ស់​អ្នក​ទទួល​​ពáŸážáŸŒáž˜áž¶áž“​អាសយដ្ឋាន IP ពី​ម៉ាស៊ីន​បម្រើ DHCP នៅ​លើ​បណ្ដាញ ម៉ាស៊ីន​បម្រើ​ DHCP " +"អាច​ផ្ដល់​ផង​ដែរ​នូវ​ពáŸážáŸŒáž˜áž¶áž“​អំពី​ម៉ាស៊ីន​បម្រើ WINS (\"ឈ្មោះ​ម៉ាស៊ីន​បម្រើ NetBIOS\") ដែល​បង្ហាញ​នៅ​លើ​" +"បណ្ដាញ ។ វា​ážáŸ’រូវ​ការ​ការ​ផ្លាស់ប្ដូរ​ទៅ​នឹង​ឯកសារ smb.conf របស់​អ្នក ដូច្នáŸáŸ‡áž€áž¶ážšâ€‹áž€áŸ†ážŽážáŸ‹ážšáž”ស់ WINS ដែល​" +"បានផ្ដល់​ដោយ DHCP នឹង​ážáŸ’រូវ​បាន​អាន​ដោយ​ស្វáŸáž™â€‹áž”្រវážáŸ’ážáž·â€‹áž–ី /etc/samba/dhcp.conf." + +# Type: boolean +# Description +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "កញ្ចប់​ម៉ាស៊ីន​ភ្ញៀវ dhcp3 ážáŸ’រូវ​ážáŸ‚​បាន​ដំឡើង​ដើម្បី​ទទួល​បាន​ផលប្រយោជនáŸážšáž”ស់​លក្ážážŽáŸˆâ€‹áž–ិសáŸážŸâ€‹áž“áŸáŸ‡Â áŸ”" + +# Type: boolean +# Description +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "កំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ smb.conf ដោយ​ស្វáŸáž™â€‹áž”្រវážáŸ’ážáž·Â ?" + +# Type: boolean +# Description +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"ការ​កំណážáŸ‹â€‹ážšáž…នា​សម្ពáŸáž“្ធ​របស់ Samba ទាក់ទង​ជា​មួយ​នឹង​សំណួរ​ដែល​ប៉ះពាល់​ប៉ារ៉ាម៉ែážáŸ’រ​នៅ​ក្នុង in /etc/samba/" +"smb.conf ដែល​ជា​ឯកសារ​បាន​ប្រើ​ដើម្បី​កំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ​កម្មវិធី Samba (nmbd áž“áž·áž„ smbd) ។ smb." +"conf បច្ចុប្បន្ន​របស់​អ្នក​មាន​បន្ទាážáŸ‹ 'include' ឬ​ជម្រើស​ដែល​បញ្ចូល​បន្ទាážáŸ‹â€‹áž‡áž¶â€‹áž…្រើន​ចូល​គ្នា ដែល​អាច​បន្លំ​" +"ដំណើរ​ការ​កំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ ដោយ​ស្វáŸáž™áž”្រវážáŸ’ážáž· ហើយ​ážáž˜áŸ’រូវ​ឲ្យ​អ្នក​កែសម្រួល smb.conf របស់​អ្នក​ដោយ​ដៃ​ដើម្បី​ឲ្យ​" +"វា​ធ្វើការ​ម្ដង​ទៀážÂ áŸ”" + +# Type: boolean +# Description +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"ប្រសិន​បើ​អ្នក​មិន​ជ្រើស​ជម្រើស​នáŸáŸ‡â€‹áž‘០អ្នក​នឹង​ážáŸ’រូវ​ážáŸ‚​គ្រប់គ្រង​ការ​ផ្លាស់ប្ដូរ​ការ​​កំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ​ណាមួយ​ដោយ​ážáŸ’លួន​" +"អ្នក​ផ្ទាល់ និង​មិន​អាច​បាន​ផល​ប្រយោជនáŸâ€‹áž–ី​ការ​បង្កើន​ការ​កំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ​យ៉ាង​ទៀážâ€‹áž‘ាážáŸ‹â€‹áž”ាន​ទáŸÂ áŸ”" + +# Type: string +# Description +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "ឈ្មោះ​ក្រុមការងារ/ដែន ៖" + +# Type: string +# Description +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"សូម​បញ្ជាក់​ក្រុម​ការងារ​ដែល​អ្នក​ចង់​ឲ្យ​ម៉ាស៊ីន​បម្រើ​នáŸáŸ‡â€‹áž”ង្ហាញ​នៅ​ពáŸáž›â€‹ážŠáŸ‚ល​បាន​សួរ ដោយ​ម៉ាស៊ីន​ភ្ញៀវ ។ ចំណាំ​ážáž¶ " +"ប៉ារ៉ាម៉ែážáŸ’រ​នáŸáŸ‡â€‹áž€áŸâ€‹ážáŸ’ážšáž½ážâ€‹áž–áž·áž“áž·ážáŸ’យ​ឈ្មោះ​ដែន ដែល​បាន​ប្រើ​ដោយ​សុវážáŸ’ážáž·áž—ាព=ការ​កំណážáŸ‹â€‹ážŠáŸ‚ន ។" + +# Type: boolean +# Description +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "ប្រើ​ការ​អ៊ិនគ្រីប​ពាក្យ​សម្ងាážáŸ‹Â ?" + +# Type: boolean +# Description +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"គ្រប់​ម៉ាស៊ីន​ភ្ញៀវ​ដែល​ប្រើ​វីនដូ​ážáŸ’មីៗ​ទាំង​អស់​ទាក់ទង​ជា​មួយ​ម៉ាស៊ីន​បម្រើ SMB ដោយ​ប្រើ​ពាក្យសម្ងាážáŸ‹â€‹ážŠáŸ‚ល​បាន​" +"អ៊ិនគ្រីប ។ ប្រសិន​បើ​អ្នក​ចង់​ជម្រះ​ពាក្យសម្ងាážáŸ‹â€‹áž¢ážáŸ’ážáž”áž‘ អ្នក​នឹង​ážáŸ’រូវážáŸ‚​ផ្លាស់ប្ដូរ​ប៉ារ៉ាម៉ែážáŸ’រ​នៅ​ក្នុង បញ្ជី​ឈ្មោះ​" +"របស់​វីនដូ ។" + +# Type: boolean +# Description +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"បាន​ផ្ដល់​អនុសាសនáŸâ€‹áž™áŸ‰áž¶áž„​ážáŸ’លាំង​ឲ្យ​អនុញ្ញាážâ€‹áž‡áž˜áŸ’រើស​នáŸáŸ‡Â áŸ” ប្រសិន​បើ​អ្នក​ធ្វើ​ដូច្នáŸáŸ‡ សូម​ប្រាកដ​ážáž¶ អ្នក​មាន​" +"ឯកសារ /etc/samba/smbpasswd ážáŸ’រឹមážáŸ’រូវ ហើយ​អ្នក​បាន​កំណážáŸ‹â€‹áž–ាក្យ​សម្ងាážáŸ‹â€‹ ដូច្នáŸáŸ‡â€‹ážŸáž˜áŸ’រាប់​អ្នក​ប្រើ​" +"ម្នាក់ៗ អាច​ប្រើ​ពាក្យ​បញ្ជា smbpasswd ។" + +# Type: boolean +# Description +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "បង្កើážâ€‹áž˜áž¼áž›ážŠáŸ’ឋាន​ទិន្ននáŸáž™áž–ាក្យសម្ងាážáŸ‹ samba /var/lib/samba/passdb.tdb ?" + +# Type: boolean +# Description +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"ដើម្បី​ឆប​ជា​មួយ​នឹង​លំនាំដើម​នៅ​ក្នុង​កំណែ​ភាគ​ច្រើន​របស់​វីនដូ Samba ážáŸ’រូវ​ážáŸ‚​បាន​កំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ​ដើម្បី​ប្រើ​ពាក្យ​" +"សម្ងាážáŸ‹â€‹ážŠáŸ‚ល​បាន​អ៊ិនគ្រីប ។ វា​ážáŸ’រូវ​ការ​ពាក្យសម្ងាážáŸ‹â€‹áž¢áŸ’នក​ប្រើ​ដើម្បី​ទុក​ក្នុង​ឯកសារ​ដោយ​ឡែក​ពី /etc/" +"passwd ។ ឯកសារ​នáŸáŸ‡â€‹áž¢áž¶áž…​ážáŸ’រូវ​បាន​បង្កើážâ€‹ážŠáŸ„យ​ស្វáŸáž™áž”្រវážáŸ’ážáž· ប៉ុន្ážáŸ‚​ពាក្យ​សម្ងាážáŸ‹â€‹ážáŸ’រូវ​ážáŸ‚​បាន​បន្ážáŸ‚ម​ដោយ​ដៃ​ដោយ​" +"ážšážáŸ‹ smbpasswd និង​ážáŸ’រូវ​បាន​ធ្វើឲ្យ​ទាន់​សមáŸáž™â€‹áž€áŸ’នុង​ពáŸáž›â€‹áž¢áž“ាគážÂ áŸ”" + +# Type: boolean +# Description +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"ប្រសិន​បើ​អ្នក​មិន​បង្កើážâ€‹ážœáž¶ អ្នក​ážáŸ’រូវ​ážáŸ‚​កំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ Samba (និង​ប្រហែល​ជាម៉ាស៊ីន​ភ្ញៀវ​របស់​អ្នក) ដើម្បី​" +"ប្រើពាក្យសម្ងាážáŸ‹áž¢ážáŸ’ážáž”ទ​ធម្មážáž¶Â áŸ”" + +# Type: boolean +# Description +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"សម្រាប់​សáŸáž…ក្ážáž¸â€‹áž›áž˜áŸ’អិážâ€‹áž”ន្ážáŸ‚ម​សូម​មើល /usr/share/doc/samba-doc/htmldocs/Samba3-" +"Developers-Guide/pwencrypt.html ពី​កញ្ចប់ samba-doc ។" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "ដáŸáž˜áž·áž“ " + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "ážáž¾â€‹áž¢áŸ’នក​ចង់​រážáŸ‹ Samba ážáž¶áž˜â€‹ážœáž·áž’ី​ណា ?" + +# Type: select +# Description +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"ដáŸáž˜áž·áž“ Samba smbd អាចរážáŸ‹áž‡áž¶ážŠáŸáž˜áž·áž“ធម្មážáž¶ ឬពី inetd ។ ការរážáŸ‹áž‡áž¶ážŠáŸáž˜áž·áž“មួយážáŸ’រូវបានផ្ដល់អនុសាសនáŸÂ áŸ”" + +# Type: boolean +# Description +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "ការ​កំណážáŸ‹â€‹ážšáž…នា​សម្ពáŸáž“្ធ​របស់ Samba ទាក់ទង​ជា​មួយ​នឹង​សំណួរ​ដែល​ប៉ះពាល់​ប៉ារ៉ាម៉ែážáŸ’រ​នៅ​ក្នុង in /etc/" +#~ "samba/smb.conf ដែល​ជា​ឯកសារ​បាន​ប្រើ​ដើម្បី​កំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ​កម្មវិធី Samba (nmbd áž“áž·áž„ " +#~ "smbd) ។ smb.conf បច្ចុប្បន្ន​របស់​អ្នក​មាន​បន្ទាážáŸ‹ 'include' ឬ​ជម្រើស​ដែល​បញ្ចូល​បន្ទាážáŸ‹â€‹áž‡áž¶â€‹áž…្រើន​" +#~ "ចូល​គ្នា ដែល​អាច​បន្លំ​ដំណើរ​ការ​កំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ ដោយ​ស្វáŸáž™áž”្រវážáŸ’ážáž· ហើយ​ážáž˜áŸ’រូវ​ឲ្យ​អ្នក​កែសម្រួល smb." +#~ "conf របស់​អ្នក​ដោយ​ដៃ​ដើម្បី​ឲ្យ​វា​ធ្វើការ​ម្ដង​ទៀážÂ áŸ”" + +# Type: string +# Description +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "សូម​បញ្ជាក់​ក្រុម​ការងារ​ដែល​អ្នក​ចង់​ឲ្យ​ម៉ាស៊ីន​បម្រើ​នáŸáŸ‡â€‹áž”ង្ហាញ​នៅ​ពáŸáž›â€‹ážŠáŸ‚ល​បាន​សួរ ដោយ​ម៉ាស៊ីន​ភ្ញៀវ ។ ចំណាំ​" +#~ "ážáž¶ ប៉ារ៉ាម៉ែážáŸ’រ​នáŸáŸ‡â€‹áž€áŸâ€‹ážáŸ’ážšáž½ážâ€‹áž–áž·áž“áž·ážáŸ’យ​ឈ្មោះ​ដែន ដែល​បាន​ប្រើ​ដោយ​សុវážáŸ’ážáž·áž—ាព=ការ​កំណážáŸ‹â€‹ážŠáŸ‚ន ។" + +# Type: boolean +# Description +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "គ្រប់​ម៉ាស៊ីន​ភ្ញៀវ​ដែល​ប្រើ​វីនដូ​ážáŸ’មីៗ​ទាំង​អស់​ទាក់ទង​ជា​មួយ​ម៉ាស៊ីន​បម្រើ SMB ដោយ​ប្រើ​ពាក្យសម្ងាážáŸ‹â€‹ážŠáŸ‚ល​បាន​" +#~ "អ៊ិនគ្រីប ។ ប្រសិន​បើ​អ្នក​ចង់​ជម្រះ​ពាក្យសម្ងាážáŸ‹â€‹áž¢ážáŸ’ážáž”áž‘ អ្នក​នឹង​ážáŸ’រូវážáŸ‚​ផ្លាស់ប្ដូរ​ប៉ារ៉ាម៉ែážáŸ’រ​នៅ​ក្នុង បញ្ជី​" +#~ "ឈ្មោះ​របស់​វីនដូ ។" + +# Type: boolean +# Description +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "បាន​ផ្ដល់​អនុសាសនáŸâ€‹áž™áŸ‰áž¶áž„​ážáŸ’លាំង​ឲ្យ​អនុញ្ញាážâ€‹áž‡áž˜áŸ’រើស​នáŸáŸ‡Â áŸ” ប្រសិន​បើ​អ្នក​ធ្វើ​ដូច្នáŸáŸ‡ សូម​ប្រាកដ​ážáž¶ អ្នក​មាន​" +#~ "ឯកសារ /etc/samba/smbpasswd ážáŸ’រឹមážáŸ’រូវ ហើយ​អ្នក​បាន​កំណážáŸ‹â€‹áž–ាក្យ​សម្ងាážáŸ‹â€‹ ដូច្នáŸáŸ‡â€‹ážŸáž˜áŸ’រាប់​អ្នក​ប្រើ​" +#~ "ម្នាក់ៗ អាច​ប្រើ​ពាក្យ​បញ្ជា smbpasswd ។" + +# Type: boolean +# Description +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "សម្រាប់​សáŸáž…ក្ážáž¸â€‹áž›áž˜áŸ’អិážâ€‹áž”ន្ážáŸ‚ម​សូម​មើល /usr/share/doc/samba-doc/htmldocs/ENCRYPTION." +#~ "html ពី​កញ្ចប់ samba-doc ។" + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "មិនគាំទ្រ​ការ​ដាក់​កម្មវិធី​ážáž¶áž„​ក្រោយ passdb ជា​លំដាប់" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "ដោយ​ចាប់ផ្ដើម​ជា​មួយកំណែ ៣.០.២៣ samba មិន​គាំទ្រ​កម្មវិធី​ážáž¶áž„​ក្រោយ​ជា​ច្រើន​ដាក់​ជា​លំដាប់នៅ​ក្នុង​" +#~ "ប៉ារ៉ាម៉ែážáŸ’ážš \"កម្មវិធី​ážáž¶áž„​ក្រោយ passdb\" ។ វា​បង្ហាញ​ážáž¶ ឯកសារ smb.conf របស់​អ្នក​" +#~ "មានប៉ារ៉ាម៉ែážáŸ’រ​កម្មវិធី​ážáž¶áž„​ក្រោយ passdb ដែល​មាន​បញ្ជី​របស់​កម្មវិធី​ážáž¶áž„​ក្រោយ ។ កំណែ​ážáŸ’មី​របស់ samba " +#~ "នឹង​មិន​ដំណើរការ​ទáŸâ€‹ážšáž áž¼ážâ€‹ážŠáž›áŸ‹â€‹áž¢áŸ’នក​កែវា ។" + +# Type: boolean +# Description +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "ផ្លាស់ទីពី /etc/samba/smbpasswd ទៅ /var/lib/samba/passdb.tdb ?" + +# Type: boolean +# Description +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 បាន​បង្ហាញ​ចំណុច​ប្រទាក់មូលដ្ឋានទិន្ននáŸáž™ SAM áž–áŸáž‰áž›áŸáž‰â€‹áž‡áž¶â€‹áž…្រើន​ទៀហដែលជំនួស​ឯកសារ /" +#~ "etc/samba/smbpasswd ។" + +# Type: boolean +# Description +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "សូម​អះអាង​ážáž¶ážáž¾â€‹áž¢áŸ’នកចង់​ឲ្យ​ឯកសារ​ពាក្យ​សម្ងាážáŸ‹â€‹ážŠáŸ‚ល​មាន​ស្រាប់ážáŸ’រូវ​បាន​ប្ដូរដោយ​ស្វáŸáž™â€‹áž”្រវážáŸ’ážáž·â€‹áž‘ៅ​ទៅ​ /var/" +#~ "lib/samba/passdb.tdb ។ កុំជ្រើស​ជម្រើស​នáŸáŸ‡ ប្រសិន​បើ​អ្នក​មាន​គម្រោង​ប្រើ​កម្មវិធី​ážáž¶áž„​ក្រោយ " +#~ "pdb ដទៃ​ទៀហ(ឧទាហរណ០LDAP) ជំនួស​វិញ ។" --- samba-3.3.0.orig/debian/po/gu.po +++ samba-3.3.0/debian/po/gu.po @@ -0,0 +1,289 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba_gu\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-06-08 20:22+0530\n" +"Last-Translator: Kartik Mistry \n" +"Language-Team: Gujarati \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "DHCP માંથી WINS ગોઠવણીઓ ઉપયોગ કરવા માટે smb.conf બદલશો?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"જો તમારà«àª‚ કમà«àªªà«àª¯à«àªŸàª° નેટવરà«àª•àª®àª¾àª‚ આઇપી સરનામાંની માહિતી DHCP સરà«àªµàª°àª®àª¾àª‚થી લે છે તો, DHCP સરà«àªµàª° " +"નેટવરà«àª•àª®àª¾àª‚ હાજર રહેલ WINS સરà«àªµàª°à«‹ (\"NetBIOS નામ સરà«àªµàª°à«‹\") વિશેની માહિતી પણ પૂરી પાડી " +"શકે છે. આને માટે તમારે smb.conf ફાઇલમાં ફેરફાર કરવો પડશે જેથી DHCP ઠપà«àª°à«€ પાડેલ WINS " +"ગોઠવણીઓ આપમેળે /etc/samba/dhcp.conf માંથી વાંચી શકાય." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "આ લાકà«àª·àª£àª¿àª•àª¤àª¾àª¨à«‹ લાભ લેવા માટે dhcp3-કà«àª²àª¾àª¯àª¨à«àªŸ પેકેજ સà«àª¥àª¾àªªàª¿àª¤ કરેલ હોવà«àª‚ જ જોઇàª." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "smb.conf આપમેળે રà«àªªàª°à«‡àª–ાંકિત કરશો?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"સામà«àª¬àª¾ રà«àªªàª°à«‡àª–ાંકનનાં બાકીનાં પà«àª°àª¶à«àª¨à«‹ /etc/samba/smb.conf નાં વિકલà«àªªà«‹ સાથે કામ પાર પાડે " +"છે, જે સામà«àª¬àª¾ કારà«àª¯àª•à«àª°àª®à«‹àª¨à«‡ (nmbd અને smbd) રà«àªªàª°à«‡àª–ાંકન કરવા માટે વપરાય છે. તમારી હાલની " +"smb.conf ફાઇલ 'include' લીટી ધરાવે છે અથવા àªàª• થી વધૠલીટીમાં વિસà«àª¤àª¾àª°àªµàª¾àª¨à«‹ વિકલà«àªª " +"ધરાવે છે, જે આપમેળે રà«àªªàª°à«‡àª–ાંકન કà«àª°àª¿àª¯àª¾àª¨à«‡ મà«àª‚àªàªµàª£àª®àª¾àª‚ મૂકી શકે છે અને તમારે smb.conf ફરી કામ કરતી " +"કરવા માટે જાતે સà«àª§àª¾àª°àªµà«€ પડશે." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"જો તમે આ વિકલà«àªª પસંદ નહી કરો તો, તમારે બધા રà«àªªàª°à«‡àª–ાંકનો તમારી જાતે કરવા પડશે, અને તમે " +"આવૃતિક રà«àªªàª°à«‡àª–ાંકન સà«àª§àª¾àª°àª¾àª“નો લાભ લઇ શકશો નહી." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "વરà«àª•àª—à«àª°à«àªª/ડોમેઇન નામ:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"જà«àª¯àª¾àª°à«‡ કà«àª²àª¾àª¯àª¨à«àªŸà«‹ દà«àªµàª¾àª°àª¾ પૂછવામાં આવે તà«àª¯àª¾àª°à«‡ વપરાતà«àª‚ આ સરà«àªµàª° માટેનà«àª‚ વરà«àª•àª—à«àª°à«àªªàª¨à«àª‚ નામ મહેરબાની કરી " +"સà«àªªàª·à«àªŸ કરો. ધà«àª¯àª¾àª¨àª®àª¾àª‚ રાખો કે આ વિકલà«àªª ડોમેઇન નામને પણ નિયંતà«àª°àª£ કરે છે જà«àª¯àª¾àª°à«‡ સલામતી=ડોમેઇન " +"ગોઠવણી ઉપયોગ કરવામાં આવે છે." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "પાસવરà«àª¡ àªàª¨à«àª•à«àª°àª¿àªªà«àª¶àª¨ વાપરશો?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"હાલનાં બધા વિનà«àª¡à«‹àª કà«àª²àª¾àª¯àª¨à«àªŸà«‹ SMB સરà«àªµàª°à«‹ સાથે àªàª¨à«àª•à«àª°àª¿àªªà«àªŸà«‡àª¡ પાસવરà«àª¡à«‹àª¨à«‹ ઉપયોગ કરીને સંદેશા " +"વà«àª¯àªµàª¹àª¾àª° કરે છે. જો તમે સાદો લખાણ પાસવરà«àª¡ વાપરવા માંગતા હોવ તો તમારે, વિનà«àª¡à«‹àª " +"રજીસà«àªŸà«àª°à«€àª®àª¾àª‚ વિકલà«àªª બદલવો પડશે." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"આ વિકલà«àªª સકà«àª°àª¿àª¯ કરવાનà«àª‚ ખૂબ જ સલાહભરà«àª¯à«àª‚ છે. જો તમે કરશો તો, તમે ધà«àª¯àª¾àª¨àª®àª¾àª‚ રાખશો કે તમારી " +"પાસે યોગà«àª¯ /etc/samba/smbpasswd ફાઇલ હોય અને દરેક વપરાશકરà«àª¤àª¾ માટે તમે smbpasswd " +"ઉપયોગ કરીને પાસવરà«àª¡ ગોઠવેલો છે." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "સામà«àª¬àª¾ પાસવરà«àª¡ ડેટાબેàª, /var/lib/samba/passdb.tdb બનાવશો?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"વિનà«àª¡à«‹àªàª¨à«€ મોટાભાગની આવૃતિઓ જોડે અનà«àª°à«àªª થવા માટે, સામà«àª¬àª¾ àªàª¨à«àª•à«àª°àª¿àªªà«àªŸà«‡àª¡ પાસવરà«àª¡ સાથે કામ " +"કરવા માટે ગોઠવેલ હોવà«àª‚ જોઇàª. આને માટે વપરાશકરà«àª¤àª¾ પાસવરà«àª¡à«‹ અલગ ફાઇલ /etc/passwd માં " +"સંગà«àª°àª¹ થવા જોઇàª. આ ફાઇલ આપમેળે બનાવી શકાય છે, પણ પાસવરà«àª¡à«‹ જાતે જ smbpasswd ચલાવીને " +"ઉમેરવા જોઇઠઅને ભવિષà«àª¯àª®àª¾àª‚ છેલà«àª²àª¾àª®àª¾àª‚ છેલà«àª²àª¾àª‚ સà«àª§àª¾àª°à«‡àª² રાખવા જોઇàª." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"જો તમે નહી બનાવો તો, તમારે સાદા પાસવરà«àª¡à«‹ વાપરવા માટે સામà«àª¬àª¾ (અને કદાચ તમારા કà«àª²àª¾àª¯àª¨à«àªŸ " +"મશીનોને) ફરીથી રà«àªªàª°à«‡àª–ાંકિત કરવાં પડશે." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"samba-doc પેકેજમાં /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/" +"pwencrypt.html વધૠમાહિતી માટે જà«àª“." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "ડેમોનà«àª¸" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "તમે સામà«àª¬àª¾ કઇ રીતે ઉપયોગ કરશો?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"સામà«àª¬àª¾ ડેમોન smbd સામાનà«àª¯ ડેમોન અથવા inetd તરીકે ચાલી શકે છે. ડેમોન તરીકે ચલાવવાનà«àª‚ " +"સલાહભરà«àª¯à«àª‚ છે." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "સામà«àª¬àª¾ રà«àªªàª°à«‡àª–ાંકનનાં બાકીનાં પà«àª°àª¶à«àª¨à«‹ /etc/samba/smb.conf નાં વિકલà«àªªà«‹ સાથે કામ પાર " +#~ "પાડે છે, જે સામà«àª¬àª¾ કારà«àª¯àª•à«àª°àª®à«‹àª¨à«‡ (nmbd અને smbd) રà«àªªàª°à«‡àª–ાંકન કરવા માટે વપરાય છે. તમારી " +#~ "હાલની smb.conf ફાઇલ 'include' લીટી ધરાવે છે અથવા àªàª• થી વધૠલીટીમાં વિસà«àª¤àª¾àª°àªµàª¾àª¨à«‹ " +#~ "વિકલà«àªª ધરાવે છે, જે આપમેળે રà«àªªàª°à«‡àª–ાંકન કà«àª°àª¿àª¯àª¾àª¨à«‡ મà«àª‚àªàªµàª£àª®àª¾àª‚ મૂકી શકે છે અને તમારે smb.conf ફરી " +#~ "કામ કરતી કરવા માટે જાતે સà«àª§àª¾àª°àªµà«€ પડશે." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "જà«àª¯àª¾àª°à«‡ કà«àª²àª¾àª¯àª¨à«àªŸà«‹ દà«àªµàª¾àª°àª¾ પૂછવામાં આવે તà«àª¯àª¾àª°à«‡ વપરાતà«àª‚ આ સરà«àªµàª° માટેનà«àª‚ વરà«àª•àª—à«àª°à«àªªàª¨à«àª‚ નામ મહેરબાની " +#~ "કરી સà«àªªàª·à«àªŸ કરો. ધà«àª¯àª¾àª¨àª®àª¾àª‚ રાખો કે આ વિકલà«àªª ડોમેઇન નામને પણ નિયંતà«àª°àª£ કરે છે જà«àª¯àª¾àª°à«‡ " +#~ "સલામતી=ડોમેઇન ગોઠવણી ઉપયોગ કરવામાં આવે છે." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "હાલનાં બધા વિનà«àª¡à«‹àª કà«àª²àª¾àª¯àª¨à«àªŸà«‹ SMB સરà«àªµàª°à«‹ સાથે àªàª¨à«àª•à«àª°àª¿àªªà«àªŸà«‡àª¡ પાસવરà«àª¡à«‹àª¨à«‹ ઉપયોગ કરીને " +#~ "સંદેશા વà«àª¯àªµàª¹àª¾àª° કરે છે. જો તમે સાદો લખાણ પાસવરà«àª¡ વાપરવા માંગતા હોવ તો તમારે, વિનà«àª¡à«‹àª " +#~ "રજીસà«àªŸà«àª°à«€àª®àª¾àª‚ વિકલà«àªª બદલવો પડશે." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "આ વિકલà«àªª સકà«àª°àª¿àª¯ કરવાનà«àª‚ ખૂબ જ સલાહભરà«àª¯à«àª‚ છે. જો તમે કરશો તો, તમે ધà«àª¯àª¾àª¨àª®àª¾àª‚ રાખશો કે " +#~ "તમારી પાસે યોગà«àª¯ /etc/samba/smbpasswd ફાઇલ હોય અને દરેક વપરાશકરà«àª¤àª¾ માટે તમે " +#~ "smbpasswd ઉપયોગ કરીને પાસવરà«àª¡ ગોઠવેલો છે." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "samba-doc પેકેજમાં /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html વધૠ" +#~ "માહિતી માટે જà«àª“." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "passdb બેકàªàª¨à«àª¡ બદલવાનà«àª‚ આધાર આપવામાં આવતà«àª‚ નથી" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "આવૃતિ à«©.૦.૨૩ ની સાથે, સામà«àª¬àª¾ હવે \"પાસવરà«àª¡ બેકàªàª¨à«àª¡\" વિકલà«àªªàª®àª¾àª‚ àªàª• કરતાં વધૠબેકàªàª¨à«àª¡àª¨à«‹ " +#~ "આધાર આપતà«àª‚ નથી. àªàªµà«àª‚ જાણવામાં આવેલ છે કે તમારી smb.conf ફાઇલ પાસવરà«àª¡ બેકàªàª¨à«àª¡ વિકલà«àªª " +#~ "સાથે બેકàªàª¨à«àª¡àª¨à«€ યાદી ધરાવે છે. તમે જà«àª¯àª¾àª‚ સà«àª§à«€ આ સà«àª§àª¾àª°àª¶à«‹ નહી તà«àª¯àª¾àª‚ સà«àª§à«€ સામà«àª¬àª¾ કામ કરશે " +#~ "નહી." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "/etc/samba/smbpasswd ને /var/lib/samba/passdb.tdb માં ખસેડશો?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "સામà«àª¬àª¾ à«©.૦ ઠવધૠપૂરà«àª£ સામ ડેટાબેઠઇનà«àªŸàª°àª«à«‡àª¸ રજૂ કરà«àª¯à«‹ છે જે /etc/samba/smbpasswd " +#~ "ફાઇલને બરખાસà«àª¤ કરે છે." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "મહેરબાની કરી ખાતરી કરો કે તમે હાલની સામà«àª¬àª¾ પાસવરà«àª¡ ફાઇલને આપમેળે /var/lib/samba/" +#~ "passdb.tdb માં ખસેડવા માંગો છો. આ વિકલà«àªª પસંદ કરશો નહી જો તમે બીજà«àª‚ pdb બેકàªàª¨à«àª¡ " +#~ "(દા.ત., LDAP) વાપરવાનà«àª‚ નકà«àª•à«€ કરà«àª¯à«àª‚ હોય." --- samba-3.3.0.orig/debian/po/da.po +++ samba-3.3.0/debian/po/da.po @@ -0,0 +1,293 @@ +# translation of da.po to Danish +# translation of samba Debian debconf template to Danish +# +# Claus Hindsgaul , 2004. +# Claus Hindsgaul , 2006, 2007. +msgid "" +msgstr "" +"Project-Id-Version: da\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2009-02-17 06:41+0000\n" +"PO-Revision-Date: 2007-05-30 22:20+0200\n" +"Last-Translator: Claus Hindsgaul \n" +"Language-Team: Danish\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Ret smb.conf, så den benytter WINS-indstillinger fra DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /etc/samba/dhcp.conf." +msgstr "" +"Hvis din computer får IP-adresseoplysninger fra en DHCP-server på netværket, " +"kan DHCP-serveren også give oplysninger om WINS-servere (\"NetBIOS " +"navneservere\") på netværket. Dette kræver en ændring i din smb.conf-fil, så " +"WINS-indstillingerne fra DHCP-serveren automatisk indlæses fra /etc/samba/" +"dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:1001 +msgid "" +"The dhcp3-client package must be installed to take advantage of this feature." +msgstr "" +"Pakken dhcp3-client skal være installeret, for at kunne udnytte denne " +"funktion." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Configure smb.conf automatically?" +msgstr "Sæt smb.conf op automatisk?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Resten af Samba-opsætningen drejer sig om spørgsmål, der vedrører " +"indstillingerne i filen /etc/samba/smb.conf, som benyttes til at sætte Samba-" +"programmerne (nmbd og smbd) op. Din nuværende smb.conf indeholder en " +"'include'-linje eller en indstilling, der fylder flere linjer, hvilket kan " +"forvirre den automatiske opsætning, og kræver at du redigerer din smb.conf " +"selv for at få den til at fungere igen." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Hvis du ikke vælger denne indstilling, må du selv håndtere ændringer i " +"opsætningen, og vil ikke kunne drage nytte af de løbende forbedringer i " +"opsætningen." + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +msgid "Workgroup/Domain Name:" +msgstr "Arbejdsgruppe/domæne-navn:" + +#. Type: string +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Angiv den arbejdsgruppe, din server skal optræde i, når den bliver spurgt af " +"klienter. Bemærk at dette også styrer det domænenavn, der bruges ved " +"indstillingen \"security=domain\"." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +msgid "Use password encryption?" +msgstr "Kryptér adgangskoder?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"All recent Windows clients communicate with SMB/CIFS servers using encrypted " +"passwords. If you want to use clear text passwords you will need to change a " +"parameter in your Windows registry." +msgstr "" +"Alle nyere Windows-klienter kommunikerer med SMB-servere ved hjælp af " +"krypterede adgangskoder. Hvis du vil bruge adgangkoder i klar tekst, er du " +"nødt til at ændre en indstilling i Windows's registreringsdatabase." + +#. Type: boolean +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Enabling this option is highly recommended as support for plain text " +"passwords is no longer maintained in Microsoft Windows products. If you do, " +"make sure you have a valid /etc/samba/smbpasswd file and that you set " +"passwords in there for each user using the smbpasswd command." +msgstr "" +"Det anbefales at du vælger denne indstilling. Hvis du gør, så sørg for at du " +"har en gyldig /etc/samba/smbpasswd-fil og at du her angiver adgangskoder for " +"hver bruger med kommandoen smbpasswd." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +msgstr "Opret samba-adgangskodedatabasen /var/lib/samba/passdb.tdb?" + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"To be compatible with the defaults in most versions of Windows, Samba must " +"be configured to use encrypted passwords. This requires user passwords to " +"be stored in a file separate from /etc/passwd. This file can be created " +"automatically, but the passwords must be added manually by running smbpasswd " +"and be kept up-to-date in the future." +msgstr "" +"For at være kompatibel med standardindstillingerne i de fleste udgaver af " +"Windows, skal Samba sættes op til at benytte krypterede adgangskoder. Dette " +"kræver, at brugernes adgangskoder gemmes i en anden fil end /etc/passwd. " +"Denne fil kan oprettes automatisk, men adgangskoderne skal tilføjes manuelt " +"ved at køre smbpasswd, og skal fremover holdes opdateret." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"If you do not create it, you will have to reconfigure Samba (and probably " +"your client machines) to use plaintext passwords." +msgstr "" +"Hvis du ikke opretter den, er du nødt til at sætte samba (og sikkert også " +"dine klientmaskiner) op til at benytte adgangskoder i klar tekst." + +#. Type: boolean +#. Description +#: ../samba.templates:1001 +msgid "" +"See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"from the samba-doc package for more details." +msgstr "" +"Se /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +"i pakken samba-doc for flere detaljer." + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "daemons" +msgstr "dæmoner" + +#. Type: select +#. Choices +#: ../samba.templates:2001 +msgid "inetd" +msgstr "inetd" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "How do you want to run Samba?" +msgstr "Hvordan skal Samba køres?" + +#. Type: select +#. Description +#: ../samba.templates:2002 +msgid "" +"The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +"daemon is the recommended approach." +msgstr "" +"Samba-dæmonen smbd kan køre som en almindelig dæmon eller fra inetd. Det " +"anbefales at køre den som dæmon." + +#~ msgid "" +#~ "The rest of the configuration of Samba deals with questions that affect " +#~ "parameters in /etc/samba/smb.conf, which is the file used to configure " +#~ "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#~ "'include' line or an option that spans multiple lines, which could " +#~ "confuse the automated configuration process and require you to edit your " +#~ "smb.conf by hand to get it working again." +#~ msgstr "" +#~ "Resten af Samba-opsætningen drejer sig om spørgsmål, der vedrører " +#~ "indstillingerne i filen /etc/samba/smb.conf, som benyttes til at sætte " +#~ "Samba-programmerne (nmbd og smbd) op. Din nuværende smb.conf indeholder " +#~ "en 'include'-linje eller en indstilling, der fylder flere linjer, hvilket " +#~ "kan forvirre den automatiske opsætning, og kræver at du redigerer din smb." +#~ "conf selv for at få den til at fungere igen." + +#~ msgid "" +#~ "Please specify the workgroup you want this server to appear to be in when " +#~ "queried by clients. Note that this parameter also controls the domain " +#~ "name used with the security=domain setting." +#~ msgstr "" +#~ "Angiv den arbejdsgruppe, din server skal optræde i, når den bliver spurgt " +#~ "af klienter. Bemærk at dette også styrer det domænenavn, der bruges ved " +#~ "indstillingen \"security=domain\"." + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Alle nyere Windows-klienter kommunikerer med SMB-servere ved hjælp af " +#~ "krypterede adgangskoder. Hvis du vil bruge adgangkoder i klar tekst, er " +#~ "du nødt til at ændre en indstilling i Windows's registreringsdatabase." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "Det anbefales at du vælger denne indstilling. Hvis du gør, så sørg for at " +#~ "du har en gyldig /etc/samba/smbpasswd-fil og at du her angiver " +#~ "adgangskoder for hver bruger med kommandoen smbpasswd." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Se /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html i pakken samba-doc " +#~ "for flere detaljer." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Sammenkædning af passdb-bagender understøttes ikke" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Fra og med version 3.0.23 understøtter samba ikke længere sammenkædning " +#~ "af flere bagender i parameteren \"passdb backend\". Det lader til, at din " +#~ "smb.conf-fil indeholder en passdb-bagendeparemeter, der består af en " +#~ "liste med bagender. Den nye version af samba vil ikke fungere, før du har " +#~ "rettet dette." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Flyt /etc/samba/smbpasswd til /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 introducerede en mere komplet SAM-databasegrænseflade, som " +#~ "efterfølger til filen /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Bekræft om du ønsker at migrere den eksisterende smbpasswd-fil til /var/" +#~ "lib/samba/passdb.tdb automatisk. Vælg ikke denne indstilling, hvis du i " +#~ "stedet planlægger at benytte en anden pdb-håndtering (f.eks. LDAP)." + +#~ msgid "daemons, inetd" +#~ msgstr "dæmoner, inetd"